@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('./assets/fonts/outfit-v11-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/fonts/outfit-v11-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    src: url('./assets/fonts/outfit-v11-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('./assets/fonts/outfit-v11-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/fonts/outfit-v11-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    src: url('./assets/fonts/outfit-v11-latin-800.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 900;
    src: url('./assets/fonts/outfit-v11-latin-900.woff2') format('woff2');
}

/* =============================================================
   THEME VARIABLES
   ============================================================= */
:root {
    /* — Light (default) — */
    --bg: #e2e2df;
    --tile-white: #ffffff;
    --tile-light: #f6f5f2;
    --tile-peach: #f0ebe3;
    --nav-bg: #ffffff;
    --nav-border: #e0e0e0;
    --text: #111111;
    --text-2: #555555;
    --text-3: #888888;
    --text-4: #aaaaaa;
    --text-q: #444444;
    --border: #dddddd;
    --border-2: #ebebeb;
    --card: #ffffff;
    --card-2: #f6f5f2;
    --label-bg: #f0f0ee;
    --label-text: #555555;
    --pill-bg: #ffffff;
    --pill-border: #dddddd;
    --pill-text: #333333;
    --faq-border: #e8e8e8;
    --faq-text: #111111;
    --bento-peach: #f0ebe3;
    --bento-p-text: #222222;
    --bento-pr-bg: #f0ebe3;
    --blog-thumb: #d4edda;
    --wu-bg: #ffffff;
    --wu-q-bg: #f0f0f0;
    --wu-q-text: #555555;
    --wu-step-bg: #f5f5f5;
    --wu-step-text: #444444;
    --mockup-bg: #ffffff;
    --mockup-top: #f8f8f6;
    --mockup-border: #eeeeee;
    --mockup-icon: #f5f5f3;
    --mockup-icon-c: #777777;
    --font-badge-bg: #ffffff;
    --font-badge-bd: #e0e0e0;
    --font-badge-tx: #555555;
    --font-row-tx: #555555;
    --input-bg: #f3f3f1;
    --stat-bg: #f5f4f1;
    --stat-border: #e5e5e5;
    --team-av-bg: #d4edda;
    --team-av-bd: #b5d9bc;
    --cta-h2: #111111;
    --cta-p: #555555;
    --price-bg: #ffffff;
    --price-border: #e5e5e5;
    --price-text: #555555;
    --p-btn-line-c: #111111;
    --p-btn-line-bd: #dddddd;
}

[data-theme="dark"] {
    --bg: #131613;
    --tile-white: #1b201a;
    --tile-light: #171c16;
    --tile-peach: #1e1b13;
    --nav-bg: #111410;
    --nav-border: #282c26;
    --text: #f0f0ec;
    --text-2: #9a9a96;
    --text-3: #666660;
    --text-4: #555550;
    --text-q: #c8c8c4;
    --border: #323630;
    --border-2: #282c26;
    --card: #1b201a;
    --card-2: #171c16;
    --label-bg: #252c23;
    --label-text: #9a9a96;
    --pill-bg: #1b201a;
    --pill-border: #323630;
    --pill-text: #c8c8c4;
    --faq-border: #282c26;
    --faq-text: #f0f0ec;
    --bento-peach: #1e1b13;
    --bento-p-text: #ddd8cc;
    --bento-pr-bg: #1e1b13;
    --blog-thumb: #182818;
    --wu-bg: #1b201a;
    --wu-q-bg: #252c23;
    --wu-q-text: #9a9a96;
    --wu-step-bg: #252c23;
    --wu-step-text: #c8c8c4;
    --mockup-bg: #1b201a;
    --mockup-top: #141813;
    --mockup-border: #282c26;
    --mockup-icon: #252c23;
    --mockup-icon-c: #9a9a96;
    --font-badge-bg: #1b201a;
    --font-badge-bd: #323630;
    --font-badge-tx: #9a9a96;
    --font-row-tx: #9a9a96;
    --input-bg: #252c23;
    --stat-bg: #171c16;
    --stat-border: #282c26;
    --team-av-bg: #182818;
    --team-av-bd: #254025;
    --cta-h2: #f0f0ec;
    --cta-p: #9a9a96;
    --price-bg: #1b201a;
    --price-border: #282c26;
    --price-text: #9a9a96;
    --p-btn-line-c: #f0f0ec;
    --p-btn-line-bd: #323630;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    padding-top: 70px;
    transition: background .35s ease, color .35s ease;
}

/* =============================================================
   TILE SYSTEM
   ============================================================= */
.tile {
    border-radius: 22px;
    margin: 0 10px 10px 10px;
    overflow: hidden;
    position: relative;
    transition: background .35s ease;
}

.tile-white {
    background: var(--tile-white);
}

.tile-light {
    background: var(--tile-light);
}

.tile-dark {
    background: #0e1511;
}

.tile-peach {
    background: var(--tile-peach);
}

.tile-lime {
    background: var(--tile-light);
}

/* =============================================================
   NAVBAR
   ============================================================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    height: 70px;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    transition: background .35s ease, border-color .35s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: #1c6b45;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    transition: color .35s;
}

/* — Logo Theme Swapping — */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-2);
    font-size: .91rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: #1c6b45;
}

