/* Professional modern design inspired by top landing pages */
:root {
    --primary: #5E17EB;
    --primary-dark: #4B0FCC;
    --secondary: #FF6B6B;
    --dark: #0F0F0F;
    --dark-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --border: rgba(255,255,255,0.08);
    --glow: rgba(94, 23, 235, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text-primary);
    font-family: var(--app-font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background */
.hero-section {
    position: relative;
         overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}

/* Navigation */
.nav-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.8) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111111;
    text-decoration: none;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    text-align: center;
    background: #f8f9fa;
    color: #212529;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite;
    color: #5E17EB;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(94, 23, 235, 0.2); }
    50% { box-shadow: 0 0 30px rgba(94, 23, 235, 0.4); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color:black;
}

.gradient-text {
    color: #111111;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.2;
}

/* Stats row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Laurel Award Styling */
.laurel {
    position: relative;
    display: inline-block;
}

.laurel-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.laurel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.laurel-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.laurel-stars {
    font-size: 0.75rem;
    color: #ffc107;
    line-height: 1;
}

/* Upload card */
.upload-container {
    max-width: 1200px;
    margin: 0 auto;
}

.upload-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    color: #212529;
}

/* Horizontal Steps Layout */
.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .steps-container {
        grid-template-columns: 1.75fr 2.5fr 1.25fr;
        gap: 1.5rem;
    }
}

