/* AI Studio Özel Tasarımı */
.ai-studio-wrapper {
    background-color: #ffffff;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    font-family: 'Lato', sans-serif;
}

.ai-quiz-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Başlık Kısımları */
.quiz-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2b3c;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 900;
}

.quiz-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.quiz-badge {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 80px;
    /* Kafaların taşması için boşluk */
}

/* Kart Grid ve Kafa Taşma Efekti (Pop-out) */
.gender-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.gender-card {
    position: relative;
    width: 240px;
    height: 180px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 16px;
}

.gender-card:hover {
    transform: translateY(-5px);
}

/* Kartın arka fonu (Bej kısım) */
.card-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dfd6ca;
    /* Resimdeki üst bej renk */
    border-radius: 16px;
    z-index: 1;
}

/* Fotoğraf (Taşan kısım) */
.person-img {
    position: absolute;
    bottom: 40px;
    /* Alt etiketin hemen üstüne oturur */
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    /* Fotoğraf boyutunu buradan ayarlayabilirsin */
    height: auto;
    z-index: 2;
    pointer-events: none;
    /* Fotoğrafa tıklansa bile kart tıklanmış sayılsın */
}

/* Alt kısımdaki renkli alan (Gradient) */
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, #dca87d, #a593c6);
    border-radius: 0 0 16px 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    color: #111;
    font-size: 16px;
}

/* Footer ve Trust Alanı */
.quiz-footer {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.how-it-works {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.trust-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.trust-section span {
    font-size: 14px;
    color: #444;
}

.terms-text {
    font-size: 12px;
    color: #888;
}

.terms-text a {
    color: #a593c6;
    text-decoration: none;
}

/* --- ADIM 1.5: SOSYAL KANIT VE YORUM EKRANI STİLLERİ --- */

/* Geçiş efekti (Yumuşak fade-in) */
.fade-in-step {
    animation: fadeInStep 0.6s ease-in-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Başlık Stilleri */
.testimonial-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 34px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 45px;
    font-weight: 700;
}

.gold-text {
    color: #c9ac71;
    /* Referans resmindeki o altın/hardal rengi */
    font-weight: 700;
}

/* Yorum Kartı (Review Card) - Güzelleştirilmiş */
.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Yumuşak ve profesyonel gölge */
    margin-bottom: 35px;
    border: 1px solid #f1f1f1;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    background: #f1edff;
    /* Açık mor zemin */
    color: #8b5cf6;
    /* Mor harf */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
}

.reviewer-name {
    font-weight: 700;
    color: #111;
    font-size: 17px;
}

.verified-badge {
    color: #10b981;
    /* Yeşil rozet rengi */
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-stars {
    color: #fbbf24;
    /* Yıldız sarısı */
    font-size: 17px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.review-text strong {
    color: #111;
}

/* İstatistik Listesi */
.stats-list {
    text-align: left;
    max-width: 450px;
    margin: 0 auto 40px auto;
    /* Ortalamak için */
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
}

.stat-item i {
    color: #c9ac71;
    /* İkon rengi altın */
    font-size: 22px;
}

/* Devam Butonu (CONTINUE) - Referanstaki gibi */
.gold-continue-btn {
    width: 100%;
    max-width: 420px;
    background-color: #c9ac71;
    /* Sarı/Altın zemin */
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 50px;
    font-family: 'Lato', sans-serif;
}

.gold-continue-btn:hover {
    background-color: #b1965f;
    transform: translateY(-2px);
}

/* Basın Logoları Alanı */
.featured-in-section p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0.6;
    /* Logoları hafif silikleştirip profesyonel durmasını sağla */
}

/* Temsili Logo Tasarımları */
.f-logo {
    font-size: 24px;
    color: #333;
}

.yahoo-logo {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.bustle-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.huffpost-logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 20px;
}

/* Karanlık Mod Desteği */
body[data-theme="dark"] .ai-studio-wrapper {
    background-color: #121212;
}

body[data-theme="dark"] .testimonial-header h2,
body[data-theme="dark"] .reviewer-name,
body[data-theme="dark"] .stat-item {
    color: #eee;
}

body[data-theme="dark"] .review-card {
    background-color: #1a1a1a;
    border-color: #333;
}

/* --- HEADER GERİ BUTONU STİLLERİ --- */
.ai-studio-header {
    position: relative;
    /* Butonu sola sabitleyebilmek için */
}

.header-back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    /* Yukarıdan %50 itiyoruz */
    transform: translateY(-50%);
    /* Kendi yüksekliğinin yarısı kadar geri çekip tam dikey ortalıyoruz */
    background: none;
    border: none;
    font-size: 20px;
    /* İkonu büyüttük (eskiden 16px'di, zevkine göre 28-30 da yapabilirsin) */
    cursor: pointer;
    color: #333;
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: color 0.2s ease;
    z-index: 10;
    /* Tıklanabilirliğini garantilemek için üstte tutuyoruz */
}

.header-back-btn:hover {
    color: #c9ac71;
    /* Hover durumunda altın rengi */
}

/* Karanlık Mod Desteği */
body[data-theme="dark"] .header-back-btn {
    color: #ccc;
}

body[data-theme="dark"] .header-back-btn:hover {
    color: #c9ac71;
}


/* --- ADIM 2: SAÇ DOKUSU VE PROGRESS BAR STİLLERİ --- */

.quiz-progress-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.progress-label {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
}

.progress-track {
    width: 150px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #8b5cf6;
    /* Mor ilerleme rengi */
    transition: width 0.4s ease;
}

.question-title {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Seçenek Listesi */
.selection-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.selection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.selection-item:hover {
    border-color: #8b5cf6;
    background: #f9fafb;
}

.selection-text {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    font-family: 'Lato', sans-serif;
}

.selection-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.selection-item:hover .selection-circle {
    border-color: #8b5cf6;
}

/* Karanlık Mod Uyumu */
body[data-theme="dark"] .selection-item {
    background: #1a1a1a;
    border-color: #333;
}

body[data-theme="dark"] .selection-text {
    color: #eee;
}

body[data-theme="dark"] .question-title,
body[data-theme="dark"] .progress-label {
    color: #fff;
}

/* --- YENİ BÜYÜK HEADER VE PROGRESS BAR --- */
.ai-progress-header {
    background: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding-top: 15px;
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 15px 20px;
}

.header-profile-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    text-transform: capitalize;
}

/* Progress Bar Alanı */
.header-progress-track {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
}

.header-progress-fill {
    height: 100%;
    background: #8b5cf6;
    /* Mor ilerleme rengi */
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Geri Butonu Düzenlemesi */
.header-back-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
}

/* Soru Başlığı ve Liste Düzenlemesi */
.question-title {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin: 40px 0;
    color: #1a1a1a;
}

/* Karanlık Mod */
body[data-theme="dark"] .ai-progress-header {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

body[data-theme="dark"] .header-profile-label,
body[data-theme="dark"] .header-back-btn {
    color: #fff;
}

body[data-theme="dark"] .header-progress-track {
    background: #333;
}

/* --- SABİT ALT BAR (STICKY FOOTER) --- */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid #eaeaea;
    z-index: 1000;
}

.sticky-action-inner {
    max-width: 600px;
    /* Sitenin quiz genişliği */
    margin: 0 auto;
}

/* HAP ŞEKLİNDE YENİ NEXT BUTONU */
.pill-next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    border-radius: 9999px;
    /* Tam yuvarlak hap şekli */
    background-color: #c9ac71;
    /* Projenin gold rengi */
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* BUTON DEVRE DIŞI (DISABLED) İKEN */
.pill-next-btn:disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.7;
}

