/* =========================================
   KONKER DESIGN SYSTEM — custom-page.css
   Design tokens, global/base styles, and
   Home page components.

   Service pages load this file first, then
   assets/css/service-page.css.
   Do not put service-only components here.
========================================= */

/* =========================================
   KONKER DESIGN TOKENS
========================================= */

:root {
    --ink: #0a130e;
    --forest: #0f2b1d;
    --forest-2: #123322;
    --brand: #34d67a;
    --brand-2: #0eb459;
    --brand-deep: #0f5132;
    --paper: #f7f6f0;
    --paper-dim: #efece2;
    --card: #ffffff;
    --ink-soft: #3c463f;
    --ink-mute: #6b756e;
    --line: rgba(10, 19, 14, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);
    --radius: 14px;
    --maxw: 1180px;
    --shadow: 0 20px 50px -25px rgba(10, 19, 14, 0.35);
}

/* =========================================
   GLOBAL RESET / BASE
========================================= */

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.08;
}
p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img,
svg {
    display: block;
    max-width: 100%;
}
.mono {
    font-family: "IBM Plex Mono", monospace;
    font-variant-numeric: tabular-nums;
}

/* =========================================
   GLOBAL LAYOUT
========================================= */

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 2px;
}
/* =========================================
   GLOBAL TYPOGRAPHY
========================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-2);
    font-weight: 600;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--brand-2);
    display: inline-block;
}
.light-h2 {
    color: #ffffff !important;
}
.dark h2,
.dark h3,
.dark h4 {
    color: #fff !important;
}

.sub-menu a {
    color: #292929 !important;
}

section.dark .eyebrow {
    color: var(--brand) !important;
}
section.dark .eyebrow::before {
    background: var(--brand) !important;
}
/* =========================================
   GLOBAL BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--brand);
    color: var(--ink);
    box-shadow: 0 10px 24px -10px rgba(52, 214, 122, 0.6);
}
.btn-primary:hover {
    background: #2fc46e;
}
.btn-outline {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}
section.dark .btn-outline {
    border-color: var(--line-dark);
    color: #fff;
}
.btn-outline:hover {
    border-color: var(--brand-2);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-dark);
    color: #fff;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}
.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}
.btn-full {
    width: 100%;
}

/* =========================================
   HOME PAGE
========================================= */

/* =========================================================
   KONKER MAIN HERO V2
   Atmospheric Dark + Green + Grid + Glass
   Scoped ONLY to .main-hero
   ========================================================= */

/* =========================================================
   ROOT
   ========================================================= */

.main-hero {
    --hero-bg: #031b13;
    --hero-bg-deep: #020f0b;
    --hero-green: #20c875;
    --hero-green-bright: #42df8d;
    --hero-green-dark: #0d8d52;
    --hero-text: #f4f8f5;
    --hero-text-soft: rgba(232, 241, 236, 0.7);
    --hero-text-muted: rgba(214, 229, 220, 0.52);
    position: relative;
    width: 100%;
    min-height: 760px;
    padding: 100px 24px 100px;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse 75% 65% at 50% 72%,
            rgba(18, 121, 75, 0.28) 0%,
            rgba(8, 75, 47, 0.17) 35%,
            transparent 72%
        ),
        radial-gradient(ellipse 55% 55% at 20% 30%, rgba(13, 103, 66, 0.18), transparent 70%),
        radial-gradient(ellipse 55% 55% at 82% 20%, rgba(7, 76, 49, 0.16), transparent 70%),
        linear-gradient(135deg, #031b13 0%, #041f16 45%, #02150f 100%);
    isolation: isolate;
}

/* =========================================================
   TOP / BOTTOM ATMOSPHERE
   ========================================================= */

.main-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -6;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        transparent 28%,
        transparent 75%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

/* =========================================================
   TECHNICAL GRID
   ========================================================= */

.main-hero .main-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(103, 190, 148, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 190, 148, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(
        ellipse 78% 78% at 50% 48%,
        black 0%,
        rgba(0, 0, 0, 0.8) 42%,
        rgba(0, 0, 0, 0.35) 68%,
        transparent 94%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 78% 78% at 50% 48%,
        black 0%,
        rgba(0, 0, 0, 0.8) 42%,
        rgba(0, 0, 0, 0.35) 68%,
        transparent 94%
    );
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Grid-line illumination overlay */
.main-hero .main-hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    /* Enhanced bright grid pattern with increased opacity (40% brighter) */
    background-image:
        linear-gradient(rgba(52, 214, 122, 0.34) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 214, 122, 0.34) 1px, transparent 1px);
    background-size: 72px 72px;
    /* Radial mask: show bright grid only near cursor, fade over ~2-3 grid cells */
    -webkit-mask-image: radial-gradient(
        circle 200px at var(--mouse-x) var(--mouse-y),
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: radial-gradient(
        circle 200px at var(--mouse-x) var(--mouse-y),
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0) 100%
    );
    /* Subtle neon glow tight to grid lines */
    filter: drop-shadow(0 0 1.5px rgba(52, 214, 122, 0.28));
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

/* Show illuminated grid when cursor is over hero */
.main-hero:hover .main-hero-grid::after {
    opacity: 1;
}

/* =========================================================
   SOFT LIGHT GLOWS
   ========================================================= */

.main-hero .main-hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(70px);
    z-index: -4;
}

/* Main bottom glow */

.main-hero .main-hero-glow-1 {
    width: 620px;
    height: 300px;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    background: rgba(23, 171, 98, 0.13);
}

/* Secondary glow */

.main-hero .main-hero-glow-2 {
    width: 360px;
    height: 260px;
    right: 8%;
    top: 18%;
    background: rgba(21, 127, 81, 0.09);
}

/* =========================================================
   ABSTRACT NETWORK
   ========================================================= */

.main-hero .main-hero-network {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 0.42;
}

/* Lines */

.main-hero .network-line {
    position: absolute;
    display: block;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, transparent, rgba(57, 202, 126, 0.28), transparent);
    filter: blur(0.2px);
}

/* Individual lines */

.main-hero .line-1 {
    width: 360px;
    left: 8%;
    top: 31%;
    transform: rotate(18deg);
}

.main-hero .line-2 {
    width: 300px;
    right: 8%;
    top: 28%;
    transform: rotate(-21deg);
}

.main-hero .line-3 {
    width: 270px;
    left: 16%;
    bottom: 25%;
    transform: rotate(-14deg);
}

.main-hero .line-4 {
    width: 340px;
    right: 14%;
    bottom: 23%;
    transform: rotate(17deg);
}

/* Network nodes */

.main-hero .network-node {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #37d986;
    box-shadow: 0 0 14px rgba(55, 217, 134, 0.65);
    opacity: 0.45;
}

.main-hero .node-1 {
    left: 28%;
    top: 35%;
}

.main-hero .node-2 {
    right: 25%;
    top: 31%;
}

.main-hero .node-3 {
    left: 23%;
    bottom: 29%;
}

