/* ═══════════════════════════════════════════
   CUISIN'HOME — LANDING PAGE
   Premium, minimal, high-converting
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --beige: #d9cebf;
    --beige-light: #d9cebf;
    --cream: #d9cebf;
    --black: #111111;
    --gray: #6e6a64;
    --gray-light: #b5b0a8;
    --white: #ffffff;
    --accent: #8b7355;
    --accent-dark: #6b5840;
    --green: #4a6741;
    --red-soft: #c4675a;

    --font-display: 'Cardo', 'Georgia', serif;
    --font-body: 'Cardo', 'Georgia', serif;
    --font-sig: 'Dancing Script', cursive;

    --shadow-sm: 0 1px 3px rgba(17, 17, 17, .06);
    --shadow-md: 0 4px 16px rgba(17, 17, 17, .08);
    --shadow-lg: 0 8px 32px rgba(17, 17, 17, .1);
    --shadow-xl: 0 16px 48px rgba(17, 17, 17, .12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-variant-numeric: lining-nums;
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── LAYOUT ───────────────────────────────── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 780px;
}

.section {
    padding: 100px 0;
}

/* ── TYPOGRAPHY ───────────────────────────── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 40px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border: none;
    text-align: center;
    line-height: 1.3;
}

.btn-primary {
    background: var(--black);
    color: var(--cream);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-xl {
    padding: 22px 52px;
    font-size: 19px;
    border-radius: var(--radius-lg);
}

.btn-price {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

.btn-price s {
    opacity: 0.5;
    margin-left: 6px;
}

/* ── HEADER ───────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(217, 206, 191, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(17, 17, 17, .05);
    transition: all 0.3s var(--ease);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo-signature {
    font-family: var(--font-sig);
    font-size: 26px;
    color: var(--black);
    font-weight: 600;
}

.header-cta {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
    background: var(--black);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.3px;
}

.header-cta:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────── */
.hero {
    padding: 130px 0 60px;
    background: var(--beige);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--beige));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.45);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s var(--ease) both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero-desc em {
    color: var(--black);
    font-style: italic;
}

.hero-cta-group {
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}



.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 460px;
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 6s var(--ease);
}

.hero-img-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(17, 17, 17, .85);
    backdrop-filter: blur(10px);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.hero-img-badge-num {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.hero-img-badge-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ── SOCIAL BAR ───────────────────────────── */
.social-bar {
    background: var(--black);
    padding: 28px 0;
    position: relative;
    z-index: 2;
}

.social-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.social-stat-num {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.5px;
    line-height: 1;
}

.social-stat-label {
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-divider {
    width: 1px;
    height: 36px;
    background: rgba(248, 246, 242, .15);
}

/* ── PROBLEM SECTION ──────────────────────── */
.section-problem {
    background: var(--beige);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(17, 17, 17, .04);
    transition: all 0.3s var(--ease);
}

.problem-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.problem-x {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 103, 90, .08);
    color: var(--red-soft);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.problem-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.problem-item p strong {
    color: var(--black);
}

.problem-transition {
    font-family: var(--font-body);
    font-size: 18px;
    font-style: italic;
    color: var(--accent);
    text-align: center;
    line-height: 1.6;
}

/* ── SOLUTION SECTION ─────────────────────── */
.section-solution {
    background: var(--beige);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.solution-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.solution-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solution-point {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.solution-point:hover {
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-md);
}

.solution-num {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--beige);
    flex-shrink: 0;
    line-height: 1;
}

.solution-point h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.4;
}

.solution-point p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.solution-point p strong {
    color: var(--black);
}

/* ── COMMENT ÇA MARCHE ───────────────────── */
.section-howto {
    background: var(--beige);
    text-align: center;
}

.howto-visual {
    max-width: 480px;
    margin: 0 auto 40px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

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

.howto-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.howto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
}

.howto-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--black);
    color: var(--cream);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.howto-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* ── OFFER SECTION ────────────────────────── */
.section-offer {
    background: var(--beige);
    padding-bottom: 60px;
}

.offer-card {
    background: var(--black);
    color: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(17, 17, 17, .04);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(227, 216, 201, .06) 0%, transparent 50%);
    pointer-events: none;
}

.offer-items {
    margin-bottom: 36px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(227, 216, 201, .1);
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-main {
    padding: 24px;
    background: rgba(227, 216, 201, 0.08);
    border-radius: var(--radius-md);
    border-bottom: none;
    margin-bottom: 8px;
}

.offer-item-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-item-content {
    flex: 1;
}

.offer-item-content h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
    color: var(--cream);
}

