/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    --green-950: #032a20;
    --green-900: #06392c;
    --green-800: #07523d;
    --green-700: #087052;
    --green-600: #0a8d66;
    --green-500: #15aa7a;
    --green-100: #dff8ee;
    --green-50: #f1fbf7;
    --amber-500: #f2b544;
    --amber-100: #fff1cc;
    --red-600: #c73b3b;
    --red-50: #fff1f1;
    --ink: #123129;
    --muted: #60736d;
    --line: rgba(7, 82, 61, .14);
    --surface: #ffffff;
    --background: #f5faf7;
    --shadow-sm: 0 10px 30px rgba(3, 42, 32, .08);
    --shadow-md: 0 22px 54px rgba(3, 42, 32, .13);
    --shadow-lg: 0 35px 90px rgba(3, 42, 32, .18);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: 1180px;
}

/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */
*, *::before, *::after { 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 5% 0%, rgba(242, 181, 68, .15), transparent 27rem),
        linear-gradient(180deg, #fbfefc 0%, var(--background) 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { 
    overflow: hidden; 
}

a { 
    color: inherit; 
    text-decoration: none; 
}

button, input { 
    font: inherit; 
}

button, a { 
    -webkit-tap-highlight-color: transparent; 
}

img, svg { 
    display: block; 
    max-width: 100%; 
}

/* ==========================================================================
   3. REUSABLE COMPONENTS & LAYOUTS
   ========================================================================== */
.container { 
    width: min(calc(100% - 30px), var(--container)); 
    margin-inline: auto; 
}

.section { 
    padding: 76px 0; 
}

.section-soft {
    background:
        radial-gradient(circle at 100% 0%, rgba(21, 170, 122, .08), transparent 26rem),
        var(--green-50);
}

.section-heading { 
    max-width: 780px; 
    margin: 0 auto 38px; 
    text-align: center; 
}

.section-heading.left { 
    margin-inline: 0; 
    text-align: left; 
}

/* Eyebrow badge */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--green-800);
    background: var(--green-100);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 5px rgba(10, 141, 102, .12);
    content: "";
}

.section-title {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(30px, 5vw, 45px);
    line-height: 1.14;
    letter-spacing: -.045em;
}

.section-description { 
    margin: 17px 0 0; 
    color: var(--muted); 
    font-size: 16px; 
}

/* Buttons */
.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 850;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover { 
    transform: translateY(-2px); 
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    box-shadow: 0 14px 30px rgba(8, 112, 82, .27);
}

.btn-primary:hover { 
    box-shadow: 0 18px 38px rgba(8, 112, 82, .34); 
}

.btn-light {
    border-color: var(--line);
    color: var(--green-800);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-sm);
}

.btn-white { 
    color: var(--green-950); 
    background: #fff; 
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16); 
}

.btn-outline-white { 
    border-color: rgba(255, 255, 255, .28); 
    color: #fff; 
    background: rgba(255, 255, 255, .08); 
}

.icon-box {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--green-100);
    font-size: 24px;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(251, 254, 252, .86);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.scrolled { 
    border-bottom-color: var(--line); 
    box-shadow: 0 10px 30px rgba(3, 42, 32, .07); 
}

.header-inner { 
    display: flex; 
    min-height: 74px; 
    align-items: center; 
    justify-content: space-between; 
    gap: 16px; 
}

.brand { 
    display: inline-flex; 
    min-width: 0; 
    align-items: center; 
    gap: 11px; 
}

.brand-logo {
    position: relative;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--green-600), var(--green-950));
    box-shadow: 0 10px 25px rgba(8, 112, 82, .24);
    font-size: 24px;
}

.brand-logo::after {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--amber-500);
    content: "";
}

.brand-text { 
    min-width: 0; 
}

.brand-name { 
    display: block; 
    color: var(--green-950); 
    font-size: 18px; 
    font-weight: 900; 
    line-height: 1.15; 
    white-space: nowrap; 
}

.brand-slogan { 
    display: block; 
    color: var(--muted); 
    font-size: 10px; 
    font-weight: 700; 
    white-space: nowrap; 
}

.desktop-nav { 
    display: none; 
    align-items: center; 
    gap: 4px; 
}