/* BUTON AKTİFKEN ÜZERİNE GELİNCE */
.pill-next-btn:not(:disabled):hover {
    background-color: #b5985d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 172, 113, 0.3);
}



/* ============================================================ */
/* ADIM 26: MATCHES FOUND EKRANI STİLLERİ                      */
/* ============================================================ */

/* --- Hair Magazine Logo Alanı --- */
.matches-logo-area {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 8px;
}

.matches-logo-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 0;
}

.matches-logo-top {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #c9ac71;
    /* Projenin gold rengi */
    text-transform: uppercase;
}

.matches-logo-bottom {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 900;
    color: #1a2b3c;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.05;
}

.matches-logo-sub {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 4px;
}

/* --- Hero Kart --- */
.matches-hero-card {
    background: #faf9f7;
    border: 1px solid #ede9e0;
    border-radius: 20px;
    padding: 36px 28px 28px;
    text-align: center;
    margin-bottom: 24px;
}

.matches-sparkle-wrap {
    width: 56px;
    height: 56px;
    background: #f3ead8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.matches-sparkle-icon {
    font-size: 26px;
    color: #c9ac71;
}

.matches-hero-title {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #1a2b3c;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.matches-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8e3d8;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.analyzed-count {
    color: #777;
}

.matches-arrow {
    color: #aaa;
}

.top-found {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1a2b3c;
    font-weight: 700;
}

/* --- 4'lü Insight Grid --- */
.matches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.match-card {
    background: #fff;
    border: 1px solid #ede9e0;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.match-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.match-card-icon-wrap {
    width: 44px;
    height: 44px;
    background: #f1edff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 20px;
    color: #8b5cf6;
}

.match-card-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #8b5cf6;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.match-card-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* --- Unlock Butonu Özel Rengi --- */
.matches-unlock-btn {
    background: linear-gradient(135deg, #c9ac71 0%, #b09050 100%);
    box-shadow: 0 4px 20px rgba(201, 172, 113, 0.35);
    font-size: 15px;
    letter-spacing: 2px;
}

.matches-unlock-btn:hover {
    background: linear-gradient(135deg, #b09050 0%, #9a7d40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 172, 113, 0.45);
}

/* --- Karanlık Mod --- */
body[data-theme="dark"] .matches-hero-card,
body[data-theme="dark"] .match-card {
    background: #1a1a1a;
    border-color: #333;
}

body[data-theme="dark"] .matches-logo-bottom,
body[data-theme="dark"] .matches-hero-title {
    color: #f0f0f0;
}

body[data-theme="dark"] .match-card-desc {
    color: #ccc;
}

body[data-theme="dark"] .matches-count-badge {
    background: #2a2a2a;
    border-color: #444;
    color: #ccc;
}

body[data-theme="dark"] .top-found {
    color: #f0f0f0;
}

/* ============================================================ */
/* ADIM 27: STYLE DIRECTIONS EKRANI STİLLERİ                   */
/* ============================================================ */

.style-directions-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
    padding: 0 5px;
}

.direction-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px 20px 20px 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.direction-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.direction-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.direction-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.direction-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.direction-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 800;
    color: #1a2b3c;
    font-family: 'Lato', sans-serif;
}

.direction-text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Karanlık Mod */
body[data-theme="dark"] .direction-card {
    background: #1a1a1a;
    border-color: #333;
}

body[data-theme="dark"] .direction-text h3 {
    color: #f0f0f0;
}

body[data-theme="dark"] .direction-text p {
    color: #ccc;
}

/* ============================================================ */
/* ADIM 28: PHOTO INTRO EKRANI STİLLERİ                         */
/* ============================================================ */

.photo-scan-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.photo-scan-wrapper {
    position: relative;
    width: 320px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.scan-base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a855f7;
    /* Purple scan line */
    box-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7;
    animation: scanAnimation 3s linear infinite;
    opacity: 0.8;
}

@keyframes scanAnimation {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

.scan-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: dotPulse 2s infinite ease-in-out;
}

/* Position mapping to look like face landmarks */
.dot-1 {
    top: 30%;
    left: 30%;
    animation-delay: 0.1s;
}

.dot-2 {
    top: 32%;
    right: 28%;
    animation-delay: 0.5s;
}