.main-hero .node-4 {
    right: 27%;
    bottom: 27%;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.main-hero .main-hero-inner {
    position: relative;
    z-index: 2;
    width: min(930px, 100%);
    margin: 0 auto;
    text-align: center;
}

/* =========================================================
   KICKER
   ========================================================= */

.main-hero .main-hero-kicker {
    margin-bottom: 25px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #38cf83;
    text-shadow: 0 0 18px rgba(56, 207, 131, 0.15);
}

/* =========================================================
   HEADLINE
   ========================================================= */

.main-hero .main-hero-title {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(44px, 5.1vw, 64px);
    line-height: 1.055;
    font-weight: 700;
    letter-spacing: -3px;
    color: var(--hero-text);
    text-wrap: balance;
}

/* =========================================================
   GRADIENT EMPHASIS
   ========================================================= */

.main-hero .main-hero-title em {
    font-style: normal;
    background: linear-gradient(100deg, #1fb96d 0%, #54e59a 48%, #20b96d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(37, 205, 119, 0.08));
}

/* =========================================================
   LEAD
   ========================================================= */

.main-hero .main-hero-lead {
    max-width: 660px;
    margin: 29px auto 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15.5px;
    line-height: 1.72;
    font-weight: 400;
    color: var(--hero-text-soft);
}

/* =========================================================
   CTA
   ========================================================= */

.main-hero .main-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

/* =========================================================
   BUTTON BASE
   ========================================================= */

.main-hero .main-hero-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.main-hero .main-hero-btn-primary {
    color: #02150d;
    border: 1px solid rgba(78, 229, 150, 0.45);
    background: linear-gradient(135deg, #36d985 0%, #1ebd6d 55%, #16a85f 100%);
    box-shadow: 0 8px 28px rgba(25, 192, 108, 0.2);
}

.main-hero .main-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(25, 192, 108, 0.3);
}

/* =========================================================
   SECONDARY GLASS BUTTON
   ========================================================= */

.main-hero .main-hero-btn-secondary {
    color: #eaf3ee;
    border: 1px solid rgba(151, 204, 177, 0.22);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-hero .main-hero-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(66, 218, 137, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

/* =========================================================
   QUIZ
   ========================================================= */

.main-hero .main-hero-quiz {
    margin-top: 21px;
}

.main-hero .main-hero-quiz a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12.5px;
    line-height: 1.4;
    font-weight: 600;
    color: #45d58c;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.main-hero .main-hero-quiz a span {
    display: inline-block;
    margin-left: 2px;
    transition: transform 180ms ease;
}

.main-hero .main-hero-quiz a:hover {
    color: #70e9ac;
}

.main-hero .main-hero-quiz a:hover span {
    transform: translateX(3px);
}

/* =========================================================
   HERO PROOF PANEL
   ========================================================= */

.main-hero .main-hero-proof {
    position: relative;
    width: min(820px, 100%);
    margin: 42px auto 0;
    overflow: hidden;
    border: 1px solid rgba(126, 201, 163, 0.17);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.main-hero .main-hero-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        rgba(37, 194, 113, 0.08),
        rgba(58, 218, 139, 0.28),
        rgba(255, 255, 255, 0.06),
        rgba(37, 194, 113, 0.2),
        rgba(37, 194, 113, 0.06)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.main-hero .main-hero-proof-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 122px;
}

/* =========================================================
   EQUAL SEPARATORS
   ========================================================= */

.main-hero .main-hero-proof-inner::before,
.main-hero .main-hero-proof-inner::after {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: rgba(147, 210, 178, 0.09);
    pointer-events: none;
    z-index: 1;
}

.main-hero .main-hero-proof-inner::before {
    left: 33.333%;
}

.main-hero .main-hero-proof-inner::after {
    right: 33.333%;
}

/* =========================================================
   PROOF ITEM
   ========================================================= */

.main-hero .main-hero-proof-item {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 56px auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-content: center;
    align-items: center;
    min-height: 122px;
    padding: 16px 30px;
    text-align: left;
}

/* =========================================================
   ICON
   ========================================================= */

.main-hero .main-hero-proof-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 1px solid rgba(62, 216, 137, 0.16);
    border-radius: 50%;
    background: rgba(40, 200, 120, 0.075);
    box-shadow: 0 0 24px rgba(37, 195, 112, 0.06);
}

.main-hero .main-hero-proof-icon img {
    width: 65px;
    height: 65px;
    display: block;
    object-fit: contain;
}

.main-hero .main-hero-proof-icon svg {
    width: 23px;
    height: 23px;
    color: #42dc8f;
}

/* =========================================================
   VALUE
   ========================================================= */

.main-hero .main-hero-proof-value {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.1px;
    color: #45dc90;
}

.main-hero .main-hero-proof-value.proof-check {
    font-size: 29px;
    letter-spacing: -0.8px;
}

/* =========================================================
   LABEL
   ========================================================= */

.main-hero .main-hero-proof-tag {
    grid-column: 2;
    grid-row: 2;
    margin: 6px 0 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(205, 226, 214, 0.52);
}

/* =========================================================
   HIDE SECONDARY CAPTION
   ========================================================= */

.main-hero .main-hero-proof-item > .main-hero-proof-caption {
    display: none;
}

/* =========================================================
   FEATURED CENTER
   ========================================================= */

.main-hero .main-hero-proof-featured {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 56px auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-content: center;
    align-items: center;
    margin: 10px 8px;
    padding: 14px 25px;
    min-height: 102px;
    overflow: hidden;
    border: 1px solid rgba(58, 215, 136, 0.28);
    border-radius: 15px;
    background:
        radial-gradient(circle at 20% 20%, rgba(44, 211, 127, 0.16), transparent 58%),
        linear-gradient(135deg, rgba(5, 76, 48, 0.95), rgba(3, 48, 32, 0.98));
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.main-hero .main-hero-proof-featured::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 75px;
    right: -55px;
    bottom: -40px;
    border-radius: 50%;
    background: rgba(35, 205, 120, 0.14);
    filter: blur(26px);
    pointer-events: none;
}

.main-hero .main-hero-proof-featured .main-hero-proof-icon {
    position: relative;
    z-index: 1;
    grid-row: 1 / 3;
    background: rgba(29, 201, 117, 0.07);
    border-color: rgba(58, 215, 136, 0.22);
}

.main-hero .main-hero-proof-featured .main-hero-proof-value {
    position: relative;
    z-index: 1;
    font-size: 31px;
    color: #49df92;
}

.main-hero .main-hero-proof-featured .main-hero-proof-caption {
    position: relative;
    z-index: 1;
    display: block;
    grid-column: 2;
    grid-row: 2;
    margin: 6px 0 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.13em;
    color: rgba(225, 241, 231, 0.66);
}

/* =========================================================
   HOVER
   ========================================================= */

.main-hero .main-hero-proof-item:not(.main-hero-proof-featured) {
    transition: background 180ms ease;
}

.main-hero .main-hero-proof-item:not(.main-hero-proof-featured):hover {
    background: rgba(255, 255, 255, 0.018);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .main-hero .main-hero-proof {
        width: min(700px, 100%);
    }

    .main-hero .main-hero-proof-inner {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 7px;
    }

    .main-hero .main-hero-proof-inner::before,
    .main-hero .main-hero-proof-inner::after {
        display: none;
    }

    .main-hero .main-hero-proof-item {
        min-height: 100px;
        border: 1px solid rgba(147, 210, 178, 0.08);
        border-radius: 14px;
    }

    .main-hero .main-hero-proof-featured {
        margin: 0;
        min-height: 100px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {
    .main-hero .main-hero-proof {
        width: 100%;
        margin-top: 34px;
        border-radius: 17px;
    }

    .main-hero .main-hero-proof-item {
        grid-template-columns: 48px auto;
        min-height: 92px;
        padding: 14px 17px;
        column-gap: 14px;
    }

    .main-hero .main-hero-proof-icon {
        width: 48px;
        height: 48px;
    }

    .main-hero .main-hero-proof-icon img {
        width: 45px;
        height: 45px;
    }

    .main-hero .main-hero-proof-value {
        font-size: 27px;
    }

    .main-hero .main-hero-proof-value.proof-check {
        font-size: 25px;
    }

    .main-hero .main-hero-proof-featured {
        grid-template-columns: 48px auto;
        padding: 14px 18px;
    }
}
/* =========================================================
   CENTER CONTENT
   ========================================================= */

.main-hero .main-hero-center-content {
    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

/* 700K */

.main-hero .main-hero-center-value {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 34px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1.2px;

    color: #43dc8f;
}

/* DATA POINTS */

.main-hero .main-hero-center-caption {
    margin-top: 6px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 8.5px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: 0.13em;

    color: rgba(227, 242, 233, 0.68);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .main-hero {
        min-height: auto;

        padding: 82px 24px 55px;
    }

    .main-hero .main-hero-grid {
        background-size: 60px 60px;
    }

    .main-hero .main-hero-title {
        font-size: clamp(40px, 6vw, 56px);

        letter-spacing: -2.5px;
    }

    .main-hero .main-hero-lead {
        max-width: 620px;
    }

    .main-hero .main-hero-proof {
        width: min(650px, 100%);
    }

    .main-hero .main-hero-proof-inner {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 10px;
    }

    .main-hero .main-hero-proof-item,
    .main-hero .main-hero-proof-center {
        min-height: 115px;

        margin: 0;

        border-radius: 16px;
    }

    .main-hero .main-hero-proof-item {
        border: 1px solid rgba(157, 207, 178, 0.1) !important;
    }

    .main-hero .main-hero-proof-center {
        order: 2;
    }

    .main-hero .main-hero-proof-item:first-child {
        order: 1;
    }

    .main-hero .main-hero-proof-item:last-child {
        order: 3;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {
    .main-hero {
        padding: 68px 16px 42px;
    }

    .main-hero .main-hero-grid {
        background-size: 46px 46px;

        opacity: 0.32;
    }

    .main-hero .main-hero-glow-1 {
        width: 460px;
        height: 260px;

        bottom: 0;
    }

    .main-hero .main-hero-glow-2 {
        width: 260px;
        height: 200px;

        right: -100px;
        top: 20%;
    }

    /* Hide some network decoration on mobile */

    .main-hero .main-hero-network {
        opacity: 0.2;
    }

    .main-hero .line-1,
    .main-hero .line-3 {
        left: -80px;
    }

    .main-hero .line-2,
    .main-hero .line-4 {
        right: -100px;
    }

    /* Kicker */

    .main-hero .main-hero-kicker {
        margin-bottom: 20px;

        font-size: 8.5px;

        letter-spacing: 0.11em;
    }

    /* Heading */

    .main-hero .main-hero-title {
        max-width: 100%;

        font-size: 37px;

        line-height: 1.08;

        letter-spacing: -1.8px;
    }

    /* Lead */

    .main-hero .main-hero-lead {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.68;
    }

    /* CTA */

    .main-hero .main-hero-cta {
        flex-direction: column;

        width: 100%;

        margin-top: 28px;

        gap: 10px;
    }

    .main-hero .main-hero-btn {
        width: min(320px, 100%);

        min-height: 50px;
    }

    .main-hero .main-hero-quiz {
        margin-top: 18px;
    }

    .main-hero .main-hero-quiz a {
        font-size: 12px;
    }

    /* Proof */

    .main-hero .main-hero-proof {
        width: 100%;

        margin-top: 38px;

        border-radius: 20px;
    }

    .main-hero .main-hero-proof-inner {
        padding: 9px;

        gap: 9px;
    }

    .main-hero .main-hero-proof-item {
        justify-content: flex-start;

        gap: 17px;

        padding: 19px 18px;
    }

    .main-hero .main-hero-proof-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }

    .main-hero .main-hero-proof-icon img {
        width: 25px;
        height: 25px;
    }

    .main-hero .main-hero-proof-value {
        font-size: 30px;
    }

    .main-hero .main-hero-proof-caption {
        font-size: 11px;
    }

    .main-hero .main-hero-proof-center {
        padding: 18px 20px;
    }

    .main-hero .main-hero-center-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .main-hero .main-hero-center-icon svg {
        width: 20px;
        height: 20px;
    }

    .main-hero .main-hero-center-value {
        font-size: 30px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
    .main-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .main-hero .main-hero-title {
        font-size: 33px;

        letter-spacing: -1.5px;
    }

    .main-hero .main-hero-lead {
        font-size: 13.5px;
    }

    .main-hero .main-hero-proof-item {
        padding: 17px 15px;
    }

    .main-hero .main-hero-proof-value,
    .main-hero .main-hero-center-value {
        font-size: 28px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .main-hero .main-hero-btn,
    .main-hero .main-hero-quiz a,
    .main-hero .main-hero-quiz a span {
        transition: none;
    }
}

/* ---------- SHARED CTA ROW (Home final CTA + services) ---------- */
.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* =========================================
   KONKER — HERO PROOF FUNNEL
   ========================================= */

.funnel {
    width: min(100%, 1080px);
    min-height: 188px;
    margin: 20px auto;

    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    align-items: center;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(20, 42, 32, 0.12);
    border-radius: 22px;

    box-shadow:
        0 18px 45px rgba(20, 42, 32, 0.08),
        0 4px 14px rgba(20, 42, 32, 0.04);

    overflow: hidden;
}

/* =========================================
   SIDE NODES
   ========================================= */

.funnel-node {
    height: 100%;
    min-height: 188px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    padding: 28px 38px;
    position: relative;
}

/* Vertical divider */

.funnel-node:first-child {
    border-right: 1px solid rgba(20, 42, 32, 0.12);
}

.funnel-node:last-child {
    border-left: 1px solid rgba(20, 42, 32, 0.12);
}

/* =========================================
   ICON
   ========================================= */

.funnel-icon {
    width: 78px;
    height: 78px;

    flex: 0 0 78px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.funnel-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================
   CONTENT
   ========================================= */

.funnel-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Small label */

.funnel .tag {
    margin-bottom: 7px;

    font-family: "Courier New", monospace;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #53635d;
}

/* Main value */

.funnel-node .val {
    margin: 0;

    font-size: 39px;
    line-height: 0.95;
    font-weight: 700;

    letter-spacing: -1.5px;

    color: #15945a;
}

/* Description */

.funnel-node .cap {
    margin-top: 7px;

    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;

    color: #596660;
}

/* =========================================
   CENTER CARD
   ========================================= */

.funnel-center {
    min-height: 116px;

    margin: 0 18px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border-radius: 15px;

    background: linear-gradient(135deg, #06261b 0%, #073b28 100%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 24px rgba(4, 35, 24, 0.15);

    color: #ffffff;
}

/* Center icon */

.funnel-center-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(49, 207, 126, 0.35);
    border-radius: 50%;

    color: #31cf7e;
    background: rgba(49, 207, 126, 0.06);
}

.funnel-center-icon svg {
    width: 27px;
    height: 27px;
}

/* Center content */

.funnel-center-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.funnel-center .val {
    margin: 0;

    font-size: 38px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: -1px;

    color: #31cf7e;
}

.funnel-center .cap {
    margin-top: 7px;

    font-size: 11px;
    line-height: 1;

    font-weight: 600;
    letter-spacing: 1.3px;

    color: rgba(255, 255, 255, 0.78);
}

/* =========================================
   AI CHECK
   ========================================= */

.funnel-node .check {
    font-size: 43px;
    line-height: 0.9;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
    .funnel {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
        gap: 14px;
    }

    .funnel-node,
    .funnel-center {
        min-height: 140px;
        border: 1px solid rgba(20, 42, 32, 0.12) !important;
        border-radius: 18px;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 12px 30px rgba(20, 42, 32, 0.06);
    }

    .funnel-center {
        background: linear-gradient(135deg, #06261b 0%, #073b28 100%);
    }

    .funnel-node {
        justify-content: flex-start;
        padding: 24px 30px;
    }
}

@media (max-width: 520px) {
    .funnel {
        width: calc(100% - 24px);
    }

    .funnel-node {
        gap: 20px;
        padding: 22px;
    }

    .funnel-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .funnel-node .val {
        font-size: 34px;
    }

    .funnel-center {
        padding: 20px;
    }

    .funnel-center-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .funnel-center .val {
        font-size: 32px;
    }

    .funnel-node .cap {
        font-size: 12px;
    }
}

/* =========================================
   KONKER — TRUST / PROOF BAR
   ========================================= */

.trust {
    position: relative;
    width: 100%;
    padding: 60px 28px;
    background: #fbfcf9;
    border-top: 1px solid rgba(18, 45, 34, 0.09);
    border-bottom: 1px solid rgba(18, 45, 34, 0.09);
    overflow: hidden;
}

.trust::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -260px;
    bottom: -290px;
    border-radius: 50%;
    background: rgba(35, 185, 105, 0.035);
    filter: blur(45px);
    pointer-events: none;
}

.trust-wrap {
    position: relative;
    width: min(1080px, 100%);
    margin: 0 auto;
}

.trust-label {
    margin: 0 0 26px;
    text-align: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1f8f52;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-item {
    position: relative;
    min-width: 0;
    padding: 0 24px;
    text-align: center;
    transition: opacity 180ms ease;
}

.trust-item:hover {
    opacity: 0.88;
}

.trust-item + .trust-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 44px;
    transform: translateY(-50%);
    background: rgba(18, 45, 34, 0.1);
}

.trust-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef8f1;
}

.trust-icon img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

.trust-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: #17231e;
}

.trust-featured .trust-number {
    color: #15945a;
}

.trust-number.rating {
    gap: 5px;
}

.trust-number.rating img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.trust-label-text {
    margin-top: 6px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11.5px;
    line-height: 1.4;
    font-weight: 400;
    color: #69756f;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
    .trust {
        padding: 24px 20px 26px;
    }

    .trust-wrap {
        width: min(720px, 100%);
    }

    .trust-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .trust-item {
        padding: 0 20px;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        padding-top: 24px;
        border-top: 1px solid rgba(18, 45, 34, 0.09);
    }

    .trust-item:nth-child(3) {
        border-right: 1px solid rgba(18, 45, 34, 0.09);
    }

    .trust-item:nth-child(3)::before,
    .trust-item:nth-child(4)::before {
        display: none;
    }

    .trust-number {
        font-size: 27px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 560px) {
    .trust {
        padding: 24px 16px;
    }

    .trust-label {
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .trust-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 0;
    }

    .trust-item {
        padding: 18px 10px;
    }

    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        padding-top: 0;
        padding-bottom: 18px;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        padding-top: 18px;
    }

    .trust-item:nth-child(1),
    .trust-item:nth-child(3) {
        border-right: 1px solid rgba(18, 45, 34, 0.09);
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(18, 45, 34, 0.09);
    }

    .trust-item + .trust-item::before {
        display: none;
    }

    .trust-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    .trust-icon img {
        width: 31px;
        height: 31px;
    }

    .trust-number {
        font-size: 24px;
        letter-spacing: -0.9px;
    }

    .trust-number.rating img {
        width: 14px;
        height: 14px;
    }

    .trust-label-text {
        margin-top: 5px;
        font-size: 10.5px;
        line-height: 1.35;
    }
}

/* =========================================
   VERY SMALL SCREENS
   ========================================= */

@media (max-width: 380px) {
    .trust {
        padding: 22px 12px;
    }

    .trust-item {
        padding-left: 7px;
        padding-right: 7px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-icon img {
        width: 29px;
        height: 29px;
    }

    .trust-number {
        font-size: 22px;
    }

    .trust-label-text {
        font-size: 10px;
    }
}

/* =========================================
   GLOBAL CARDS / TAGS / UTILITIES
========================================= */

/* ---------- SECTION GENERIC ---------- */
section {
    padding: 96px 0;
}
section.dark {
    background: var(--ink);
    color: #fff;
}
section.forest {
    background: var(--forest);
    color: #fff;
}
section.tight {
    padding: 64px 0;
}
.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 600;
}
.section-head p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
}
section.dark .section-head p,
section.forest .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

/* Data behind the shift */
.data-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.data-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}
.data-card .ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--brand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.data-card .ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand);
}
.data-card h3 {
    font-size: 18px;
    font-weight: 600;
}
.data-card p {
    margin-top: 8px;
    font-size: 14.5px;
    color: var(--ink-mute);
    line-height: 1.6;
}
.data-card-accent {
    border-color: var(--brand-2);
}
.data-footnote {
    margin-top: 36px;
    padding: 24px 28px;
    border-radius: var(--radius);
    background: var(--paper-dim);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    border-left: 3px solid var(--brand-2);
}
.data-footnote strong {
    color: var(--ink);
}

/* =========================================
   THE ELEVATION
   ========================================= */

.elevation-section {
    position: relative;
    overflow: hidden;
}

.elevation-section .wrap {
    position: relative;
    z-index: 1;
}

.elevation-head {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 72px;
    align-items: center;
}

.elevation-intro {
    max-width: 570px;
}

.elevation-intro .eyebrow {
    margin-bottom: 26px;
}

.elevation-intro .light-h2 {
    max-width: 560px;
    margin: 0 0 22px;
}

.elevation-intro .light-h2 span {
    display: block;
    color: var(--brand);
}

.elevation-lead {
    max-width: 540px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================
   DATA VISUAL
   ========================================= */

.story-visual {
    position: relative;
    padding: 30px 34px;
    border: 1px solid rgba(120, 255, 180, 0.18);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 20px 60px rgba(0, 0, 0, 0.12);
}

.visual-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.visual-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.35);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.07);
}

.visual-icon svg {
    width: 21px;
    height: 21px;
}

.visual-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.visual-subtitle {
    margin-top: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.52);
}