.desktop-nav a { 
    padding: 10px 11px; 
    border-radius: 11px; 
    color: var(--muted); 
    font-size: 13px; 
    font-weight: 780; 
}

.desktop-nav a:hover { 
    color: var(--green-800); 
    background: var(--green-100); 
}

.header-actions { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.header-login { 
    display: none; 
}

.menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--green-800);
    background: #fff;
    cursor: pointer;
    font-size: 22px;
}

/* Mobile Menu overlay */
.mobile-menu { 
    position: fixed; 
    z-index: 1200; 
    inset: 0; 
    display: none; 
    padding: 14px; 
    background: rgba(2, 28, 20, .68); 
    backdrop-filter: blur(8px); 
}

.mobile-menu.show { 
    display: block; 
}

.mobile-panel {
    width: min(100%, 390px);
    height: 100%;
    margin-left: auto;
    padding: 19px;
    overflow-y: auto;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    animation: menuIn .23s ease;
}

@keyframes menuIn { 
    from { opacity: 0; transform: translateX(28px); } 
    to { opacity: 1; transform: none; } 
}

.mobile-head { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 14px; 
    margin-bottom: 20px; 
}

.mobile-close { 
    display: inline-flex; 
    width: 42px; 
    height: 42px; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid var(--line); 
    border-radius: 13px; 
    background: #fff; 
    cursor: pointer; 
    font-size: 22px; 
}

.mobile-nav { 
    display: grid; 
    gap: 8px; 
}

.mobile-nav a { 
    display: flex; 
    min-height: 49px; 
    align-items: center; 
    gap: 11px; 
    padding: 12px 14px; 
    border-radius: 14px; 
    background: var(--background); 
    font-weight: 780; 
}

.mobile-actions { 
    display: grid; 
    gap: 9px; 
    margin-top: 18px; 
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero { 
    position: relative; 
    overflow: hidden; 
    padding: 58px 0 80px; 
}

.hero::before { 
    position: absolute; 
    top: 4%; 
    right: -170px; 
    width: 480px; 
    height: 480px; 
    border-radius: 50%; 
    background: rgba(10, 141, 102, .07); 
    content: ""; 
}

.hero-grid { 
    position: relative; 
    z-index: 1; 
    display: grid; 
    align-items: center; 
    gap: 46px; 
}

.hero-title { 
    max-width: 790px; 
    margin: 0; 
    color: var(--green-950); 
    font-size: clamp(30px, 8vw, 70px); 
    font-weight: 950; 
    line-height: 1.035; 
    letter-spacing: -.058em; 
}

.hero-title span { 
    position: relative; 
    display: inline-block; 
    color: var(--green-600); 
}

.hero-title span::after { 
    position: absolute; 
    z-index: -1; 
    right: 0; 
    bottom: 3px; 
    left: 0; 
    height: 10px; 
    border-radius: 99px; 
    background: rgba(242, 181, 68, .5); 
    content: ""; 
    transform: rotate(-1deg); 
}

.hero-description { 
    max-width: 700px; 
    margin: 22px 0 0; 
    color: var(--muted); 
    font-size: clamp(17px, 3vw, 20px); 
}

.hero-actions { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 11px; 
    margin-top: 29px; 
}

.hero-points { 
    display: grid; 
    gap: 10px; 
    margin-top: 26px; 
}

.hero-point { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    color: var(--muted); 
    font-size: 13px; 
    font-weight: 680; 
}

.hero-check { 
    display: inline-flex; 
    width: 24px; 
    height: 24px; 
    flex: 0 0 24px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    color: var(--green-800); 
    background: var(--green-100); 
    font-size: 12px; 
    font-weight: 900; 
}

.hero-visual { 
    position: relative; 
    max-width: 550px; 
    margin-inline: auto; 
}

/* Mockup App Interface */
.app-shell { 
    padding: 13px; 
    border: 1px solid rgba(255, 255, 255, .82); 
    border-radius: 32px; 
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(231, 248, 240, .96)); 
    box-shadow: var(--shadow-lg); 
}

.app-window { 
    overflow: hidden; 
    border: 1px solid var(--line); 
    border-radius: 24px; 
    background: #fff; 
}

.app-topbar { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 12px; 
    padding: 14px 16px; 
    border-bottom: 1px solid var(--line); 
    background: #fbfefc; 
}