.dot-3 {
    top: 48%;
    left: 20%;
    animation-delay: 0.9s;
}

.dot-4 {
    top: 49%;
    right: 18%;
    animation-delay: 1.2s;
}

.dot-5 {
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.dot-6 {
    top: 68%;
    left: 30%;
    animation-delay: 1.1s;
}

.dot-7 {
    top: 68%;
    right: 30%;
    animation-delay: 1.3s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Karanlık Mod */
body[data-theme="dark"] .photo-intro-subtitle {
    color: #bbb !important;
}

/* ============================================================ */
/* ADIM 29: PHOTO UPLOAD EKRANI STİLLERİ                        */
/* ============================================================ */

.upload-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.upload-option-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.upload-option-btn i {
    font-size: 22px;
    color: #9ca3af;
}

.upload-option-btn:hover {
    border-color: #c9ac71;
    background: #faf9f5;
    color: #c9ac71;
}

.upload-option-btn:hover i {
    color: #c9ac71;
}

.consent-container {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.consent-label input {
    display: none;
}

.custom-checkbox {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1.5px solid #a855f7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
    background: #fff;
}

.custom-checkbox i {
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.consent-label input:checked + .custom-checkbox {
    background: #a855f7;
    border-color: #a855f7;
}

.consent-label input:checked + .custom-checkbox i {
    opacity: 1;
}

.consent-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

/* Karanlık Mod */
body[data-theme="dark"] .upload-option-btn {
    background: #1a1a1a;
    border-color: #333;
    color: #ccc;
}

body[data-theme="dark"] .consent-container {
    background: #1a1a1a;
}

body[data-theme="dark"] .custom-checkbox {
    background: #1a1a1a;
}

body[data-theme="dark"] .consent-text {
    color: #ccc;
}

/* ============================================================ */
/* ADIM 30: LIVE CAMERA EKRANI STİLLERİ                         */
/* ============================================================ */

.camera-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    min-height: 480px; 
}

#live-camera-feed {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    transform: scaleX(-1); /* Mirror camera */
}

.camera-oval-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 320px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5); /* Dimming outside oval */
    pointer-events: none;
}

.camera-actions {
    margin-top: 30px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 30px;
}

.camera-cancel-btn {
    background: #6b7280;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background 0.2s ease;
}

.camera-cancel-btn:hover {
    background: #4b5563;
}

.camera-capture-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #8b5cf6;
    color: #111;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    transition: transform 0.1s ease;
}

.camera-capture-btn:active {
    transform: scale(0.95);
}

/* ============================================================ */
/* ADIM 31: SONUÇLAR (RESULTS GRID) EKRANI STİLLERİ             */
/* ============================================================ */

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 600px;
}

.result-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    aspect-ratio: 3/4;
}

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

.result-card:hover img {
    transform: scale(1.03);
}

.result-download-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1a2b3c;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.2s;
}

.result-download-btn:hover {
    background: #8b5cf6;
    color: #fff;
    transform: translateY(-2px);
}

/* Koyu mod desteği için ufak ek / Dark mode support */
body[data-theme="dark"] .result-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: #111;
}

@media (max-width: 480px) {
    .results-grid {
        gap: 15px;
    }
    
    .result-download-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        bottom: 10px;
        right: 10px;
    }
}

/* ============================================================ */
/* ADIM 30.5: LOADING / ANALİZ EKRANI STİLLERİ                  */
/* ============================================================ */

/* ============================================================ */
/* RESULTS SCREEN                                                */
/* ============================================================ */

.results-screen {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 42px 24px 90px !important;
    background: #fff;
    text-align: center;
    overflow-x: hidden;
}

.results-hero {
    max-width: 920px;
    margin: 0 auto 28px;
}

.results-unlocked-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #f7f0df;
    color: #a98542;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.results-hero h1 {
    margin: 0 0 12px;
    color: #15263b;
    font-family: 'Lato', sans-serif;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 900;
}

.results-hero p,
.results-section-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #667085;
    font-size: 19px;
    line-height: 1.45;
}

.results-summary-panel {
    max-width: 920px;
    margin: 0 auto 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.results-summary-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid #eceff3;
    border-radius: 16px;
    background: #fafafa;
    padding: 18px;
    text-align: left;
}

.results-summary-item i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f1e7ff;
    color: #9b4de3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.results-summary-item strong {
    display: block;
    color: #101828;
    font-size: 19px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.results-summary-item span {
    display: block;
    color: #667085;
    font-size: 14px;
}

.results-gallery-section {
    max-width: 1040px;
    margin: 0 auto;
}

.results-section-header {
    margin-bottom: 22px;
}

.results-section-header h2 {
    margin: 0 0 8px;
    color: #15263b;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 900;
}

.results-screen .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: none;
    margin: 0 auto;
}

.results-screen .result-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: auto;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.09);
}

.result-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f4f6;
}

.results-screen .result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.results-screen .result-card:hover img {
    transform: scale(1.025);
}

.result-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #15263b;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.12);
}

.result-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
}

.result-card-footer strong {
    display: block;
    color: #101828;
    font-size: 17px;
    line-height: 1.15;
    text-align: left;
}

.result-card-footer span {
    display: block;
    color: #667085;
    font-size: 13px;
    margin-top: 4px;
    text-align: left;
}

.results-screen .result-download-btn {
    position: static;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #c9ac71;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(201, 172, 113, 0.28);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.results-screen .result-download-btn:hover {
    background: #b5985d;
    box-shadow: 0 16px 30px rgba(181, 152, 93, 0.34);
    transform: translateY(-2px);
}

.results-actions {
    max-width: 560px;
    margin: 42px auto 0;
    display: grid;
    gap: 12px;
}

