/* Joint Pain Quiz CSS - Japanese Aomori Theme */

:root {
    /* Brand Colors */
    --primary: #DC2626;      /* Japanese Crimson Red (representing inflammation/hot joints) */
    --primary-hover: #B91C1C;
    --secondary: #FEE2E2;    /* Soft Red/Pink background accent */
    --accent: #10B981;       /* Emerald Green (representing herbal cure, restoration, relief) */
    --accent-hover: #059669;
    --accent-light: #D1FAE5; /* Soft Green background */

    /* Neutral Colors */
    --bg-color: #F9FAFB;     /* Clean Off-white */
    --card-bg: #FFFFFF;
    --text-main: #111827;    /* Charcoal */
    --text-muted: #4B5563;
    --border-color: #E5E7EB;  /* Light Gray */
    --radius-lg: 24px;
    --radius-md: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-width: 500px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 100vh !important;
    width: 100% !important;
    background-color: var(--bg-color) !important;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
    margin: 0;
    line-height: 1.2;
}

/* Visibility classes */
.hidden,
.force-hide {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* Target VTurb directly if it's outside #app */
body.quiz-active>vturb-smartplayer,
body.quiz-active>[id*="vturb"],
body.quiz-active>[class*="smartplayer"] {
    display: none !important;
}

#app {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: var(--container-width) !important;
    margin: 0 auto !important;
    min-height: 100vh !important;
    position: relative !important;
    flex-shrink: 0 !important;
    padding: 20px;
}

#app>* {
    width: 100% !important;
}

/* Header & Progress Bar */
#quiz-header {
    margin-bottom: 20px;
    width: 100%;
}

.header-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 5px;
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.score-badge {
    background: var(--secondary);
    border: 1px solid var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    gap: 5px;
    transition: background-color 0.6s ease, border-color 0.6s ease, color 0.6s ease;
}

.progress-container {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Hero Section (VSL 1) */
#hero-section {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h1 span.highlight {
    color: var(--primary);
}

/* Quiz Container */
#quiz-container {
    width: 100%;
    margin-top: 10px;
}

.step-container {
    width: 100%;
}

.step-container h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.25;
}

.step-container .subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Options */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.option-btn {
    width: 100%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.option-btn:hover {
    border-color: var(--primary);
    background-color: var(--secondary);
    transform: translateY(-1px);
}

.option-btn .icon {
    font-size: 1.3rem;
    margin-right: 12px;
    display: inline-block;
}

.option-btn .arrow {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 300;
}

.option-btn:hover .arrow {
    color: var(--primary);
    transform: translateX(2px);
    transition: transform 0.2s ease;
}

/* Grid Options (for Body/Pain spots) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.grid-option {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 10px;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.grid-option img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.grid-option span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.grid-option:hover {
    border-color: var(--primary);
    background-color: var(--secondary);
    transform: translateY(-2px);
}

/* Multi-select styling */
.multi-option .checkbox-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.multi-option.selected {
    border-color: var(--primary);
    background-color: var(--secondary);
}

.multi-option.selected .checkbox-indicator {
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Inputs & Sliders */
.input-container input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s;
    background-color: #FFF;
}

.slider-container {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.slider-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.slider-descriptor {
    font-size: 1.15rem;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
    min-height: 1.5em;
    transition: color 0.3s ease;
}

.slider-container input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 12px;
    border-radius: 10px;
    background: var(--border-color);
    outline: none;
    margin-bottom: 10px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--slider-handle-color, var(--primary));
    cursor: pointer;
    box-shadow: 0 3px 8px var(--slider-shadow-color, rgba(220, 38, 38, 0.4));
    border: 3px solid #FFF;
    transition: transform 0.1s, background-color 0.3s ease, box-shadow 0.3s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0 5px;
}

/* Buttons */
.cta-button {
    width: 100%;
    background: var(--primary);
    color: #FFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-align: center;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.text-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
    width: 100%;
    padding: 5px;
}

/* Interstitial (Educational/News Proof) */
.interstitial-content h2 {
    color: var(--text-main);
    margin-bottom: 15px;
}

.education-content {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.education-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.edu-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Loading Overlay */
#loading-screen {
    padding: 40px 10px;
    text-align: center;
    width: 100%;
}

.analysis-header {
    margin-bottom: 25px;
    text-align: center;
}

.logo-small {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

#loading-screen h2 {
    font-size: 1.6rem;
    font-weight: 900;
}

.loading-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

#loading-text {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 20px;
    min-height: 2.4em;
    font-weight: 700;
}

.loading-progress-container {
    width: 100%;
    height: 12px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

#loading-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    transition: width 0.1s linear;
}

#loading-testimonials {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    min-height: 200px;
}

.testimonial-slide {
    animation: fadeIn 0.4s ease-out;
}

.testimonial-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-slide p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto 10px;
}

.testimonial-slide .user-name {
    font-weight: 800;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* Analysis Page */
#analysis-page {
    padding: 10px 0;
}

.validation-score-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
}