.app-profile { 
    display: flex; 
    align-items: center; 
    gap: 9px; 
}

.app-avatar { 
    display: inline-flex; 
    width: 39px; 
    height: 39px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 13px; 
    background: var(--green-100); 
    font-size: 21px; 
}

.app-profile strong, .app-profile small { 
    display: block; 
}

.app-profile strong { 
    color: var(--green-950); 
    font-size: 12px; 
}

.app-profile small { 
    color: var(--muted); 
    font-size: 9px; 
}

.online-badge { 
    padding: 6px 9px; 
    border-radius: 99px; 
    color: var(--green-800); 
    background: var(--green-100); 
    font-size: 9px; 
    font-weight: 850; 
}

.app-content { 
    padding: 17px; 
}

.app-intro { 
    padding: 18px; 
    border-radius: 19px; 
    color: #fff; 
    background: linear-gradient(145deg, var(--green-600), var(--green-950)); 
}

.app-intro small { 
    display: block; 
    margin-bottom: 6px; 
    color: rgba(255, 255, 255, .72); 
    font-weight: 800; 
}

.app-intro h3 { 
    margin: 0; 
    font-size: 20px; 
    line-height: 1.3; 
}

.app-progress { 
    display: flex; 
    gap: 7px; 
    margin: 15px 0; 
}

.app-progress span { 
    height: 6px; 
    flex: 1; 
    border-radius: 99px; 
    background: #e3eee9; 
}

.app-progress .active { 
    background: var(--green-600); 
}

.mock-label { 
    display: block; 
    margin: 0 0 8px; 
    font-size: 11px; 
    font-weight: 850; 
}

.mock-select { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 10px; 
    padding: 12px; 
    border: 1px solid var(--line); 
    border-radius: 13px; 
    background: #fbfefc; 
    font-size: 11px; 
    font-weight: 760; 
}

.symptom-grid { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 8px; 
    margin-top: 11px; 
}

.symptom { 
    padding: 10px; 
    border: 1px solid var(--line); 
    border-radius: 12px; 
    background: #fff; 
    font-size: 10px; 
    font-weight: 760; 
}

.symptom.checked { 
    border-color: rgba(10, 141, 102, .32); 
    color: var(--green-800); 
    background: var(--green-100); 
}

.mock-button { 
    display: flex; 
    width: 100%; 
    min-height: 45px; 
    align-items: center; 
    justify-content: center; 
    gap: 7px; 
    margin-top: 14px; 
    border: 0; 
    border-radius: 13px; 
    color: #fff; 
    background: linear-gradient(135deg, var(--green-600), var(--green-800)); 
    font-size: 12px; 
    font-weight: 850; 
}

/* Floating Card Graphics */
.floating-card { 
    position: absolute; 
    z-index: 3; 
    padding: 12px 14px; 
    border: 1px solid rgba(255, 255, 255, .8); 
    border-radius: 16px; 
    background: rgba(255, 255, 255, .94); 
    box-shadow: var(--shadow-md); 
    backdrop-filter: blur(10px); 
}

.floating-card strong, .floating-card small { 
    display: block; 
}

.floating-card strong { 
    color: var(--green-950); 
    font-size: 12px; 
}

.floating-card small { 
    color: var(--muted); 
    font-size: 9px; 
}

.floating-one { 
    top: 12%; 
    left: -20px; 
}

.floating-two { 
    right: -15px; 
    bottom: 12%; 
}

/* ==========================================================================
   6. TRUST / STAT STRIP
   ========================================================================== */
.trust-strip { 
    position: relative; 
    z-index: 2; 
    margin-top: -28px; 
}

.trust-grid { 
    display: grid; 
    overflow: hidden; 
    border: 1px solid var(--line); 
    border-radius: 24px; 
    background: rgba(255, 255, 255, .96); 
    box-shadow: var(--shadow-md); 
}

.trust-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 19px; 
    border-bottom: 1px solid var(--line); 
}

.trust-item:last-child { 
    border-bottom: 0; 
}

.trust-item strong, .trust-item small { 
    display: block; 
}

.trust-item strong { 
    color: var(--green-950); 
    font-size: 15px; 
}