.results-primary-btn,
.results-save-account-btn,
.results-secondary-btn,
.results-link-btn {
    min-height: 58px;
    border-radius: 999px;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.results-primary-btn {
    border: 0;
    background: #c9ac71;
    color: #fff;
    box-shadow: 0 16px 34px rgba(201, 172, 113, 0.28);
}

.results-primary-btn i {
    margin-right: 8px;
}

.results-primary-btn:hover {
    background: #b5985d;
    box-shadow: 0 20px 40px rgba(181, 152, 93, 0.32);
}

.results-save-account-btn {
    border: 0;
    background: #6d27bd;
    color: #fff;
    box-shadow: 0 16px 34px rgba(109, 39, 189, 0.24);
}

.results-save-account-btn i {
    margin-right: 8px;
}

.results-save-account-btn:hover {
    background: #5c1fa3;
    box-shadow: 0 20px 40px rgba(92, 31, 163, 0.28);
}

.results-save-account-btn:disabled {
    opacity: 0.72;
    cursor: wait;
}

.results-secondary-btn {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #15263b;
}

.results-secondary-btn:hover,
.results-link-btn:hover {
    background: #f8fafc;
    border-color: #b8c0cc;
}

.results-link-btn {
    border: 0;
    background: transparent;
    color: #667085;
}

body[data-theme="dark"] .results-screen,
body[data-theme="dark"] .results-screen .result-card {
    background: #0f172a;
}

body[data-theme="dark"] .results-hero h1,
body[data-theme="dark"] .results-section-header h2,
body[data-theme="dark"] .results-summary-item strong,
body[data-theme="dark"] .result-card-footer strong {
    color: #f9fafb;
}

body[data-theme="dark"] .results-summary-item,
body[data-theme="dark"] .results-screen .result-card {
    border-color: #334155;
}

@media (max-width: 720px) {
    .results-screen {
        padding: 30px 18px 70px !important;
    }

    .results-hero h1 {
        font-size: 34px;
    }

    .results-hero p,
    .results-section-header p {
        font-size: 16px;
    }

    .results-summary-panel {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .results-screen .results-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .results-section-header h2 {
        font-size: 26px;
    }
}

.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite steps(4, end);
}

@keyframes loadingDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.loading-checklist .checklist-item {
    transition: all 0.3s ease;
}

body[data-theme="dark"] .loading-testimonial {
    background: #1f2937 !important;
    border-color: #374151 !important;
}

body[data-theme="dark"] .loading-testimonial p {
    color: #d1d5db !important;
}

body[data-theme="dark"] .loading-testimonial div {
    color: #9ca3af !important;
}

.male-avoid-screen {
    max-width: 760px;
}

.male-avoid-header {
    text-align: center;
    margin-bottom: 40px;
}

.male-avoid-title {
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    margin: 0 0 14px;
}

.male-avoid-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    color: #6b7280;
    margin: 0;
}

.male-multi-item .selection-text {
    color: #1f2937;
}

.male-avoid-check,
.male-style-check,
.male-element-check {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
    color: #8b5cf6;
}

body[data-theme="dark"] .male-avoid-title {
    color: #f9fafb;
}

body[data-theme="dark"] .male-avoid-subtitle {
    color: #9ca3af;
}

@media (max-width: 640px) {
    .male-avoid-screen {
        max-width: 100%;
    }

    .male-avoid-header {
        margin-bottom: 32px;
    }

    .male-avoid-title {
        font-size: 28px;
    }

    .male-avoid-subtitle {
        font-size: 17px;
    }

}

.photo-validation-failed-content {
    max-width: 560px;
    margin: 0 auto 80px;
    text-align: center;
}

.photo-validation-failed-icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #e52b2b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    margin-bottom: 26px;
}

.photo-validation-failed-icon i {
    width: 54px;
    height: 54px;
    border: 5px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.photo-validation-failed-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin: 0 0 14px;
}

.photo-validation-failed-content p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.45;
    color: #667085;
    margin: 0 auto;
    max-width: 460px;
}

body[data-theme="dark"] .photo-validation-failed-content h3 {
    color: #f9fafb;
}

body[data-theme="dark"] .photo-validation-failed-content p {
    color: #9ca3af;
}

.uploaded-photo-preview {
    width: 100%;
    max-width: 560px;
    margin: 28px auto 0 auto;
    text-align: center;
}

.uploaded-photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #111827;
}

.uploaded-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uploaded-photo-frame .uploaded-photo-mask-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 12px rgba(255, 210, 48, 0.8));
}

.uploaded-photo-frame.has-hair-mask .uploaded-photo-mask-overlay {
    opacity: 0.85;
    animation: hairMaskPulse 1.2s ease-in-out infinite;
}

@keyframes hairMaskPulse {
    0%, 100% {
        opacity: 0.42;
    }

    50% {
        opacity: 0.92;
    }
}

.uploaded-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.34);
    pointer-events: none;
}

.uploaded-photo-frame.has-hair-mask::after {
    background: rgba(17, 24, 39, 0.16);
}

.uploaded-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.uploaded-photo-check {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.28);
}

.upload-another-photo-btn {
    border: none;
    background: transparent;
    color: #667085;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    margin-top: 18px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.upload-another-photo-btn:hover {
    color: #1a2b3c;
}

/* ============================================================ */
/* PAYMENT / UNLOCK SCREEN                                      */
/* ============================================================ */

.payment-screen {
    max-width: none;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 130px;
    text-align: center;
    background: #fff;
    overflow-x: hidden;
}

html.payment-mode-boot .ai-quiz-container {
    display: none !important;
}

html.payment-mode-boot #step-payment {
    display: block !important;
}

html.payment-mode-boot .ai-studio-header .container,
body.payment-mode .ai-studio-header .container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    justify-content: space-between !important;
    align-items: center;
}

html.payment-mode-boot .ai-studio-header,
body.payment-mode .ai-studio-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: #f4f4f0;
    padding: 12px 0 10px;
}