.shift-row {
    display: grid;
    grid-template-columns: 170px 1fr 48px;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.shift-row:last-child {
    border-bottom: 0;
    padding-bottom: 4px;
}

.shift-row .lbl {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.68);
}

.shift-row .bar {
    width: 100%;
    height: 6px;
    margin: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.shift-row .bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #36d67a, #58e99a);
    box-shadow: 0 0 10px rgba(52, 214, 122, 0.28);
}

.shift-row .pct {
    min-width: 48px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}

.shift-row .pct.positive {
    color: #45dc83;
}

.shift-row .pct.negative {
    color: #ff756c;
}

/* =========================================
   INSIGHT CARDS
   ========================================= */

.elevation-insights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.insight-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 27px;
    border: 1px solid rgba(120, 255, 180, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        border-color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.insight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 214, 122, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.insight-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.38);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.055);
}

.insight-icon svg {
    width: 22px;
    height: 22px;
}

.insight-card h3 {
    margin: 1px 0 7px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #fff;
}

.insight-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   MARKETPLACE CALLOUT
   ========================================= */

.elevation-callout {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(120, 255, 180, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.callout-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.35);
    border-radius: 50%;
    color: var(--brand);
}

.callout-icon svg {
    width: 21px;
    height: 21px;
}

.callout-content {
    flex: 1;
}