.nav-phone {
    color: var(--text) !important;
    font-weight: 600 !important;
}

/* — Theme Toggle Button — */
.theme-toggle {
    width: 44px;
    height: 26px;
    background: var(--border);
    border: none;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: background .3s;
    flex-shrink: 0;
    margin-right: 4px;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .3s, background .3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

[data-theme="dark"] .theme-toggle {
    background: #1c6b45;
}

[data-theme="dark"] .theme-toggle::after {
    transform: translateX(18px);
}

/* icon labels inside toggle */
.toggle-icons {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    font-size: .62rem;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.nav-cta {
    padding: 11px 24px;
    background: #1c6b45;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .2s;
}

.nav-cta:hover {
    background: #155434;
}

/* =============================================================
   SHARED INNER PADDING
   ============================================================= */
.inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 48px;
}

.inner-md {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 48px;
}

.inner-sm {
    max-width: 1140px;
    margin: 0 auto;
    padding: 44px 48px;
}

/* TYPOGRAPHY HELPERS */
.label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--label-text);
    background: var(--label-bg);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: background .35s, border-color .35s, color .35s;
}

.label .ldot {
    width: 5px;
    height: 5px;
    background: #1c6b45;
    border-radius: 50%;
}

.h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sub {
    color: var(--text-2);
    font-size: .97rem;
    line-height: 1.75;
    max-width: 560px;
    transition: color .35s;
}

.center {
    text-align: center;
}

.center .sub {
    margin: 0 auto;
}

.lime-hl {
    background: #c8f135;
    color: #0d2916;
    padding: 2px 12px 6px;
    border-radius: 6px;
    display: inline-block;
    transform: rotate(-1.5deg);
    position: relative;
}

/* BUTTONS */
.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1c6b45;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: .93rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .2s;
}

.btn-green:hover {
    background: #155434;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 40px;
    font-size: .93rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all .2s;
}

.btn-outline-dark:hover {
    border-color: #fff;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all .2s, color .35s, border-color .35s;
}

.btn-outline-light:hover {
    border-color: #1c6b45;
    color: #1c6b45;
}

/* =============================================================
   HERO TILE
   ============================================================= */
.hero-tile {
    background: #0c1410;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 0;
}

.hero-tile-short {
    background: #0c1410;
    min-height: 38vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 20px;
}

