/* =========================================================
   THE WEALTH HUSTLERS — RESEARCH & FINANCIAL SERVICES
   Stylesheet matching the current HTML structure 1:1
   (hero credential card, flat trust banner, analyst profile,
   simplified approach/services/pricing/charter/grievance/FAQ,
   single contact panel).

   Dark mode: follows the OS/browser color-scheme preference
   automatically (prefers-color-scheme) — the HTML has no
   manual toggle control in it.
========================================================= */


/* =========================================================
   1. ROOT / DESIGN TOKENS
========================================================= */

:root {
    /* Surfaces (flip in dark mode) */
    --bg: #fbfaf7;
    --bg-soft: #f1f3eb;
    --bg-alt: #f5f6f0;
    --card2: #f1f2eb;
    --panel: #ffffff;
    --glass: rgba(255, 255, 255, 0.86);

    /* Ink (flips) */
    --ink: #08100c;
    --text-soft: #5d655f;
    --text-muted: #87908a;

    /* Fixed dark (does NOT flip — logo mark, footer) */
    --black: #08100c;

    /* Accent green (kept consistent across themes) */
    --green: #8aaa5d;
    --green-dark: #637f3f;
    --green-light: #e9f1d9;

    /* Buttons (flip in dark mode) */
    --cta-bg: var(--black);
    --cta-ink: #ffffff;
    --secondary-bg: rgba(255, 255, 255, 0.7);

    /* Lines (flip) */
    --border: rgba(10, 16, 12, 0.12);
    --border-soft: rgba(10, 16, 12, 0.07);
    --border-invert: rgba(255, 255, 255, 0.12);

    /* Shadows (flip) */
    --shadow-soft: 0 20px 60px rgba(10, 16, 12, 0.08);
    --shadow-card: 0 20px 60px rgba(10, 16, 12, 0.08);
    --shadow-lift: 0 30px 80px rgba(10, 16, 12, 0.10);

    /* Layout */
    --container: 1380px;
    --gutter: 100px;
    --gutter-tablet: 60px;
    --gutter-mobile: 28px;

    /* Radii */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 30px;

    /* Motion */
    --transition: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(.2, .65, .25, 1);
}


/* ---- DARK MODE TOKEN OVERRIDES ---- */

@media (prefers-color-scheme: dark) {

    :root {
        --bg: #0d120e;
        --bg-soft: #11160f;
        --bg-alt: #161c16;
        --card2: #171d17;
        --panel: #141a15;
        --glass: rgba(255, 255, 255, 0.045);

        --ink: #eef1ea;
        --text-soft: #a8b2ab;
        --text-muted: #7d877f;

        --cta-bg: var(--green);
        --cta-ink: #08100c;
        --secondary-bg: rgba(255, 255, 255, 0.05);

        --border: rgba(255, 255, 255, 0.10);
        --border-soft: rgba(255, 255, 255, 0.06);

        --shadow-soft: 0 25px 70px rgba(0, 0, 0, 0.5);
        --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.55);
        --shadow-lift: 0 30px 80px rgba(0, 0, 0, 0.6);
    }

    .service-visual img {
        filter: brightness(0.9) saturate(1.05);
    }

    .about-image img {
        filter: brightness(0.92) saturate(1.05);
    }

    .modal-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
}


/* =========================================================
   2. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    color-scheme: light dark;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Manrope", Inter, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

body.modal-open {
    overflow: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
svg { display: block; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--green-dark);
    outline-offset: 3px;
    border-radius: 4px;
}


/* =========================================================
   3. LAYOUT PRIMITIVES
   (single source of truth for the centered content width —
   nothing later in this file re-overrides these selectors,
   which is what caused the footer misalignment before)
========================================================= */

.header-wrapper,
.section,
.hero-section,
.trust-banner,
.site-footer {
    width: min(calc(100% - var(--gutter)), var(--container));
    margin-left: auto;
    margin-right: auto;
}

.section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}


/* =========================================================
   4. TYPOGRAPHY
========================================================= */

h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

p { color: var(--text-soft); }

.section-heading,
.section-intro {
    max-width: 950px;
    margin-bottom: 55px;
}