.callout-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.callout-content a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(52, 214, 122, 0.45);
}

.callout-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.35);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.06);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.callout-arrow:hover {
    background: rgba(52, 214, 122, 0.13);
    transform: translateX(3px);
}

.callout-arrow svg {
    width: 20px;
    height: 20px;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
    .elevation-head {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elevation-intro {
        max-width: 700px;
    }

    .elevation-intro .light-h2 {
        max-width: 680px;
    }

    .elevation-lead {
        max-width: 680px;
    }

    .story-visual {
        max-width: 760px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
    .elevation-head {
        gap: 30px;
    }

    .elevation-intro .eyebrow {
        margin-bottom: 18px;
    }

    .elevation-intro .light-h2 {
        margin-bottom: 18px;
    }

    .elevation-lead {
        font-size: 14px;
        line-height: 1.7;
    }

    .story-visual {
        padding: 22px 18px;
        border-radius: 15px;
    }

    .visual-head {
        margin-bottom: 16px;
    }

    .visual-title {
        font-size: 13px;
    }

    .visual-subtitle {
        font-size: 11px;
    }

    .shift-row {
        grid-template-columns: 1fr 42px;
        gap: 10px;
        padding: 14px 0;
    }

    .shift-row .lbl {
        grid-column: 1 / -1;
        font-size: 12px;
    }

    .shift-row .bar {
        grid-column: 1;
        grid-row: 2;
    }

    .shift-row .pct {
        grid-column: 2;
        grid-row: 2;
        min-width: 42px;
    }

    .elevation-insights {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .insight-card {
        padding: 21px;
        gap: 15px;
    }

    .insight-card p {
        font-size: 12.5px;
    }

    .elevation-callout {
        align-items: flex-start;
        padding: 18px;
        gap: 13px;
    }

    .callout-content p {
        font-size: 12px;
    }

    .callout-arrow {
        display: none;
    }
}

/* =========================================
   SERVICES — PREMIUM EXECUTION SYSTEM
   ========================================= */

.services-section {
    position: relative;
    overflow: hidden;
}

.services-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.services-head .eyebrow {
    margin-bottom: 18px;
}

.services-head h2 {
    margin: 0;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -2.6px;
    color: var(--ink);
}

.services-head h2 span {
    display: block;
    color: var(--brand-2);
}

.services-head p {
    max-width: 650px;
    margin: 19px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-mute);
}

/* =========================================
   MANAGED SEO — FLAGSHIP
   ========================================= */

.services-flagship {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 300px;
    margin-bottom: 18px;
    padding: 44px 48px;
    overflow: hidden;
    border: 1px solid rgba(52, 214, 122, 0.2);
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0b3824 0%, #08271a 50%, #061b12 100%);
    box-shadow:
        0 20px 55px rgba(7, 35, 22, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.flagship-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    right: -120px;
    top: -65px;
    border-radius: 50%;
    background: rgba(52, 214, 122, 0.08);
    filter: blur(55px);
    pointer-events: none;
}

.flagship-main {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 650px;
}

.flagship-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.28);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.07);
}

.flagship-icon svg {
    width: 27px;
    height: 27px;
}

.flagship-content {
    max-width: 540px;
}

.services-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid rgba(52, 214, 122, 0.17);
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.09);
}

.flagship-content h3 {
    margin: 16px 0 9px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 650;
    letter-spacing: -1px;
}

.flagship-content p {
    max-width: 540px;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 22px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #041810;
    background: var(--brand);
    font-size: 12px;
    line-height: 1;
    font-weight: 650;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.services-btn span {
    font-size: 16px;
    line-height: 1;
}

.services-btn:hover {
    transform: translateY(-2px);
    color: #041810;
    background: #45e98a;
    box-shadow: 0 9px 26px rgba(52, 214, 122, 0.2);
}

/* =========================================
   FLAGSHIP ABSTRACT VISUAL
   ========================================= */

.flagship-visual {
    position: absolute;
    right: 55px;
    top: 50%;
    width: 310px;
    height: 310px;
    transform: translateY(-50%);
    pointer-events: none;
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(52, 214, 122, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 190px;
    height: 190px;
}

.orbit-two {
    width: 285px;
    height: 285px;
    border-color: rgba(52, 214, 122, 0.07);
}

.visual-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(52, 214, 122, 0.3);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.07);
    box-shadow: 0 0 35px rgba(52, 214, 122, 0.1);
}

.visual-core svg {
    width: 30px;
    height: 30px;
}

/* =========================================
   SERVICE GRID
   ========================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

/* =========================================
   SERVICE CARD
   ========================================= */

.service-card {
    position: relative;
    min-width: 0;
    padding: 24px 23px 21px;
    border: 1px solid rgba(18, 45, 34, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(35, 185, 105, 0.28);
    background: #fff;
    box-shadow: 0 15px 35px rgba(18, 45, 34, 0.07);
}

/* AI Visibility highlight */

.service-card-featured {
    border-color: rgba(35, 185, 105, 0.24);
    background: radial-gradient(circle at 100% 0%, rgba(35, 185, 105, 0.09), transparent 38%), #fbfefa;
}

/* =========================================
   CARD HEADER
   ========================================= */

.service-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 19px;
    margin-right: 9px;
    padding: 0 6px;
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 8px;
    line-height: 1;
    color: var(--brand-2);
    background: rgba(35, 185, 105, 0.08);
}

.service-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(35, 185, 105, 0.15);
    border-radius: 12px;
    color: var(--brand-2);
    background: rgba(35, 185, 105, 0.055);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-arrow {
    margin-left: auto;
    font-size: 18px;
    color: rgba(18, 45, 34, 0.28);
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.service-card:hover .service-arrow {
    color: var(--brand-2);
    transform: translate(2px, -2px);
}

/* =========================================
   CARD CONTENT
   ========================================= */

.service-tag {
    display: block;
    margin-bottom: 8px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 8.5px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--brand-2);
}

.service-card h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -0.5px;
    color: var(--ink);
}

.service-card > p {
    max-width: 370px;
    margin: 8px 0 19px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-mute);
}

/* =========================================
   SERVICE → DESCRIPTION ROWS
   ========================================= */

.service-list {
    border-top: 1px solid rgba(18, 45, 34, 0.1);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 37px;
    border-bottom: 1px solid rgba(18, 45, 34, 0.075);
}

.service-row:last-child {
    border-bottom: 0;
}

.service-name {
    position: relative;
    padding-left: 11px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--ink-soft);
}

.service-name::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--brand);
}

.service-desc {
    font-size: 11px;
    line-height: 1.35;
    text-align: right;
    color: var(--ink-mute);
}

.service-free {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--brand-2);
}

/* =========================================
   QUIZ CARD
   ========================================= */

.service-quiz {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    border: 1px dashed rgba(18, 45, 34, 0.18);
    background: radial-gradient(circle at 100% 0%, rgba(35, 185, 105, 0.11), transparent 45%), var(--paper-dim);
}

.quiz-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border: 1px solid rgba(35, 185, 105, 0.28);
    border-radius: 50%;
    color: var(--brand-2);
    background: rgba(35, 185, 105, 0.07);
}

.quiz-icon span {
    font-size: 21px;
    font-weight: 500;
}

.service-quiz h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 650;
    color: var(--ink);
}

.service-quiz p {
    max-width: 290px;
    margin: 9px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-mute);
}

.service-quiz .services-btn {
    align-self: flex-start;
}

.service-links {
    margin-top: 18px;
    border-top: 1px solid rgba(18, 45, 34, 0.1);
}

.service-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 39px;
    border-bottom: 1px solid rgba(18, 45, 34, 0.075);
    color: var(--ink-soft);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 160ms ease,
        padding 160ms ease,
        background 160ms ease;
}

.service-links a:last-child {
    border-bottom: 0;
}

.service-links a span {
    position: relative;
    padding-left: 11px;
}

.service-links a span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--brand);
}

.service-links a b {
    font-size: 14px;
    font-weight: 400;
    color: rgba(18, 45, 34, 0.3);
    transition:
        color 160ms ease,
        transform 160ms ease;
}

