/* =========================================================
   AURÉLLE PARFUM — LANDING PAGE STYLES
   Palette: Ivory, Deep Plum, Champagne Gold
   ========================================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
    --gold: #c9a24b;
    --gold-light: #e3c982;
    --gold-dark: #a67f2e;
    --plum: #2b1a2e;
    --plum-soft: #43304a;
    --ivory: #faf6f0;
    --cream: #f3ece2;
    --ink: #221a20;
    --muted: #7a6f78;
    --white: #ffffff;
    --rose: #b76e79;

    --grad-gold: linear-gradient(135deg, #e3c982 0%, #c9a24b 50%, #a67f2e 100%);
    --grad-plum: linear-gradient(135deg, #2b1a2e 0%, #43304a 100%);

    --shadow-sm: 0 4px 12px rgba(43, 26, 46, 0.08);
    --shadow-md: 0 12px 30px rgba(43, 26, 46, 0.12);
    --shadow-lg: 0 24px 60px rgba(43, 26, 46, 0.18);
    --shadow-gold: 0 12px 30px rgba(201, 162, 75, 0.35);

    --radius: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;

    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', system-ui, sans-serif;

    --container: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: 100px 0; }

.text-gradient {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-dark);
}

/* ---------- SECTION HEADINGS ---------- */
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.section__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum);
    margin-bottom: 18px;
}
.section__desc { color: var(--muted); font-size: 1.08rem; }

/* ---------- STARS ---------- */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.stars--sm { font-size: 0.9rem; letter-spacing: 1px; }
.stars--sm span { color: var(--muted); font-size: 0.8rem; }

/* ---------- BADGES ---------- */
.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.badge--gold { background: rgba(201, 162, 75, 0.14); color: var(--gold-dark); border: 1px solid rgba(201, 162, 75, 0.3); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary { background: var(--grad-gold); color: var(--plum); box-shadow: var(--shadow-gold); }
.btn--primary:hover { box-shadow: 0 18px 40px rgba(201, 162, 75, 0.5); }

.btn--dark { background: var(--plum); color: var(--ivory); box-shadow: var(--shadow-md); }
.btn--dark:hover { background: var(--plum-soft); }

.btn--ghost { background: transparent; color: var(--plum); border-color: rgba(43, 26, 46, 0.25); }
.btn--ghost:hover { border-color: var(--plum); background: rgba(43, 26, 46, 0.04); }

.btn--light { background: var(--ivory); color: var(--plum); }
.btn--light:hover { box-shadow: var(--shadow-lg); }

.btn--outline-light { background: transparent; color: var(--ivory); border-color: rgba(250, 246, 240, 0.5); }
.btn--outline-light:hover { border-color: var(--ivory); background: rgba(250, 246, 240, 0.1); }

.btn--lg { padding: 17px 38px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announcement-bar {
    background: var(--grad-plum);
    color: var(--ivory);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.88rem;
    position: relative;
    z-index: 60;
}
.announcement-bar strong { color: var(--gold-light); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(43, 26, 46, 0.06);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.navbar__logo { display: flex; align-items: center; gap: 8px; }
.navbar__logo-icon { font-size: 1.5rem; }
.navbar__logo-text { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--plum); letter-spacing: 0.5px; }
.navbar__logo-text em { color: var(--gold-dark); font-style: normal; font-weight: 500; }

.navbar__nav { display: flex; align-items: center; gap: 30px; }
.navbar__link { font-size: 0.95rem; font-weight: 500; color: var(--plum); position: relative; padding: 4px 0; }
.navbar__link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--grad-gold); transition: width 0.3s var(--ease);
}
.navbar__link:hover::after { width: 100%; }