.hero-tile::before,
.hero-tile-short::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 860px;
    height: 460px;
    background: radial-gradient(ellipse at 50% 0%, rgba(18, 86, 52, .65) 0%, transparent 68%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hero-badge .dot {
    width: 5px;
    height: 5px;
    background: #c8f135;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.8rem, 6.2vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-highlight {
    background: #c8f135;
    color: #0d2916;
    padding: 4px 18px 8px;
    border-radius: 7px;
    display: inline-block;
    transform: rotate(-2deg);
    position: relative;
    z-index: 1;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 36px;
    background: #1c6b45;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: .98rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s;
    position: relative;
    z-index: 1;
}

.hero-btn:hover {
    background: #155434;
    transform: translateY(-2px);
}

.hero-money {
    font-size: .78rem;
    color: rgba(255, 255, 255, .36);
    position: relative;
    z-index: 1;
    margin-bottom: 52px;
}

.f-avatar {
    position: absolute;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1a3826;
    border: 3px solid rgba(255, 255, 255, .17);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.f-avatar.a1 {
    bottom: 210px;
    left: 7%;
}

.f-avatar.a2 {
    bottom: 210px;
    right: 6%;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.wave-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: flex;
}

.wave-track svg {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
}

.wave-track-1 {
    animation: flowWave 24s linear infinite;
}

.wave-track-2 {
    animation: flowWave 16s linear infinite;
}

.wave-track-3 {
    animation: flowWave 10s linear infinite;
}

@keyframes flowWave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =============================================================
   ABOUT — BENTO GRID
   ============================================================= */
.about-header {
    text-align: center;
    padding: 70px 48px 36px;
    max-width: 1140px;
    margin: 0 auto;
}

.about-header .h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 0 0 0;
}

.bento-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.bento-peach {
    background: var(--bento-peach);
    border-radius: 18px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: background .35s;
}

.bento-peach p {
    font-size: 1.05rem;
    color: var(--bento-p-text);
    line-height: 1.75;
    font-weight: 500;
    max-width: 440px;
    transition: color .35s;
}

.bento-dark-green {
    background: #0d2318;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}

.network-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-dark {
    background: #0e1511;
    border-radius: 18px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.bento-dark h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-top: auto;
}

.bento-dark .screenshot-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 80px;
    background: linear-gradient(145deg, #1a2d4a 0%, #2d1a4a 50%, #0d2318 100%);
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.workflow-ui {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    background: var(--wu-bg);
    border-radius: 10px;
    padding: 14px;
    font-size: .72rem;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    transition: background .35s;
}

.workflow-ui .wu-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: .78rem;
}

.wu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 6px;
}

.wu-step {
    background: var(--wu-step-bg);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: .68rem;
    color: var(--wu-step-text);
    border-left: 3px solid #1c6b45;
    transition: background .35s, color .35s;
}

.bento-peach-r {
    background: var(--bento-pr-bg);
    border-radius: 18px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    text-align: center;
    transition: background .35s;
}

.bento-peach-r h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
    transition: color .35s;
}

.bento-peach-r p {
    font-size: .97rem;
    color: var(--text-2);
    line-height: 1.75;
    transition: color .35s;
}

/* stats row inside dark tile */
.bento-dark-stats {
    background: #131f17;
    border-radius: 18px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.bento-stat-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1c6b45;
    line-height: 1;
}

.bento-stat-label {
    font-size: .88rem;
    color: #777;
    margin-top: 6px;
    line-height: 1.5;
}

/* =============================================================
   FEATURES — LIME GREEN CARDS
   ============================================================= */
.features-header {
    text-align: center;
    padding: 70px 48px 0;
    max-width: 1140px;
    margin: 0 auto;
}

.features-header .sub {
    margin: 0 auto;
    max-width: 700px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 32px 48px;
    max-width: 1140px;
    margin: 0 auto;
}

.feat-grid-row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 48px 60px;
    max-width: 1140px;
    margin: 0 auto;
}

.feat-card-lime {
    background: #c8f135;
    border-radius: 18px;
    padding: 22px 22px 24px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.feat-card-lime:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

.feat-circle-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1c6b45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.feat-card-lime h3 {
    font-size: .97rem;
    font-weight: 800;
    color: #0d2916;
    line-height: 1.3;
}

.feat-view-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.feat-view-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #c8f135;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0d2916;
    margin-bottom: 10px;
    transition: transform .2s;
}

.feat-view-all:hover .feat-view-circle {
    transform: scale(1.08);
}

.feat-view-all span {
    font-size: .82rem;
    color: var(--text-2);
    font-weight: 600;
    text-align: center;
    transition: color .35s;
}

/* =============================================================
   100+ USES — 3-ROW MARQUEE
   ============================================================= */
.uses-header {
    text-align: center;
    padding: 60px 48px 28px;
}

.uses-header .h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.uses-rows {
    padding: 0 0 28px;
    overflow: hidden;
}

.uses-row {
    display: flex;
    gap: 10px;
    width: max-content;
    padding: 6px 0;
}

.uses-row.row1 {
    animation: scroll-l 28s linear infinite;
}

.uses-row.row2 {
    animation: scroll-r 32s linear infinite;
}

.uses-row.row3 {
    animation: scroll-l 24s linear infinite;
}

@keyframes scroll-l {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-r {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.uses-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--pill-text);
    background: var(--pill-bg);
    white-space: nowrap;
    transition: border-color .2s, background .35s, color .35s;
}

.uses-pill svg {
    width: 16px;
    height: 16px;
    stroke: #1c6b45;
    fill: none;
    flex-shrink: 0;
}