.service-links a:hover {
    padding-left: 3px;
    color: var(--brand-2);
}

.service-links a:hover b {
    color: var(--brand-2);
    transform: translate(2px, -2px);
}
/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {
    .services-flagship {
        min-height: 280px;
        padding: 36px;
    }

    .flagship-visual {
        right: 25px;
        opacity: 0.65;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 680px) {
    .services-head {
        margin-bottom: 32px;
    }

    .services-head h2 {
        font-size: 35px;
        letter-spacing: -1.7px;
    }

    .services-head p {
        font-size: 14px;
        line-height: 1.65;
    }

    .services-flagship {
        min-height: 0;
        padding: 27px 23px;
        border-radius: 17px;
    }

    .flagship-main {
        gap: 15px;
        max-width: 100%;
    }

    .flagship-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .flagship-icon svg {
        width: 23px;
        height: 23px;
    }

    .flagship-content h3 {
        margin-top: 14px;
        font-size: 27px;
    }

    .flagship-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .flagship-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 22px 20px;
    }

    .service-quiz {
        min-height: 250px;
    }

    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-name {
        font-size: 11.5px;
    }

    .service-desc {
        font-size: 10.5px;
    }
}

/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {
    .services-head h2 {
        font-size: 31px;
    }

    .services-flagship {
        padding: 24px 18px;
    }

    .flagship-main {
        display: block;
    }

    .flagship-icon {
        margin-bottom: 15px;
    }

    .flagship-content h3 {
        font-size: 25px;
    }

    .service-card {
        padding: 20px 17px;
    }

    .service-row {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

/* =========================================
   WHO WE SERVE
   ========================================= */

.serve-section {
    background: var(--paper-dim);
}

.serve-section .section-head {
    margin-bottom: 42px;
}

.serve-section .section-head p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--ink-mute);
}

/* -----------------------------------------
   GRID
   ----------------------------------------- */

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* -----------------------------------------
   CARD
   ----------------------------------------- */

.serve-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 45, 34, 0.11);
    border-radius: 15px;

    color: var(--ink);
    text-decoration: none;

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.serve-card:hover {
    transform: translateY(-4px);
    border-color: rgba(35, 185, 105, 0.38);
    box-shadow: 0 18px 45px rgba(18, 45, 34, 0.09);
}

/* -----------------------------------------
   CARD HEADER
   ----------------------------------------- */

.serve-card-top {
    display: flex;
    align-items: center;
    min-height: 46px;
    margin-bottom: 22px;
}

.serve-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 32px;

    border-radius: 6px;
    background: #eef8f1;

    color: var(--brand-2);

    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.serve-icon {
    width: 48px;
    height: 48px;
    margin-left: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef8f1;

    color: var(--brand-2);
}

.serve-icon svg {
    width: 24px;
    height: 24px;
}

.serve-arrow {
    margin-left: auto;

    color: var(--brand-2);
    font-size: 23px;
    font-weight: 300;
    line-height: 1;

    transition: transform 180ms ease;
}

.serve-card:hover .serve-arrow {
    transform: translate(3px, -3px);
}

/* -----------------------------------------
   CARD CONTENT
   ----------------------------------------- */

.serve-card h4 {
    margin: 0;

    font-size: 19px;
    line-height: 1.25;
    font-weight: 650;
    letter-spacing: -0.35px;
}

.serve-card p {
    margin: 10px 0 0;

    max-width: 440px;

    font-size: 13.5px;
    line-height: 1.62;
    color: var(--ink-mute);
}

/* -----------------------------------------
   PATH BADGE
   ----------------------------------------- */

.serve-path {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    margin-top: auto;
    padding: 6px 10px;

    border-radius: 6px;
    background: #eef8f1;

    color: var(--brand-2);

    font-family: "IBM Plex Mono", monospace;
    font-size: 9.5px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* -----------------------------------------
   ENTERPRISE FEATURED
   ----------------------------------------- */

.serve-card-featured {
    background:
        radial-gradient(circle at 90% 10%, rgba(52, 214, 122, 0.1), transparent 42%),
        linear-gradient(145deg, rgba(247, 253, 248, 0.98), rgba(239, 249, 241, 0.96));

    border-color: rgba(35, 185, 105, 0.28);
}

.serve-card-featured .serve-number,
.serve-card-featured .serve-icon,
.serve-card-featured .serve-path {
    background: rgba(52, 214, 122, 0.11);
}

/* =========================================
   QUIZ BANNER
   ========================================= */

.quiz-banner {
    position: relative;

    display: flex;
    align-items: center;
    gap: 24px;

    margin-top: 18px;
    padding: 32px 38px;

    overflow: hidden;

    border-radius: 18px;

    background:
        radial-gradient(circle at 82% 50%, rgba(52, 214, 122, 0.12), transparent 28%),
        linear-gradient(135deg, #06291b, #071d15);

    border: 1px solid rgba(52, 214, 122, 0.16);
    color: #fff;
}

.quiz-banner::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    right: 35px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(52, 214, 122, 0.08);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(52, 214, 122, 0.025),
        0 0 0 70px rgba(52, 214, 122, 0.018);

    pointer-events: none;
}

/* -----------------------------------------
   QUESTION MARK
   ----------------------------------------- */

.quiz-mark {
    position: relative;
    z-index: 1;

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(52, 214, 122, 0.7);
    border-radius: 50%;

    color: var(--brand);

    font-size: 27px;
    font-weight: 400;
}

/* -----------------------------------------
   COPY
   ----------------------------------------- */

.quiz-copy {
    position: relative;
    z-index: 1;

    flex: 1;
}

.quiz-copy h3 {
    margin: 0;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -0.4px;
}

.quiz-copy p {
    margin: 7px 0 0;

    max-width: 620px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13.5px;
    line-height: 1.55;
}

/* -----------------------------------------
   QUIZ BUTTON
   ----------------------------------------- */

.quiz-btn {
    position: relative;
    z-index: 1;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    white-space: nowrap;
}

.quiz-btn span {
    font-size: 17px;
    transition: transform 180ms ease;
}

.quiz-btn:hover span {
    transform: translateX(3px);
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .serve-card {
        min-height: 235px;
        padding: 24px;
    }

    .quiz-banner {
        padding: 28px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
    .serve-section .section-head {
        margin-bottom: 28px;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .serve-card {
        min-height: 220px;
        padding: 22px;
    }

    .serve-card-top {
        margin-bottom: 18px;
    }

    .serve-card h4 {
        font-size: 18px;
    }

    .serve-card p {
        font-size: 13px;
    }

    .quiz-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 22px;
        gap: 16px;
    }

    .quiz-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 23px;
    }

    .quiz-copy h3 {
        font-size: 20px;
    }

    .quiz-copy p {
        font-size: 13px;
    }

    .quiz-btn {
        width: 100%;
        justify-content: center;
    }

    .quiz-banner::after {
        right: -100px;
    }
}
/* =========================================
   DASHBOARD SECTION
   ========================================= */

.dashboard-section {
    position: relative;
    padding: 110px 0;
    background: var(--paper);
    overflow: hidden;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 72px;
    align-items: center;
}

.dashboard-logo {
    padding: 4px 7px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-logo img {
    display: block;
    width: 92px;
    height: auto;
}
.dashboard-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard-nav li {
    cursor: default;
    user-select: none;
}
.dashboard-nav ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.dashboard-nav li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 7px 10px;
    margin-bottom: 4px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.82);
    cursor: default;
    user-select: none;
}

.dashboard-nav li.active {
    background: rgba(52, 214, 122, 0.18);
    color: #fff;
}

.dashboard-nav .nav-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.68);
}

.dashboard-nav .nav-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dashboard-nav li.active .nav-icon {
    color: #34d67a;
}
.dashboard-nav li:last-child {
    margin-bottom: 0;
}
/* =========================================
   DASHBOARD PREVIEW
   ========================================= */

.dashboard-preview {
    position: relative;
}

.dashboard-preview::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: 15%;
    top: 15%;
    border-radius: 50%;
    background: rgba(35, 185, 105, 0.12);
    filter: blur(70px);
    pointer-events: none;
}

.dashboard-browser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 45, 34, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(18, 45, 34, 0.14);
}

.dashboard-browser-top {
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f7f8f5;
    border-bottom: 1px solid rgba(18, 45, 34, 0.08);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9ded9;
}

.browser-url {
    flex: 1;
    height: 24px;
    padding: 5px 12px;
    border-radius: 6px;
    background: #eef1ed;
    color: #8a948e;
    font:
        10px "IBM Plex Mono",
        monospace;
}

/* =========================================
   APP
   ========================================= */

.dashboard-app {
    min-height: 430px;
    display: grid;
    grid-template-columns: 142px 1fr;
}

/* =========================================
   SIDEBAR
   ========================================= */

.dashboard-sidebar {
    padding: 18px 10px;
    background: #052a14;
    color: #fff;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 7px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-logo strong {
    font-size: 14px;
    letter-spacing: -0.4px;
}

.logo-mark {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d67a;
    font-weight: 800;
    font-size: 15px;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 18px 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.78);
}

.user-avatar {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #34d67a;
    color: #052a14;
    font-size: 9px;
    font-weight: 700;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 7px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9.5px;
    text-decoration: none;
    transition:
        background 160ms ease,
        color 160ms ease;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: rgba(52, 214, 122, 0.17);
    color: #fff;
}

.dashboard-nav a.active {
    box-shadow: inset 2px 0 #34d67a;
}

.nav-icon {
    width: 15px;
    text-align: center;
    color: #34d67a;
    font-size: 12px;
}