.navbar__cta {
    background: var(--grad-gold); color: var(--plum); padding: 10px 24px;
    border-radius: var(--radius-pill); font-weight: 600; font-size: 0.92rem;
    box-shadow: var(--shadow-gold); transition: transform 0.3s var(--ease);
}
.navbar__cta:hover { transform: translateY(-2px); }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.navbar__toggle span { width: 26px; height: 2.5px; background: var(--plum); border-radius: 2px; transition: 0.3s var(--ease); }
.navbar__toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: 80px 0 90px; }
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(201, 162, 75, 0.16), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(183, 110, 121, 0.12), transparent 45%),
        var(--ivory);
}
.hero__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}
.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    font-weight: 600; line-height: 1.1; color: var(--plum); margin-bottom: 22px;
}
.hero__subtitle { font-size: 1.12rem; color: var(--muted); margin-bottom: 34px; max-width: 540px; }
.hero__subtitle strong { color: var(--plum); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero__trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item span { font-size: 0.9rem; color: var(--muted); }
.hero__trust-item strong { color: var(--plum); }
.hero__avatars { display: flex; align-items: center; }
.hero__avatars img {
    width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--ivory);
    object-fit: cover; margin-left: -12px;
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__avatars-more {
    width: 42px; height: 42px; border-radius: 50%; margin-left: -12px;
    background: var(--plum); color: var(--gold-light); display: flex; align-items: center;
    justify-content: center; font-size: 0.75rem; font-weight: 600; border: 2.5px solid var(--ivory);
}

/* Hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__product-glow {
    position: absolute; width: 78%; height: 78%; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 162, 75, 0.4), transparent 65%);
    filter: blur(30px); z-index: 0; animation: pulseGlow 4s ease-in-out infinite;
}
.hero__product-img {
    position: relative; z-index: 1; width: 100%; max-width: 460px;
    border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg); animation: floatY 5s ease-in-out infinite;
}
.hero__floating-card {
    position: absolute; z-index: 2; background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px); padding: 12px 18px; border-radius: 14px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero__floating-card strong { display: block; font-size: 0.92rem; color: var(--plum); }
.hero__floating-card small { color: var(--muted); font-size: 0.75rem; }
.hero__fc-icon { font-size: 1.6rem; }
.hero__floating-card--1 { top: 12%; left: -4%; animation: floatY 4s ease-in-out infinite; }
.hero__floating-card--2 { bottom: 12%; right: -4%; animation: floatY 4.5s ease-in-out infinite 0.5s; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); } }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: var(--plum); padding: 26px 0; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-bar__item { display: flex; align-items: center; gap: 14px; justify-content: center; color: var(--ivory); }
.trust-bar__icon { font-size: 1.8rem; }
.trust-bar__item strong { display: block; font-size: 0.98rem; }
.trust-bar__item small { color: rgba(250, 246, 240, 0.7); font-size: 0.8rem; }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem { background: var(--cream); }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.problem__card {
    background: var(--white); padding: 38px 30px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.problem__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.problem__icon { font-size: 3rem; display: block; margin-bottom: 18px; }
.problem__card h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--plum); margin-bottom: 10px; }
.problem__card p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   SOLUTION
   ========================================================= */
.solution__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solution__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 1; object-fit: cover; }
.solution__features { display: flex; flex-direction: column; gap: 26px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
    background: rgba(201, 162, 75, 0.14); display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem;
}
.feature h3 { font-family: var(--font-head); font-size: 1.42rem; color: var(--plum); margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products { background: var(--cream); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-card--featured { border: 2px solid var(--gold); transform: scale(1.03); }
.product-card--featured:hover { transform: scale(1.03) translateY(-10px); }

.product-card__badge {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    background: var(--plum); color: var(--ivory); padding: 6px 14px;
    border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600;
}
.product-card__badge--gold { background: var(--grad-gold); color: var(--plum); }

.product-card__img { overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__img img { transform: scale(1.08); }

.product-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__name { font-family: var(--font-head); font-size: 1.55rem; color: var(--plum); margin: 8px 0 4px; }
.product-card__notes { color: var(--gold-dark); font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.product-card__desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.product-card__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.price-now { font-size: 1.55rem; font-weight: 600; color: var(--plum); }
.price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }

.products__cta {
    margin-top: 48px; text-align: center; background: var(--white);
    padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    border: 1px dashed var(--gold);
}
.products__cta p { font-size: 1.2rem; color: var(--plum); margin-bottom: 20px; }
.products__cta strong { color: var(--gold-dark); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how__grid { display: flex; align-items: flex-start; justify-content: center; gap: 10px; }
.how__step {
    flex: 1; max-width: 300px; text-align: center; background: var(--white);
    padding: 40px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.how__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.how__num {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px; border-radius: 50%; background: var(--grad-gold);
    color: var(--plum); font-weight: 700; display: flex; align-items: center;
    justify-content: center; box-shadow: var(--shadow-gold);
}
.how__icon { font-size: 3rem; display: block; margin: 12px 0 16px; }
.how__step h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--plum); margin-bottom: 8px; }
.how__step p { color: var(--muted); font-size: 0.95rem; }
.how__connector { flex: 0 0 40px; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); margin-top: 90px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--cream); }
.testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial {
    background: var(--white); padding: 32px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial blockquote { font-family: var(--font-head); font-size: 1.25rem; color: var(--plum); line-height: 1.5; margin: 14px 0 22px; font-style: italic; }
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.testimonial figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial figcaption strong { display: block; color: var(--plum); }
.testimonial figcaption small { color: var(--muted); font-size: 0.82rem; }

/* =========================================================
   STATS
   ========================================================= */
.stats { background: var(--grad-plum); padding: 70px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats__item { text-align: center; color: var(--ivory); }
.stats__num { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; color: var(--gold-light); }
.stats__plus { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold-light); font-weight: 600; }
.stats__item small { display: block; margin-top: 6px; color: rgba(250, 246, 240, 0.75); font-size: 0.95rem; letter-spacing: 0.5px; }

/* =========================================================
   OFFER
   ========================================================= */
.offer { background: var(--ivory); }
.offer__wrap { max-width: 900px; margin: 0 auto; }
.offer__card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1.15fr;
    position: relative; border: 2px solid var(--gold);
}
.offer__ribbon {
    position: absolute; top: 22px; left: -42px; transform: rotate(-45deg);
    background: var(--grad-gold); color: var(--plum); font-weight: 700; font-size: 0.78rem;
    padding: 6px 50px; z-index: 3; box-shadow: var(--shadow-sm);
}
.offer__img { position: relative; overflow: hidden; }
.offer__img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.offer__content { padding: 40px; }
.offer__content h3 { font-family: var(--font-head); font-size: 2rem; color: var(--plum); margin-bottom: 4px; }
.offer__sub { color: var(--gold-dark); font-weight: 500; margin-bottom: 20px; }
.offer__list { margin-bottom: 24px; }
.offer__list li { padding: 6px 0; color: var(--ink); font-size: 0.96rem; }

.offer__price { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.offer__price-old { display: block; color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.offer__price-now { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--plum); line-height: 1; }
.offer__save { background: rgba(183, 110, 121, 0.15); color: var(--rose); padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.88rem; }

.offer__countdown { background: var(--cream); border-radius: var(--radius); padding: 16px; text-align: center; margin-bottom: 20px; }
.offer__countdown-label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.offer__timer { display: flex; align-items: center; justify-content: center; gap: 10px; }
.offer__timer > span { font-size: 1.6rem; color: var(--gold-dark); font-weight: 700; }
.offer__timer div { display: flex; flex-direction: column; align-items: center; background: var(--plum); color: var(--ivory); border-radius: 10px; padding: 8px 12px; min-width: 56px; }
.offer__timer b { font-size: 1.5rem; font-family: var(--font-head); }
.offer__timer small { font-size: 0.68rem; color: rgba(250, 246, 240, 0.7); }

.offer__content .btn { margin-bottom: 10px; }
.offer__secure { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 8px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(43, 26, 46, 0.05); }
.faq__item summary {
    padding: 22px 26px; font-weight: 600; font-size: 1.05rem; color: var(--plum);
    cursor: pointer; list-style: none; display: flex; justify-content: space-between;
    align-items: center; gap: 16px; transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.6rem; color: var(--gold-dark); transition: transform 0.3s var(--ease); font-weight: 400; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--gold-dark); }
.faq__answer { padding: 0 26px 22px; }
.faq__answer p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { background: var(--grad-plum); padding: 90px 0; position: relative; overflow: hidden; }
.final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 75, 0.2), transparent 55%);
}
.final-cta__inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ivory); margin-bottom: 16px; }
.final-cta p { color: rgba(250, 246, 240, 0.85); font-size: 1.12rem; margin-bottom: 32px; }
.final-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.final-cta__note { font-size: 0.88rem; color: rgba(250, 246, 240, 0.7); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: rgba(250, 246, 240, 0.75); padding-top: 70px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__col h4 { color: var(--ivory); font-size: 1.05rem; margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: rgba(250, 246, 240, 0.7); font-size: 0.92rem; margin-bottom: 10px; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--gold-light); }
.footer__col--brand .navbar__logo-text { color: var(--ivory); }
.footer__col--brand p { margin: 16px 0 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 42px; height: 42px; border-radius: 50%; background: rgba(250, 246, 240, 0.08);
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.footer__social a:hover { background: var(--gold-dark); transform: translateY(-3px); }

.footer__bottom { border-top: 1px solid rgba(250, 246, 240, 0.1); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer__bottom p { font-size: 0.85rem; }
.footer__badges { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__badges span { font-size: 0.82rem; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    background: #25d366; color: #fff; display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); font-weight: 600;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    animation: bounceIn 0.6s var(--ease) 1.2s both;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55); }
.whatsapp-float__icon { font-size: 1.3rem; }
@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 60% { transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } }

/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE
   Breakpoints:
   - >= 1440px : Large desktop (lebar container membesar)
   - <= 1200px : Small desktop / laptop
   - <= 992px  : Tablet landscape
   - <= 768px  : Tablet portrait / mobile besar (menu jadi hamburger)
   - <= 560px  : Mobile
   - <= 380px  : Mobile kecil
   ========================================================= */

/* ---- Global anti-overflow safety ---- */
img, video, svg { max-width: 100%; height: auto; }
.hero__product-img, .solution__visual img, .product-card__img img, .offer__img img,
.testimonial figcaption img, .hero__avatars img { height: auto; }

/* ---- LARGE DESKTOP ---- */
@media (min-width: 1440px) {
    :root { --container: 1280px; }
    .section { padding: 120px 0; }
}

/* ---- SMALL DESKTOP / LAPTOP ---- */
@media (max-width: 1200px) {
    :root { --container: 1080px; }
    .hero__floating-card--1 { left: 0; }
    .hero__floating-card--2 { right: 0; }
}

/* ---- TABLET LANDSCAPE ---- */
@media (max-width: 992px) {
    .section { padding: 72px 0; }

    .hero { padding: 56px 0 72px; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
    .hero__content { order: 2; }
    .hero__visual { order: 1; margin-bottom: 10px; }
    .hero__product-img { max-width: 380px; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions, .hero__trust { justify-content: center; }

    .solution__grid { grid-template-columns: 1fr; gap: 40px; }
    .solution__visual { max-width: 460px; margin: 0 auto; }

    /* Produk & testimoni jadi 2 kolom di tablet */
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .products__grid .product-card:nth-child(3) { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
    .product-card--featured { transform: none; }
    .product-card--featured:hover { transform: translateY(-10px); }

    .offer__card { grid-template-columns: 1fr; }
    .offer__img img { min-height: 260px; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__col--brand { grid-column: 1 / -1; }
}

/* ---- TABLET PORTRAIT / MOBILE BESAR ---- */
@media (max-width: 768px) {
    .announcement-bar { font-size: 0.78rem; padding: 9px 14px; }

    .navbar__nav {
        position: fixed; top: 74px; right: 0; width: min(320px, 84vw); height: calc(100vh - 74px);
        background: var(--ivory); flex-direction: column; align-items: flex-start; gap: 6px;
        padding: 30px 26px; box-shadow: var(--shadow-lg); transform: translateX(100%);
        transition: transform 0.4s var(--ease); z-index: 55; overflow-y: auto;
    }
    .navbar__nav.open { transform: translateX(0); }
    .navbar__link { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(43, 26, 46, 0.07); }
    .navbar__cta { width: 100%; text-align: center; margin-top: 12px; }
    .navbar__toggle { display: flex; }

    .trust-bar__inner { grid-template-columns: 1fr 1fr; gap: 18px 10px; }
    .problem__grid, .products__grid { grid-template-columns: 1fr; }
    .products__grid .product-card:nth-child(3) { max-width: 100%; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .stats__inner { grid-template-columns: 1fr 1fr; gap: 34px; }

    .how__grid { flex-direction: column; align-items: center; gap: 40px; }
    .how__step { max-width: 420px; width: 100%; }
    .how__connector { display: none; }

    .offer__ribbon { left: -46px; font-size: 0.72rem; padding: 5px 50px; }
    .final-cta__actions .btn { flex: 1 1 auto; }
}

/* ---- MOBILE ---- */
@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .section { padding: 56px 0; }

    .section__title { font-size: clamp(1.7rem, 7vw, 2.3rem); }
    .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__product-img { max-width: 300px; }

    /* Perkecil kartu mengambang agar tidak menutupi produk */
    .hero__floating-card { padding: 9px 12px; gap: 8px; }
    .hero__floating-card strong { font-size: 0.8rem; }
    .hero__floating-card small { font-size: 0.68rem; }
    .hero__fc-icon { font-size: 1.25rem; }
    .hero__floating-card--1 { left: -2%; top: 6%; }
    .hero__floating-card--2 { right: -2%; bottom: 6%; }

    .trust-bar__inner { grid-template-columns: 1fr; }
    .stats__inner { grid-template-columns: 1fr 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__col--brand { grid-column: auto; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }

    .offer__content { padding: 28px 22px; }
    .offer__price-now { font-size: 2.2rem; }
    .offer__timer div { min-width: 48px; padding: 7px 9px; }
    .offer__timer b { font-size: 1.25rem; }

    .products__cta { padding: 30px 22px; }
    .products__cta p { font-size: 1.05rem; }

    .whatsapp-float { bottom: 18px; right: 18px; padding: 13px 15px; }
    .whatsapp-float__text { display: none; }
    .btn--lg { padding: 15px 24px; font-size: 1rem; }
}

/* ---- MOBILE KECIL ---- */
@media (max-width: 380px) {
    .stats__inner { grid-template-columns: 1fr; gap: 26px; }
    .offer__timer { gap: 6px; }
    .offer__timer > span { font-size: 1.2rem; }
    .offer__price { justify-content: center; text-align: center; }
    .hero__floating-card--2 { display: none; }
}
