/* ==========================================================================
   AG1 & Bloom Inspired Product Catalog Style Guide
   Target: Parents, Focus: Health, Clarity, High Readability
   ========================================================================== */

/* Typography & Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Color System (AG1 Forest Green & Bloom Pastel Warmth) */
    --color-bg-warm: #fcfbf7;
    --color-bg-card: #ffffff;
    --color-bg-accent: #f5f4ee;
    --color-bg-green-soft: #f0fdf4;
    --color-bg-teal-soft: #f0fdfa;
    
    /* Text Colors */
    --color-text-dark: #0f172a;
    --color-text-muted: #334155;
    --color-text-light: #64748b;
    
    /* Branding Accents */
    --color-teal-dark: #0d5c56;
    --color-teal-hover: #0a4641;
    --color-teal-light: #ccfbf1;
    
    --color-primary-gold: #d97706;
    --color-primary-gold-hover: #b45309;
    --color-primary-gold-light: #fef3c7;
    
    --color-green: #16a34a;
    --color-green-hover: #15803d;
    --color-red-discount: #dc2626;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Styling Metrics */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-soft: 0 4px 20px -2px rgba(13, 92, 86, 0.05), 0 2px 8px -1px rgba(13, 92, 86, 0.03);
    --shadow-hover: 0 12px 30px -5px rgba(13, 92, 86, 0.12), 0 4px 12px -2px rgba(13, 92, 86, 0.06);
    --shadow-header: 0 2px 15px rgba(13, 92, 86, 0.04);
    
    /* Transition */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Multi-page product, member, and about views */