.uses-footer {
    text-align: center;
    padding: 16px 48px 56px;
}

/* =============================================================
   BRANDS
   ============================================================= */
.brands-lbl {
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-4);
    margin-bottom: 26px;
    transition: color .35s;
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.brand-pill {
    padding: 9px 22px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--pill-bg);
    transition: all .2s, background .35s;
    cursor: default;
}

.brand-pill:hover {
    border-color: #1c6b45;
    color: #1c6b45;
}

/* =============================================================
   PRICING
   ============================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}

.price-card {
    background: var(--price-bg);
    border: 1.5px solid var(--price-border);
    border-radius: 18px;
    padding: 34px 28px;
    position: relative;
    transition: transform .2s, background .35s, border-color .35s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.hot {
    border-color: #1c6b45;
    box-shadow: 0 0 0 3px rgba(28, 107, 69, .1);
}

.hot-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c6b45;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: .71rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-plan {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-4);
    margin-bottom: 8px;
    transition: color .35s;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1c6b45;
    line-height: 1;
}

.price-amount.dark {
    color: var(--text);
}

.price-per {
    font-size: .82rem;
    color: var(--text-3);
    margin-bottom: 8px;
    transition: color .35s;
}

.price-desc {
    font-size: .87rem;
    color: var(--price-text);
    min-height: 42px;
    margin-bottom: 22px;
    line-height: 1.6;
    transition: color .35s;
}

.p-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 40px;
    font-size: .92rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-align: center;
    margin-bottom: 26px;
    transition: all .2s;
}

.p-btn.solid {
    background: #1c6b45;
    color: #fff;
    border: none;
}

.p-btn.solid:hover {
    background: #155434;
}

.p-btn.line {
    background: transparent;
    color: var(--p-btn-line-c);
    border: 1.5px solid var(--p-btn-line-bd);
    transition: all .2s, color .35s, border-color .35s;
}

.p-btn.line:hover {
    border-color: #1c6b45;
    color: #1c6b45;
}

.p-list {
    list-style: none;
}

.p-list li {
    font-size: .86rem;
    color: var(--price-text);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    transition: color .35s;
}

.p-list li::before {
    content: '✓';
    color: #1c6b45;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.testi-card {
    background: var(--card);
    border: 1.5px solid var(--border-2);
    border-radius: 16px;
    padding: 26px 22px;
    transition: border-color .2s, background .35s;
}

.testi-card:hover {
    border-color: #1c6b45;
}

.stars {
    color: #e53030;
    font-size: .88rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testi-q {
    font-size: .9rem;
    color: var(--text-q);
    line-height: 1.75;
    margin-bottom: 16px;
    transition: color .35s;
}

.testi-who {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-3);
    transition: color .35s;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 72px;
    align-items: start;
}

.faq-item {
    border-bottom: 1.5px solid var(--faq-border);
    transition: border-color .35s;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 17px 0;
    background: none;
    border: none;
    color: var(--faq-text);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color .2s;
}

.faq-q:hover {
    color: #1c6b45;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--text-4);
    transition: transform .3s, color .2s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #1c6b45;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.open .faq-body {
    max-height: 200px;
}

.faq-body p {
    padding: 0 0 16px;
    font-size: .88rem;
    color: var(--text-2);
    line-height: 1.75;
    transition: color .35s;
}

/* =============================================================
   TEAM
   ============================================================= */
.team-row {
    display: flex;
    gap: 28px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    width: 160px;
}

.team-av {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--team-av-bg);
    border: 3px solid var(--team-av-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 12px;
    transition: background .35s, border-color .35s;
}

.team-name {
    font-weight: 800;
    font-size: .92rem;
    color: var(--text);
    transition: color .35s;
}

.team-role {
    font-size: .78rem;
    color: var(--text-3);
    margin-top: 3px;
    transition: color .35s;
}

/* =============================================================
   BLOG / ADVICE / SERVICES GRID
   ============================================================= */
.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.blog-card {
    background: var(--card);
    border: 1.5px solid var(--border-2);
    border-radius: 14px;
    overflow: hidden;
    transition: all .2s, background .35s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #1c6b45;
}

.blog-thumb {
    aspect-ratio: 16/9;
    background: var(--blog-thumb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: background .35s;
}

.blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: .73rem;
    color: var(--text-4);
    margin-bottom: 5px;
    transition: color .35s;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    transition: color .35s;
    margin-bottom: 12px;
}