.offer-item-content p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}

.offer-item-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray);
    text-decoration: line-through;
    flex-shrink: 0;
}

.offer-divider {
    height: 1px;
    background: rgba(227, 216, 201, .15);
    margin: 12px 0 16px;
}

.offer-bonus-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.offer-pricing {
    text-align: center;
    padding: 32px 0;
    margin-bottom: 8px;
}

.offer-pricing-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.offer-pricing-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.offer-pricing-original {
    font-family: var(--font-body);
    font-size: 26px;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 700;
}

.offer-pricing-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.offer-pricing-final {
    font-family: var(--font-body);
    font-size: 52px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -1px;
}

.offer-savings {
    display: inline-block;
    background: rgba(141, 165, 133, .15);
    color: #a8c0a0;
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
}

.offer-card .btn-xl {
    width: 100%;
    margin-top: 8px;
    background: var(--cream);
    color: var(--black);
}

.offer-card .btn-xl:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.offer-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 13px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── TESTIMONIALS SECTION ─────────────────── */
.section-testimonials {
    background: var(--beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(17, 17, 17, .04);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #d4a373;
    font-size: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 17, 17, .05);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--accent-dark);
}

.testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

.testimonial-detail {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
}

.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 700;
    margin-top: 32px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ── FAQ SECTION ──────────────────────────── */
.section-faq {
    background: var(--beige);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .04);
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    color: var(--gray);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── FINAL CTA SECTION ────────────────────── */
.section-final {
    background: var(--beige);
    padding: 80px 0 100px;
}

.final-card {
    text-align: center;
    background: var(--black);
    color: var(--cream);
    padding: 64px 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.final-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(227, 216, 201, .06) 0%, transparent 50%);
    pointer-events: none;
}

.final-signature {
    font-family: var(--font-sig);
    font-size: 32px;
    color: var(--beige);
    margin-bottom: 20px;
    position: relative;
}

.final-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.final-desc {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 32px;
    position: relative;
}

.final-card .btn-primary {
    background: var(--cream);
    color: var(--black);
    position: relative;
}

.final-card .btn-primary:hover {
    background: var(--white);
}

.final-faces {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.final-faces-avatars {
    display: flex;
}

.face-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-display);
    margin-left: -8px;
    border: 2px solid var(--black);
}

.face-circle:first-child {
    margin-left: 0;
}

.final-faces-text {
    font-size: 14px;
    color: var(--gray-light);
}

/* ── FOOTER ───────────────────────────────── */
.footer {
    background: var(--black);
    padding: 40px 0;
    border-top: 1px solid rgba(248, 246, 242, .05);
}

.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-sig {
    font-family: var(--font-sig);
    font-size: 24px;
    color: var(--beige);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-copy {
    font-size: 12px;
    color: var(--gray);
    opacity: 0.6;
}

/* ── QUIZ OVERLAY ─────────────────────────── */
.quiz-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, .95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.5s var(--ease);
}

.quiz-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.quiz-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.5s var(--ease-bounce) both;
}

.quiz-signature {
    font-family: var(--font-sig);
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 8px;
}

.quiz-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.quiz-question {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.3;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--white);
    border: 2px solid rgba(17, 17, 17, .06);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black);
    transition: all 0.3s var(--ease);
    text-align: left;
}

.quiz-option:hover {
    border-color: var(--accent);
    background: rgba(139, 115, 85, .04);
    transform: translateX(4px);
}

.quiz-emoji {
    font-size: 22px;
    flex-shrink: 0;
}

/* ── EXIT POPUP ───────────────────────────── */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(17, 17, 17, .5);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.exit-popup.visible {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-bounce);
}