.inner-page { background: #f8faf8; }
.inner-page main { padding-top: 150px; }
.page-logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--color-teal-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 800;
}
.page-hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 72px 0;
    overflow: hidden;
}
.page-hero-grid, .member-hero-grid, .story-page-grid, .trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 72px;
}
.page-hero-grid > *, .member-hero-grid > *, .story-page-grid > *, .trust-layout > * {
    min-width: 0;
}
.page-hero h1 {
    max-width: 720px;
    margin: 14px 0 22px;
    font-size: 3.5rem;
}
.page-hero p { max-width: 650px; }
.page-kicker {
    display: inline-block;
    color: var(--color-primary-gold-hover);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.page-kicker.light { color: #fcd34d; }
.page-hero-products { background: linear-gradient(115deg, #effaf4 0%, #fff9eb 55%, #eef6f5 100%); }
.page-product-visual {
    min-height: 460px;
    display: grid;
    place-items: center;
    position: relative;
}
.page-product-visual::before {
    content: "";
    width: 420px;
    height: 420px;
    position: absolute;
    border: 1px solid rgba(13, 92, 86, .18);
    border-radius: 50%;
    background: #fff;
}
.page-product-visual img { width: min(100%, 520px); position: relative; z-index: 1; }
.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 48px;
    margin-bottom: 38px;
}
.section-heading-row h2 { margin: 8px 0 0; padding: 0; }
.section-heading-row > p { max-width: 470px; margin: 0; }
.catalog-page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.catalog-tile {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.catalog-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.catalog-tile.featured { border-color: rgba(217, 119, 6, .45); }
.catalog-image { height: 260px; display: grid; place-items: center; background: #edf7f3; }
.catalog-image.green { background: #eefbea; }
.catalog-image.blue { background: #edf5fb; }
.catalog-image.skincare { background: #fff2f4; }
.catalog-image.herbs { background: #fff8e8; }
.catalog-image img { width: 78%; height: 78%; object-fit: contain; }
.catalog-image.blue img { filter: hue-rotate(155deg); }
.catalog-copy { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.catalog-copy h3 { margin-top: 7px; }
.catalog-copy p { flex: 1; font-size: .98rem; }
.catalog-label { color: var(--color-teal-dark); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.catalog-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--color-text-light);
    font-size: .88rem;
}
.catalog-meta strong { color: var(--color-text-dark); }
.catalog-copy .btn-card-buy { display: block; text-align: center; }
.page-cta-band { padding: 56px 0; background: #0d5c56; }
.page-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.page-cta-inner h2 { margin: 6px 0 0; padding: 0; color: #fff; }
.compact-footer { padding-top: 0; }
.footer-page-links { display: flex; gap: 24px; }
.member-hero { color: #fff; background: linear-gradient(120deg, #123f3b 0%, #0d5c56 62%, #164e45 100%); }
.member-hero h1, .member-hero p { color: #fff; }
.member-hero p { color: #d6e5e1; }
.member-hero h1, .member-hero p { overflow-wrap: anywhere; }
.member-hero-copy { max-width: 690px; }
.member-hero-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 22px 60px rgba(2, 44, 39, .2);
}
.member-hero-card img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
    margin-bottom: 18px;
    padding: 26px;
    border-radius: 8px;
    background: #f5fbf7;
}
.member-stat-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
}
.member-stat-panel div {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.member-stat-panel div:nth-child(2n) { border-right: 0; }
.member-stat-panel div:nth-child(n+3) { border-bottom: 0; }
.member-stat-panel strong { color: #fbbf24; font-family: var(--font-heading); font-size: 2.4rem; }
.member-stat-panel span { color: #e2eeeb; }
.member-hero-card .member-stat-panel div { min-height: 118px; padding: 20px; }
.member-hero-card .member-stat-panel strong { font-size: 1.8rem; }
.benefit-list, .values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: #d9e3df;
    border: 1px solid #d9e3df;
}
.benefit-list article, .values-grid article { min-width: 0; padding: 32px 26px; background: #fff; }
.benefit-list article > span { color: var(--color-primary-gold); font-weight: 800; }
.benefit-list h3 { margin-top: 26px; }
.benefit-list p, .values-grid p { margin: 0; font-size: .96rem; }
.member-benefit-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; background: transparent; border: 0; }
.member-benefit-list article {
    min-height: 205px;
    border: 1px solid #dce5e1;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}
.tier-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 22px; }
.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid #dce5e1;
    border-radius: 8px;
    background: #fff;
}
.tier-card.highlighted { border: 2px solid var(--color-teal-dark); box-shadow: var(--shadow-hover); }
.tier-badge {
    position: absolute;
    top: 0;
    right: 20px;
    padding: 7px 12px;
    background: var(--color-teal-dark);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}
.tier-name { color: var(--color-primary-gold-hover); font-weight: 800; text-transform: uppercase; }
.tier-card h3 { margin: 12px 0 2px; font-size: 2rem; }
.tier-price { padding-bottom: 22px; color: var(--color-teal-dark); font-weight: 800; }
.tier-card ul { flex: 1; margin-bottom: 28px; }
.tier-card li { padding: 10px 0 10px 22px; position: relative; border-bottom: 1px solid #edf1ef; }
.tier-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--color-green); font-weight: 800; }
.join-steps { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.join-steps ol { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; counter-reset: join-step; list-style: none; }
.join-steps li { counter-increment: join-step; padding-left: 54px; position: relative; }
.join-steps li::before {
    content: counter(join-step);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    position: absolute;
    left: 0;
    border: 1px solid var(--color-teal-dark);
    border-radius: 50%;
    color: var(--color-teal-dark);
    font-weight: 800;
}
.join-steps strong, .join-steps span { display: block; }
.join-steps span { margin-top: 5px; color: var(--color-text-light); }
.member-steps p { margin-top: 12px; margin-bottom: 0; }
.support-section { background: #fff; }
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.support-grid article {
    min-width: 0;
    min-height: 210px;
    padding: 28px;
    border: 1px solid #dce5e1;
    border-radius: 8px;
    background: #f8faf8;
}
.resource-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--color-teal-dark);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}
.support-grid article:nth-child(even) .resource-icon {
    background: var(--color-primary-gold);
}
.wa-stat-logo,
.member-stat-panel strong.wa-stat-logo,
.trust-facts strong.wa-stat-logo {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    align-self: flex-start;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
}
.wa-stat-logo img,
.wa-resource-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.resource-icon.wa-resource-icon {
    padding: 5px;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
}
.support-grid h3 { margin-bottom: 8px; }
.support-grid p { margin: 0; font-size: .98rem; }
.member-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.member-testimonial-grid article {
    min-width: 0;
    padding: 28px;
    border: 1px solid #dce5e1;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.member-avatar {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--color-teal-light);
    color: var(--color-teal-dark);
    font-weight: 800;
}
.member-testimonial-grid p { min-height: 90px; margin-bottom: 18px; font-size: 1rem; }
.member-testimonial-grid strong, .member-testimonial-grid span { display: block; }
.member-testimonial-grid span { color: var(--color-text-light); }
.member-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.member-faq-list details {
    border: 1px solid #dce5e1;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.member-faq-list summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 24px;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}
.member-faq-list summary::-webkit-details-marker { display: none; }
.member-faq-list summary::after {
    content: "+";
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color-bg-accent);
    color: var(--color-teal-dark);
}
.member-faq-list details[open] summary::after { content: "-"; }
.member-faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    font-size: 1rem;
}
.member-final-cta p { max-width: 650px; margin: 12px 0 0; color: #d6e5e1; }
.btn-large { min-height: 58px; padding: 16px 34px; font-size: 1.12rem; }
.about-hero {
    min-height: 560px;
    background: linear-gradient(rgba(7,55,51,.92), rgba(7,55,51,.88)), url("images/bp-hero-products.svg") center 44% / cover no-repeat;
}
.about-hero-inner { width: 100%; }
.about-hero h1 { max-width: 850px; color: #fff; }
.about-hero p { max-width: 760px; color: #d9e8e4; }
.story-product-stage { min-height: 480px; display: grid; place-items: center; background: #edf7f3; }
.story-product-stage img { width: 88%; }
.story-page-copy h2, .trust-layout h2 { margin-top: 9px; padding: 0; }
.story-quote {
    margin-top: 28px;
    padding: 22px 0 22px 24px;
    border-left: 4px solid var(--color-primary-gold);
    color: var(--color-teal-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}
.values-section { background: #143f3b; }
.values-section h2 { color: #fff; }
.values-grid { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.16); }
.values-grid article { background: transparent; }
.values-grid strong { color: #fbbf24; font-family: var(--font-heading); font-size: 1.5rem; }
.values-grid p { margin-top: 14px; color: #d7e6e2; }
.trust-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-facts div {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid #dce5e1;
    background: #fff;
}
.trust-facts strong { color: var(--color-teal-dark); font-family: var(--font-heading); font-size: 1.7rem; }
.trust-facts span { color: var(--color-text-light); }
.light-outline { border-color: #fff; color: #fff; }
.light-outline:hover { background: #fff; color: var(--color-teal-dark); }

@media (max-width: 1024px) {
    .page-hero-grid, .member-hero-grid, .story-page-grid, .trust-layout { grid-template-columns: 1fr; gap: 42px; }
    .catalog-page-grid, .tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefit-list, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .member-benefit-list, .support-grid, .member-testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .inner-page main { padding-top: 74px; }
    .page-hero { min-height: auto; padding: 64px 0; }
    .page-hero h1 { font-size: 2.55rem; }
    .page-product-visual { min-height: 340px; }
    .page-product-visual::before { width: 300px; height: 300px; }
    .section-heading-row, .page-cta-inner { align-items: flex-start; flex-direction: column; }
    .catalog-page-grid, .tier-grid, .join-steps, .join-steps ol, .member-testimonial-grid { grid-template-columns: 1fr; }
    .member-benefit-list, .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .member-benefit-list article, .support-grid article { min-height: 190px; padding: 22px 18px; }
    .member-benefit-list h3, .support-grid h3 { font-size: 1.2rem; }
    .member-benefit-list p, .support-grid p { font-size: .92rem; line-height: 1.5; }
    .member-stat-panel div { min-height: 135px; padding: 20px; }
    .footer-page-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 2.15rem; }
    .page-product-visual { min-height: 280px; }
    .page-product-visual::before { width: 245px; height: 245px; }
    .benefit-list:not(.member-benefit-list), .values-grid, .member-stat-panel, .trust-facts { grid-template-columns: 1fr; }
    .member-benefit-list, .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .member-hero-card { padding: 14px; }
    .member-hero-card img { padding: 16px; }
    .member-stat-panel div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .member-stat-panel div:nth-child(n+3) { border-bottom: 1px solid rgba(255,255,255,.14); }
    .member-stat-panel div:last-child { border-bottom: 0; }
    .catalog-image { height: 230px; }
    .inner-page .hero-actions { width: 100%; }
}

/* Reset and Core Layout */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    max-width: 100%;
    font-family: var(--font-body);
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography & Headings */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
}

h1 {
    font-size: 3rem;
    letter-spacing: 0;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-teal-dark));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.125rem; /* Highly readable for parents */
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-teal-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-teal-hover);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Bilingual Display Control */
body.lang-id .lang-en { display: none !important; }
body.lang-en .lang-id { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
}

.btn-teal {
    background-color: var(--color-teal-dark);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 92, 86, 0.2);
}

.btn-teal:hover {
    background-color: var(--color-teal-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 92, 86, 0.3);
}

.btn-gold {
    background-color: var(--color-primary-gold);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.2);
}

.btn-gold:hover {
    background-color: var(--color-primary-gold-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

.btn-green {
    background-color: var(--color-green);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.2);
}

.btn-green:hover {
    background-color: var(--color-green-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-teal-dark);
    color: var(--color-teal-dark);
}

.btn-outline:hover {
    background-color: var(--color-teal-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Legacy header removed to unify navbar */

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 80% 20%, rgba(204, 251, 241, 0.3) 0%, rgba(254, 243, 199, 0.2) 50%, var(--color-bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-teal-light);
    color: var(--color-teal-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 92, 86, 0.15);
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-teal-dark);
}

.hero h1 span {
    color: var(--color-primary-gold);
    background: linear-gradient(120deg, var(--color-teal-dark) 0%, var(--color-primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 34px;
}

.hero-proof {
    background-color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 92, 86, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.hero-proof strong {
    display: block;
    color: var(--color-teal-dark);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-proof span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.6) 0%, rgba(254, 243, 199, 0.4) 100%);
    z-index: 1;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-height: 490px;
    filter: drop-shadow(0 20px 40px rgba(13, 92, 86, 0.12));
    animation: floatImage 4s ease-in-out infinite;
}

/* SECTION STRUCTURE */
.section {
    padding: 90px 0;
}

.section-alt {
    background-color: var(--color-bg-accent);
}

.text-center {
    text-align: center;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-intro p {
    font-size: 1.15rem;
}

/* DYNAMIC FILTER TABS (Bloom Style) */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-tab {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(13, 92, 86, 0.15);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.filter-tab:hover {
    border-color: var(--color-teal-dark);
    color: var(--color-teal-dark);
    transform: translateY(-1px);
}

.filter-tab.active {
    background-color: var(--color-teal-dark);
    border-color: var(--color-teal-dark);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 92, 86, 0.2);
}

/* PRODUCT CATALOG GRID (Bloom & AG1 Inspired) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.best-seller-section .filter-tabs-container {
    display: none;
}

.best-seller-section .product-card:nth-child(n+5) {
    display: none;
}

.product-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(13, 92, 86, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 92, 86, 0.18);
}

/* Product Card Ribbons/Badges */
.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background-color: var(--color-primary-gold);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.2);
}

.card-badge.green {
    background-color: var(--color-green);
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.2);
}

.card-badge.teal {
    background-color: var(--color-teal-dark);
    box-shadow: 0 2px 6px rgba(13, 92, 86, 0.2);
}

/* Product Card Image Container */
.card-img-container {
    height: 190px;
    border-radius: var(--border-radius-md);
    background: radial-gradient(circle, #fcfbf8 0%, #f3f2ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(13, 92, 86, 0.08));
    transition: var(--transition-smooth);
}

.product-card:hover .card-img-container img {
    transform: scale(1.08) rotate(2deg);
}

/* Star Ratings (Bloom Inspired) */
.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Card Content Details */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    line-height: 1.3;
}

/* Tag Pill Badges */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    background-color: var(--color-bg-accent);
    color: var(--color-text-muted);
    border-radius: 4px;
}

.card-tag-highlight {
    background-color: var(--color-teal-light);
    color: var(--color-teal-dark);
}

.card-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Bottom pricing & buy buttons */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 92, 86, 0.08);
    gap: 12px;
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-teal-dark);
}

.btn-card-buy {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 8px;
    background-color: var(--color-teal-dark);
    color: #ffffff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-buy:hover {
    background-color: var(--color-teal-hover);
    transform: translateY(-1px);
}

/* ABOUT / STORY SECTION */
.story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.story-media {
    min-height: 420px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.65), rgba(254, 243, 199, 0.72));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 92, 86, 0.08);
}

.story-media img {
    width: min(100%, 420px);
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(13, 92, 86, 0.14));
}

.story-copy {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(13, 92, 86, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.story-kicker {
    display: inline-block;
    color: var(--color-primary-gold-hover);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.story-copy h3 {
    font-size: 2rem;
    color: var(--color-teal-dark);
    margin-bottom: 18px;
}

.story-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.story-points div {
    border-left: 4px solid var(--color-primary-gold);
    background-color: var(--color-bg-warm);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
}

.story-points strong,
.story-points span {
    display: block;
}

.story-points strong {
    color: var(--color-text-dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.story-points span {
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.about-story-section .ingredients-block {
    display: none;
}

/* INGREDIENTS BREAKDOWN SECTION (AG1 Inspired) */
.ingredients-block {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 92, 86, 0.06);
    padding: 48px;
    margin-top: 40px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.ingredients-left {
    border-right: 1px solid rgba(13, 92, 86, 0.1);
    padding-right: 24px;
}

.ingredients-category-title {
    font-size: 1.35rem;
    color: var(--color-teal-dark);
    border-bottom: 2px solid var(--color-teal-light);
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-category-title span {
    font-size: 1.6rem;
}

.pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.pill-item {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px;
    background-color: var(--color-bg-accent);
    color: var(--color-text-dark);
    border-radius: 30px;
    border: 1px solid rgba(13, 92, 86, 0.08);
}

.pill-item-gold {
    background-color: var(--color-primary-gold-light);
    color: var(--color-primary-gold-hover);
    border-color: rgba(217, 119, 6, 0.15);
}

.compounds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compound-card {
    background-color: var(--color-bg-warm);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    border-left: 4px solid var(--color-teal-dark);
}

.compound-card h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

.compound-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Ingredients Quality & Honeybee Yield Info Box */
.ingredients-yield-box {
    background: linear-gradient(135deg, var(--color-teal-dark), #0f766e);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.yield-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.05;
    user-select: none;
    pointer-events: none;
}

.yield-stat {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary-gold-light);
    margin-bottom: 12px;
}

.ingredients-yield-box h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.ingredients-yield-box p {
    color: #ccfbf1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ADVANTAGE SECTION */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.advantage-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(13, 92, 86, 0.08);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-teal-light);
    color: var(--color-teal-dark);
    font-weight: 800;
    margin-bottom: 18px;
}

.advantage-card:nth-child(even) .advantage-icon {
    background-color: var(--color-primary-gold-light);
    color: var(--color-primary-gold-hover);
}

.advantage-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.advantage-section .dosage-timeline,
.advantage-section .warning-box,
#testimonials {
    display: none;
}

/* DOSAGE INSTRUCTIONS & TIMELINE (Aturan Minum) */
.dosage-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.dosage-step {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 92, 86, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dosage-num {
    width: 44px;
    height: 44px;
    background-color: var(--color-teal-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(13, 92, 86, 0.25);
}

.dosage-step:nth-child(even) .dosage-num {
    background-color: var(--color-primary-gold);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.25);
}

.dosage-age {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.dosage-drops {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-teal-dark);
    margin-bottom: 8px;
}

.dosage-step:nth-child(even) .dosage-drops {
    color: var(--color-primary-gold-hover);
}

.dosage-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Warnings Callout Box */
.warning-box {
    background-color: #fffaf0;
    border-left: 5px solid #dd6b20;
    border-radius: var(--border-radius-sm);
    padding: 20px 24px;
    margin-top: 36px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.warning-content h4 {
    color: #dd6b20;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.warning-content p {
    font-size: 0.95rem;
    color: #7b341e;
    margin-bottom: 0;
    line-height: 1.6;
}

/* INTERACTIVE WHATSAPP CALCULATOR (Updated) */
.order-calculator {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 92, 86, 0.08);
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.calculator-left {
    padding: 40px;
    background-color: var(--color-bg-accent);
    border-right: 1px solid rgba(13, 92, 86, 0.08);
}

.calculator-left h3 {
    margin-bottom: 24px;
    color: var(--color-teal-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(13, 92, 86, 0.2);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-teal-dark);
    box-shadow: 0 0 0 3px rgba(13, 92, 86, 0.1);
}

/* Mixture details counter styles */
.product-mix-section {
    margin-top: 24px;
    display: none;
    border-top: 1px dashed rgba(13, 92, 86, 0.2);
    padding-top: 20px;
}

.product-mix-section.visible {
    display: block;
}

.mix-controls {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
}

.mix-control-item {
    flex: 1;
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(13, 92, 86, 0.1);
}

.mix-control-item h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.mix-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-counter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(13, 92, 86, 0.3);
    background: #ffffff;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.btn-counter:hover {
    background-color: var(--color-teal-light);
    border-color: var(--color-teal-dark);
}

.counter-val {
    font-weight: 700;
    font-size: 1.15rem;
    min-width: 24px;
}

/* Calculator Right: Form Details */
.calculator-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.price-summary-box {
    background-color: var(--color-bg-accent);
    border-radius: var(--border-radius-sm);
    padding: 18px;
    margin-top: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 92, 86, 0.08);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(13, 92, 86, 0.2);
}

.summary-total {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-teal-dark);
}

.btn-submit-wa {
    width: 100%;
}

.guarantee-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    border: 1px solid rgba(13, 92, 86, 0.05);
    text-align: center;
    max-width: 720px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-teal-light);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.reviewer-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.reviewer-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg-card);
    border: 1px solid rgba(13, 92, 86, 0.1);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    color: var(--color-text-dark);
}

.carousel-btn:hover {
    background-color: var(--color-teal-dark);
    color: #ffffff;
    border-color: var(--color-teal-dark);
}

.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(13, 92, 86, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.carousel-dot.active {
    background-color: var(--color-teal-dark);
    width: 24px;
    border-radius: 5px;
}

/* FAQ ACCORDION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 92, 86, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    user-select: none;
    color: var(--color-text-dark);
}

.faq-header:hover {
    background-color: var(--color-bg-accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 24px 24px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(13, 92, 86, 0.05);
}

/* TRUST GUARANTEE BANNER */
.guarantee-banner {
    padding: 56px 0;
    background-color: var(--color-bg-accent);
    border-top: 1px solid rgba(13, 92, 86, 0.08);
    border-bottom: 1px solid rgba(13, 92, 86, 0.08);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-icon {
    color: var(--color-teal-dark);
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 36px;
    height: 36px;
}

.guarantee-body h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.guarantee-body p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* FOOTER */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 64px 0 24px;
    font-size: 1rem;
}

footer h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--color-teal-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact svg {
    color: var(--color-teal-light);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--color-teal-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/* STICKY FLOATING WHATSAPP BUTTON */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.wa-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-btn svg {
    width: 24px;
    height: 24px;
}

.wa-pulse {
    animation: waPulse 2s infinite;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes floatShape {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Tablet & Mobile Screens */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.85rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-media {
        min-height: 320px;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .ingredients-left {
        border-right: none;
        padding-right: 0;
    }
    
    .dosage-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Sticky Mobile Header Layout */
    .menu-toggle-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-card);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: var(--shadow-hover);
        border-bottom: 2px solid rgba(13, 92, 86, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-actions {
        margin-right: 12px;
    }
    
    .header-actions .btn-outline {
        display: none; /* Hide order button in small screen header */
    }
    
    .dosage-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-proof-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 420px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-left {
        border-right: none;
        border-bottom: 1px solid rgba(13, 92, 86, 0.08);
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    h1 { font-size: 2rem; }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .product-card {
        padding: 20px;
    }

    .story-copy {
        padding: 28px;
    }

    .story-copy h3 {
        font-size: 1.55rem;
    }

    .advantage-card {
        padding: 22px;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }
    
    .btn-card-buy {
        width: 100%;
    }
    
    .dosage-timeline {
        grid-template-columns: 1fr;
    }
    
    .calculator-left, .calculator-right {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-btn span {
        display: none; /* Icon only for small mobile screens */
    }
    
    .wa-btn {
        padding: 14px;
        border-radius: 50%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Inner page consistency with Home/Catalogue */
.inner-page {
  background: #fff;
  color: var(--body);
}

.inner-page main {
  padding-top: 0;
}

.inner-page .page-hero {
  min-height: auto;
  padding: clamp(112px, 12vw, 142px) 0 clamp(60px, 7vw, 82px);
}

.inner-page .page-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
}

.inner-page .page-hero p {
  max-width: 660px;
  margin: 0;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.65;
}

.inner-page .page-kicker {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.inner-page .page-kicker.light {
  color: #bbf7d0;
}

.inner-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inner-page .hero-actions .btn,
.inner-page .page-cta-inner .btn {
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.inner-page .btn-gold,
.inner-page .btn-teal {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, .18);
}

.inner-page .btn-gold:hover,
.inner-page .btn-teal:hover {
  background: var(--green-dark);
}

.inner-page .btn-outline,
.inner-page .light-outline {
  border-color: var(--green);
  background: #fff;
  color: var(--green-dark);
}

.inner-page .page-hero .light-outline,
.inner-page .page-cta-band .light-outline {
  border-color: rgba(255, 255, 255, .72);
  background: transparent;
  color: #fff;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(13, 63, 59, .94) 0%, rgba(13, 63, 59, .78) 45%, rgba(13, 63, 59, .42) 100%),
    url("images/bp-hero-products.svg") right center / min(54vw, 680px) no-repeat,
    linear-gradient(135deg, #123f3b 0%, #0f513f 100%);
}

.member-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(252, 211, 77, .18), transparent 34%),
    linear-gradient(120deg, #123f3b 0%, #0d5c56 62%, #164e45 100%);
}

.inner-page .section {
  padding: clamp(58px, 7vw, 84px) 0;
}

.inner-page .section-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.inner-page .section-intro h2,
.story-page-copy h2,
.trust-layout h2,
.join-steps h2,
.page-cta-inner h2 {
  margin: 8px 0 0;
  padding: 0;
  color: var(--heading);
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: 0;
}

.inner-page .section-intro p,
.story-page-copy p,
.trust-layout p,
.join-steps p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
}

.story-page-grid,
.trust-layout,
.member-hero-grid,
.join-steps {
  gap: clamp(32px, 5vw, 64px);
}

.story-product-stage {
  min-height: auto;
  aspect-ratio: 4 / 3;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 4px 18px rgba(17, 24, 39, .04);
}

.story-product-stage img {
  width: min(92%, 520px);
  height: auto;
}

.story-quote {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(22, 163, 74, .18);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 16px;
  line-height: 1.55;
}

.values-section,
.support-section,
.member-faq-section {
  background: var(--surface);
}

.values-section h2 {
  color: var(--heading);
}

.values-section .page-kicker.light {
  color: var(--green-dark);
}

.values-grid,
.benefit-list,
.member-benefit-list,
.support-grid,
.trust-facts {
  gap: 16px;
  border: 0;
  background: transparent;
}

.values-grid article,
.benefit-list article,
.support-grid article,
.trust-facts div,
.member-faq-list details,
.join-steps li {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(17, 24, 39, .04);
}

.values-grid article,
.benefit-list article {
  min-height: 188px;
  padding: 24px;
}

.values-grid strong {
  color: var(--heading);
  font-size: 18px;
  line-height: 1.2;
}

.values-grid p {
  margin-top: 12px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.member-benefit-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-list article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
}

.benefit-list h3,
.support-grid h3 {
  margin: 18px 0 8px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.25;
}

.benefit-list p,
.support-grid p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.member-hero-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.member-hero-card img {
  max-height: 300px;
  margin-bottom: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(2, 44, 39, .16);
}

.member-stat-panel {
  gap: 10px;
  border: 0;
  background: transparent;
}

.member-stat-panel div,
.member-hero-card .member-stat-panel div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
}

.member-stat-panel strong,
.member-hero-card .member-stat-panel strong {
  color: #fcd34d;
  font-size: 24px;
  line-height: 1.1;
}

.member-stat-panel span {
  margin-top: 4px;
  color: #dcfce7;
  font-size: 13px;
  line-height: 1.35;
}

.join-steps {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.join-steps ol {
  gap: 16px;
}

.join-steps li {
  min-height: 128px;
  padding: 20px 20px 20px 68px;
}

.join-steps li::before {
  top: 20px;
  left: 20px;
  border-color: rgba(22, 163, 74, .24);
  background: var(--green-soft);
  color: var(--green-dark);
}

.join-steps strong {
  color: var(--heading);
  font-size: 16px;
}

.join-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.support-grid article {
  min-height: 190px;
  padding: 24px;
}

.resource-icon {
  border-radius: 12px;
  background: var(--green);
}

.support-grid article:nth-child(even) .resource-icon {
  background: var(--green-dark);
}

.member-faq-list {
  max-width: 900px;
  gap: 12px;
}

.member-faq-list details {
  box-shadow: none;
}

.member-faq-list summary {
  min-height: 62px;
  padding: 16px 20px;
  font-size: 16px;
}

.member-faq-list summary::after {
  background: var(--green-soft);
  color: var(--green-dark);
}

.member-faq-list p {
  padding: 0 20px 20px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.65;
}

.trust-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-facts div {
  min-height: 132px;
  padding: 22px;
}

.trust-facts strong {
  color: var(--green-deep);
  font-size: 24px;
}

.trust-facts span {
  color: var(--muted);
  font-size: 14px;
}

.page-cta-band {
  padding: clamp(56px, 7vw, 76px) 0;
  background: var(--green-deep);
}

.page-cta-inner {
  gap: 32px;
}

.page-cta-inner h2 {
  color: #fff;
}

.member-final-cta p,
.page-cta-inner p {
  color: #dcfce7;
}

.inner-page .footer {
  padding: 44px 0 0;
  background: #fff;
  color: var(--heading);
}

.inner-page .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px 56px;
}

.inner-page .footer-grid > div:first-child {
  grid-column: 1 / -1;
}

.inner-page .footer h3 {
  color: var(--heading);
  font-size: 13px;
  text-transform: uppercase;
}

.inner-page .footer-grid > div > a:not(.brand) {
  display: block;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  color: var(--heading);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.inner-page .footer-brand {
  margin-bottom: 18px;
  color: var(--heading);
}

.inner-page .footer .muted,
.inner-page .footer p {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}

.inner-page .footer-bottom {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (min-width: 768px) {
  .inner-page .footer-grid {
    grid-template-columns: 1.6fr repeat(3, minmax(130px, 1fr));
  }

  .inner-page .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (max-width: 599px) {
  .inner-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inner-page .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .member-benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-steps {
    grid-template-columns: 1fr;
  }

  .member-hero-card {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
  }

  .member-hero-card img {
    height: 100%;
    max-height: 220px;
    margin-bottom: 0;
    padding: 20px;
  }

  .member-stat-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-stat-panel div,
  .member-hero-card .member-stat-panel div {
    min-height: 80px;
  }
}

@media (max-width: 767px) {
  .inner-page .page-hero {
    padding: 104px 0 54px;
  }

  .inner-page .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-hero {
    background:
      linear-gradient(rgba(13, 63, 59, .92), rgba(13, 63, 59, .9)),
      url("images/bp-hero-products.svg") center 58% / 520px no-repeat,
      #123f3b;
  }

  .story-page-grid,
  .trust-layout,
  .member-hero-grid,
  .join-steps {
    grid-template-columns: 1fr;
  }

  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-hero-card {
    grid-template-columns: 1fr;
  }

  .member-hero-card img {
    height: auto;
    max-height: 180px;
    padding: 18px;
  }

  .member-stat-panel div,
  .member-hero-card .member-stat-panel div {
    min-height: 74px;
    padding: 14px;
  }

  .member-stat-panel strong,
  .member-hero-card .member-stat-panel strong {
    font-size: 20px;
  }
}

@media (max-width: 599px) {
  .member-benefit-list,
  .support-grid,
  .values-grid,
  .trust-facts,
  .join-steps ol {
    grid-template-columns: 1fr;
  }

  .inner-page .hero-actions,
  .inner-page .hero-actions .btn,
  .inner-page .page-cta-inner .btn {
    width: 100%;
  }
}

/* About and reseller redesign */
.about-profile-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(252, 211, 77, .2), transparent 28%),
    linear-gradient(120deg, #0f3f3a 0%, #0f5a4f 54%, #123f3b 100%);
}

.about-hero-grid,
.founder-grid,
.selling-map-layout,
.reseller-support-layout {
  display: grid;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
}

.about-hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-hero-panel img {
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(320px, 32vw, 460px);
  max-height: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  object-fit: cover;
  object-position: center 48%;
  box-shadow: 0 22px 50px rgba(2, 44, 39, .18);
}

.profile-pill,
.founder-principles article,
.company-profile-grid article,
.audience-grid article,
.need-grid a,
.selling-map-grid a,
.message-preview {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
}

.profile-pill {
  min-height: 154px;
  padding: 18px;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.profile-pill span,
.company-profile-grid article > span,
.audience-grid article > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fcd34d;
  color: #134e4a;
  font-size: 12px;
  font-weight: 800;
}

.profile-pill strong,
.profile-pill p {
  display: block;
  color: #fff;
}

.profile-pill strong {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
}

.profile-pill p {
  margin-top: 8px;
  color: #d9f1e9;
  font-size: 13px;
  line-height: 1.55;
}

.founder-section {
  background: #fff;
}

.founder-grid {
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
}

.founder-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(15, 95, 82, .94), rgba(19, 78, 74, .98)),
    var(--green-deep);
  color: #fff;
  box-shadow: 0 22px 48px rgba(2, 44, 39, .16);
}

.founder-image {
  width: min(100%, 240px);
  height: auto;
  aspect-ratio: 1124 / 1374;
  justify-self: start;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 34px rgba(2, 44, 39, .24);
}

.founder-card h2 {
  margin: 8px 0 6px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

.founder-card p,
.founder-card blockquote {
  color: #d9f1e9;
}

.founder-card blockquote {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.founder-copy h2,
.company-profile-section h2,
.product-philosophy-section h2,
.audience-section h2,
.selling-map-layout h2,
.reseller-support-layout h2 {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.founder-copy p,
.company-profile-section .heading-row p,
.product-philosophy-section .section-intro p,
.audience-section .heading-row p,
.selling-map-layout p,
.reseller-support-layout .section-intro p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
}

.founder-principles,
.company-profile-grid,
.audience-grid,
.need-grid {
  display: grid;
  gap: 16px;
}

.founder-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.founder-principles article {
  min-height: 148px;
  padding: 22px;
}

.founder-principles strong,
.company-profile-grid strong,
.audience-grid strong,
.need-grid strong,
.selling-map-grid strong {
  display: block;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.25;
}

.founder-principles span,
.company-profile-grid p,
.audience-grid p,
.need-grid span,
.selling-map-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.company-profile-section,
.product-philosophy-section,
.audience-section,
.member-benefits,
.selling-map-section,
.support-section,
.member-faq-section {
  background: var(--surface);
}

.company-profile-grid,
.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-profile-grid article,
.audience-grid article {
  min-height: 214px;
  padding: 24px;
}

.need-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.need-grid a,
.selling-map-grid a {
  min-height: 138px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.need-grid a:hover,
.selling-map-grid a:hover {
  border-color: rgba(22, 163, 74, .34);
  box-shadow: 0 14px 30px rgba(22, 163, 74, .12);
  transform: translateY(-2px);
}

.about-trust-band {
  padding: 26px 0;
  background: #fff;
}

.about-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
}

.about-trust-strip div {
  min-height: 122px;
  padding: 22px;
  border-right: 1px solid var(--border);
}

.about-trust-strip div:last-child {
  border-right: 0;
}

.about-trust-strip strong,
.about-trust-strip span {
  display: block;
}

.about-trust-strip strong {
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-size: 18px;
}

.about-trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.about-final-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  background: var(--green-deep);
  color: #dcfce7;
}

.about-final-panel h2 {
  max-width: 720px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-final-panel p {
  max-width: 660px;
  margin: 12px 0 0;
  color: #dcfce7;
}

.reseller-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(252, 211, 77, .18), transparent 32%),
    linear-gradient(120deg, #123f3b 0%, #0d5c56 62%, #164e45 100%);
}

.reseller-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
}

.reseller-dashboard {
  display: grid;
  gap: 14px;
}

.reseller-product-stage {
  min-height: 292px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 32px);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 42px rgba(2, 44, 39, .18);
}

.reseller-product-stage img {
  width: min(100%, 420px);
  max-height: 252px;
  object-fit: contain;
}

.reseller-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reseller-dashboard-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
}

.reseller-dashboard-grid strong,
.reseller-dashboard-grid span {
  display: block;
}

.reseller-dashboard-grid strong {
  color: #fcd34d;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.1;
}

.reseller-dashboard-grid span {
  margin-top: 6px;
  color: #dcfce7;
  font-size: 13px;
  line-height: 1.35;
}

.reseller-dashboard-grid .wa-stat-logo img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

.audience-grid {
  margin-top: 28px;
}

.selling-map-layout {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.selling-map-layout .btn {
  margin-top: 22px;
}

.selling-map-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.reseller-support-layout {
  align-items: start;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .7fr);
}

.reseller-support-layout .section-intro {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: 0;
  text-align: left;
}

.reseller-support-layout .support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.message-preview {
  min-height: 100%;
  padding: 24px;
  background: #0f3f3a;
  color: #dcfce7;
}

.message-preview h3 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.message-preview pre {
  overflow: auto;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #f8fafc;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

@media (max-width: 1180px) {
  .company-profile-grid,
  .audience-grid,
  .about-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .about-trust-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .selling-map-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-hero-grid,
  .founder-grid,
  .reseller-hero-grid,
  .selling-map-layout,
  .reseller-support-layout {
    grid-template-columns: 1fr;
  }

  .founder-principles,
  .need-grid,
  .reseller-support-layout .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .about-hero-grid,
  .reseller-hero-grid {
    gap: 24px;
  }

  .about-hero-panel,
  .company-profile-grid,
  .audience-grid,
  .founder-principles,
  .need-grid,
  .selling-map-grid,
  .reseller-dashboard-grid,
  .reseller-support-layout .support-grid,
  .about-trust-strip {
    grid-template-columns: 1fr;
  }

  .about-hero-panel img {
    max-height: 220px;
  }

  .profile-pill,
  .company-profile-grid article,
  .audience-grid article,
  .need-grid a,
  .selling-map-grid a {
    min-height: auto;
  }

  .about-trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-trust-strip div:last-child {
    border-bottom: 0;
  }

  .reseller-product-stage {
    min-height: 210px;
  }

  .reseller-product-stage img {
    max-height: 170px;
  }

  .about-final-panel .hero-actions,
  .about-final-panel .btn {
    width: 100%;
  }
}

/* Keep inner-page navbar aligned with the optimized shared header. */
.inner-page .site-header .container.nav-wrap {
  width: min(calc(100% - 48px), var(--container));
  max-width: var(--container);
  padding-inline: 0;
}

.mobile-disclosure-card {
  min-width: 0;
  align-self: start;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.mobile-disclosure-card summary,
.mobile-package-details summary {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  cursor: pointer;
}

.mobile-disclosure-card summary > h3,
.mobile-disclosure-card summary > strong {
  margin: 0;
  min-width: 0;
}

.mobile-disclosure-card summary > span:not(.resource-icon):not(.benefit-icon):not(.page-kicker) {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}

.mobile-disclosure-card summary::-webkit-details-marker,
.mobile-package-details summary::-webkit-details-marker {
  display: none;
}

.mobile-disclosure-card summary::after,
.mobile-package-details summary::after {
  content: "+";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1;
}

.mobile-disclosure-card[open] summary::after,
.mobile-package-details[open] summary::after {
  content: "-";
}

.mobile-disclosure-card p,
.mobile-disclosure-card > span {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.mobile-disclosure-card.map-card > a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-package-details {
  margin-bottom: 16px;
}

.mobile-package-details summary {
  width: fit-content;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.message-preview summary {
  align-items: flex-start;
  flex-wrap: wrap;
}

.message-preview summary .page-kicker {
  flex: 1 0 calc(100% - 34px);
}

.message-preview summary h3 {
  flex: 1 1 100%;
}

/* Compact inner pages. Scoped away from home and catalogue pages. */
.about-page main,
.member-page main,
.legal-page main {
  padding-top: 126px;
}

.about-page .page-hero,
.member-page .page-hero,
.legal-page .page-hero {
  min-height: auto;
  padding: clamp(38px, 5vw, 54px) 0;
}

.about-page .page-hero h1,
.member-page .page-hero h1,
.legal-page .page-hero h1 {
  max-width: 660px;
  margin: 10px 0 16px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
}

.about-page .page-hero p,
.member-page .page-hero p,
.legal-page .page-hero p {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
}

.about-page .section,
.member-page .section,
.legal-page .section {
  padding: clamp(34px, 5vw, 56px) 0;
}

.about-page .about-hero-grid,
.member-page .reseller-hero-grid {
  gap: clamp(22px, 4vw, 44px);
}

.about-page .about-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
}

.about-page .about-hero-panel {
  gap: 10px;
}

.about-page .profile-pill {
  min-height: auto;
  padding: 14px;
  border-radius: 12px;
}

.about-page .profile-pill span,
.about-page .company-profile-grid article > span,
.member-page .audience-grid article > span {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  font-size: 11px;
}

.about-page .company-profile-grid article > span,
.member-page .audience-grid article > span {
  display: none;
}

.about-page .profile-pill strong {
  font-size: 16px;
}

.about-page .profile-pill p {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.45;
}

.about-page .about-hero-panel img {
  height: clamp(300px, 30vw, 420px);
  max-height: none;
  padding: 0;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 48%;
  box-shadow: none;
}

.about-page .founder-grid {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(22px, 4vw, 42px);
}

.about-page .founder-card {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--heading);
  text-align: center;
  box-shadow: none;
}

.about-page .founder-image {
  width: min(100%, 220px);
  height: 268px;
  aspect-ratio: auto;
  align-self: center;
  justify-self: center;
  border-radius: 12px;
  box-shadow: none;
}

.about-page .founder-card .page-kicker {
  color: var(--green-dark);
}

.about-page .founder-card h2 {
  margin: 6px 0 4px;
  color: var(--heading);
  font-size: clamp(22px, 2.3vw, 28px);
}

.about-page .founder-card p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

.about-page .founder-card blockquote {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--green-deep);
  font-size: 15px;
}

.about-page .founder-copy h2,
.about-page .company-profile-section h2,
.about-page .product-philosophy-section h2,
.member-page .audience-section h2,
.member-page .selling-map-layout h2,
.member-page .reseller-support-layout h2 {
  font-size: clamp(24px, 2.8vw, 34px);
}

.about-page .founder-copy p,
.about-page .company-profile-section .heading-row p,
.about-page .product-philosophy-section .section-intro p,
.member-page .audience-section .heading-row p,
.member-page .selling-map-layout p,
.member-page .reseller-support-layout .section-intro p {
  font-size: 14px;
  line-height: 1.6;
}

.about-page .founder-principles,
.about-page .company-profile-grid,
.about-page .need-grid,
.member-page .audience-grid,
.member-page .member-benefit-list,
.member-page .tier-grid,
.member-page .selling-map-grid,
.member-page .support-grid {
  gap: 10px;
}

.about-page .founder-principles {
  margin-top: 18px;
}

.about-page .founder-principles article,
.about-page .founder-principles .mobile-disclosure-card,
.about-page .company-profile-grid article,
.about-page .company-profile-grid .mobile-disclosure-card,
.member-page .audience-grid article,
.member-page .audience-grid .mobile-disclosure-card,
.about-page .need-grid a,
.member-page .selling-map-grid a,
.member-page .selling-map-grid .mobile-disclosure-card,
.member-page .member-benefit-list article,
.member-page .member-benefit-list .mobile-disclosure-card,
.member-page .support-grid article,
.member-page .support-grid .mobile-disclosure-card,
.member-page .message-preview,
.member-page .tier-card,
.member-page .member-faq-list details {
  min-height: auto;
  border-radius: 10px;
  box-shadow: none;
}

.about-page .founder-principles article,
.about-page .founder-principles .mobile-disclosure-card,
.about-page .company-profile-grid article,
.about-page .company-profile-grid .mobile-disclosure-card,
.member-page .audience-grid article,
.member-page .audience-grid .mobile-disclosure-card,
.about-page .need-grid a,
.member-page .selling-map-grid a,
.member-page .selling-map-grid .mobile-disclosure-card {
  padding: 12px 14px;
}

.about-page .founder-principles strong,
.about-page .company-profile-grid strong,
.member-page .audience-grid strong,
.about-page .need-grid strong,
.member-page .selling-map-grid strong {
  font-size: 15.5px;
}

.about-page .founder-principles span,
.about-page .company-profile-grid p,
.member-page .audience-grid p,
.about-page .need-grid span,
.member-page .selling-map-grid span,
.member-page .mobile-disclosure-card p,
.member-page .mobile-disclosure-card > span,
.about-page .mobile-disclosure-card p,
.about-page .mobile-disclosure-card > span {
  margin-top: 6px;
  font-size: 12.75px;
  line-height: 1.45;
}

.about-page .about-trust-band {
  padding: 18px 0;
}

.about-page .about-trust-strip {
  border-radius: 12px;
  box-shadow: none;
}

.about-page .about-trust-strip div {
  min-height: auto;
  padding: 14px 16px;
}

.about-page .about-final-panel {
  gap: 22px;
  padding: 22px;
  border-radius: 14px;
}

.about-page .about-final-panel h2,
.member-page .page-cta-inner h2 {
  font-size: clamp(24px, 2.7vw, 32px);
}

.member-page .reseller-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
}

.member-page .reseller-product-stage {
  min-height: auto;
  padding: 16px;
  border-radius: 14px;
  box-shadow: none;
}

.member-page .reseller-product-stage img {
  max-height: 184px;
}

.member-page .reseller-dashboard-grid {
  gap: 8px;
}

.member-page .reseller-dashboard-grid div {
  min-height: auto;
  padding: 12px;
  border-radius: 10px;
}

.member-page .reseller-dashboard-grid strong {
  font-size: 20px;
}

.member-page .reseller-dashboard-grid span {
  font-size: 12.5px;
}

.member-page .inner-page .section-intro,
.member-page .section-intro {
  margin-bottom: 22px;
}

.member-page .member-benefit-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-page .member-benefit-list article {
  padding: 16px;
}

.member-page .benefit-list article > span {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.member-page .benefit-list h3,
.member-page .support-grid h3 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.member-page .benefit-list p,
.member-page .support-grid p {
  font-size: 13px;
  line-height: 1.5;
}

.member-page .tier-card {
  padding: 18px;
}

.member-page .tier-card.highlighted {
  border-width: 1px;
  background: #f8faf8;
}

.member-page .tier-card h3 {
  margin: 8px 0 2px;
  font-size: 1.55rem;
}

.member-page .tier-price {
  padding-bottom: 14px;
  font-size: 13px;
}

.member-page .tier-card ul {
  margin-bottom: 16px;
}

.member-page .tier-card li {
  padding: 7px 0 7px 20px;
  font-size: 13px;
  line-height: 1.45;
}

.member-page .tier-badge {
  right: 14px;
  padding: 5px 9px;
}

.member-page .selling-map-layout {
  grid-template-columns: 1fr;
  gap: 24px;
}

.member-page .selling-map-layout > div:first-child {
  max-width: 760px;
}

.member-page .selling-map-layout .btn {
  margin-top: 14px;
}

.member-page .join-steps {
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr);
  gap: 28px;
}

.member-page .join-steps ol {
  gap: 10px;
}

.member-page .join-steps li {
  min-height: auto;
  padding: 14px 14px 14px 54px;
  border-radius: 10px;
}

.member-page .join-steps li::before {
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.member-page .join-steps strong {
  font-size: 15px;
}

.member-page .join-steps span {
  font-size: 13px;
  line-height: 1.45;
}

.member-page .reseller-support-layout {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 16px;
}

.member-page .reseller-support-layout .section-intro {
  max-width: 680px;
}

.member-page .support-grid article {
  padding: 16px;
}

.member-page .resource-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 9px;
}

.member-page .message-preview {
  padding: 18px;
}

.member-page .message-preview h3 {
  font-size: 20px;
}

.member-page .message-preview pre {
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.member-page .member-faq-list {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.member-page .member-faq-list summary {
  min-height: auto;
  padding: 13px 15px;
  font-size: 15px;
}

.member-page .member-faq-list summary::after {
  width: 24px;
  height: 24px;
}

.member-page .member-faq-list p {
  padding: 0 15px 15px;
  font-size: 13px;
  line-height: 1.5;
}

.member-page .page-cta-band {
  padding: 32px 0;
}

.member-page .page-cta-inner {
  gap: 22px;
}

.legal-page .story-page-copy {
  max-width: 860px;
}

.legal-page .story-page-copy h2 {
  margin: 0 0 6px;
  font-size: clamp(19px, 2vw, 22px);
}

.legal-page .story-page-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.legal-page .story-page-copy p + h2 {
  margin-top: 24px;
}

.legal-page .compact-footer .footer-bottom {
  padding: 18px 0;
}

@media (max-width: 1180px) {
  .member-page .selling-map-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-page .about-hero-grid,
  .about-page .founder-grid,
  .member-page .reseller-hero-grid,
  .member-page .selling-map-layout,
  .member-page .join-steps,
  .member-page .reseller-support-layout {
    grid-template-columns: 1fr;
  }

  .about-page .company-profile-grid,
  .member-page .audience-grid,
  .member-page .member-benefit-list,
  .member-page .member-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-page main,
  .member-page main,
  .legal-page main {
    padding-top: 116px;
  }

  .about-page .page-hero,
  .member-page .page-hero,
  .legal-page .page-hero {
    padding: 36px 0 42px;
  }

  .about-page .section,
  .member-page .section,
  .legal-page .section {
    padding: 24px 0;
  }

  .about-page .section-intro,
  .member-page .section-intro {
    margin-bottom: 14px;
  }

  .about-page .section-heading,
  .member-page .section-heading {
    margin-bottom: 14px;
  }

  .about-page .section-intro h2,
  .member-page .section-intro h2,
  .about-page .founder-copy h2,
  .about-page .company-profile-section h2,
  .about-page .product-philosophy-section h2,
  .member-page .audience-section h2,
  .member-page .selling-map-layout h2,
  .member-page .reseller-support-layout h2,
  .member-page .join-steps h2 {
    font-size: clamp(21px, 6vw, 26px);
  }

  .about-page .founder-card {
    padding: 18px 14px;
  }

  .about-page .founder-image {
    width: 168px;
    height: 204px;
  }

  .about-page .founder-card blockquote {
    font-size: 14px;
  }

  .about-page .about-hero-panel,
  .member-page .reseller-product-stage {
    display: none;
  }

  .member-page .reseller-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-page .reseller-dashboard-grid div {
    min-height: 60px;
    padding: 10px;
  }

  .about-page .founder-principles,
  .about-page .company-profile-grid,
  .member-page .audience-grid,
  .member-page .member-benefit-list,
  .member-page .selling-map-grid,
  .member-page .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .need-grid,
  .member-page .tier-grid,
  .member-page .member-faq-list {
    grid-template-columns: 1fr;
  }

  .about-page .founder-principles .mobile-disclosure-card:last-child,
  .member-page .selling-map-grid .mobile-disclosure-card:last-child,
  .member-page .support-grid .mobile-disclosure-card:last-child {
    grid-column: 1 / -1;
  }

  .about-page .founder-principles,
  .about-page .company-profile-grid,
  .about-page .need-grid,
  .member-page .audience-grid,
  .member-page .member-benefit-list,
  .member-page .tier-grid,
  .member-page .selling-map-grid,
  .member-page .support-grid,
  .member-page .member-faq-list {
    gap: 8px;
  }

  .about-page .founder-principles article,
  .about-page .company-profile-grid article,
  .about-page .founder-principles .mobile-disclosure-card,
  .about-page .company-profile-grid .mobile-disclosure-card,
  .about-page .need-grid a,
  .member-page .audience-grid article,
  .member-page .member-benefit-list article,
  .member-page .audience-grid .mobile-disclosure-card,
  .member-page .member-benefit-list .mobile-disclosure-card,
  .member-page .selling-map-grid a,
  .member-page .selling-map-grid .mobile-disclosure-card,
  .member-page .support-grid article,
  .member-page .support-grid .mobile-disclosure-card {
    padding: 10px;
    border-radius: 8px;
  }

  .about-page .founder-principles strong,
  .about-page .company-profile-grid strong,
  .about-page .need-grid strong,
  .member-page .audience-grid strong,
  .member-page .selling-map-grid strong,
  .member-page .benefit-list h3,
  .member-page .support-grid h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
  }

  .member-page .benefit-list article > span {
    display: none;
  }

  .member-page .support-grid article,
  .member-page .support-grid .mobile-disclosure-card summary {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .member-page .message-preview {
    padding: 12px;
  }

  .member-page .message-preview summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 3px 8px;
    align-items: center;
  }

  .member-page .message-preview summary::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .member-page .message-preview summary .page-kicker {
    grid-column: 1;
    flex: none;
    font-size: 10px;
    line-height: 1.1;
  }

  .member-page .message-preview summary h3 {
    grid-column: 1;
    flex: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .member-page .resource-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin: 0;
    border-radius: 8px;
    font-size: 11px;
  }

  .member-page .tier-card {
    padding: 13px;
  }

  .member-page .tier-card h3 {
    margin: 6px 0 2px;
    font-size: 1.28rem;
  }

  .member-page .tier-name,
  .member-page .tier-price {
    font-size: 12px;
  }

  .member-page .tier-price {
    padding-bottom: 10px;
  }

  .member-page .tier-card .btn {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .member-page .tier-badge {
    position: static;
    width: fit-content;
    margin-bottom: 6px;
  }

  .member-page .join-steps ol {
    gap: 8px;
  }

  .member-page .join-steps li {
    padding: 10px 12px 10px 46px;
    border-radius: 8px;
  }

  .member-page .join-steps li::before {
    top: 9px;
    left: 12px;
    width: 24px;
    height: 24px;
  }

  .about-page .about-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-trust-strip div {
    min-height: auto;
    padding: 10px 12px;
  }

  .about-page .about-trust-strip strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .about-page .about-final-panel,
  .member-page .page-cta-band {
    padding-block: 22px;
  }

  .about-page .about-final-panel .hero-actions,
  .about-page .about-final-panel .btn,
  .member-page .hero-actions,
  .member-page .hero-actions .btn,
  .member-page .page-cta-inner .btn {
    width: 100%;
  }
}

.inner-page .site-header .btn {
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.2;
  gap: 0;
}

.inner-page .site-header .nav-cta {
  margin-top: 8px;
}

/* Reseller mobile refinement from the attached UX plan. */
.member-page .mobile-section-cta,
.member-page .mobile-sticky-cta {
  display: none;
}

.member-page .member-benefits {
  background: #f7faf3;
}

.member-page .member-benefits .section-intro {
  max-width: 760px;
  margin-inline: 0 auto;
  text-align: left;
}

.member-page .benefit-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .member-page main {
    padding-bottom: 106px;
  }

  .member-page .section-heading.heading-row,
  .member-page .section-intro,
  .member-page .reseller-support-layout .section-intro {
    align-items: flex-start;
    text-align: left;
  }

  .member-page .section-heading.heading-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .member-page .section-heading.heading-row p,
  .member-page .section-intro p,
  .member-page .selling-map-layout p,
  .member-page .reseller-support-layout .section-intro p {
    max-width: none;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .member-page .page-kicker {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .member-page .section-intro h2,
  .member-page .audience-section h2,
  .member-page .selling-map-layout h2,
  .member-page .reseller-support-layout h2,
  .member-page .join-steps h2 {
    font-size: clamp(24px, 6.5vw, 27px);
    line-height: 1.16;
  }

  .member-page .audience-grid,
  .member-page .member-benefit-list,
  .member-page .selling-map-grid,
  .member-page .support-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .member-page .selling-map-grid .mobile-disclosure-card:last-child,
  .member-page .support-grid .mobile-disclosure-card:last-child {
    grid-column: auto;
  }

  .member-page .audience-grid .mobile-disclosure-card,
  .member-page .member-benefit-list .mobile-disclosure-card,
  .member-page .selling-map-grid .mobile-disclosure-card,
  .member-page .support-grid .mobile-disclosure-card {
    min-height: 56px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .member-page .mobile-disclosure-card summary {
    min-height: 28px;
  }

  .member-page .mobile-disclosure-card summary > h3,
  .member-page .mobile-disclosure-card summary > strong,
  .member-page .audience-grid strong,
  .member-page .selling-map-grid strong,
  .member-page .benefit-list h3,
  .member-page .support-grid h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  .member-page .mobile-disclosure-card p,
  .member-page .mobile-disclosure-card > span,
  .member-page .selling-map-grid span {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .member-page .mobile-disclosure-card summary > span:not(.resource-icon):not(.benefit-icon):not(.page-kicker) {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .member-page .benefit-icon,
  .member-page .resource-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin: 0;
    border-radius: 9px;
  }

  .member-page .mobile-section-cta {
    display: grid;
    gap: 9px;
    margin-top: 14px;
  }

  .member-page .mobile-section-cta span {
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
  }

  .member-page .mobile-section-cta .btn {
    width: 100%;
    min-height: 46px;
  }

  .member-page .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 90;
    display: grid;
    gap: 5px;
    padding: 10px;
    border: 1px solid rgba(16, 74, 59, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 36px rgba(10, 42, 34, .18);
    backdrop-filter: blur(12px);
  }

  .member-page .mobile-sticky-cta .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  .member-page .sticky-secondary {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
  }
}

@media (min-width: 641px) {
  .member-page .mobile-section-cta,
  .member-page .mobile-sticky-cta {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .inner-page .site-header .nav-panel {
    grid-template-columns: minmax(170px, 1fr) auto minmax(96px, 1fr);
  }

  .inner-page .site-header .site-nav {
    justify-self: center;
    gap: clamp(10px, 1.25vw, 18px);
  }

  .inner-page .site-header .site-nav > a:not(.btn),
  .inner-page .site-header .nav-dropdown-trigger {
    min-height: 40px;
    font-size: 14px;
  }

  .inner-page .site-header .nav-cta {
    min-height: 44px;
    margin: 0;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .inner-page .site-header .container.nav-wrap {
    width: min(calc(100% - 32px), var(--container));
  }

  .inner-page .site-header .nav-panel {
    min-height: 64px;
    grid-template-columns: minmax(150px, 1fr) auto minmax(76px, 1fr);
    gap: clamp(6px, 1vw, 10px);
    padding: 8px clamp(10px, 1.5vw, 14px);
  }

  .inner-page .site-header .site-nav {
    gap: clamp(7px, 1.1vw, 11px);
  }

  .inner-page .site-header .site-nav > a:not(.btn),
  .inner-page .site-header .nav-dropdown-trigger {
    min-height: 40px;
    font-size: clamp(12px, 1.25vw, 13px);
  }

  .inner-page .site-header .nav-cta {
    min-height: 44px;
    padding: 8px clamp(9px, 1.2vw, 11px);
    border-radius: 10px;
    font-size: clamp(12px, 1.35vw, 13px);
  }
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.member-page .reseller-risk-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d9f99d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .member-page main {
    padding-top: 104px;
  }

  .member-page .page-hero,
  .member-page .member-hero,
  .member-page .reseller-hero {
    min-height: auto;
    padding: 32px 0 38px;
  }

  .member-page .member-hero-grid,
  .member-page .reseller-hero-grid,
  .member-page .page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .member-page .member-hero-copy,
  .member-page .about-hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .member-page .page-hero h1,
  .member-page .member-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .member-page .page-hero p,
  .member-page .member-hero p {
    max-width: 100%;
  }

  .member-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .member-page .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .member-page .reseller-dashboard {
    min-width: 0;
  }

  .member-page .reseller-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-page .reseller-dashboard-grid div {
    min-width: 0;
  }

  .member-page .reseller-risk-note {
    font-size: 12.5px;
  }
}

@media (max-width: 390px) {
  .member-page .reseller-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact reseller page implementation from the AI-agent development plan. */
.reseller-page .nav-promo {
  text-decoration: none;
}

.reseller-page .page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(248, 217, 74, .18), transparent 28%),
    linear-gradient(135deg, #0f513f 0%, #124b38 46%, #0b3329 100%);
}

.reseller-page .reseller-hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
}

.reseller-page .reseller-hero__sentence {
  max-width: 620px;
  margin: 14px 0 0;
  color: #fef3c7;
  font-weight: 900;
}

.reseller-page .reseller-dashboard {
  display: grid;
  gap: 12px;
}

.reseller-page .reseller-product-stage {
  aspect-ratio: 1672 / 941;
  display: block;
  min-height: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
  overflow: hidden;
}

.reseller-page .reseller-product-stage img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.reseller-page .reseller-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.reseller-page .reseller-dashboard-grid div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.reseller-page .reseller-dashboard-grid strong {
  display: block;
  color: #fde68a;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}

.reseller-page .reseller-dashboard-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.quick-facts {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: #f8faf8;
}

.quick-facts__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.quick-facts__item {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #dce8df;
  border-radius: 10px;
  background: #fff;
}

.quick-facts__item dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-facts__item dd {
  margin: 5px 0 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.reseller-page .section {
  padding-block: clamp(34px, 5vw, 54px);
}

.package-comparison__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.package-comparison__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid #cfe3f4;
  border-radius: 8px;
  background: #eff8ff;
  box-shadow: 0 14px 34px rgba(18, 75, 56, .08);
}

.package-comparison__card:nth-child(3) {
  border-color: #ead7b7;
  background: #fff8ec;
}

.package-comparison__card--recommended {
  border-color: #b7dec7;
  background: #f0fbf5;
  box-shadow: 0 18px 42px rgba(18, 75, 56, .13);
}

.package-comparison__card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.package-comparison__eyebrow,
.package-comparison__price-note,
.package-comparison__details p,
.package-comparison__feature-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.package-comparison__card h3 {
  margin: 6px 0 0;
  color: var(--heading);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
}

.package-comparison__qty,
.package-comparison__badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(18, 75, 56, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(18, 75, 56, .06);
}

.package-comparison__badge {
  width: fit-content;
  min-height: 28px;
  background: #fef3c7;
  color: #7c4a03;
}

.package-comparison__price-row {
  display: grid;
  gap: 4px;
}

.package-comparison__price {
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 900;
  line-height: .95;
  overflow-wrap: anywhere;
}

.package-comparison__fit {
  min-height: 46px;
  margin: 0;
  color: var(--body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.package-comparison__card .btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 999px;
}

.package-comparison__details {
  padding-top: 2px;
}

.package-comparison__details p {
  margin: 0 0 12px;
  color: var(--heading);
  text-transform: none;
}

.package-comparison__details ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-comparison__details li {
  position: relative;
  min-height: 24px;
  padding-left: 31px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}

.package-comparison__details li::before,
.package-comparison__details li::after {
  content: "";
  position: absolute;
}

.package-comparison__details li::before {
  top: .1rem;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(18, 75, 56, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
}

.package-comparison__details li::after {
  top: .38rem;
  left: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(45deg);
}

.package-comparison__details strong {
  display: block;
  margin-top: 2px;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.25;
}

.package-comparison__option,
.support-accordion__group,
.faq-before-chat__group,
.faq-before-chat__items details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.package-comparison__option + .package-comparison__option,
.support-accordion__group + .support-accordion__group,
.faq-before-chat__group + .faq-before-chat__group {
  margin-top: 10px;
}

.package-comparison__option summary,
.support-accordion__group > summary,
.faq-before-chat__group > summary,
.faq-before-chat__items summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 13px 15px;
  color: var(--heading);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.package-comparison__option summary::-webkit-details-marker,
.support-accordion__group > summary::-webkit-details-marker,
.faq-before-chat__group > summary::-webkit-details-marker,
.faq-before-chat__items summary::-webkit-details-marker {
  display: none;
}

.package-comparison__option summary::after,
.support-accordion__group > summary::after,
.faq-before-chat__group > summary::after,
.faq-before-chat__items summary::after {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.package-comparison__option[open] summary::after,
.support-accordion__group[open] > summary::after,
.faq-before-chat__group[open] > summary::after,
.faq-before-chat__items details[open] summary::after {
  content: "-";
}

.package-comparison__option summary span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
}

.package-comparison__option p {
  margin: 0;
  padding: 0 15px 12px;
  color: var(--body);
  font-size: 13.5px;
}

.package-comparison__option .btn {
  width: calc(100% - 30px);
  margin: 0 15px 15px;
}

.package-comparison__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fit-checklist__layout,
.benefit-summary__layout,
.start-timeline__layout,
.support-accordion__layout,
.testimony-proof__layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.fit-checklist__items,
.benefit-summary__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-checklist__items li,
.benefit-summary__list li,
.support-accordion__group li,
.testimony-proof__content li {
  position: relative;
  padding: 12px 12px 12px 36px;
  border: 1px solid #dce8df;
  border-radius: 10px;
  background: #fff;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.fit-checklist__items li::before,
.benefit-summary__list li::before,
.support-accordion__group li::before,
.testimony-proof__content li::before {
  content: "\2713";
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.benefit-summary {
  background: #f7faf3;
}

.product-portfolio__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-portfolio__item {
  display: grid;
  min-height: 168px;
  padding: 14px;
  border: 1px solid #dce8df;
  border-radius: 12px;
  background: #fff;
}

.product-portfolio__thumb {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid #dce8df;
  border-radius: 12px;
  background: #f8fbf4;
  object-fit: contain;
}

.product-portfolio__item strong {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.25;
}

.product-portfolio__item span:last-child {
  margin-top: 8px;
  color: var(--body);
  font-size: 12.75px;
  line-height: 1.45;
}

.start-timeline__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: start-step;
}

.start-timeline__item {
  position: relative;
  min-height: 74px;
  padding: 14px 14px 14px 58px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  counter-increment: start-step;
}

.start-timeline__item::before {
  content: counter(start-step);
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.start-timeline__item strong,
.start-timeline__item span {
  display: block;
}

.start-timeline__item strong {
  color: var(--heading);
  font-size: 15px;
}

.start-timeline__item span {
  margin-top: 4px;
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.45;
}

.support-accordion__items {
  display: grid;
  gap: 10px;
}

.support-accordion__group ul,
.testimony-proof__content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 15px 15px;
  list-style: none;
}

.support-accordion__group li,
.testimony-proof__content li {
  padding-block: 10px;
}

.testimony-proof {
  background: #f8faf8;
}

.testimony-proof__layout {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.testimony-proof__content h2 {
  margin: 8px 0 10px;
  color: var(--heading);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
}

.testimony-proof__content p {
  max-width: 640px;
  color: var(--body);
}

.testimony-proof__content .btn {
  margin-top: 16px;
}

.testimony-proof__active {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #dce8df;
  border-left: 4px solid var(--green-deep);
  border-radius: 8px;
  background: #fff;
}

.testimony-proof__counter {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.testimony-proof__active h3 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.15;
}

.testimony-proof__active p {
  margin: 0;
  color: var(--body);
}

.testimony-proof__active blockquote {
  margin: 0;
  color: var(--heading);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.testimony-proof__meta strong,
.testimony-proof__meta span {
  display: block;
}

.testimony-proof__meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.testimony-carousel {
  width: min(100%, 360px);
  justify-self: center;
}

.testimony-carousel__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid #cfded5;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(45deg, #f4f8f5 0 10px, #edf4ef 10px 20px);
  box-shadow: 0 16px 38px rgba(18, 75, 56, .1);
}

.testimony-carousel__media,
.testimony-carousel__media img,
.testimony-carousel__media video {
  width: 100%;
  height: 100%;
}

.testimony-carousel__media img,
.testimony-carousel__media video {
  display: block;
  object-fit: cover;
}

.testimony-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(18, 75, 56, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--green-deep);
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.testimony-carousel__arrow--prev {
  left: 10px;
}

.testimony-carousel__arrow--next {
  right: 10px;
}

.testimony-carousel__controls {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.testimony-carousel__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.testimony-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8c9bd;
  cursor: pointer;
}

.testimony-carousel__dot.active {
  width: 22px;
  background: var(--green-deep);
}

.faq-before-chat__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-before-chat__group + .faq-before-chat__group {
  margin-top: 0;
}

.faq-before-chat__items {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.faq-before-chat__items details {
  background: #f9fbf8;
}

.faq-before-chat__items summary {
  min-height: 44px;
  padding: 11px 12px;
  font-size: 13.5px;
}

.faq-before-chat__items p {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.5;
}

.final-cta__note {
  margin: 12px 0 0;
  color: #d9f99d;
  font-size: 13px;
  font-weight: 900;
}

.founder-video-section {
  background: #f8faf8;
}

.founder-video-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(180px, 240px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.founder-video-copy {
  max-width: 680px;
}

.founder-video-copy h2 {
  margin: 8px 0 12px;
  color: var(--heading);
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.founder-video-card {
  position: relative;
  width: min(100%, 220px);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 12px;
  background: #d6ead3;
  box-shadow: 0 20px 42px rgba(18, 75, 56, .16);
}

.founder-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  background: #111;
  object-fit: cover;
}

.founder-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, .58), transparent 46%);
  pointer-events: none;
}

.founder-video-card__top,
.founder-video-card figcaption,
.founder-video-card__play {
  position: absolute;
  z-index: 2;
}

.founder-video-card__top {
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.founder-video-card__top span {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-shadow: 0 1px 9px rgba(0, 0, 0, .5);
  white-space: nowrap;
}

.founder-video-card__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.founder-video-card__control {
  min-width: 56px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.founder-video-card__maximize {
  display: grid;
  width: 34px;
  min-width: 34px;
  padding: 0;
  place-items: center;
}

.founder-video-card__maximize::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.founder-video-card.is-fullscreen .founder-video-card__maximize::before {
  width: 12px;
  height: 12px;
}

.founder-video-card:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.founder-video-card:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.founder-video-card:fullscreen video {
  object-fit: contain;
}

.founder-video-card:-webkit-full-screen video {
  object-fit: contain;
}

.founder-video-card__play {
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.founder-video-card__play::before {
  content: "";
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #176b37;
}

.founder-video-card.is-playing .founder-video-card__play::before {
  width: 18px;
  height: 22px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #176b37 0 34%, transparent 34% 66%, #176b37 66% 100%);
}

.founder-video-card figcaption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
}

@media (max-width: 1180px) {
  .product-portfolio__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .reseller-page .reseller-hero-grid,
  .founder-video-layout,
  .fit-checklist__layout,
  .benefit-summary__layout,
  .start-timeline__layout,
  .support-accordion__layout,
  .testimony-proof__layout {
    grid-template-columns: 1fr;
  }

  .quick-facts__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-comparison__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .package-comparison__table {
    display: table;
  }

  .package-comparison__accordion {
    display: none;
  }
}

@media (max-width: 767px) {
  .reseller-page main {
    padding-bottom: 116px;
  }

  .reseller-page .section {
    padding-block: 36px;
  }

  .reseller-page .reseller-product-stage {
    display: none;
  }

  .reseller-page .reseller-dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-facts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-comparison__table-wrap {
    display: none;
  }

  .package-comparison__accordion {
    display: block;
  }

  .package-comparison__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .package-comparison__card {
    gap: 14px;
    padding: 20px 18px;
  }

  .package-comparison__card h3 {
    font-size: 26px;
  }

  .package-comparison__fit {
    min-height: 0;
  }

  .fit-checklist__items,
  .benefit-summary__list,
  .faq-before-chat__groups {
    grid-template-columns: 1fr;
  }

  .product-portfolio__rail {
    display: flex;
    gap: 10px;
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-portfolio__item {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  .testimony-carousel {
    order: -1;
  }

  .reseller-page .page-cta-inner {
    align-items: stretch;
  }

  .reseller-page .mobile-sticky-cta {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }

  .reseller-page .mobile-sticky-cta .btn,
  .reseller-page .mobile-sticky-cta .sticky-secondary {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 10px;
    text-align: center;
  }

  .reseller-page .mobile-sticky-cta .sticky-secondary {
    border: 1px solid #c7d7cc;
    background: #f8faf8;
    font-size: 13px;
  }

  .founder-video-layout {
    grid-template-columns: 1fr;
  }

  .founder-video-card {
    width: min(58vw, 200px);
  }
}

@media (max-width: 430px) {
  .quick-facts__list {
    gap: 7px;
  }

  .quick-facts__item {
    padding: 10px;
  }

  .quick-facts__item dd {
    font-size: 13px;
  }

  .reseller-page .reseller-dashboard-grid div {
    padding: 10px 8px;
  }

  .reseller-page .reseller-dashboard-grid strong {
    font-size: 20px;
  }

  .reseller-page .reseller-dashboard-grid span {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .reseller-page .reseller-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts__list {
    grid-template-columns: 1fr;
  }
}