.trust-item small { 
    color: var(--muted); 
    font-size: 11px; 
}

/* ==========================================================================
   7. FEATURES SECTION
   ========================================================================== */
.feature-grid { 
    display: grid; 
    gap: 15px; 
}

.feature-card { 
    position: relative; 
    overflow: hidden; 
    padding: 23px; 
    border: 1px solid var(--line); 
    border-radius: var(--radius); 
    background: rgba(255, 255, 255, .94); 
    box-shadow: var(--shadow-sm); 
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; 
}

.feature-card:hover { 
    border-color: rgba(10, 141, 102, .32); 
    box-shadow: var(--shadow-md); 
    transform: translateY(-5px); 
}

.feature-card::after { 
    position: absolute; 
    top: -42px; 
    right: -42px; 
    width: 105px; 
    height: 105px; 
    border-radius: 50%; 
    background: rgba(10, 141, 102, .06); 
    content: ""; 
}

.feature-card h3 { 
    margin: 17px 0 9px; 
    color: var(--green-950); 
    font-size: 19px; 
    line-height: 1.35; 
}

.feature-card p { 
    margin: 0; 
    color: var(--muted); 
    font-size: 13px; 
}

.feature-tag { 
    display: inline-flex; 
    margin-top: 16px; 
    padding: 6px 9px; 
    border-radius: 99px; 
    color: var(--green-800); 
    background: var(--green-100); 
    font-size: 10px; 
    font-weight: 850; 
}

/* ==========================================================================
   8. PROCESS SECTION
   ========================================================================== */
.process-grid { 
    display: grid; 
    gap: 17px; 
}

.process-card { 
    padding: 23px; 
    border: 1px solid var(--line); 
    border-radius: var(--radius); 
    background: #fff; 
    box-shadow: var(--shadow-sm); 
}

.process-number { 
    display: inline-flex; 
    width: 44px; 
    height: 44px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 14px; 
    color: #fff; 
    background: linear-gradient(145deg, var(--green-600), var(--green-950)); 
    box-shadow: 0 10px 24px rgba(8, 112, 82, .22); 
    font-size: 14px; 
    font-weight: 900; 
}

.process-card h3 { 
    margin: 17px 0 8px; 
    color: var(--green-950); 
    font-size: 18px; 
}

.process-card p { 
    margin: 0; 
    color: var(--muted); 
    font-size: 13px; 
}

/* ==========================================================================
   9. PIG CARD TYPES (GRID)
   ========================================================================== */
.pig-grid { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 11px; 
}

.pig-card { 
    padding: 16px 10px; 
    border: 1px solid var(--line); 
    border-radius: 17px; 
    background: #fff; 
    box-shadow: var(--shadow-sm); 
    text-align: center; 
    transition: transform .2s ease, border-color .2s ease; 
}

.pig-card:hover { 
    border-color: rgba(10, 141, 102, .34); 
    transform: translateY(-3px); 
}

.pig-icon { 
    display: block; 
    margin-bottom: 8px; 
    font-size: 29px; 
}

.pig-card strong, .pig-card small { 
    display: block; 
}

.pig-card strong { 
    color: var(--green-950); 
    font-size: 12px; 
}

.pig-card small { 
    margin-top: 3px; 
    color: var(--muted); 
    font-size: 9px; 
}

/* ==========================================================================
   10. RESULTS DISPLAYPANEL
   ========================================================================== */
.result-grid { 
    display: grid; 
    align-items: center; 
    gap: 31px; 
}

.result-list { 
    display: grid; 
    gap: 12px; 
    margin-top: 24px; 
}

.result-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    padding: 14px; 
    border: 1px solid var(--line); 
    border-radius: 16px; 
    background: rgba(255, 255, 255, .8); 
}

.result-check { 
    display: inline-flex; 
    width: 31px; 
    height: 31px; 
    flex: 0 0 31px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 10px; 
    color: var(--green-800); 
    background: var(--green-100); 
    font-weight: 900; 
}

.result-item strong, .result-item span { 
    display: block; 
}

.result-item strong { 
    margin-bottom: 2px; 
    color: var(--green-950); 
    font-size: 13px; 
}

.result-item span { 
    color: var(--muted); 
    font-size: 11px; 
}