html.payment-mode-boot .ai-studio-header .logo-area,
body.payment-mode .ai-studio-header .logo-area {
    text-align: left !important;
    min-width: 150px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

html.payment-mode-boot .ai-studio-header .site-logo,
body.payment-mode .ai-studio-header .site-logo {
    font-size: 31px;
    letter-spacing: -0.02em;
    line-height: 0.94;
    color: #d32f2f;
    white-space: nowrap;
}

html.payment-mode-boot .ai-studio-header .site-slogan,
body.payment-mode .ai-studio-header .site-slogan {
    display: block;
    width: 100%;
    font-size: 11px;
    letter-spacing: 0.13em;
    line-height: 1;
    margin-top: 6px !important;
    color: #667085;
    text-align: center;
}

.payment-header-cta {
    display: none;
}

html.payment-mode-boot .payment-header-cta,
body.payment-mode .payment-header-cta {
    min-width: 210px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #c9ac71;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 22px rgba(201, 172, 113, 0.3);
}

html.payment-mode-boot .payment-header-cta:hover,
body.payment-mode .payment-header-cta:hover {
    background: #b5985d;
}

.payment-screen h1,
.payment-screen h2 {
    font-family: 'Lato', sans-serif;
    color: #15263b;
    letter-spacing: 0;
}

.payment-hero {
    max-width: 1120px;
    margin: 34px auto 28px;
    padding: 0 24px;
}

.payment-hero h1 {
    font-size: 36px;
    line-height: 1.18;
    font-weight: 900;
    margin: 0 0 12px;
}

.payment-hero h1 span {
    display: none;
}

.payment-hero p {
    margin: 0;
    color: #667085;
    font-size: 19px;
    line-height: 1.35;
}

.payment-hero p span {
    color: #9b4de3;
}

.payment-preview-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: center;
    align-items: start;
    gap: 14px;
    margin-top: 34px;
    max-width: 915px;
    margin-left: auto;
    margin-right: auto;
}

.payment-open-preview,
.payment-locked-preview,
.payment-loading-tile,
.payment-unlock-all-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
}

.payment-open-preview {
    border: 1px solid #dfe3ea;
    padding: 0;
    background: #fff;
    cursor: zoom-in;
    box-shadow: 0 8px 22px rgba(21, 38, 59, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-open-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(21, 38, 59, 0.16);
}

.payment-open-preview img,
.payment-locked-preview {
    position: relative;
}

.payment-open-preview img,
.payment-locked-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.payment-locked-preview {
    background: #1f2937;
    box-shadow: 0 6px 16px rgba(21, 38, 59, 0.12);
    cursor: pointer;
}

.payment-locked-preview img {
    filter: blur(11px) brightness(0.72);
    transform: scale(1.08);
    opacity: 0.84;
}

.payment-preview-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: #fff;
    background: rgba(12, 15, 19, 0.56);
    font-size: 14px;
    line-height: 1.28;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.payment-preview-cover i {
    font-size: 44px;
}

.payment-preview-cover strong {
    max-width: 150px;
    font-weight: 900;
}

.payment-unlock-all-card {
    border: 2px solid #a855f7;
    background: linear-gradient(135deg, #f7edff 0%, #fff 72%);
    color: #a855f7;
    box-shadow: 0 10px 24px rgba(168, 85, 247, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px;
    cursor: pointer;
}

.payment-unlock-all-card > i {
    font-size: 48px;
}

.payment-unlock-all-card strong {
    max-width: 128px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
}

.payment-unlock-all-card span {
    font-size: 24px;
    line-height: 1;
}

.payment-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
}

.payment-preview-modal.is-open {
    display: flex;
}

.payment-preview-modal-card {
    position: relative;
    width: min(92vw, 760px);
    max-height: 88vh;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.payment-preview-modal-card img {
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    background: #0f172a;
}

.payment-preview-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.payment-loading-tile {
    border: 1px dashed #d0d5dd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c7d2;
    font-size: 40px;
}

.payment-loading-tile i {
    animation: paymentSpin 1.5s linear infinite;
}

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

.payment-plans-section {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.payment-plans-section h2,
.payment-example-section h2,
.payment-highlights h2,
.payment-testimonials h2,
.payment-faq h2,
.payment-guarantee h2,
.payment-data-control h2 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 24px;
}

.payment-plans {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-plans-repeat {
    margin-bottom: 76px;
}

.payment-plans-repeat h2 {
    font-size: 37px;
    margin-bottom: 26px;
}

.payment-plan-perks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-bottom: 38px;
    color: #101828;
    font-size: 18px;
    font-weight: 700;
}

.payment-plan-perks span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.payment-plan-perks i {
    color: #9b4de3;
    font-size: 25px;
}

.payment-plan {
    position: relative;
    width: 100%;
    min-height: 56px;
    border: 1px solid #e0e4eb;
    border-radius: 15px;
    background: #fff;
    color: #101828;
    cursor: pointer;
    display: grid;
    grid-template-columns: 24px auto auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    text-align: left;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.payment-plan:hover {
    border-color: #b77bff;
}

.payment-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #7b8495;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.payment-price {
    grid-column: 4;
    justify-self: end;
    font-size: 21px;
    font-weight: 900;
    color: #101828;
}

.payment-price del {
    color: #9ca3af;
    font-weight: 500;
    margin-right: 7px;
}

.payment-discount {
    color: #ec4899;
    background: #fce7f3;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 800;
}

.payment-plan.is-selected {
    border-color: #ff5db1;
    background: #fff3f9;
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.12);
}

.payment-plan.is-selected .payment-radio {
    border-color: #ec4899;
    background: #ec4899;
}

.payment-plan.is-featured {
    grid-template-rows: auto auto;
    min-height: 158px;
    padding-top: 25px;
}

.payment-plan.is-featured:not(.is-selected) {
    min-height: 56px;
    padding-top: 13px;
}

.payment-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #050505;
    color: #fff;
    border-radius: 999px;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.payment-plan-details {
    display: none;
    grid-column: 1 / -1;
    border-top: 3px solid rgba(236, 72, 153, 0.34);
    margin-top: 7px;
    padding-top: 9px;
    text-align: center;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.72;
}

.payment-plan.is-selected .payment-plan-details {
    display: block;
    animation: paymentPlanDetailsOpen 0.18s ease both;
}

@keyframes paymentPlanDetailsOpen {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-plan-details span {
    color: #ec4899;
    font-weight: 800;
}

.payment-example-section,
.payment-highlights,
.payment-testimonials,
.payment-faq,
.payment-guarantee,
.payment-data-control {
    margin: 0 auto 68px;
}

.payment-example-card {
    max-width: 840px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 16px 18px;
    text-align: left;
    background: #fff;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.06);
}

.payment-example-header {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 6px 18px;
}

.payment-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #9b9b9b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.payment-example-header strong {
    display: block;
    color: #101828;
    font-size: 18px;
    margin-bottom: 6px;
}

.payment-example-header p {
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.4;
}

.payment-stars {
    color: #9b4de3;
    font-size: 18px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.payment-before-after {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 14px;
    height: 420px;
    background: #fff;
    border-top: 1px solid #f0f2f5;
    border-radius: 10px;
    overflow: hidden;
}

.payment-before,
.payment-after {
    position: relative;
    overflow: hidden;
}

.payment-before span,
.payment-after span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    background: #fff;
    color: #9b4de3;
    padding: 10px 10px;
    font-size: 18px;
    font-weight: 600;
}

.payment-before img,
.payment-after-main,
.payment-after-side {
    width: 100%;
    object-fit: cover;
    display: block;
}

.payment-after-main,
.payment-after-side {
    height: 100%;
}

.payment-before img {
    position: absolute;
    top: 40px;
    left: 0;
    height: 196px;
    object-position: center top;
    transform: scale(1.1);
    transform-origin: center top;
}

.payment-after-carousel {
    position: absolute;
    inset: 40px 0 0;
    background: #fff;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.payment-after-carousel.is-dragging {
    cursor: grabbing;
}

.payment-after-track {
    display: flex;
    align-items: stretch;
    gap: var(--payment-slide-gap, 2px);
    height: 100%;
    will-change: transform;
}

.payment-after-track.is-animating {
    transition: transform 0.42s cubic-bezier(0.22, 0.75, 0.22, 1);
}

.payment-after-carousel.is-dragging .payment-after-track {
    transition: none;
}

.payment-after-slide {
    flex: 0 0 var(--payment-slide-width, 64%);
    width: var(--payment-slide-width, 64%);
    height: 100%;
    min-width: 0;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
    overflow: hidden;
    pointer-events: none;
}

.payment-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: #9b4de3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transform: translateY(-50%);
    box-shadow: 0 14px 24px rgba(155, 77, 227, 0.28);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.payment-carousel-arrow:hover {
    background: #8738d4;
    box-shadow: 0 18px 30px rgba(135, 56, 212, 0.34);
}

.payment-carousel-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.payment-carousel-prev {
    left: 92px;
}

.payment-carousel-next {
    right: 92px;
}

.payment-before em {
    position: absolute;
    left: 0;
    right: 0;
    top: 236px;
    z-index: 2;
    background: linear-gradient(90deg, #f1d5b4, #c8adef);
    color: #101828;
    padding: 8px;
    font-style: normal;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
}

.payment-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 48px;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
}

.payment-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
}

.payment-feature i,
.payment-guarantee i,
.payment-data-control > i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f1e7ff;
    color: #9b4de3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.payment-feature strong {
    display: block;
    color: #101828;
    font-size: 19px;
    margin-bottom: 6px;
}

