*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #FF4D6D;
    --primary-light: #FF6F91;
    --primary-soft: #FF8FA3;
    --primary-pale: #FFCCD5;
    --primary-gradient: linear-gradient(135deg, #FF4D6D 0%, #FF6F91 50%, #FF8FA3 100%);
    --white: #ffffff;
    --bg-pink: #FFF5F7;
    --text-dark: #2D1B2A;
    --text-soft: #5A3F55;
    --text-muted: #8A7185;
    --shadow-sm: 0 4px 20px rgba(255, 77, 109, 0.10);
    --shadow-md: 0 8px 40px rgba(255, 77, 109, 0.15);
    --shadow-lg: 0 16px 60px rgba(255, 77, 109, 0.20);
    --radius: 24px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    --max-width: 1200px;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-pink);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
                   UTILITY
                   ============================================================ */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 72px 0;
}

.section-padding-sm {
    padding: 48px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.badge {
    display: inline-block;
    background: rgba(255, 77, 109, 0.10);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 40px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 4px;
    margin: 20px auto 28px;
}

/* ============================================================
                   BUTTONS
                   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(255, 77, 109, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 44px rgba(255, 77, 109, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 77, 109, 0.25);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-soft {
    background: rgba(255, 77, 109, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 77, 109, 0.15);
}

.btn-soft:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================================
                   HEADER
                   ============================================================ */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 77, 109, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(255, 77, 109, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.logo span {
    color: var(--text-dark);
}

.logo .heart {
    font-size: 1.1rem;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 24px;
    font-size: 0.92rem;
    font-weight: 500;
}

.nav-desktop a {
    color: var(--text-soft);
    transition: color 0.25s;
    position: relative;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.nav-cta .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    padding: 80px 28px 40px;
    transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.06);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-soft);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 77, 109, 0.06);
    transition: color 0.25s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav .btn {
    margin-top: 8px;
    align-self: flex-start;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 820px) {
    .nav-desktop {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav,
    .mobile-overlay {
        display: none;
    }
}

/* ============================================================
                   HERO
                   ============================================================ */
.hero {
    padding: 40px 0 56px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 80% 20%, rgba(255, 77, 109, 0.04) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.hero-content {
    order: 2;
}

.hero-visual {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 77, 109, 0.10);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.hero h1 .accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-soft);
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.4;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-buttons .btn {
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual-inner {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.18) 0%, rgba(255, 143, 163, 0.06) 60%, transparent 80%);
    width: 100%;
    height: 100%;
    animation: pulseAura 6s ease-in-out infinite;
}

@keyframes pulseAura {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.10);
        opacity: 1;
    }
}

.hero-heart {
    position: relative;
    z-index: 2;
    font-size: clamp(5rem, 18vw, 9rem);
    line-height: 1;
    animation: floatHeart 5s ease-in-out infinite;
    filter: drop-shadow(0 8px 40px rgba(255, 77, 109, 0.25));
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-14px) scale(1.04);
    }
}

.stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    font-size: 1.2rem;
    animation: twinkle 3.6s ease-in-out infinite;
    opacity: 0.5;
}

.star:nth-child(1) {
    top: 8%;
    left: 6%;
    animation-delay: 0.2s;
    font-size: 1.6rem;
}

.star:nth-child(2) {
    top: 14%;
    right: 10%;
    animation-delay: 0.9s;
    font-size: 1rem;
}

.star:nth-child(3) {
    bottom: 18%;
    left: 4%;
    animation-delay: 1.5s;
    font-size: 1.4rem;
}

.star:nth-child(4) {
    bottom: 24%;
    right: 4%;
    animation-delay: 0.6s;
    font-size: 1.8rem;
}

.star:nth-child(5) {
    top: 42%;
    left: 2%;
    animation-delay: 1.2s;
    font-size: 0.9rem;
}

.star:nth-child(6) {
    top: 50%;
    right: 2%;
    animation-delay: 1.8s;
    font-size: 1.1rem;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.couple-silhouette {
    position: absolute;
    bottom: 6%;
    right: 4%;
    z-index: 3;
    font-size: 2.6rem;
    opacity: 0.20;
    transform: rotate(-4deg);
}

.hero-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 77, 109, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 720px) {
    .hero {
        padding: 56px 0 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-glow {
        display: none;
    }
}

/* ============================================================
                   QUICK INFO CARDS
                   ============================================================ */
.quick-info {
    padding: 0 0 48px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.quick-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 77, 109, 0.06);
    transition: var(--transition);
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pale);
}