.result-panel { 
    padding: 17px; 
    border: 1px solid var(--line); 
    border-radius: 27px; 
    background: #fff; 
    box-shadow: var(--shadow-lg); 
}

.result-head { 
    padding: 19px; 
    border-radius: 19px; 
    color: #fff; 
    background: linear-gradient(145deg, var(--green-950), var(--green-600)); 
}

.result-head small { 
    color: rgba(255, 255, 255, .72); 
    font-size: 10px; 
    font-weight: 800; 
}

.result-head h3 { 
    margin: 6px 0 0; 
    font-size: 20px; 
}

.risk-list { 
    padding: 16px 3px 1px; 
}

.risk-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 13px; 
    padding: 12px 7px; 
    border-bottom: 1px solid var(--line); 
}

.risk-row:last-child { 
    border-bottom: 0; 
}

.risk-info { 
    min-width: 0; 
}

.risk-info strong, .risk-info small { 
    display: block; 
}

.risk-info strong { 
    overflow: hidden; 
    color: var(--green-950); 
    font-size: 12px; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}

.risk-info small { 
    color: var(--muted); 
    font-size: 9px; 
}

.risk-level { 
    flex: 0 0 auto; 
    padding: 6px 8px; 
    border-radius: 99px; 
    font-size: 9px; 
    font-weight: 850; 
}

.risk-high { 
    color: #a52f2f; 
    background: var(--red-50); 
}

.risk-medium { 
    color: #815806; 
    background: var(--amber-100); 
}

.risk-low { 
    color: var(--green-800); 
    background: var(--green-100); 
}

.result-note { 
    margin-top: 13px; 
    padding: 13px; 
    border-radius: 14px; 
    color: #76510c; 
    background: var(--amber-100); 
    font-size: 10px; 
    font-weight: 760; 
}

/* ==========================================================================
   11. BENEFITS SECTION
   ========================================================================== */
.benefit-grid { 
    display: grid; 
    gap: 15px; 
}

.benefit-card { 
    display: flex; 
    align-items: flex-start; 
    gap: 14px; 
    padding: 21px; 
    border: 1px solid var(--line); 
    border-radius: var(--radius); 
    background: #fff; 
}

.benefit-card h3 { 
    margin: 0 0 6px; 
    color: var(--green-950); 
    font-size: 16px; 
}

.benefit-card p { 
    margin: 0; 
    color: var(--muted); 
    font-size: 12px; 
}

/* ==========================================================================
   12. CTA & FAQ & DISCLAIMER
   ========================================================================== */
.cta-wrap { 
    position: relative; 
    overflow: hidden; 
    padding: 32px 22px; 
    border-radius: 31px; 
    color: #fff; 
    background: radial-gradient(circle at 95% 5%, rgba(242, 181, 68, .24), transparent 28%), linear-gradient(135deg, var(--green-950), var(--green-600)); 
    box-shadow: var(--shadow-lg); 
}

.cta-wrap::before { 
    position: absolute; 
    right: -90px; 
    bottom: -130px; 
    width: 310px; 
    height: 310px; 
    border: 1px solid rgba(255, 255, 255, .12); 
    border-radius: 50%; 
    content: ""; 
}

.cta-grid { 
    position: relative; 
    z-index: 1; 
    display: grid; 
    align-items: center; 
    gap: 22px; 
}

.cta-wrap h2 { 
    max-width: 670px; 
    margin: 0; 
    font-size: clamp(28px, 5vw, 45px); 
    line-height: 1.18; 
    letter-spacing: -.04em; 
}

.cta-wrap p { 
    max-width: 680px; 
    margin: 13px 0 0; 
    color: rgba(255, 255, 255, .76); 
}

.cta-actions { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
}

/* Disclaimer Warning */
.disclaimer { 
    display: flex; 
    align-items: flex-start; 
    gap: 13px; 
    margin-top: 20px; 
    padding: 16px; 
    border: 1px solid rgba(199, 59, 59, .17); 
    border-radius: 17px; 
    color: #7c3f3f; 
    background: var(--red-50); 
    font-size: 11px; 
}

.disclaimer strong { 
    color: #8d3030; 
}

/* FAQs accordion */
.faq-list { 
    display: grid; 
    max-width: 860px; 
    gap: 11px; 
    margin-inline: auto; 
}