.payment-feature span {
    color: #667085;
    font-size: 17px;
    line-height: 1.35;
}

.payment-testimonials > p {
    color: #667085;
    font-size: 19px;
    line-height: 1.45;
    max-width: 900px;
    margin: -12px auto 34px;
}

.payment-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    text-align: left;
}

.payment-testimonial-grid article {
    min-height: 210px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 1px 8px rgba(16, 24, 40, 0.04);
}

.payment-testimonial-grid article div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.payment-testimonial-grid strong {
    color: #101828;
    font-size: 18px;
}

.payment-testimonial-grid span {
    color: #9b4de3;
    white-space: nowrap;
}

.payment-testimonial-grid p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.45;
}

.payment-testimonials small {
    display: block;
    color: #667085;
    margin-top: 28px;
}

.payment-faq {
    max-width: 1020px;
    margin-bottom: 54px;
}

.payment-faq details {
    border: 1px solid #e1e5eb;
    border-radius: 16px;
    background: #fff;
    margin-bottom: 14px;
    text-align: left;
    overflow: hidden;
}

.payment-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    color: #101828;
    font-size: 19px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.payment-faq summary::-webkit-details-marker {
    display: none;
}

.payment-faq summary::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-weight: 400;
}

.payment-faq details[open] summary::after {
    content: "\F286";
}

.payment-faq details p {
    margin: 0;
    padding: 0 28px 22px;
    color: #667085;
    font-size: 16px;
    line-height: 1.55;
}

.payment-faq details[open] p {
    animation: paymentFaqOpen 0.18s ease both;
}

.payment-faq details.is-closing p {
    animation: paymentFaqClose 0.18s ease both;
}

@keyframes paymentFaqOpen {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes paymentFaqClose {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-4px);
    }
}

.payment-guarantee,
.payment-data-control {
    background: #f8f8f9;
    border-radius: 18px;
    max-width: 1020px;
    min-height: 245px;
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-guarantee i,
.payment-data-control > i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f0e5ff;
    color: #9b4de3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 24px;
}

.payment-guarantee h2,
.payment-data-control h2 {
    font-size: 29px;
    line-height: 1.18;
    margin-bottom: 22px;
}

.payment-data-control > i {
    background: #fee2e2;
    color: #dc2626;
}

.payment-guarantee p,
.payment-data-control p {
    max-width: 840px;
    margin: 0 auto;
    color: #667085;
    font-size: 19px;
    line-height: 1.45;
}