.quick-card .icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 4px;
}

.quick-card .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (min-width: 560px) {
    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================
                   ARTICLE CONTENT
                   ============================================================ */
.article-section {
    background: var(--white);
}

.article-content {
    max-width: 820px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 10px;
}

.article-content p {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 18px;
}

.article-content .lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Quote card */
.quote-card {
    background: var(--bg-pink);
    border-radius: var(--radius-sm);
    padding: 28px 32px;
    margin: 28px 0;
    border-left: 4px solid var(--primary);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.quote-card::before {
    content: '"';
    font-size: 2.6rem;
    color: var(--primary-pale);
    display: block;
    line-height: 0.8;
}

/* Visual separator */
.visual-sep {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 36px;
}

.visual-sep span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-pale);
    opacity: 0.5;
}

.visual-sep span:nth-child(2) {
    background: var(--primary);
    opacity: 0.8;
    transform: scale(1.2);
}

.visual-sep span:nth-child(3) {
    background: var(--primary-soft);
    opacity: 0.5;
}

/* Timeline */
.routine-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 28px;
}

.routine-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg-pink);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 77, 109, 0.06);
    transition: var(--transition);
}

.routine-step:hover {
    border-color: var(--primary-pale);
    transform: translateX(4px);
}

.routine-step .num {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 44px;
    text-align: center;
    opacity: 0.5;
    line-height: 1.2;
}

.routine-step .step-content {
    flex: 1;
}

.routine-step .step-content strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
}

.routine-step .step-content .desc {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-top: 2px;
}

/* Time-of-day */
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 16px 0 20px;
}

.time-item {
    background: var(--bg-pink);
    border-radius: var(--radius-xs);
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    border: 1px solid rgba(255, 77, 109, 0.06);
}

.time-item .icon {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 4px;
}

@media (max-width: 480px) {
    .time-grid {
        grid-template-columns: 1fr;
    }

    .routine-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .routine-step .num {
        min-width: auto;
    }
}

/* Who cards (inline) */
.who-inline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 16px;
}

.who-inline-card {
    background: var(--bg-pink);
    border-radius: var(--radius-xs);
    padding: 14px 16px;
    text-align: center;
    border: 1px solid rgba(255, 77, 109, 0.06);
    transition: var(--transition);
}

.who-inline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.who-inline-card .icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 2px;
}

.who-inline-card .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 480px) {
    .who-inline-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison table */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 20px 0 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--white);
}

.comparison-table th {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 77, 109, 0.06);
    color: var(--text-soft);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--bg-pink);
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 20px 0 24px;
}

.product-card {
    background: var(--bg-pink);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    border: 1px solid rgba(255, 77, 109, 0.06);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-pale);
}

.product-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 6px;
}

.product-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.5;
}

@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Question cards */
.question-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0 16px;
}

.question-card {
    background: var(--bg-pink);
    border-radius: var(--radius-xs);
    padding: 16px 18px;
    border-left: 3px solid var(--primary-pale);
    font-size: 0.98rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.question-card:hover {
    border-left-color: var(--primary);
    transform: translateX(4px);
}

.question-card .num {
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
}

@media (max-width: 560px) {
    .question-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA within article */
.article-cta {
    background: var(--bg-pink);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    text-align: center;
    margin: 28px 0 12px;
    border: 1px solid rgba(255, 77, 109, 0.06);
}

.article-cta p {
    font-size: 1.05rem;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.article-cta .btn {
    font-size: 1rem;
}

/* ============================================================
                   QUIZ SECTION
                   ============================================================ */
.quiz-section {
    background: var(--bg-pink);
}

.quiz-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 77, 109, 0.06);
}

.quiz-question {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 77, 109, 0.06);
}

.quiz-question:last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
}

.quiz-question .q-text {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quiz-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-soft);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.quiz-options label:hover {
    background: rgba(255, 77, 109, 0.05);
}

.quiz-options input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.quiz-result {
    text-align: center;
    padding: 16px 0 4px;
}