.blog-desc {
    font-size: .88rem;
    color: var(--text-2);
    line-height: 1.6;
    transition: color .35s;
    margin-bottom: 16px;
    flex: 1;
}

/* =============================================================
   CTA TILE
   ============================================================= */
.cta-inner {
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-inner h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--cta-h2);
    margin-bottom: 16px;
    transition: color .35s;
}

.cta-inner p {
    font-size: .97rem;
    color: var(--cta-p);
    margin-bottom: 28px;
    transition: color .35s;
}

.cta-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-panel {
    background: var(--mockup-bg);
    border: 1px solid var(--mockup-border);
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    overflow: hidden;
    transition: background .35s, border-color .35s;
}

.mockup-top {
    background: var(--mockup-top);
    padding: 10px 14px;
    border-bottom: 1px solid var(--mockup-border);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .35s;
}

.m-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.mockup-body {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.mockup-sidebar {
    padding: 14px;
    border-right: 1px solid var(--mockup-border);
    background: var(--mockup-bg);
    transition: background .35s;
}

.mockup-search {
    background: var(--input-bg);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: .72rem;
    color: var(--text-4);
    margin-bottom: 12px;
    transition: background .35s;
}

.mockup-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.m-icon {
    background: var(--mockup-icon);
    border-radius: 7px;
    padding: 8px 4px;
    text-align: center;
    font-size: .65rem;
    color: var(--mockup-icon-c);
    transition: background .35s, color .35s;
}

.m-icon .ico {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 3px;
}

.mockup-video {
    background: linear-gradient(135deg, #0a2a1a 0%, #1e5c35 40%, #0a2a3a 100%);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 2px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
}

.james-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #1c6b45;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
}

.brand-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1c6b45;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.brand-badge span {
    font-size: .65rem;
    display: block;
    color: rgba(255, 255, 255, .7);
}

.font-badge {
    position: absolute;
    bottom: -16px;
    right: -8px;
    background: var(--font-badge-bg);
    border: 1px solid var(--font-badge-bd);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .68rem;
    color: var(--font-badge-tx);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    min-width: 130px;
    transition: background .35s, border-color .35s, color .35s;
}

.font-badge strong {
    font-size: .72rem;
    color: var(--text);
    display: block;
    margin-bottom: 6px;
    transition: color .35s;
}

.font-row {
    padding: 3px 0;
    color: var(--font-row-tx);
    font-size: .67rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .35s;
}

.font-selected {
    background: #1c6b45;
    color: #fff;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: .62rem;
    font-weight: 700;
}

/* =============================================================
   FOOTER TILE
   ============================================================= */
.footer-tile {
    background: #0f1512;
    border-radius: 22px;
    margin: 0 10px 10px 10px;
    overflow: hidden;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 48px 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.f-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #1c6b45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.f-logo-text {
    font-size: .76rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.f-brand-desc {
    font-size: .84rem;
    color: #555;
    line-height: 1.65;
    max-width: 250px;
}

.f-col h5 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 18px;
}

.f-col ul {
    list-style: none;
}

.f-col li {
    margin-bottom: 13px;
}

.f-col a {
    text-decoration: none;
    color: #ccc;
    font-size: .87rem;
    transition: color .2s;
}

.f-col a:hover {
    color: #c8f135;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1e2a1e;
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-size: .8rem;
    color: #555;
}

.social-row {
    display: flex;
    gap: 10px;
}

.soc-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #181e18;
    border: 1px solid #252d25;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: .8rem;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s;
}

.soc-icon:hover {
    background: #1c6b45;
    color: #fff;
    border-color: #1c6b45;
}

/* scroll-to-top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 400;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1c6b45;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
    transition: background .2s;
}

.scroll-top:hover {
    background: #155434;
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1060px) {

    .feat-grid,
    .feat-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .bento-grid,
    .bento-grid-2 {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-mockup {
        display: none;
    }

    .inner,
    .inner-md {
        padding: 60px 28px;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        display: none;
    }

    .feat-grid,
    .feat-grid-row2 {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }

    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .tile {
        margin: 0 6px 8px 6px;
    }

    .footer-tile {
        margin: 0 6px 8px 6px;
    }
}

/* =============================================================
   SERVICES PAGE: BENTO GLASS THEME
   ============================================================= */