.section-label,
.about-label {
    display: block;
    margin-bottom: 20px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.section-intro h2 {
    max-width: 1100px;
    width: 100%;
    font-size: clamp(46px, 5.2vw, 78px);
    line-height: 0.97;
}

.section-heading p,
.section-intro p {
    max-width: 660px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   5. HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 92px;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    color: var(--ink);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: color-mix(in srgb, var(--bg) 97%, transparent);
    border-bottom-color: var(--border-soft);
    box-shadow: 0 10px 35px rgba(8, 16, 12, 0.05);
}

.header-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--black);
    color: #a8cf70;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: 0 10px 26px rgba(8, 16, 12, 0.12);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--ink);
    font-size: 16.5px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-text span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}

.main-nav > a:not(.nav-cta) {
    position: relative;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: color var(--transition);
}

.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -8px;
    width: 0; height: 2px;
    background: var(--green);
    transition: width var(--transition);
}

.main-nav > a:not(.nav-cta):hover { color: var(--ink); }
.main-nav > a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--cta-bg);
    color: var(--cta-ink) !important;
    font-size: 13px;
    font-weight: 850;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.nav-cta:hover {
    background: var(--green-dark);
    color: white !important;
    transform: translateY(-2px);
}


/* =========================================================
   6. BUTTONS (shared)
========================================================= */

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition),
        border-color var(--transition), color var(--transition);
}

.primary-button {
    background: var(--cta-bg);
    color: var(--cta-ink);
}

.primary-button:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-3px);
}

.primary-button span {
    font-size: 17px;
    line-height: 1;
    transition: transform var(--transition);
}

.primary-button:hover span { transform: translateX(4px); }

.secondary-button {
    border: 1px solid var(--border);
    background: var(--secondary-bg);
    color: var(--ink);
}

.secondary-button:hover {
    border-color: var(--green-dark);
    transform: translateY(-3px);
}


/* =========================================================
   7. HERO
========================================================= */

.hero-section {
    min-height: 780px;
    padding-top: 165px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    align-items: center;
    gap: 70px;
}

.hero-content { max-width: 720px; min-width: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(99, 127, 63, 0.25);
    border-radius: 999px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.eyebrow::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(138, 170, 93, 0.13);
}

.hero-content h1 {
    margin-top: 26px;
    max-width: 800px;
    font-size: clamp(46px, 5.6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-description {
    max-width: 620px;
    margin-top: 30px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}


/* =========================================================
   8. HERO — SEBI REGISTRATION CREDENTIAL CARD
========================================================= */

.hero__card-wrap {
    position: relative;
    width: min(560px, 100%);
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cred-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 5%, rgba(138, 170, 93, 0.16), transparent 40%),
        var(--glass);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cred-card__shine {
    position: absolute;
    width: 260px; height: 260px;
    right: -120px; top: -120px;
    border-radius: 50%;
    background: rgba(170, 203, 122, 0.18);
    filter: blur(8px);
    pointer-events: none;
}

.cred-card__top {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.cred-card__seal {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-light);
    color: var(--green-dark);
}

.cred-card__kicker, .cred-card__org { margin: 0; }

.cred-card__kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.cred-card__org {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}

.cred-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.cred-card__name {
    position: relative;
    margin: 24px 0 20px;
}

.cred-card__brand {
    display: block;
    font-size: clamp(21px, 2.1vw, 29px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.cred-card__rows {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--border);
}

.cred-card__rows > div {
    min-width: 0;
    padding: 15px 16px;
    background: var(--panel);
}

.cred-card__rows-wide { grid-column: 1 / -1; }

.cred-card__rows dt {
    margin: 0;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cred-card__rows dd {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.cred-card__foot {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 10.5px;
    line-height: 1.5;
}

.cred-card__foot svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--green-dark);
}


/* =========================================================
   9. TRUST BANNER
========================================================= */

.trust-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 112px;
    justify-content: center;
    padding: 28px 34px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-item span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trust-item strong {
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
}


/* =========================================================
   10. ABOUT (analyst profile)
========================================================= */

.about-section { background: var(--bg); }

.about-label { padding-top: 4px; }

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-image-wrap { position: relative; min-width: 0; }

.about-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-card);
}

.about-content { max-width: 720px; min-width: 0; }

.about-content h2 {
    font-size: clamp(34px, 3.6vw, 52px);
}

.about-credentials {
    margin-top: 14px;
    color: var(--green-dark);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.6;
}

.about-lede {
    margin-top: 24px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

.about-lede strong,
.about-content p strong {
    color: var(--ink);
    font-weight: 800;
}

.about-content p {
    max-width: 640px;
    margin-top: 20px;
    font-size: 15.5px;
    line-height: 1.8;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.about-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--panel);
}

.about-detail span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-detail strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   11. WEALTH HUSTLERS STRENGTH
========================================================= */

.corex-strength {
    background: linear-gradient(180deg, var(--bg-soft), var(--bg-alt));
    border-bottom: 1px solid var(--border-soft);
}

.strength-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 14px;
}