.payment-data-control button {
    margin-top: 28px;
    border: 1px solid #d9dce3;
    border-radius: 8px;
    background: #fff;
    color: #e11d1d;
    padding: 14px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.payment-data-control button i {
    margin-right: 10px;
}

.payment-data-control button:hover {
    background: #e11d1d;
    border-color: #e11d1d;
    color: #fff;
}

.payment-delete-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
}

.payment-delete-modal.is-open {
    display: flex;
}

.payment-delete-modal-card {
    width: min(92vw, 640px);
    border-radius: 10px;
    background: #fff;
    padding: 32px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.payment-delete-modal-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.payment-delete-modal-title i {
    color: #ef2424;
    font-size: 25px;
}

.payment-delete-modal-title h2 {
    margin: 0;
    color: #2a2f3a;
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 900;
}

.payment-delete-modal-card p {
    margin: 0;
    color: #768194;
    font-size: 19px;
    line-height: 1.42;
}

.payment-delete-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.payment-delete-modal-actions button {
    min-width: 100px;
    min-height: 46px;
    border-radius: 8px;
    padding: 0 20px;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.payment-delete-cancel {
    border: 1px solid #e1e5eb;
    background: #fff;
    color: #2a2f3a;
}

.payment-delete-cancel:hover {
    background: #f8fafc;
}

.payment-delete-confirm {
    border: 1px solid #e11d1d;
    background: #e11d1d;
    color: #fff;
}

.payment-delete-confirm:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.payment-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 1320;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(10px);
}

.payment-demo-modal.is-open {
    display: flex;
}

.payment-demo-modal-card {
    position: relative;
    width: min(92vw, 500px);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 18px;
    background: #fff;
    padding: 30px;
    text-align: left;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.payment-demo-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #475467;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.payment-demo-close:hover {
    background: #e5e7eb;
    color: #101828;
}

.payment-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #f7f0df;
    color: #a98542;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.payment-demo-modal-card h2 {
    margin: 0 42px 8px 0;
    color: #101828;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
}

.payment-demo-copy {
    margin: 0 0 20px;
    color: #667085;
    font-size: 16px;
    line-height: 1.45;
}

.payment-demo-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid #f2d6e7;
    border-radius: 14px;
    background: #fff6fb;
    padding: 16px;
    margin-bottom: 18px;
}

.payment-demo-summary span,
.payment-demo-summary strong {
    color: #101828;
    font-size: 18px;
    font-weight: 900;
}

.payment-demo-summary small {
    display: block;
    color: #667085;
    font-size: 13px;
    margin-top: 4px;
}

.payment-demo-field {
    display: block;
    margin-bottom: 12px;
}

.payment-demo-field span {
    display: block;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
}

.payment-demo-field input,
.payment-demo-card-field {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    background: #fff;
    color: #101828;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.payment-demo-field input {
    padding: 0 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.payment-demo-field input:focus {
    border-color: #c9ac71;
    box-shadow: 0 0 0 4px rgba(201, 172, 113, 0.16);
}

.payment-demo-card-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    margin-bottom: 18px;
}

.payment-demo-card-field i {
    color: #9b4de3;
    font-size: 22px;
}

.payment-demo-card-field span {
    flex: 1;
    font-weight: 800;
}

.payment-demo-card-field small {
    color: #667085;
    font-size: 13px;
    white-space: nowrap;
}

.payment-demo-submit {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: #c9ac71;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(201, 172, 113, 0.28);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.payment-demo-submit:hover {
    background: #b5985d;
    box-shadow: 0 20px 40px rgba(181, 152, 93, 0.32);
}

.payment-demo-submit:active {
    transform: translateY(1px);
}

.payment-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    border-top: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    padding: 22px 20px;
}

.payment-sticky-cta .pill-next-btn {
    width: min(560px, 100%);
    margin: 0 auto;
    height: 70px;
    border-radius: 999px;
    background: #c9ac71;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 34px rgba(201, 172, 113, 0.3);
}

.payment-sticky-cta .pill-next-btn:not(:disabled):hover {
    background: #b5985d;
    box-shadow: 0 22px 40px rgba(181, 152, 93, 0.34);
}

body[data-theme="dark"] .payment-screen h1,
body[data-theme="dark"] .payment-screen h2,
body[data-theme="dark"] .payment-plan,
body[data-theme="dark"] .payment-price,
body[data-theme="dark"] .payment-example-header strong,
body[data-theme="dark"] .payment-feature strong,
body[data-theme="dark"] .payment-testimonial-grid strong,
body[data-theme="dark"] .payment-faq summary {
    color: #f9fafb;
}

body[data-theme="dark"] .payment-plan,
body[data-theme="dark"] .payment-example-card,
body[data-theme="dark"] .payment-testimonial-grid article,
body[data-theme="dark"] .payment-faq details {
    background: #111827;
    border-color: #374151;
}

body[data-theme="dark"] .payment-plan.is-selected {
    background: rgba(236, 72, 153, 0.12);
}

body[data-theme="dark"] .payment-guarantee,
body[data-theme="dark"] .payment-data-control {
    background: #111827;
}

@media (max-width: 900px) {
    html.payment-mode-boot .payment-header-cta,
    body.payment-mode .payment-header-cta {
        margin-right: 0;
        min-width: 180px;
        height: 44px;
        font-size: 15px;
    }

    .payment-hero h1 {
        font-size: 34px;
    }

    .payment-hero p {
        font-size: 19px;
    }

    .payment-feature-grid,
    .payment-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .payment-preview-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 600px;
    }

    .payment-before-after {
        grid-template-columns: 132px minmax(0, 1fr);
        height: 380px;
    }

    .payment-carousel-arrow {
        width: 52px;
        height: 52px;
        font-size: 27px;
    }

    .payment-carousel-prev {
        left: 54px;
    }

    .payment-carousel-next {
        right: 54px;
    }
}