.step-box {
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.step-number-badge {
    width: 32px;
    height: 32px;
    background: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-title {
    font-weight: 600;
    color: #212529;
    font-size: 0.95rem;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bottom-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.upload-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.upload-card:hover::before {
    opacity: 0.3;
}

.upload-zone {
    background: rgba(108, 117, 125, 0.05);
    border: 2px dashed rgba(108, 117, 125, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #212529;
}

.upload-zone::after {
    content: none;
}

.upload-zone:hover {
    border-color: #6c757d;
    background: rgba(108, 117, 125, 0.08);
    transform: scale(1.01);
}

.upload-zone:hover::after {
    content: none;
}

.upload-zone.dragging {
    border-color: var(--secondary);
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.02);
}

.upload-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: #495057;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Custom form controls */
.form-input {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    color: #212529;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    background: white;
    border-color: #6c757d;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

.form-input::placeholder {
    color: #6c757d;
}

/* Primary button */
.btn-primary-gradient {
    background: #16a34a;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.25);
    width: 100%;
}

.btn-primary-gradient::before {
    content: none;
}

.btn-primary-gradient:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.3);
}

.btn-primary-gradient:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Progress section */
.progress-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    color: #212529;
}

.progress-bar-custom {
    background: #e9ecef;
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #16a34a;
    border-radius: 50px;
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.preview-thumb {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    position: relative;
}

.preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-thumb:hover img {
    transform: scale(1.1);
}

.reaction-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}

/* Loading spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Marketing Sections Styles */

/* Common Section Styles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Before/After Gallery */
.before-after-grid {
    display: block;
    margin-top: 3rem;
}

.face-source-showcases {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1080px;
}

.face-source-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.face-source-card::before {
    background:
        radial-gradient(circle at 28% 50%, rgba(22, 163, 74, 0.14), transparent 30%),
        radial-gradient(circle at 72% 50%, rgba(94, 23, 235, 0.1), transparent 34%);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.face-source-card-header {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.face-source-card-header span {
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
}

.face-source-card-header strong {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    color: #166534;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 5px 10px;
    white-space: nowrap;
}

.face-source-body {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 132px 32px minmax(0, 1fr);
    position: relative;
    z-index: 1;
}

.face-source-main {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.face-source-main img {
    aspect-ratio: 1;
    background: #f8fafc;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
    display: block;
    object-fit: cover;
    transition: transform 0.22s ease;
    width: 128px;
}

.face-source-main:hover img {
    transform: scale(1.08);
}

.face-source-main span {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 800;
}

.face-source-arrow {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
    color: #16a34a;
    display: flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.face-source-arrow .material-icons {
    font-size: 18px;
}

.face-source-results {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.face-pack-orb {
    --face-orb-offset: 0px;
    aspect-ratio: 1;
    background: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
    flex: 0 0 clamp(58px, 5.4vw, 74px);
    overflow: hidden;
    position: relative;
    transform: translateY(var(--face-orb-offset)) scale(1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0.2s ease;
    z-index: 1;
}

.face-pack-orb:nth-child(3n) {
    --face-orb-offset: 8px;
}

.face-pack-orb:nth-child(4n) {
    --face-orb-offset: -6px;
}

.face-pack-orb:hover {
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.3);
    transform: translateY(calc(var(--face-orb-offset) - 8px)) scale(1.65);
    z-index: 10;
}

.face-pack-orb img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
    width: 100%;
}

.face-pack-orb:hover img {
    transform: scale(1.08);
}

.before-after-item {
    text-align: center;
}

.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.before-image, .after-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.image-label {
    background: #e9ecef;
    color: #6c757d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.image-label.shocked { background: rgba(255, 107, 107, 0.2); color: #FF6B6B; }
.image-label.happy { background: rgba(0, 255, 136, 0.2); color: #00FF88; }
.image-label.angry { background: rgba(255, 69, 0, 0.2); color: #FF4500; }
.image-label.excited { background: rgba(255, 215, 0, 0.2); color: #FFD700; }

.arrow-transform {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* Social Proof */
.stat-card {
    padding: 2rem 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #212529;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #212529;
}

.author-handle {
    color: #6c757d;
    font-size: 0.9rem;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-logo {
    background: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    color: #212529;
    border: 1px solid #e9ecef;
}

/* Features Grid */
.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Reaction Types Grid */
.reaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reaction-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.reaction-preview {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reaction-item:hover .reaction-preview {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(94, 23, 235, 0.05);
}

.reaction-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reaction-name {
    font-weight: 600;
    color: #212529;
}

/* Process Steps */
.process-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.process-step {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-time {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    font-weight: bold;
}

/* Use Cases */
.use-case-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.use-case-card h4 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-stat {
    color: #15803d;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badge {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-badge h5 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Success Stories */
.success-story-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.success-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.success-info h5 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.success-info p {
    color: #6c757d;
    font-size: 0.9rem;
}

.success-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
}

.metric-label {
    color: #6c757d;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.success-story-card blockquote {
    font-style: italic;
    color: #212529;
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding-left: 2rem;
}

.success-story-card blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    font-family: serif;
}

/* Shared Selectable Option Base Styles */
.selectable-option {
    position: relative;
    background: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.selectable-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.selectable-option:hover {
    transform: translateY(-2px);
    border-color:rgb(89, 127, 107) !important;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
}

.selectable-option.selected {
    border-color: #b0e1357d  !important;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.15);
}

.selectable-option.selected::before {
    content: '✓';
    position: absolute;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

/* Wardrobe Option Specific */
.wardrobe-option {
    padding: 0.625rem 0.5rem;
}

.wardrobe-option.selected::before {
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    font-size: 11px;
}

.wardrobe-emoji {
    font-size: 1.125rem;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.wardrobe-title {
    font-weight: 600;
    color: #212529;
    font-size: 0.75rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.wardrobe-subtitle {
    color: #6c757d;
    font-size: 0.625rem;
    margin-top: 0.1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Expression Option Specific */
.expression-option {
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: flex-end;
}

.expression-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(108, 117, 125, 0.2);
}

.expression-option.selected {
    box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.25);
}

.expression-option.selected::before {
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    font-size: 10px;
}

.expression-grid-nudge {
    animation: expressionGridNudge 1.4s ease;
}

@keyframes expressionGridNudge {
    0%,
    100% {
        box-shadow: none;
    }

    25%,
    75% {
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }
}

.face-choice-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    max-width: 460px;
    padding: 30px;
    position: relative;
    text-align: left;
    width: min(92vw, 460px);
}

.face-choice-kicker {
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.face-choice-modal h3 {
    color: #111827;
    font-size: 1.55rem;
    font-weight: 750;
    margin: 0 0 10px;
}

.face-choice-modal p {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0;
}

.face-choice-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

.face-choice-primary,
.face-choice-secondary {
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.face-choice-primary {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.2);
}

.face-choice-secondary {
    background: #f1f5f9;
    color: #334155;
}

.face-choice-primary:hover,
.face-choice-secondary:hover {
    transform: translateY(-1px);
}

.expression-preview-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.expression-preview-toggle button {
    background: transparent;
    border: 0;
    color: #6c757d;
    font: inherit;
    font-weight: 600;
    padding: 0.15rem 0.25rem;
}

.expression-preview-toggle button.active {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.expression-emoji {
    display:none;
    font-size: 1.25rem;
    position: absolute;
    bottom: 4px;
    right: 4px;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.expression-title {
    font-weight: 600;
    color: #212529;
    font-size: 0.6rem;
    position: absolute;
    bottom: 4px;
    left: 4px;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .upload-card {
        padding: 1.25rem;
    }
    
    .stats-row {
        gap: 2rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .face-source-showcases {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .face-source-card {
        padding: 16px;
    }

    .face-source-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .face-source-body {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .face-source-main img {
        width: 118px;
    }

    .face-source-arrow {
        transform: rotate(90deg);
    }

    .face-source-results {
        gap: 9px;
    }

    .face-pack-orb {
        flex-basis: clamp(58px, 18vw, 78px);
    }

    .face-pack-orb:nth-child(3n),
    .face-pack-orb:nth-child(4n) {
        --face-orb-offset: 0px;
    }

    .face-pack-orb:hover {
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
        transform: translateY(0) scale(1.08);
    }

    .comparison-container {
        flex-direction: column;
        gap: 1rem;
    }

    .arrow-transform {
        transform: rotate(90deg);
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .platform-logos {
        gap: 1rem;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .reaction-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .face-choice-actions {
        flex-direction: column-reverse;
    }

    .face-choice-primary,
    .face-choice-secondary {
        width: 100%;
    }
}