.strength-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--glass);
    box-shadow: 0 15px 40px rgba(10, 16, 12, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.strength-number {
    display: block;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
}

.strength-label {
    display: block;
    margin-top: auto;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.strength-card h3 {
    margin-top: 10px;
    font-size: 28px;
}

.signal-card {
    background: var(--black);
    color: white;
}

.signal-card .strength-label { color: #9ca79f; }

.signal-status {
    margin-top: auto;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.signal-status span {
    color: var(--green);
    margin-left: 4px;
}

.metric-value {
    margin-top: auto;
    color: var(--ink);
    font-size: 26px;
    font-weight: 850;
}

.metric-icon {
    display: inline-grid;
    width: 28px; height: 28px;
    margin-top: 12px;
    place-items: center;
    align-self: flex-start;
    border-radius: 9px;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 900;
}

.principles-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}


/* =========================================================
   12. APPROACH
========================================================= */

.approach-section {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-alt) 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.approach-card {
    position: relative;
    min-height: 300px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: 0 15px 45px rgba(10, 16, 12, 0.035);
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.approach-card::after {
    content: "";
    position: absolute;
    right: -90px; bottom: -120px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 170, 93, 0.13), transparent 68%);
    pointer-events: none;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.approach-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    margin-bottom: 32px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}

.approach-content { position: relative; z-index: 1; min-width: 0; }

.approach-label {
    display: block;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.approach-card h3 {
    margin-top: 14px;
    font-size: clamp(30px, 3vw, 42px);
}

.approach-content p {
    max-width: 460px;
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.7;
}


/* =========================================================
   13. SERVICES
========================================================= */

.services-section { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    min-height: 400px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card2);
    box-shadow: 0 15px 45px rgba(10, 16, 12, 0.035);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lift);
}

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 36px 32px 30px;
    background: linear-gradient(145deg, var(--card2), var(--bg-alt));
}

.service-number {
    display: block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
}

.service-label {
    display: block;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-content h3 {
    margin-top: 20px;
    max-width: 340px;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1;
    overflow-wrap: anywhere;
}

.service-content > p {
    max-width: 360px;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.service-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-meta::before {
    content: "";
    display: inline-block;
    width: 7px; height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--green);
}

.service-visual {
    position: relative;
    min-width: 0;
    min-height: 400px;
    overflow: hidden;
    background: var(--bg-alt);
}

.service-visual img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow), filter var(--transition);
}

.service-card:hover .service-visual img { transform: scale(1.045); }

.service-visual::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, var(--card2), transparent);
    opacity: 0.5;
}


/* =========================================================
   14. PRICING
========================================================= */

.pricing-section {
    background:
        radial-gradient(circle at 80% 30%, rgba(138, 170, 93, 0.12), transparent 45%),
        var(--bg);
}

.pricing-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.pricing-statement p {
    max-width: 420px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-soft);
}

.pricing-points { display: grid; gap: 0; }

.pricing-point {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: baseline;
    column-gap: 16px;
    row-gap: 6px;
    padding: 26px 0;
    border-top: 1px solid var(--border);
}

.pricing-point:last-child { border-bottom: 1px solid var(--border); }

.pricing-point > span {
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
}