/* =========================================
   MAIN DASHBOARD
   ========================================= */

.dashboard-main {
    min-width: 0;
    padding: 20px;
    background: #f8f9f6;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-eyebrow {
    display: block;
    margin-bottom: 3px;
    font:
        8px "IBM Plex Mono",
        monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #15945a;
}

.dashboard-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #17231e;
}

.dashboard-action {
    border: 0;
    border-radius: 6px;
    padding: 7px 10px;
    background: #15945a;
    color: #fff;
    font-size: 9px;
    cursor: pointer;
}

/* =========================================
   STAT CARDS
   ========================================= */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.dashboard-stat {
    padding: 12px;
    border: 1px solid #e2e7e1;
    border-radius: 9px;
    background: #fff;
}

.dashboard-stat span {
    display: block;
    font-size: 8px;
    color: #69756f;
}

.dashboard-stat strong {
    display: block;
    margin-top: 5px;
    font-size: 20px;
    line-height: 1;
    color: #17231e;
}

.dashboard-stat small {
    display: block;
    margin-top: 5px;
    font-size: 7px;
    color: #15945a;
}

/* =========================================
   CONTENT CARDS
   ========================================= */

.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 8px;
}

.dashboard-orders,
.dashboard-visibility {
    padding: 12px;
    border: 1px solid #e2e7e1;
    border-radius: 9px;
    background: #fff;
}

.dashboard-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
}

.dashboard-card-head h4 {
    font-size: 10px;
    font-weight: 600;
    color: #17231e;
}

.dashboard-card-head span {
    font:
        7px "IBM Plex Mono",
        monospace;
    color: #15945a;
}

.dashboard-order {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 6px;
    border-top: 1px solid #edf0ec;
}

.dashboard-order.active-order {
    border-radius: 6px;
    background: #f2faf5;
}

.order-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e7f5eb;
    color: #15945a;
    font-size: 9px;
}

.order-info {
    min-width: 0;
    flex: 1;
}

.order-info strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 8px;
    color: #17231e;
}

.order-info span {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 7px;
    color: #7a847e;
}

.order-status {
    flex-shrink: 0;
    padding: 3px 5px;
    border-radius: 999px;
    font:
        6px "IBM Plex Mono",
        monospace;
}

.order-status.progress {
    color: #087c46;
    background: #dff4e7;
}

.order-status.review {
    color: #927018;
    background: #f8f0d9;
}

.order-status.delivered {
    color: #39705a;
    background: #e8f1ec;
}

/* =========================================
   VISIBILITY CHART
   ========================================= */

.dashboard-visibility {
    display: flex;
    flex-direction: column;
}

.visibility-chart {
    height: 90px;
    margin-top: 10px;
    padding: 8px 5px 0;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    border-bottom: 1px solid #e5eae5;
}

.visibility-chart span {
    flex: 1;
    min-height: 10px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #15945a, #42dc83);
    opacity: 0.75;
}

.visibility-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 9px;
}

.visibility-value strong {
    font-size: 19px;
    color: #15945a;
}

.visibility-value span {
    font-size: 7px;
    color: #7a847e;
}

/* =========================================
   RIGHT CONTENT
   ========================================= */

.dashboard-copy {
    max-width: 540px;
}

.dashboard-copy h2 {
    max-width: 520px;
    margin-top: 12px;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.8px;
    color: var(--ink);
}

.dashboard-intro {
    max-width: 500px;
    margin-top: 16px;
    margin-bottom: 34px;
    color: var(--ink-mute);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================
   FEATURES
   ========================================= */

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dashboard-feature {
    position: relative;
    display: grid;
    grid-template-columns: 28px 40px 1fr;
    gap: 10px;
    align-items: start;
}

.feature-number {
    padding-top: 11px;
    font:
        9px "IBM Plex Mono",
        monospace;
    color: #15945a;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e6f6eb;
    color: #087c46;
}

.feature-icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dashboard-feature h4 {
    margin-top: 2px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.dashboard-feature p {
    max-width: 390px;
    margin-top: 4px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ink-mute);
}

/* =========================================
   HOVER
   ========================================= */

.dashboard-feature:hover .feature-icon {
    background: #d7f2e0;
    transform: translateY(-2px);
}

.feature-icon {
    transition:
        transform 180ms ease,
        background 180ms ease;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1050px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dashboard-copy {
        max-width: 700px;
    }

    .dashboard-copy h2 {
        max-width: 650px;
    }

    .dashboard-intro {
        max-width: 650px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {
    .dashboard-section {
        padding: 72px 0;
    }

    .dashboard-app {
        grid-template-columns: 92px 1fr;
    }

    .dashboard-sidebar {
        padding: 14px 7px;
    }

    .dashboard-logo strong {
        display: none;
    }

    .dashboard-user span {
        display: none;
    }

    .dashboard-nav a {
        justify-content: center;
        padding: 9px 4px;
        font-size: 0;
    }

    .nav-icon {
        font-size: 13px;
    }

    .dashboard-main {
        padding: 14px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-copy h2 {
        font-size: 30px;
        letter-spacing: -1.2px;
    }

    .dashboard-feature {
        grid-template-columns: 25px 38px 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-browser {
        border-radius: 14px;
    }

    .dashboard-browser-top {
        height: 34px;
    }

    .browser-url {
        display: none;
    }

    .dashboard-app {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-main {
        padding: 12px;
    }

    .dashboard-copy h2 {
        font-size: 27px;
    }

    .dashboard-feature {
        grid-template-columns: 38px 1fr;
    }

    .feature-number {
        display: none;
    }
}
/* =========================================
   KONKER — AGENCY PARTNERSHIP
   ========================================= */

.partner-section {
    position: relative;
    overflow: hidden;
    padding: 110px 24px 100px;
    background: radial-gradient(circle at 50% 35%, rgba(52, 214, 122, 0.055), transparent 38%), #071c13;
    color: #fff;
}

.partner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(52, 214, 122, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 214, 122, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
    pointer-events: none;
}

.partner-section .wrap {
    position: relative;
    z-index: 1;
}

.partner-head {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
}

.partner-head .eyebrow {
    margin-bottom: 22px;
    color: var(--brand);
}

.partner-head h2 {
    margin: 0;
    color: #f7faf8;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -2.5px;
}

.partner-head h2 span {
    color: var(--brand);
}

.partner-head p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 17px;
    line-height: 1.65;
}

/* -----------------------------------------
   MAIN LAYOUT
   ----------------------------------------- */

.partner-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    align-items: center;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
}

/* -----------------------------------------
   CARDS
   ----------------------------------------- */

.partner-card {
    position: relative;
    min-height: 535px;
    padding: 38px 34px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.partner-premium {
    background:
        radial-gradient(circle at 80% 5%, rgba(52, 214, 122, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(16, 69, 45, 0.72), rgba(7, 34, 23, 0.72));
    border-color: rgba(52, 214, 122, 0.65);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18),
        0 0 45px rgba(52, 214, 122, 0.07);
}

.partner-premium:hover {
    border-color: rgba(52, 214, 122, 0.82);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.22),
        0 0 55px rgba(52, 214, 122, 0.1);
}

/* -----------------------------------------
   CARD HEADER
   ----------------------------------------- */

.partner-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.partner-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.2);
    border-radius: 50%;
    background: rgba(52, 214, 122, 0.08);
    color: var(--brand);
}

.partner-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partner-icon.premium-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-color: rgba(52, 214, 122, 0.55);
    background: rgba(52, 214, 122, 0.07);
}

.partner-icon.premium-icon svg {
    width: 39px;
    height: 39px;
}

/* -----------------------------------------
   BADGE
   ----------------------------------------- */

.premium-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(52, 214, 122, 0.13);
    color: var(--brand);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
}

.premium-badge svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* -----------------------------------------
   CARD TYPOGRAPHY
   ----------------------------------------- */

.partner-card h3 {
    margin: 0;
    color: #f7faf8;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.7px;
}

.partner-subtitle {
    display: block;
    margin-top: 7px;
    color: var(--brand);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.partner-divider {
    width: 100%;
    height: 1px;
    margin: 28px 0 24px;
    background: rgba(255, 255, 255, 0.1);
}

.partner-desc {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

/* -----------------------------------------
   CHECKLIST
   ----------------------------------------- */

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.partner-check {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 16px;
    line-height: 1.3;
}

/* -----------------------------------------
   BUTTONS
   ----------------------------------------- */

.partner-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 38px;
    padding: 13px 21px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.partner-btn span {
    color: var(--brand);
    font-size: 18px;
    line-height: 0.8;
}

.partner-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
}

.partner-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
}

.partner-btn-primary {
    border: 1px solid var(--brand);
    background: var(--brand);
    color: #052014;
}

.partner-btn-primary span {
    color: #052014;
}

.partner-btn-primary:hover {
    background: #45df87;
    transform: translateY(-1px);
}

/* -----------------------------------------
   CENTER CONNECTOR
   ----------------------------------------- */

.partner-connector {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 82px;
}

.connector-line {
    position: absolute;
    top: 108px;
    width: 38px;
    height: 1px;
    background: rgba(52, 214, 122, 0.55);
}

.connector-left {
    right: calc(50% + 31px);
}

.connector-right {
    left: calc(50% + 31px);
}

.connector-line::after {
    content: "";
    position: absolute;
    top: -1px;
    width: 4px;
    height: 3px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 8px rgba(52, 214, 122, 0.8);
}

.connector-left::after {
    right: 0;
}

.connector-right::after {
    left: 0;
}