.faq-item { 
    overflow: hidden; 
    border: 1px solid var(--line); 
    border-radius: 17px; 
    background: #fff; 
    box-shadow: var(--shadow-sm); 
}

.faq-question { 
    display: flex; 
    width: 100%; 
    min-height: 60px; 
    align-items: center; 
    justify-content: space-between; 
    gap: 15px; 
    padding: 15px 17px; 
    border: 0; 
    color: var(--green-950); 
    background: transparent; 
    cursor: pointer; 
    text-align: left; 
    font-weight: 820; 
}

.faq-symbol { 
    display: inline-flex; 
    width: 31px; 
    height: 31px; 
    flex: 0 0 31px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 10px; 
    color: var(--green-800); 
    background: var(--green-100); 
    font-size: 19px; 
    transition: transform .2s ease; 
}

.faq-item.open .faq-symbol { 
    transform: rotate(45deg); 
}

.faq-answer { 
    display: none; 
    padding: 0 17px 17px; 
    color: var(--muted); 
    font-size: 13px; 
}

.faq-item.open .faq-answer { 
    display: block; 
}

.faq-answer p { 
    margin: 0; 
}

/* ==========================================================================
   13. FOOTER & STATISTICS COUNTER
   ========================================================================== */
.site-footer { 
    margin-top: 76px; 
    padding: 50px 0 23px; 
    color: rgba(255, 255, 255, .75); 
    background: var(--green-950); 
}

.footer-grid { 
    display: grid; 
    gap: 30px; 
}

.footer-brand .brand-name { 
    color: #fff; 
}

.footer-brand .brand-slogan { 
    color: rgba(255, 255, 255, .6); 
}

.footer-description { 
    max-width: 510px; 
    margin: 15px 0 0; 
    font-size: 12px; 
}

.footer-title { 
    margin: 0 0 12px; 
    color: #fff; 
    font-size: 14px; 
}

.footer-links { 
    display: grid; 
    gap: 8px; 
}

.footer-links a { 
    font-size: 12px; 
}

.footer-links a:hover { 
    color: #fff; 
}

/* Visitor Counter Widget */
.visitor-counter { 
    display: grid; 
    gap: 18px; 
    margin-top: 32px; 
    padding: 20px; 
    border: 1px solid rgba(255, 255, 255, .1); 
    border-radius: 21px; 
    background: rgba(255, 255, 255, .055); 
    box-shadow: 0 18px 40px rgba(0, 0, 0, .1); 
}

.counter-title { 
    display: flex; 
    align-items: center; 
    gap: 11px; 
}

.counter-icon { 
    display: inline-flex; 
    width: 43px; 
    height: 43px; 
    flex: 0 0 43px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 14px; 
    background: rgba(255, 255, 255, .1); 
    font-size: 20px; 
}

.counter-title strong, .counter-title small { 
    display: block; 
}

.counter-title strong { 
    color: #fff; 
    font-size: 14px; 
}

.counter-title small { 
    margin-top: 2px; 
    color: rgba(255, 255, 255, .56); 
    font-size: 10px; 
}

.counter-grid { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 9px; 
}

.counter-item { 
    display: flex; 
    min-width: 0; 
    align-items: center; 
    gap: 10px; 
    padding: 13px; 
    border: 1px solid rgba(255, 255, 255, .08); 
    border-radius: 15px; 
    background: rgba(255, 255, 255, .055); 
}

.counter-symbol { 
    display: inline-flex; 
    width: 35px; 
    height: 35px; 
    flex: 0 0 35px; 
    align-items: center; 
    justify-content: center; 
    border-radius: 11px; 
    background: rgba(255, 255, 255, .09); 
    font-size: 16px; 
}

.counter-item strong, .counter-item small { 
    display: block; 
}

.counter-item strong { 
    overflow: hidden; 
    color: #fff; 
    font-size: 16px; 
    line-height: 1.2; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}

.counter-item small { 
    margin-top: 3px; 
    color: rgba(255, 255, 255, .55); 
    font-size: 9px; 
}

.online-dot { 
    color: #50e29c; 
    text-shadow: 0 0 8px rgba(80, 226, 156, .8), 0 0 17px rgba(80, 226, 156, .38); 
}