.pricing-point strong {
    grid-column: 2;
    color: var(--ink);
    font-size: 19px;
    font-weight: 800;
}

.pricing-point p {
    grid-column: 2;
    max-width: 420px;
    font-size: 13.5px;
    line-height: 1.65;
}


/* =========================================================
   15. INVESTOR CHARTER
========================================================= */

.charter-section { background: var(--bg-alt); }

.charter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.charter-item {
    display: flex;
    flex-direction: column;
    min-height: 240px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--panel);
    transition: transform var(--transition), box-shadow var(--transition);
}

.charter-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.charter-item > span {
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
}

.charter-item h3 {
    margin-top: 44px;
    font-size: 26px;
}

.charter-item p {
    margin-top: auto;
    padding-top: 18px;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   16. GRIEVANCE
========================================================= */

.complaints-section { background: var(--panel); }

.grievance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.grievance-step {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 28px;
    border-top: 2px solid var(--green);
    background: var(--bg-alt);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.grievance-step > span {
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
}

.grievance-step h3 {
    margin-top: 40px;
    font-size: 23px;
}

.grievance-step p {
    margin-top: auto;
    padding-top: 14px;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   17. FAQ
========================================================= */

.faq-section { background: var(--bg-soft); }

.faq-list {
    max-width: 900px;
    margin-top: 10px;
    border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item summary {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-size: 15.5px;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary span {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 19px;
    font-weight: 400;
    transition: transform var(--transition), background var(--transition);
}

.faq-item[open] summary span {
    transform: rotate(45deg);
    background: var(--green-light);
}

.faq-answer { padding: 0 50px 28px 0; }

.faq-answer p {
    max-width: 740px;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   18. CONTACT
========================================================= */

.contact-section { background: var(--bg); }

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 85% 15%, rgba(138, 170, 93, 0.16), transparent 40%),
        var(--bg-alt);
}

.contact-content .section-label { margin-bottom: 18px; }

.contact-content h2 {
    font-size: clamp(38px, 4.6vw, 62px);
    margin: 0 auto;
}

.contact-content p {
    max-width: 560px;
    margin: 22px auto 0;
    font-size: 16.5px;
    line-height: 1.75;
}

.contact-content .primary-button { margin-top: 32px; }


/* =========================================================
   19. MODAL / OVERLAYS (populated via JS)
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(5, 10, 7, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-overlay .modal {
    position: relative;
    width: min(600px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    padding: 44px;
    border-radius: 26px;
    background: var(--panel);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform var(--transition);
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal-overlay .modal h2 { font-size: 34px; }

.modal-overlay .modal p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
}

.modal-overlay .modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 20px;
    cursor: pointer;
}

/* Reserved for JS-injected buttons (chat / call / whatsapp etc). */
.floating-actions {
    position: fixed;
    right: 25px;
    bottom: 90px;
    z-index: 400;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}


/* =========================================================
   20. FOOTER
   Uses the same centered container as every other section
   (see LAYOUT PRIMITIVES) — no separate width override here,
   which is what previously caused it to stretch full-bleed
   and misalign on wide screens.
========================================================= */

.site-footer {
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-brand .brand-mark {
    width: 46px; height: 46px;
    background: #151e18;
    box-shadow: none;
}

.footer-brand > div:last-child {
    display: flex;
    flex-direction: column;
}

.footer-brand strong { color: var(--ink); font-size: 16px; }

.footer-brand span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-registration {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    color: var(--text-muted);
    font-size: 10px;
}

.footer-registration strong { color: var(--ink); font-size: 14px; }

.footer-disclaimer {
    max-width: 800px;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 10px;
}


/* =========================================================
   21. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 500;
    width: 50px; height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--panel);
    color: var(--ink);
    box-shadow: 0 15px 35px rgba(10, 16, 12, 0.10);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity var(--transition), visibility var(--transition),
        transform var(--transition), background var(--transition), color var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--cta-bg);
    color: var(--cta-ink);
}


/* =========================================================
   22. UTILITY
========================================================= */

.text-center { text-align: center; }
.hidden { display: none !important; }


/* =========================================================
   23. TABLET (<=1150px)
========================================================= */

@media (max-width: 1150px) {

    .header-wrapper, .section, .hero-section, .trust-banner, .site-footer {
        width: min(calc(100% - var(--gutter-tablet)), var(--container));
    }

    .main-nav { gap: 16px; }
    .main-nav > a:not(.nav-cta) { font-size: 12px; }

    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 145px;
        gap: 50px;
    }

    .hero-content { max-width: 900px; }

    .hero__card-wrap { width: 100%; margin: 0; }

    .about-grid { grid-template-columns: 1fr; gap: 34px; }
    .about-image { aspect-ratio: 16 / 10; max-width: 420px; }

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

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

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

    .service-card { min-height: 420px; }

    .pricing-content { grid-template-columns: 1fr; gap: 40px; }

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


/* =========================================================
   24. MOBILE (<=760px)
========================================================= */

@media (max-width: 760px) {

    .header-wrapper, .section, .hero-section, .trust-banner, .site-footer {
        width: min(calc(100% - var(--gutter-mobile)), var(--container));
    }

    .site-header { height: 72px; }

    .brand-mark { width: 44px; height: 44px; border-radius: 13px; font-size: 10px; }
    .brand-text strong { font-size: 15px; }
    .brand-text span { font-size: 8px; }

    .main-nav { gap: 10px; }
    .main-nav > a:not(.nav-cta) { display: none; }

    .nav-cta { min-height: 40px; padding: 0 15px; font-size: 11px; }

    .section { padding-top: 76px; padding-bottom: 76px; }
    .section-heading, .section-intro { margin-bottom: 36px; }

    .section-heading h2, .section-intro h2 {
        font-size: clamp(38px, 11.5vw, 56px);
    }

    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 55px;
    }

    .hero-content h1 { font-size: clamp(40px, 12vw, 60px); }
    .hero-description { font-size: 15.5px; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .primary-button, .secondary-button { width: 100%; }

    .cred-card { padding: 24px; border-radius: 22px; }

    .cred-card__top { grid-template-columns: auto 1fr; }

    .cred-card__verified {
        grid-column: 1 / -1;
        justify-self: flex-start;
        margin-top: 6px;
    }

    .cred-card__rows { grid-template-columns: 1fr; }
    .cred-card__rows-wide { grid-column: auto; }

    .trust-banner { grid-template-columns: 1fr; }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-height: auto;
        padding: 22px 4px;
    }

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

    .about-image { max-width: none; }

    .strength-grid { grid-template-columns: 1fr; }
    .strength-card { min-height: 190px; }

    .principles-row {
        flex-wrap: wrap;
        gap: 8px 14px;
        justify-content: flex-start;
    }

    .approach-card { min-height: auto; padding: 26px; }

    .service-card { grid-template-columns: 1fr; min-height: auto; border-radius: 22px; }
    .service-content { padding: 26px; }
    .service-content h3 { font-size: 32px; }
    .service-visual { min-height: 260px; }

    .service-visual::before {
        top: 0; left: 0; right: 0; bottom: auto;
        width: 100%; height: 40px;
        background: linear-gradient(180deg, var(--card2), transparent);
    }

    .pricing-content { gap: 30px; }
    .pricing-statement p { max-width: none; font-size: 17px; }

    .charter-grid, .grievance-grid { grid-template-columns: 1fr; }

    .faq-item summary { min-height: 70px; font-size: 14px; gap: 16px; }
    .faq-answer { padding-right: 0; }

    .contact-content { padding: 36px 26px; }

    .footer-main { flex-direction: column; gap: 26px; }
    .footer-registration { text-align: left; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

    .back-to-top { width: 44px; height: 44px; right: 14px; bottom: 14px; }
    .floating-actions { right: 14px; bottom: 80px; }
}


/* =========================================================
   25. SMALL MOBILE (<=500px)
========================================================= */

@media (max-width: 500px) {

    .brand-text span { display: none; }

    .hero-content h1 { font-size: 42px; }

    .cred-card { padding: 20px; }

    .service-content h3 { font-size: 28px; }
    .service-visual { min-height: 220px; }

    .contact-content { padding: 28px 20px; }
}


/* =========================================================
   26. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}