.connector-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 214, 122, 0.45);
    border-radius: 50%;
    background: #09271a;
    color: var(--brand);
    box-shadow: 0 0 25px rgba(52, 214, 122, 0.08);
}

.connector-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.connector-copy {
    margin-top: 18px;
    text-align: center;
}

.connector-copy strong {
    display: block;
    color: var(--brand);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.6;
}

.connector-copy > span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 13px auto;
    background: rgba(52, 214, 122, 0.55);
}

.connector-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.55;
}

.connector-copy b {
    display: block;
    margin-top: 6px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

/* -----------------------------------------
   BOTTOM NOTE
   ----------------------------------------- */

.partner-note {
    max-width: 980px;
    margin: 34px auto 0;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(52, 214, 122, 0.08);
    color: var(--brand);
}

.note-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partner-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12.5px;
    line-height: 1.6;
}

.partner-note p span {
    color: var(--brand);
}

/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 1000px) {
    .partner-layout {
        grid-template-columns: 1fr 70px 1fr;
    }

    .partner-card {
        padding: 30px 26px;
    }

    .partner-card h3 {
        font-size: 23px;
    }

    .connector-line {
        width: 25px;
    }
}

/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 760px) {
    .partner-section {
        padding: 75px 18px;
    }

    .partner-head {
        margin-bottom: 38px;
    }

    .partner-head h2 {
        font-size: 38px;
        letter-spacing: -1.6px;
    }

    .partner-head p {
        font-size: 15px;
    }

    .partner-layout {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .partner-card {
        width: 100%;
        min-height: auto;
        padding: 28px 24px;
    }

    .partner-connector {
        order: 2;
        width: 100%;
        height: 100px;
        padding: 0;
        flex-direction: row;
        justify-content: center;
    }

    .partner-white {
        order: 1;
    }

    .partner-premium {
        order: 3;
    }

    .connector-icon {
        width: 54px;
        height: 54px;
    }

    .connector-line {
        top: 26px;
        width: 65px;
    }

    .connector-left {
        right: calc(50% + 27px);
    }

    .connector-right {
        left: calc(50% + 27px);
    }

    .connector-copy {
        position: absolute;
        top: 61px;
        margin: 0;
    }

    .connector-copy > span,
    .connector-copy p,
    .connector-copy b {
        display: none;
    }

    .partner-note {
        margin-top: 25px;
        align-items: flex-start;
        padding: 17px;
    }
}

@media (max-width: 480px) {
    .partner-head h2 {
        font-size: 32px;
    }

    .partner-card-head {
        align-items: flex-start;
    }

    .partner-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .partner-icon.premium-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .partner-card h3 {
        font-size: 21px;
    }

    .partner-subtitle {
        font-size: 8.5px;
    }

    .partner-note p {
        font-size: 11.5px;
    }
}

/* Why Konker */
.why-konker {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.why-head {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}
.why-intro h2 {
    margin-top: 14px;
    max-width: 600px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 0.98;
    letter-spacing: -2.8px;
    font-weight: 600;
    color: var(--ink);
}
.why-intro h2 span {
    display: block;
    color: var(--brand-2);
}
.why-description {
    max-width: 500px;
    padding-bottom: 4px;
}
.why-description p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-mute);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.why-card {
    position: relative;
    min-width: 0;
    min-height: 250px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 143, 82, 0.28);
    box-shadow: 0 18px 45px rgba(15, 35, 25, 0.08);
}
.why-featured {
    background: linear-gradient(145deg, #0d3926, #082619);
    border-color: rgba(52, 214, 122, 0.22);
    color: #fff;
}
.why-featured:after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -80px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(52, 214, 122, 0.14);
    filter: blur(35px);
    pointer-events: none;
}
.why-ai {
    background: linear-gradient(145deg, rgba(52, 214, 122, 0.1), rgba(52, 214, 122, 0.025));
    border-color: rgba(31, 143, 82, 0.22);
}
.why-guarantee {
    background: linear-gradient(145deg, #f0f8f2, #fff);
    border-color: rgba(31, 143, 82, 0.18);
}
.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.why-index {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--brand-2);
}
.why-featured .why-index {
    color: rgba(52, 214, 122, 0.75);
}
.why-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--brand-2);
    background: var(--brand-deep);
    border: 1px solid rgba(31, 143, 82, 0.12);
    flex-shrink: 0;
}
.why-icon svg {
    width: 19px;
    height: 19px;
}
.why-featured .why-icon {
    color: var(--brand);
    background: rgba(52, 214, 122, 0.1);
    border-color: rgba(52, 214, 122, 0.2);
}
.why-feature-number {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: var(--brand);
}
.why-card h3 {
    margin-top: auto;
    max-width: 260px;
    font-size: 17px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -0.35px;
    color: var(--ink);
}
.why-featured h3 {
    margin-top: 10px;
    color: #fff;
}
.why-card p {
    margin-top: 8px;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.58;
    color: var(--ink-mute);
}
.why-featured p {
    color: rgba(255, 255, 255, 0.65);
}
.why-arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
    font-size: 16px;
    color: rgba(31, 143, 82, 0.55);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.why-card:hover .why-arrow {
    opacity: 1;
    transform: translate(0, 0);
}
.why-featured .why-arrow {
    color: var(--brand);
}

@media (max-width: 1050px) {
    .why-konker {
        padding: 85px 0;
    }
    .why-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-description {
        max-width: 680px;
    }
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .why-konker {
        padding: 70px 0;
    }
    .why-head {
        margin-bottom: 34px;
    }
    .why-intro h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }
    .why-description p {
        font-size: 14px;
        line-height: 1.65;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .why-card {
        min-height: 220px;
        padding: 22px;
    }
    .why-feature-number {
        font-size: 46px;
    }
    .why-card h3 {
        font-size: 17px;
    }
    .why-card p {
        font-size: 13px;
    }
}
/* Pricing */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px;
}
.price-card.hi {
    border-color: var(--brand-2);
    box-shadow: 0 0 0 1px var(--brand-2);
}
.price-card .tag {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-2);
}
.price-card .amt {
    margin-top: 14px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 34px;
    font-weight: 600;
}
.price-card .amt span {
    font-size: 14px;
    color: var(--ink-mute);
    font-weight: 400;
}
.price-card p.desc {
    margin-top: 10px;
    font-size: 14px;
    color: var(--ink-mute);
}
.price-card .btn {
    margin-top: 22px;
    width: 100%;
}
.price-note {
    text-align: center;
    margin-top: 26px;
    font-size: 13px;
    color: var(--ink-mute);
}
.price-note a {
    color: var(--brand-2);
    font-weight: 600;
    border-bottom: 1px solid var(--brand-2);
}

/* Steps */
.steps-section {
    position: relative;
    padding: 100px 0;
    background: var(--forest-2);
    color: #fff;
    overflow: hidden;
}
.steps-section:before {
    content: "";
    position: absolute;
    width: 520px;
    height: 320px;
    right: -260px;
    top: -180px;
    border-radius: 50%;
    background: rgba(52, 214, 122, 0.08);
    filter: blur(60px);
    pointer-events: none;
}
.steps-head {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}
.steps-head .light-h2 {
    margin-top: 14px;
    max-width: 650px;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -2.5px;
}
.steps-head > p {
    max-width: 450px;
    padding-bottom: 4px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.step-card {
    position: relative;
    min-height: 320px;
    padding: 26px 26px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 214, 122, 0.28);
    background: rgba(255, 255, 255, 0.055);
}
.step-featured {
    background: linear-gradient(145deg, rgba(52, 214, 122, 0.13), rgba(52, 214, 122, 0.035));
    border-color: rgba(52, 214, 122, 0.28);
}
.step-featured:after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(52, 214, 122, 0.12);
    filter: blur(35px);
    pointer-events: none;
}
.step-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step-number {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: rgba(52, 214, 122, 0.75);
}
.step-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--brand);
    background: rgba(52, 214, 122, 0.09);
    border: 1px solid rgba(52, 214, 122, 0.16);
}
.step-icon svg {
    width: 19px;
    height: 19px;
}
.step-content {
    position: relative;
    z-index: 1;
    margin-top: 78px;
}
.step-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--brand);
    text-transform: uppercase;
}
.step-content h3 {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #fff;
}
.step-content p {
    margin-top: 10px;
    max-width: 310px;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}
.step-arrow {
    position: absolute;
    right: 24px;
    bottom: 22px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s ease;
}
.step-card:hover .step-arrow {
    color: var(--brand);
}

@media (max-width: 900px) {
    .steps-section {
        padding: 80px 0;
    }
    .steps-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .steps-head > p {
        max-width: 650px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-card {
        min-height: 250px;
    }
    .step-content {
        margin-top: 55px;
    }
}

@media (max-width: 600px) {
    .steps-section {
        padding: 70px 0;
    }
    .steps-head .light-h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }
    .steps-head > p {
        font-size: 14px;
    }
    .step-card {
        min-height: 230px;
        padding: 22px;
    }
    .step-content {
        margin-top: 45px;
    }
    .step-content h3 {
        font-size: 20px;
    }
    .step-content p {
        font-size: 13px;
    }
}

/* =========================================
   PRICING
   ========================================= */

.pricing-section {
    padding: 100px 0;
    background: var(--paper-dim);
    overflow: hidden;
}

.pricing-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
}

.pricing-title h2 {
    margin-top: 14px;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 600;
    color: var(--ink);
}

.pricing-title h2 span {
    color: var(--brand-2);
}