.service-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .service-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-glass {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .service-card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card-glass:hover {
    border-color: #1c6b45;
    transform: translateY(-4px);
}

[data-theme="dark"] .service-card-glass:hover {
    border-color: #c8f135;
}

.feat-wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .feat-wide {
        grid-column: span 2;
    }
}

.sc-watermark {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 7rem;
    font-weight: 900;
    color: #1c6b45;
    opacity: 0.05;
    user-select: none;
    line-height: 1;
}

[data-theme="dark"] .sc-watermark {
    color: #c8f135;
    opacity: 0.1;
}

.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(28, 107, 69, 0.1);
    color: #1c6b45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

[data-theme="dark"] .sc-icon {
    background: rgba(200, 241, 53, 0.1);
    color: #c8f135;
}

.sc-feat-tag {
    color: #1c6b45;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .sc-feat-tag {
    color: #c8f135;
}

.sc-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.feat-wide .sc-title {
    font-size: 2rem;
}

.sc-desc {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 500px;
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sc-tag {
    padding: 6px 14px;
    border-radius: 30px;
    background: var(--label-bg);
    border: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-2);
    font-weight: 600;
}

[data-theme="dark"] .sc-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.service-cta-block {
    margin-top: 80px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    text-align: center;
    background: var(--tile-light);
    border: 1px solid var(--border);
}

[data-theme="dark"] .service-cta-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: radial-gradient(circle at center, #1c6b45 0%, transparent 70%);
}

[data-theme="dark"] .service-cta-bg {
    opacity: 0.15;
    background-image: radial-gradient(circle at center, #c8f135 0%, transparent 70%);
}

.service-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    color: var(--text);
}

/* =============================================================
   HOME BENTO GRID (Tailwind Port)
   ============================================================= */
.home-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .home-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-bento {
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
        padding: 0;
    }
}

.hb-card {
    border-radius: 2rem;
    padding: 40px;
}

@media (max-width: 768px) {
    .hb-card {
        padding: 32px;
    }
}

.hb-col-span-12 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .hb-col-span-12 {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hb-col-span-12 {
        grid-column: span 12;
    }
}

.hb-col-span-8 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .hb-col-span-8 {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hb-col-span-8 {
        grid-column: span 8;
    }
}

.hb-col-span-7 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .hb-col-span-7 {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hb-col-span-7 {
        grid-column: span 7;
    }
}

.hb-col-span-5 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .hb-col-span-5 {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .hb-col-span-5 {
        grid-column: span 5;
    }
}

.hb-col-span-4 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .hb-col-span-4 {
        grid-column: span 1;
    }
}

/* 2 cols */
@media (min-width: 1024px) {
    .hb-col-span-4 {
        grid-column: span 4;
    }
}