@media (max-width: 640px) {
    .payment-screen {
        padding-bottom: 120px;
    }

    html.payment-mode-boot .ai-studio-header .container,
    body.payment-mode .ai-studio-header .container {
        width: min(100%, calc(100% - 24px));
    }

    html.payment-mode-boot .ai-studio-header .site-logo,
    body.payment-mode .ai-studio-header .site-logo {
        font-size: 25px;
        letter-spacing: -0.02em;
    }

    html.payment-mode-boot .ai-studio-header .site-slogan,
    body.payment-mode .ai-studio-header .site-slogan {
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    html.payment-mode-boot .payment-header-cta,
    body.payment-mode .payment-header-cta {
        min-width: 150px;
        height: 38px;
        font-size: 13px;
        margin-right: 0;
    }

    .payment-hero h1,
    .payment-plans-section h2,
    .payment-example-section h2,
    .payment-highlights h2,
    .payment-testimonials h2,
    .payment-faq h2,
    .payment-guarantee h2,
    .payment-data-control h2 {
        font-size: 28px;
    }

    .payment-hero h1 {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        font-size: 42px;
        line-height: 1.08;
    }

    .payment-hero h1 span {
        display: inline;
    }

    .payment-hero p {
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        font-size: 22px;
        line-height: 1.55;
    }

    .payment-preview-row {
        display: flex;
        justify-content: flex-start;
        gap: 16px;
        contain: layout paint;
        max-width: none;
        width: calc(100% + 16px);
        margin-left: 16px;
        margin-right: -20px;
        padding: 0 24px 10px 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .payment-preview-row::-webkit-scrollbar {
        display: none;
    }

    .payment-open-preview,
    .payment-locked-preview,
    .payment-loading-tile,
    .payment-unlock-all-card {
        flex: 0 0 min(40vw, 184px);
        width: min(40vw, 184px);
        scroll-snap-align: start;
    }

    .payment-preview-cover {
        font-size: 13px;
        padding: 12px;
    }

    .payment-preview-cover i {
        font-size: 40px;
    }

    .payment-unlock-all-card > i {
        font-size: 34px;
    }

    .payment-unlock-all-card strong {
        font-size: 13px;
    }

    .payment-plan {
        grid-template-columns: 24px minmax(80px, auto) auto minmax(0, 1fr);
        gap: 8px;
        min-height: 74px;
        padding: 16px 20px;
        border-radius: 17px;
    }

    .payment-plans-repeat h2 {
        font-size: 30px;
    }

    .payment-plan-perks {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
        font-size: 16px;
    }

    .payment-price {
        grid-column: 4;
        justify-self: end;
        text-align: right;
        font-size: 19px;
        line-height: 1.2;
        white-space: nowrap;
        max-width: 100%;
    }

    .payment-plan[data-plan="10"] .payment-price {
        transform: translateX(6px);
    }

    .payment-price del {
        display: inline-block;
        margin-right: 6px;
        font-size: 17px;
    }

    .payment-discount {
        grid-column: 3;
        justify-self: start;
        width: max-content;
        margin-top: 0;
        padding: 4px 7px;
        font-size: 12px;
    }

    .payment-plan strong {
        font-size: 16px;
        white-space: nowrap;
    }

    .payment-plan.is-featured {
        grid-template-columns: 24px minmax(80px, auto) auto minmax(0, 1fr);
        min-height: 226px;
        padding: 24px 20px 20px;
    }

    .payment-plan.is-featured:not(.is-selected) {
        min-height: 74px;
        padding: 16px 20px;
    }

    .payment-plan.is-featured .payment-radio {
        grid-column: 1;
        grid-row: 1;
    }

    .payment-plan.is-featured strong {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    .payment-plan.is-featured .payment-discount {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        margin-top: 0;
    }

    .payment-plan.is-featured .payment-price {
        grid-column: 4;
        grid-row: 1;
        margin-top: 0;
    }

    .payment-plan-details {
        grid-column: 1 / -1;
        margin-top: 16px;
        padding-top: 16px;
        text-align: left;
        font-size: 15px;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    .payment-example-header {
        grid-template-columns: 48px 1fr auto;
        gap: 12px;
        padding: 18px 14px 16px;
    }

    .payment-stars {
        grid-column: 3;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .payment-avatar {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .payment-example-header strong {
        font-size: 16px;
    }

    .payment-example-header p {
        font-size: 14px;
        line-height: 1.35;
    }

    .payment-before-after {
        grid-template-columns: 132px minmax(0, 1fr);
        column-gap: 12px;
        height: 278px;
    }

    .payment-before,
    .payment-after {
        height: 100%;
    }

    .payment-before img {
        top: 38px;
        height: 154px;
    }

    .payment-before em {
        top: 192px;
        font-size: 14px;
        padding: 8px 6px;
    }

    .payment-before span,
    .payment-after span {
        padding: 8px 6px;
        font-size: 18px;
    }

    .payment-after-carousel {
        inset: 38px 0 0;
    }

    .payment-carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .payment-carousel-prev {
        left: 10px;
    }

    .payment-carousel-next {
        right: 10px;
    }

    .payment-feature {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .payment-feature i,
    .payment-guarantee i,
    .payment-data-control > i {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .payment-testimonial-grid article {
        min-height: auto;
    }

    .payment-faq summary {
        padding: 18px;
        font-size: 17px;
    }

    .payment-faq details p {
        padding: 0 18px 18px;
    }

    .payment-guarantee,
    .payment-data-control {
        min-height: 214px;
        padding: 40px 22px;
    }

    .payment-guarantee h2,
    .payment-data-control h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .payment-guarantee p,
    .payment-data-control p {
        font-size: 16px;
        line-height: 1.5;
    }

    .payment-data-control button {
        margin-top: 24px;
        padding: 13px 18px;
        font-size: 15px;
    }

    .payment-sticky-cta .pill-next-btn {
        height: 58px;
        font-size: 18px;
    }
}