.exit-popup.visible .exit-popup-card {
    transform: translateY(0);
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.exit-close:hover {
    background: rgba(17, 17, 17, .05);
    color: var(--black);
}

.exit-gift {
    font-size: 48px;
    margin-bottom: 16px;
}

.exit-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.exit-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exit-input {
    padding: 14px 20px;
    border: 2px solid rgba(17, 17, 17, .08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
}

.exit-input:focus {
    border-color: var(--accent);
}

.exit-input::placeholder {
    color: var(--gray-light);
}

.exit-btn {
    padding: 16px 24px;
    background: var(--black);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.exit-btn:hover {
    background: #2a2a2a;
}

.exit-disclaimer {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 12px;
}

/* ── FLOATING CTA ─────────────────────────── */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    background: rgba(217, 206, 191, .9);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(17, 17, 17, .06);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    display: none;
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: var(--black);
    color: var(--cream);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
}

/* ── CONTACT POPUP ───────────────────────────── */
.contact-card {
    text-align: center;
    max-width: 400px;
    padding: 48px 32px;
    background: #1a1a1a !important;
    /* Force dark background */
    border: 1px solid rgba(227, 216, 201, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 216, 201, 0.1);
    padding: 16px;
    border-radius: 8px;
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-link-item:hover {
    background: rgba(227, 216, 201, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-close-btn {
    margin-top: 32px;
    background: none;
    border: none;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.contact-close-btn:hover {
    color: var(--cream);
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────── */

/* ── TABLET (1024px) ── */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-img {
        height: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .solution-content {
        order: -1;
    }

    .solution-visual {
        position: relative;
        top: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .solution-img {
        height: 280px;
    }

    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── PHONE (768px) — TikTok First ── */
@media (max-width: 768px) {

    /* === GLOBAL MOBILE === */
    body {
        font-size: 15px;
        padding-bottom: 80px;
        /* Space for floating CTA */
    }

    .section {
        padding: 44px 0;
    }

    .section-eyebrow {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 11px;
        margin-bottom: 8px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 24px;
        padding: 0 6px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* === HERO === */
    .hero {
        padding: 72px 0 44px;
    }

    .hero::after {
        display: none;
    }

    /* Hide hero image on mobile */
    .hero-visual {
        display: none;
    }

    .hero-grid {
        gap: 16px;
    }

    .hero-badge {
        font-size: 11px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: clamp(22px, 5.5vw, 30px);
        line-height: 1.25;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-cta-group {
        margin-top: 8px;
    }

    .btn-xl {
        width: 100%;
        padding: 18px 24px;
        font-size: 16px;
        border-radius: var(--radius-md);
    }

    /* === SOCIAL BAR === */
    .social-bar {
        padding: 16px 0;
    }

    .social-bar-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 8px;
        text-align: center;
    }

    .social-stat {
        flex-direction: column;
        text-align: center;
    }

    .social-divider {
        display: none;
    }

    .social-stat-num {
        font-size: 20px;
    }

    .social-stat-label {
        font-size: 10px;
    }

    /* === PROBLEM — Show 4 items, center content === */
    .problem-item:nth-child(n+5) {
        display: none;
    }

    .problem-list {
        gap: 10px;
        margin-bottom: 24px;
    }

    .problem-item {
        padding: 14px 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }

    .problem-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    .problem-x {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin-top: 0;
    }

    .problem-transition {
        margin-top: 16px;
        font-size: 14px;
        text-align: center;
    }

    /* === SOLUTION — Centered + compact text === */
    .solution-visual {
        display: none;
    }

    .solution-grid {
        gap: 12px;
    }

    .solution-content {
        gap: 12px;
    }

    .solution-point {
        padding: 20px;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .solution-num {
        font-size: 16px;
        margin: 0 auto;
    }

    .solution-point h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .solution-point p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* === HOWTO — Mobile === */
    /* === HOWTO — Mobile List Layout === */
    .section-howto {
        padding: 36px 0;
    }

    .howto-visual {
        max-width: 96%;
        margin: 0 auto 32px;
    }

    .howto-steps {
        flex-direction: column;
        gap: 20px;
        max-width: 90%;
        margin: 0 auto;
    }

    .howto-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: var(--radius-md);
    }

    .howto-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .howto-step p {
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
    }

    /* === OFFER — Condensed === */
    .section-offer {
        padding: 40px 0;
    }

    .offer-card {
        padding: 28px 16px;
    }

    .offer-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(227, 216, 201, 0.08);
    }

    .offer-item-icon {
        font-size: 18px;
        margin-right: 0;
        flex-shrink: 0;
    }

    .offer-item-content h3 {
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Show bonus descriptions on mobile */
    .offer-item-content p {
        display: block;
        font-size: 12px;
        margin-top: 4px;
        line-height: 1.3;
        opacity: 0.8;
        color: var(--gray-light);
    }

    .offer-item-value {
        width: auto;
        text-align: right;
        font-size: 13px;
        margin-top: 0;
        flex-shrink: 0;
        margin-left: auto;
    }

    .offer-divider {
        margin: 8px 0;
    }

    .offer-bonus-label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .offer-pricing {
        text-align: center;
        margin-top: 20px;
    }

    .offer-pricing-total,
    .offer-pricing-now {
        gap: 8px;
    }

    .offer-pricing-final {
        font-size: 44px;
    }

    .offer-savings {
        font-size: 13px;
    }

    .offer-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        font-size: 13px;
    }

    /* === TESTIMONIALS — Hide #2, keep #1 & #3 === */
    .testimonial-card:nth-child(2) {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .live-counter {
        margin-top: 32px;
        font-size: 13px;
    }

    /* === FAQ — Centered + tighter === */
    .section-faq {
        padding: 36px 0;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: var(--radius-md);
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }

    .faq-question span:first-child {
        flex: 1;
        text-align: center;
    }

    .faq-icon {
        font-size: 18px;
        width: 24px;
    }

    .faq-answer {
        text-align: center;
        padding: 0 16px;
    }

    .faq-answer p {
        font-size: 13px;
        padding-bottom: 14px;
        line-height: 1.5;
    }

    /* === FINAL CTA — Compact === */
    .section-final {
        padding: 36px 0;
    }

    .final-card {
        padding: 32px 16px;
        text-align: center;
    }

    .final-title {
        font-size: 22px;
    }

    .final-desc {
        font-size: 13px;
    }

    .final-faces-avatars {
        display: none;
    }

    .final-faces-text {
        font-size: 13px;
    }

    /* === FLOATING CTA === */
    .floating-cta {
        display: block;
    }

    .floating-cta-btn {
        font-size: 15px;
        padding: 16px 24px;
    }

    /* === POPUPS === */
    .quiz-card {
        padding: 32px 20px;
        width: 94%;
    }

    .quiz-question {
        font-size: 19px;
        text-align: center;
    }

    .quiz-option {
        padding: 14px 16px;
        font-size: 14px;
    }

    .exit-popup-card {
        padding: 32px 20px;
        width: 94%;
    }

    .exit-title {
        font-size: 22px;
    }

    .exit-text {
        font-size: 14px;
    }

    /* === FOOTER === */
    .footer {
        padding: 24px 0;
        margin-bottom: 0;
    }

    .footer-sig {
        font-size: 20px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 11px;
    }
}

/* ── SMALL PHONE (480px) ── */
@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .offer-pricing-final {
        font-size: 38px;
    }

    .final-title {
        font-size: 18px;
    }
}

/* ── SECTION INLINE SIGNUP ───────────────── */
.section-inline-signup {
    background: var(--beige);
    padding: 60px 0 40px;
}

.inline-signup-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    border: 1px solid rgba(17, 17, 17, 0.04);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.inline-signup-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.inline-signup-title {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.2;
}

.inline-signup-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.inline-signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.inline-form-row {
    display: flex;
    gap: 12px;
}

.inline-input {
    flex: 1;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black);
    transition: all 0.3s var(--ease);
}

.inline-input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
}

.inline-submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 17px;
}

.inline-disclaimer {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 20px;
    opacity: 0.8;
}

/* ── FLASH MODE STYLES (PREMIUM) ─────────── */
.floating-cta.flash-mode {
    background: var(--beige) !important;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.floating-cta.flash-mode .floating-cta-btn {
    background: var(--black) !important;
    color: var(--beige) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.flash-timer-dot {
    width: 8px;
    height: 8px;
    background: #c44d3d;
    /* Red Pulse Dot */
    border-radius: 50%;
    display: inline-block;
}

.sticky-timer-red {
    color: #c44d3d;
    font-weight: 700;
}

@keyframes flashPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── SUCCESS STATE INLINE ─────────────────── */
.inline-success-card {
    animation: fadeInUp 0.6s var(--ease) both;
}

.inline-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.inline-success-offer {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 24px;
    border: 1px solid rgba(196, 77, 61, 0.2);
}

.inline-success-timer {
    font-size: 24px;
    font-weight: 700;
    color: #c44d3d;
    font-family: var(--font-display);
    margin: 8px 0;
}

@media (max-width: 768px) {
    .inline-form-row {
        flex-direction: column;
    }

    .inline-signup-card {
        padding: 40px 24px;
    }

    .inline-signup-title {
        font-size: 26px;
    }
}