/* ===================================
   SUVARN MADHUPRASH — Premium CSS
   Gold / Green / Dark Theme
   =================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --gold: #d4a843;
    --gold-light: #f0d078;
    --gold-dark: #b08930;
    --green: #1a5632;
    --green-dark: #0e3620;
    --green-light: #2e8b57;
    --bg-primary: #fdfaf3;
    --bg-dark: #0c1f13;
    --bg-dark-card: #142a1c;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-light: #e8e0d0;
    --text-muted: #999;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 50px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-hindi: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* Hindi text */
.hindi-text {
    font-family: var(--font-hindi);
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0;
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.gold {
    color: var(--gold);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 67, .12);
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section--dark .section__tag {
    background: rgba(212, 168, 67, .15);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section__subtitle {
    color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: .95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(212, 168, 67, .35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, .5);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 250, 243, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 168, 67, .15);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-hindi);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.01em;
}

.nav__logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--green);
    background: rgba(26, 86, 50, .06);
}

.nav__link--active {
    color: var(--green) !important;
    background: rgba(26, 86, 50, .08);
    font-weight: 600;
}


.nav__link--cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark) !important;
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
}

.nav__link--cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.nav__link--social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold) !important;
    transition: var(--transition);
}

.nav__link--social:hover {
    transform: scale(1.1);
    color: var(--gold-light) !important;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(155deg, var(--bg-primary) 0%, #f0ead6 40%, #e8f0e3 100%);
    padding-top: 72px;
    overflow: hidden;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    font-size: .82rem;
    font-weight: 500;
    color: var(--green);
    background: rgba(26, 86, 50, .08);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

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

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero__trust-icon {
    font-size: 1.2rem;
}

/* Hero Image */
.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, .25) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.hero__image-img {
    width: 520px;
    max-width: 100%;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    animation: floatUp 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .18));
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero__image-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(212, 168, 67, .35);
    animation: floatUp 6s ease-in-out infinite 1s;
}

.hero__image-badge-name {
    display: block;
    font-family: var(--font-hindi);
    font-size: .78rem;
    font-weight: 600;
    opacity: .85;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.hero__image-badge-price {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.hero__image-badge-qty {
    font-size: .75rem;
    font-weight: 500;
    opacity: .8;
}

/* Hero Wave */
.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================
   ABOUT
   ============================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about__card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 168, 67, .15);
    transition: var(--transition);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.about__card--main {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--text-light);
    border: none;
}

.about__card--main:hover {
    border-color: transparent;
}

.about__card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about__card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about__card p {
    font-size: .95rem;
    line-height: 1.8;
    opacity: .9;
}

.about__card p+p {
    margin-top: 10px;
}

/* ============================
   BENEFITS
   ============================ */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(212, 168, 67, .1);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 168, 67, .12);
}

.benefit-card__icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.benefit-card p+p {
    margin-top: 6px;
    font-size: .82rem;
}

/* ============================
   INGREDIENTS
   ============================ */
.ingredients__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.ingredient-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(212, 168, 67, .2);
    border-radius: var(--radius-pill);
    padding: 12px 24px 12px 16px;
    transition: var(--transition);
}

.ingredient-pill:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 67, .15);
    transform: translateY(-2px);
}

.ingredient-pill__icon {
    font-size: 1.5rem;
}

.ingredient-pill__info {
    display: flex;
    flex-direction: column;
}

.ingredient-pill__info strong {
    font-size: .9rem;
    color: var(--green-dark);
}

.ingredient-pill__info span {
    font-size: .75rem;
    color: var(--text-muted);
}

.ingredients__note {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 86, 50, .05);
    border-left: 4px solid var(--green);
    padding: 24px 28px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ingredients__note p {
    font-size: .9rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.ingredients__note p+p {
    margin-top: 8px;
}

/* ============================
   PRICING
   ============================ */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(212, 168, 67, .12);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 168, 67, .12);
}

.pricing-card--featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 16px 56px rgba(212, 168, 67, .15);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-card__badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.pricing-card__header p {
    font-size: .85rem;
    color: var(--text-muted);
}

.pricing-card__price {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.pricing-card__period {
    font-size: .85rem;
    color: var(--text-muted);
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 28px;
}

.pricing-card__features li {
    font-size: .9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--text-light);
}

.pricing-card__btn {
    width: 100%;
    justify-content: center;
}

/* ============================
   FAQ
   ============================ */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid rgba(212, 168, 67, .15);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--gold);
}

.faq__item[open] {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 67, .1);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-family: var(--font-hindi);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question:hover {
    background: rgba(212, 168, 67, .05);
}

.faq__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item[open] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.9;
    animation: fadeIn .3s ease;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr .8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 12px;
}

.footer__brand h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.footer__brand p {
    font-size: .85rem;
    color: var(--text-muted);
}

.footer__small {
    font-size: .75rem !important;
    margin-top: 6px;
}

.footer__info {
    min-width: 200px;
}

.footer__info h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer__info p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__email {
    display: inline-block;
    word-break: break-all;
    line-height: 1.4;
}

.footer__info a {
    color: var(--gold);
    transition: var(--transition);
}

.footer__info a:hover {
    color: var(--gold-light);
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    font-size: .85rem;
    color: var(--text-muted);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: var(--text-muted);
}

/* ============================
   WHATSAPP FLOATING BUTTON
   ============================ */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2.5s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
}

.whatsapp-fab__tooltip {
    position: absolute;
    right: 72px;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-fab:hover .whatsapp-fab__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .6;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ============================
   RESPONSIVE — Tablet
   ============================ */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image-img {
        width: 420px;
    }

    .hero__image-badge-price {
        font-size: .85rem;
    }

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

    .about__card--main {
        grid-column: span 1;
    }

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

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }

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

/* ============================
   RESPONSIVE — Mobile
   ============================ */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    /* Mobile Nav */
    .nav__links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 72px);
        flex-direction: column;
        background: var(--bg-primary);
        padding: 32px 24px;
        gap: 4px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
        transition: var(--transition);
        z-index: 999;
    }

    .nav__links.active {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active .nav__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active .nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active .nav__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero__title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .hero__image-img {
        width: 340px;
    }

    .hero__image-badge-price {
        font-size: .82rem;
    }

    .hero__image-badge {
        bottom: 20px;
        right: 0;
    }

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

    .pricing__grid {
        max-width: 100%;
    }

    .ingredients__grid {
        gap: 10px;
    }

    .ingredient-pill {
        padding: 10px 16px 10px 12px;
    }

    .ingredient-pill__info strong {
        font-size: .82rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__image-img {
        width: 290px;
    }

    .hero__image-badge-price {
        font-size: .78rem;
    }

    .faq__question {
        padding: 14px 16px;
        font-size: .88rem;
    }

    .faq__answer {
        padding: 0 16px 16px;
    }

    .whatsapp-fab {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-fab svg {
        width: 26px;
        height: 26px;
    }
}