.quiz-result .score {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.quiz-result .score-label {
    font-size: 1.05rem;
    color: var(--text-soft);
}

.quiz-result .result-msg {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 12px 0 18px;
    padding: 14px 20px;
    background: var(--bg-pink);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255, 77, 109, 0.06);
}

.quiz-result .btn-wrap {
    margin-top: 12px;
}

.btn-quiz {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 36px;
    border-radius: 60px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 77, 109, 0.30);
}

.btn-quiz:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 77, 109, 0.40);
}

.quiz-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}

/* ============================================================
                   FAQ
                   ============================================================ */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-pink);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 77, 109, 0.06);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-sans);
    transition: background 0.2s;
    gap: 16px;
}

.faq-question:hover {
    background: rgba(255, 77, 109, 0.04);
}

.faq-question .icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--primary);
}

.faq-item.open .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 20px 20px;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================================
                   GRADIENT CTA SECTION
                   ============================================================ */
.gradient-cta {
    background: var(--primary-gradient);
    padding: 60px 0 52px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gradient-cta::before {
    content: '❤️';
    position: absolute;
    font-size: 16rem;
    opacity: 0.04;
    top: -30%;
    right: -8%;
    transform: rotate(12deg);
    pointer-events: none;
}

.gradient-cta::after {
    content: '✨';
    position: absolute;
    font-size: 12rem;
    opacity: 0.04;
    bottom: -30%;
    left: -6%;
    transform: rotate(-8deg);
    pointer-events: none;
}

.gradient-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.gradient-cta p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 540px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.gradient-cta .btn {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    padding: 16px 44px;
}

.gradient-cta .btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.18);
}

.gradient-cta .footnote {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================================
                   RELATED
                   ============================================================ */
.related-section {
    background: var(--bg-pink);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 24px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 77, 109, 0.06);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pale);
}

.related-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 4px;
}

.related-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.related-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-top: 2px;
}

.related-card .link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.related-card .link:hover {
    text-decoration: underline;
    color: var(--primary-light);
}

@media (max-width: 480px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
                   DISCLAIMERS
                   ============================================================ */
.disclaimer-section {
    background: var(--white);
    padding: 28px 0 16px;
}

.disclaimer-box {
    background: var(--bg-pink);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    border-left: 4px solid var(--primary-pale);
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 12px;
}

.disclaimer-box strong {
    color: var(--text-dark);
}

.disclaimer-box.affiliate {
    border-left-color: var(--primary);
}

/* ============================================================
                   STICKY MOBILE CTA
                   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 16px;
    box-shadow: 0 -4px 30px rgba(255, 77, 109, 0.08);
    z-index: 900;
    display: none;
    border-top: 1px solid rgba(255, 77, 109, 0.06);
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta .label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.2;
}

.sticky-cta .label .highlight {
    color: var(--primary);
    font-weight: 600;
}

.sticky-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 76px;
    }
}

/* ============================================================
                   BACK TO TOP
                   ============================================================ */
.back-top {
    position: fixed;
    bottom: 96px;
    right: 16px;
    z-index: 800;
    background: var(--white);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 109, 0.12);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.back-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 720px) {
    .back-top {
        bottom: 136px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ============================================================
                   REDUCED MOTION
                   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================================
                   FOCUS STATES
                   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* ============================================================
                   RESPONSIVE TWEAKS
                   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 48px 0;
    }

    .section-padding-sm {
        padding: 32px 0;
    }

    .hero {
        padding: 24px 0 32px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .quick-grid {
        gap: 10px;
    }

    .quick-card {
        padding: 14px 10px;
    }

    .quick-card .icon {
        font-size: 1.4rem;
    }

    .quick-card .label {
        font-size: 0.8rem;
    }

    .quiz-container {
        padding: 20px 14px;
    }

    .gradient-cta {
        padding: 44px 0 36px;
    }

    .gradient-cta .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .disclaimer-box {
        padding: 16px 16px;
    }

    .article-content p {
        font-size: 0.98rem;
    }

    .quote-card {
        padding: 20px 18px;
        font-size: 1.05rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .product-card {
        padding: 18px 14px;
    }
}

@media (min-width: 481px) and (max-width: 720px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