.stats-row {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

.stat-card {
    flex: 1;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.stat-card h3 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stat-card .stat-value {
    font-size: 1.6rem;
    font-weight: 900;
}

.stat-card.red .stat-value {
    color: var(--primary);
}

.stat-card.green .stat-value {
    color: var(--accent);
}

.metrics-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.metric-col {
    flex: 1;
    text-align: left;
}

.metric-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.metric-status {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.metric-status.bad {
    color: var(--primary);
}

.metric-status.good {
    color: var(--accent);
}

.metric-bars {
    display: flex;
    gap: 4px;
}

.metric-bars .pill {
    flex: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 10px;
}

.metric-bars .pill.filled {
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
}

.metric-bars .pill.filled.animate {
    transform: scaleX(1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.metric-bars .pill.green-filled {
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
}

.metric-bars .pill.green-filled.animate {
    transform: scaleX(1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.analysis-img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* VSL Revelation Page */
#vsl-page {
    padding: 10px 0;
}

#vsl-page h1 {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#vsl-page h1 span {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-top: 8px;
    text-transform: none;
}

#vsl-result-container {
    width: 100%;
    margin-bottom: 25px;
}

/* Sales Page */
#sales-page {
    padding: 10px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sales-header {
    text-align: center;
    background: #FFF;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.countdown-banner {
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sales-header h1 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
}

.sales-header h1 span.success-name {
    color: var(--accent);
}

.sales-badge-info {
    background-color: var(--accent-light);
    border: 1px solid var(--accent);
    color: var(--accent-hover);
    padding: 15px;
    border-radius: 12px;
    margin: 15px auto;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
}

.sales-header .subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 15px;
}

.card {
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.green-card {
    background: var(--accent-light);
    border: 1px solid var(--accent);
}

.yellow-card {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #064E3B; /* Dark Green Text */
    line-height: 1.4;
}

.checklist .check-box {
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bonus-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #92400E;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-row {
    border-bottom: 1px dashed #FDE68A;
    padding-bottom: 10px;
}

.bonus-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bonus-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #B45309;
    text-transform: uppercase;
}

.bonus-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #78350F;
    margin: 3px 0;
}

.bonus-value {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.price-card {
    background: white;
    text-align: center;
    border: 2px solid var(--border-color);
}

.plan-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin: 15px 0;
}

.old-price {
    font-size: 1rem;
    color: var(--primary);
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.current-price span {
    font-size: 1.4rem;
    vertical-align: middle;
}

.payment-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.green-btn {
    background: var(--accent);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.green-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.green-btn:active {
    transform: translateY(0);
}

.pulse-button {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.safe-checkout {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 600;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-points {
    position: fixed;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.3rem;
    pointer-events: none;
    z-index: 1000;
    animation: floatUpAndFade 1.2s ease-out forwards;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes floatUpAndFade {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-120px) scale(1);
        opacity: 0;
    }
}

.toast-feedback {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-main);
    color: #FFF;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    pointer-events: none;
}

.toast-feedback.show {
    transform: translateX(-50%) translateY(0);
}

/* Pulse animation for approval button */
.pulse-button-primary {
    animation: pulse-primary 2s infinite;
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Revamped Sales Page Premium Styles */
.module-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media(min-width: 600px) {
    .module-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.module-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.module-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: inline-block;
}

.module-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    margin-top: 0;
}

.module-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Creator Profile Card */
.creator-profile-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin: 25px 0;
}

.creator-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media(min-width: 600px) {
    .creator-flex {
        flex-direction: row;
        text-align: left;
    }
}

.creator-img-wrapper {
    position: relative;
    max-width: 160px;
    width: 100%;
    flex-shrink: 0;
}

.creator-img-wrapper img {
    width: 100%;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.creator-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.creator-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 5px 0;
}

.creator-text .creator-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.creator-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Testimonials Revamp */
.testimonials-section {
    margin: 25px 0;
}

.testimonial-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
}

@media(min-width: 600px) {
    .testimonial-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-item-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: left;
}

.testimonial-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-user-row img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.testimonial-user-info h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 2px 0;
}

.testimonial-user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-text-bubble {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

/* Premium FAQ Accordion */
.premium-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.faq-details {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
    text-align: left;
}

.faq-details[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-summary {
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

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

.faq-summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 16px 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
}

/* Gender Grid Layout - 9:16 Aspect Ratio */
.gender-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.gender-option {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    padding: 0;
}

.gender-option img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
}

.gender-option span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin: auto 0;
    padding: 10px 5px;
    display: block;
}

.gender-option:hover {
    border-color: var(--primary);
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

/* Custom pulse animation for countdown pill */
@keyframes pulse-countdown {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* WhatsApp Carousel Styles */
.wa-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    background: transparent;
    max-width: 400px;
    margin: 0 auto;
}

.wa-carousel-track {
    display: flex;
    width: 300%; /* 3 slides */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-carousel-slide {
    width: 33.333%;
    box-sizing: border-box;
}

.wa-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.wa-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5E7EB;
    transition: all 0.3s ease;
}

.wa-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