.pricing-intro {
    max-width: 440px;
    padding-bottom: 3px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-mute);
}

/* -----------------------------------------
   GRID
   ----------------------------------------- */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 940px;
    margin: 0 auto;
}

/* -----------------------------------------
   CARD
   ----------------------------------------- */

.pricing-card {
    position: relative;
    padding: 25px 26px 23px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--card);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 143, 82, 0.25);
    box-shadow: 0 16px 40px rgba(15, 35, 25, 0.08);
}

.pricing-featured {
    color: #fff;
    border-color: rgba(52, 214, 122, 0.32);
    background: linear-gradient(145deg, #0d3b27, #082b1d 65%, #061f15);
}

.pricing-featured:hover {
    border-color: rgba(52, 214, 122, 0.48);
}

/* -----------------------------------------
   SUBTLE GLOW
   ----------------------------------------- */

.pricing-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: rgba(52, 214, 122, 0.09);
    filter: blur(45px);
    pointer-events: none;
}

/* -----------------------------------------
   TOP
   ----------------------------------------- */

.pricing-top {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 38px;
}

.pricing-index {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.13em;
    color: var(--brand-2);
}

.pricing-featured .pricing-index {
    color: rgba(52, 214, 122, 0.75);
}

.pricing-badge {
    padding: 6px 11px;
    border-radius: 999px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 8.5px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--brand-2);
    background: var(--brand-deep);
}

.featured-badge {
    color: var(--brand);
    background: rgba(52, 214, 122, 0.1);
}

/* -----------------------------------------
   TITLE
   ----------------------------------------- */

.pricing-card h3 {
    position: relative;
    z-index: 1;

    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -0.7px;
    font-weight: 600;
    color: var(--ink);
}

.pricing-featured h3 {
    color: #fff;
}

.pricing-desc {
    position: relative;
    z-index: 1;

    margin-top: 8px;
    max-width: 430px;

    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-mute);
}

.pricing-featured .pricing-desc {
    color: rgba(255, 255, 255, 0.64);
}

/* -----------------------------------------
   PRICE + BUTTON
   ----------------------------------------- */

.pricing-price-row {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}

.pricing-amount strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
    color: var(--ink);
}

.pricing-featured .pricing-amount strong {
    color: var(--brand);
}

.pricing-amount span {
    font-size: 11.5px;
    color: var(--ink-mute);
}

.pricing-featured .pricing-amount span {
    color: rgba(255, 255, 255, 0.5);
}

/* -----------------------------------------
   DIVIDER
   ----------------------------------------- */

.pricing-divider {
    height: 1px;
    margin: 22px 0 10px;
    background: var(--line);
}

.pricing-featured .pricing-divider {
    background: rgba(255, 255, 255, 0.12);
}

/* -----------------------------------------
   FEATURES
   ----------------------------------------- */

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 7px 0;

    font-size: 12px;
    line-height: 1.4;
    color: var(--ink-soft);
}

.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.76);
}

.pricing-features li > span:last-child {
    flex-shrink: 0;

    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 600;

    color: var(--brand-2);
    background: var(--brand-deep);
}

.pricing-featured .pricing-features li > span:last-child {
    color: var(--brand);
    background: rgba(52, 214, 122, 0.1);
}

/* -----------------------------------------
   BUTTON
   ----------------------------------------- */

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 10px 14px;

    border-radius: 999px;

    font-size: 11.5px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
}

.pricing-btn-outline {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
}

.pricing-btn-outline:hover {
    background: var(--paper-dim);
    border-color: rgba(31, 143, 82, 0.3);
}

.pricing-btn-primary {
    color: #062316;
    background: var(--brand);
    border: 1px solid var(--brand);
}

.pricing-btn-primary:hover {
    background: #42df88;
}

/* -----------------------------------------
   FOOTER
   ----------------------------------------- */

.pricing-footer {
    max-width: 940px;
    margin: 13px auto 0;
    padding-top: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid var(--line);

    font-size: 11.5px;
    color: var(--ink-mute);
}

.pricing-footer a {
    color: var(--brand-2);
    text-decoration: none;
}

.pricing-footer strong {
    font-weight: 600;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
    .pricing-section {
        padding: 85px 0;
    }

    .pricing-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
    .pricing-section {
        padding: 70px 0;
    }

    .pricing-title h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 23px 20px;
    }

    .pricing-price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .pricing-btn {
        width: 100%;
    }

    .pricing-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Testimonials */
.rating-block {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.rating-num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 30px;
    font-weight: 600;
}
.stars {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 2px;
}
.rating-meta {
    font-size: 13px;
    color: var(--ink-mute);
}
.review-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}
.review-card .stars {
    display: block;
    margin-bottom: 12px;
}
.review-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.review-card .meta {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--ink-mute);
    display: flex;
    justify-content: space-between;
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: var(--paper);
}
.case-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}
.case-head h2 {
    margin-top: 12px;
    max-width: 850px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 600;
    color: var(--ink);
}
.case-view-all {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--brand);
    color: #062316;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.case-view-all:hover {
    transform: translateY(-2px);
    background: #42df88;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.case-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}
.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 143, 82, 0.25);
    box-shadow: 0 18px 45px rgba(15, 35, 25, 0.08);
}
.case-image {
    display: block;
    aspect-ratio: 1.55/1;
    overflow: hidden;
    background: var(--paper-dim);
}
.case-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.case-card:hover .case-image img {
    transform: scale(1.04);
}
.case-content {
    padding: 20px 18px 21px;
}
.case-tag {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-2);
}
.case-content h3 {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: -0.35px;
    font-weight: 600;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-content p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-mute);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.case-link span {
    color: var(--brand-2);
    transition: transform 0.2s ease;
}
.case-link:hover span {
    transform: translateX(3px);
}

@media (max-width: 1050px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-head h2 {
        max-width: 700px;
    }
}
@media (max-width: 600px) {
    .case-studies {
        padding: 70px 0;
    }
    .case-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    .case-head h2 {
        font-size: 38px;
        letter-spacing: -1.6px;
    }
    .case-view-all {
        padding: 11px 18px;
    }
    .case-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .case-image {
        aspect-ratio: 1.7/1;
    }
    .case-content {
        padding: 18px;
    }
}

/* Resources / Blog */
.resources-section {
    padding: 100px 0;
    background: var(--paper);
}
.resources-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}
.resources-head h2 {
    margin-top: 12px;
    max-width: 820px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 600;
    color: var(--ink);
}
.resources-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 13px 23px;
    border-radius: 999px;
    background: var(--brand);
    color: #062316;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.resources-view-all:hover {
    transform: translateY(-2px);
    background: #42df88;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.resource-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--card);
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}
.resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 143, 82, 0.25);
    box-shadow: 0 18px 45px rgba(15, 35, 25, 0.08);
}
.resource-image {
    display: block;
    aspect-ratio: 1.55/1;
    overflow: hidden;
    background: var(--paper-dim);
}
.resource-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.resource-card:hover .resource-image img {
    transform: scale(1.04);
}
.resource-content {
    padding: 19px 18px 18px;
}
.resource-tag {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-2);
}
.resource-content h3 {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.32;
    letter-spacing: -0.35px;
    font-weight: 600;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-content p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-mute);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.resource-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
}
.resource-meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
}
.resource-meta a span {
    color: var(--brand-2);
    transition: transform 0.2s ease;
}
.resource-meta a:hover span {
    transform: translateX(3px);
}
.resource-meta time {
    font-size: 11.5px;
    color: var(--ink-mute);
    white-space: nowrap;
}
.resources-marketplace {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-mute);
}
.resources-marketplace a {
    margin-left: 5px;
    color: var(--brand-2);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(31, 143, 82, 0.35);
}
@media (max-width: 1050px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .resources-head h2 {
        max-width: 700px;
    }
}
@media (max-width: 600px) {
    .resources-section {
        padding: 70px 0;
    }
    .resources-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    .resources-head h2 {
        font-size: 38px;
        letter-spacing: -1.6px;
    }
    .resources-view-all {
        padding: 11px 18px;
    }
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .resource-image {
        aspect-ratio: 1.7/1;
    }
    .resource-content {
        padding: 18px;
    }
    .resources-marketplace {
        line-height: 1.6;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(160deg, var(--forest-2), var(--ink));
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(52, 214, 122, 0.25) 1.4px, transparent 1.4px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 60% 100% at 50% 0%, black, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 100% at 50% 0%, black, transparent 70%);
}
.final-cta h2 {
    position: relative;
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 600;
    max-width: 560px;
    margin: 0 auto;
}
.final-cta p {
    position: relative;
    margin-top: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}
.final-cta .hero-cta {
    position: relative;
    margin-top: 30px;
}

@media (max-width: 980px) {
    .story,
    .dash,
    .partner-grid,
    .price-grid,
    .case-grid,
    .service-flagship {
        grid-template-columns: 1fr;
    }
    .data-cards,
    .service-grid,
    .serve-grid,
    .steps,
    .review-track,
    .res-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .foot-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 720px) {
    .nav-links {
        display: none;
    }
    .burger {
        display: block;
    }
    .funnel {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .funnel-center {
        margin: 0;
    }
    .data-cards,
    .service-grid,
    .serve-grid,
    .steps,
    .review-track,
    .res-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .trust-row {
        gap: 20px;
    }
    section {
        padding: 64px 0;
    }
    .final-cta {
        padding: 50px 26px;
    }
    .foot-top {
        grid-template-columns: 1fr 1fr;
    }
    .wrap {
        padding: 0 2px;
    }
    .quiz-banner,
    .quiz-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