.counter-warning { 
    margin-top: 9px; 
    color: rgba(255, 255, 255, .5); 
    font-size: 9px; 
}

.footer-bottom { 
    display: flex; 
    flex-direction: column; 
    gap: 9px; 
    margin-top: 31px; 
    padding-top: 19px; 
    border-top: 1px solid rgba(255, 255, 255, .1); 
    font-size: 10px; 
}

/* Floating Back-to-Top Button */
.back-top { 
    position: fixed; 
    z-index: 850; 
    right: 16px; 
    bottom: 16px; 
    display: inline-flex; 
    width: 47px; 
    height: 47px; 
    align-items: center; 
    justify-content: center; 
    border: 0; 
    border-radius: 14px; 
    color: #fff; 
    background: var(--green-600); 
    box-shadow: 0 12px 28px rgba(8, 112, 82, .3); 
    cursor: pointer; 
    opacity: 0; 
    pointer-events: none; 
    transform: translateY(10px); 
    transition: opacity .2s ease, transform .2s ease; 
}

.back-top.show { 
    opacity: 1; 
    pointer-events: auto; 
    transform: none; 
}

/* ==========================================================================
   14. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Mobile / Small Tablets (640px) --- */
@media (min-width: 640px) {
    .hero-points { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .trust-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .trust-item:nth-child(odd) { 
        border-right: 1px solid var(--line); 
    }
    .trust-item:nth-last-child(-n+2) { 
        border-bottom: 0; 
    }
    .feature-grid, .benefit-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .process-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .pig-grid { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    .footer-grid { 
        grid-template-columns: 1.4fr .7fr .7fr; 
    }
    .footer-bottom { 
        flex-direction: row; 
        justify-content: space-between; 
    }
}

/* --- Tablets (760px) --- */
@media (min-width: 760px) {
    .visitor-counter { 
        grid-template-columns: auto minmax(0, 1fr); 
        align-items: center; 
    }
    .counter-grid { 
        grid-template-columns: repeat(4, minmax(0, 1fr)); 
    }
}

/* --- Desktops & Laptops (900px) --- */
@media (min-width: 900px) {
    .section { 
        padding: 98px 0; 
    }
    .desktop-nav { 
        display: flex; 
    }
    .header-login { 
        display: inline-flex; 
    }
    .menu-toggle { 
        display: none; 
    }
    .hero { 
        padding: 84px 0 106px; 
    }
    .hero-grid { 
        grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); 
        gap: 64px; 
    }
    .trust-grid { 
        grid-template-columns: repeat(4, minmax(0, 1fr)); 
    }
    .trust-item, .trust-item:nth-child(odd) { 
        border-right: 1px solid var(--line); 
        border-bottom: 0; 
    }
    .trust-item:last-child { 
        border-right: 0; 
    }
    .feature-grid { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    .process-grid { 
        grid-template-columns: repeat(4, minmax(0, 1fr)); 
    }
    .result-grid { 
        grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); 
        gap: 68px; 
    }
    .benefit-grid { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    .cta-wrap { 
        padding: 50px; 
    }
    .cta-grid { 
        grid-template-columns: minmax(0, 1fr) auto; 
    }
    .cta-actions { 
        justify-content: flex-end; 
    }
}

/* --- Extra Large Desktops (1180px) --- */
@media (min-width: 1180px) {
    .floating-one { 
        left: -54px; 
    }
    .floating-two { 
        right: -44px; 
    }
}

/* --- Mobile Small-screens Correction (Max 430px) --- */
@media (max-width: 430px) {
    .container { 
        width: min(calc(100% - 22px), var(--container)); 
    }
    .brand-slogan { 
        display: none; 
    }
    .brand-name { 
        font-size: 16px; 
    }
    .hero-actions .btn, .cta-actions .btn { 
        width: 100%; 
    }
    .floating-card { 
        display: none; 
    }
    .counter-grid { 
        grid-template-columns: 1fr; 
    }
}

/* ==========================================================================
   15. ACCESSIBILITY & MOTION PREFERENCES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { 
        scroll-behavior: auto; 
    }
    *, *::before, *::after { 
        animation-duration: .01ms !important; 
        animation-iteration-count: 1 !important; 
        transition-duration: .01ms !important; 
    }
}