.hb-dark {
    background: #131613;
    /* For light mode, too? User's Tailwind has specific colors */
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

[data-theme="dark"] .hb-dark {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-light {
    background: #f1f0e8;
    color: #131613;
}

[data-theme="dark"] .hb-light {
    background: #1c1f1c;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-black {
    background: #0a0c0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

[data-theme="dark"] .hb-black {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-glass {
    background: #131613;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

[data-theme="dark"] .hb-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-tag {
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.hb-tag-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.hb-tag-light {
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #131613;
    font-size: 0.625rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

[data-theme="dark"] .hb-tag-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.hb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a4331;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.hb-btn-primary:hover {
    background: #123022;
}

[data-theme="dark"] .hb-btn-primary {
    background: #c8f135;
    color: #131613;
}

[data-theme="dark"] .hb-btn-primary:hover {
    background: #b2d82f;
}

.hb-btn-outline {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.hb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Internal card styling */
.ai-agent-mockup {
    margin-top: auto;
    padding: 0 40px 40px;
}

@media (max-width: 768px) {
    .ai-agent-mockup {
        padding: 0 20px 20px;
    }
}

.ai-mockup-inner {
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #131613;
    padding: 24px;
    transform: translateY(0);
    transition: transform 0.5s;
}

.hb-dark:hover .ai-mockup-inner {
    transform: translateY(-10px);
}

.ai-step-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid #1a4331;
    border-radius: 0.25rem;
    padding: 12px;
    display: flex;
    align-items: center;
    font-size: 0.625rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

[data-theme="dark"] .ai-step-box {
    border-left-color: #c8f135;
}

/* =============================================================
   TEAM BENTO GRID
   ============================================================= */
.team-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 24px 0;
}

@media (min-width: 768px) {
    .team-bento {
        grid-template-columns: repeat(12, 1fr);
    }
}

.tb-card {
    border-radius: 1.5rem;
    padding: 24px;
    background: #f1f0e8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .tb-card {
        padding: 32px;
    }
}

[data-theme="dark"] .tb-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tb-col-7 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .tb-col-7 {
        grid-column: span 7;
    }
}

.tb-col-5 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .tb-col-5 {
        grid-column: span 5;
    }
}

.tb-col-6-lg-4 {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .tb-col-6-lg-4 {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) {
    .tb-col-6-lg-4 {
        grid-column: span 4;
    }
}

.tb-col-12-lg-4 {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .tb-col-12-lg-4 {
        grid-column: span 12;
    }
}

@media (min-width: 1024px) {
    .tb-col-12-lg-4 {
        grid-column: span 4;
    }
}

.tb-image-wrapper {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: #131613;
    margin-bottom: 1.5rem;
}

.tb-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.tb-card:hover .tb-image-wrapper img {
    filter: grayscale(0%);
    transform: scale(1);
}

.tb-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.tb-stat-box {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f1f0e8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1a4331;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[data-theme="dark"] .tb-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left-color: #c8f135;
}

.tb-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.tb-stat-inc {
    color: #1a4331;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 4px;
}

[data-theme="dark"] .tb-stat-inc {
    color: #c8f135;
}

.tb-stat-wide {
    grid-column: span 2;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f1f0e8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[data-theme="dark"] .tb-stat-wide {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tb-cta-card {
    background: linear-gradient(to bottom right, rgba(26, 67, 49, 0.1), transparent);
    border: 2px dashed rgba(26, 67, 49, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

[data-theme="dark"] .tb-cta-card {
    background: linear-gradient(to bottom right, rgba(200, 241, 53, 0.05), transparent);
    border: 2px dashed rgba(200, 241, 53, 0.2);
}

.tb-btn-outline {
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid #1a4331;
    color: #1a4331;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s;
    background: transparent;
}

.tb-btn-outline:hover {
    background: #1a4331;
    color: white;
}

[data-theme="dark"] .tb-btn-outline {
    border-color: #c8f135;
    color: #c8f135;
}

[data-theme="dark"] .tb-btn-outline:hover {
    background: #c8f135;
    color: #131613;
}

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.faq-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 4px;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color .25s;
}

.faq-trigger:hover {
    color: #1c6b45;
}

[data-theme="dark"] .faq-trigger:hover {
    color: #c8f135;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-style: normal;
    transition: transform .3s, background .25s, border-color .25s;
    color: var(--text-2);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: #1c6b45;
    border-color: #1c6b45;
    color: white;
}

[data-theme="dark"] .faq-item.open .faq-icon {
    background: #c8f135;
    border-color: #c8f135;
    color: #131613;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-body {
    max-height: 600px;
}

.faq-body p {
    padding: 0 4px 24px;
    color: var(--text-2);
    font-size: .95rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-trigger {
        font-size: .9rem;
        padding: 18px 4px;
    }
}

/* =============================================================
   MOBILE MENU (HAMBURGER / SLIDER)
   ============================================================= */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 1.8rem;
    padding: 0;
    margin-left: 8px;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .menu-toggle {
    color: #fff;
}

@media (max-width: 1200px) {
    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
        /* Hide standard CTA on mobile */
    }

    .nav-links {
        display: flex !important;
        /* Override the 640px display: none */
        position: absolute;
        top: 80px;
        right: 16px;
        width: calc(100% - 32px);
        max-width: 320px;
        background: var(--nav-bg);
        border-radius: 22px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 32px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--nav-border);

        /* Animation states */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
    }

    /* When menu is active */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        display: block;
    }
}

@media (max-width: 768px) {
    .hb-card.hb-col-span-12 {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
    }
}

/* =============================================================
   CLIENTS BENTO GLASS WRAPPER
   ============================================================= */
.bento-glass-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .bento-glass-wrap {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.bento-glass-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 241, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bento-glass-wrap>* {
    position: relative;
    z-index: 1;
}

/* Mobile Footer Tagline Split */
@media (max-width: 768px) {
    .mobile-block {
        display: block;
    }
}