/* ============================================================
   NettoLabs — Where AI Becomes Business
   White theme built around the NettoLabs brand:
   emerald hexagon, mint node-network, green "labs" accent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand palette (sampled from logo) */
    --green-950: #07231A;
    --green-900: #0E3B2E;
    --green-800: #14523F;
    --green-700: #1B6B52;
    /* hexagon fill */
    --green-500: #2FA57C;
    /* "labs" green */
    --green-400: #46C094;
    --green-300: #7ED4B4;
    --mint-200: #C9EDDD;
    --mint-100: #E4F6EE;
    --mint-50: #F2FBF7;

    --ink: #0D1B16;
    --ink-soft: #3C4B45;
    --ink-mute: #64756E;
    --line: #DCEAE3;
    --white: #ffffff;

    --grad-brand: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 60%, var(--green-400) 100%);
    --grad-dark: linear-gradient(160deg, #0B2E24 0%, #14523F 55%, #1B6B52 100%);

    --font-head: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 10px rgba(14, 59, 46, .06);
    --shadow-md: 0 12px 32px rgba(14, 59, 46, .10);
    --shadow-lg: 0 24px 60px rgba(14, 59, 46, .16);
    --nav-h: 92px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); }

::selection { background: var(--green-500); color: #fff; }

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 8px 22px rgba(47, 165, 124, .35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(47, 165, 124, .45);
}

.btn-secondary {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-500);
}

.btn-secondary:hover {
    background: var(--mint-100);
    transform: translateY(-3px);
}

.btn-light {
    background: #fff;
    color: var(--green-800);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.btn-light:hover { transform: translateY(-3px); }

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); }

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------
   Navbar
------------------------------------------------------------ */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-link { display: flex; align-items: center; gap: .65rem; }

.logo-img { height: 78px; width: auto; }

.logo-tagline {
    display: block;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-500);
    font-weight: 600;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.nav-link {
    position: relative;
    padding: .55rem .85rem;
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}

.nav-link:hover { color: var(--green-700); background: var(--mint-50); }

.nav-link.active { color: var(--green-700); }

.nav-link.active::after {
    content: "";
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .25rem;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
}

.nav-cta { margin-left: .75rem; padding: .65rem 1.35rem; font-size: .9rem; }

/* dropdown */
.nav-item { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: .6rem .8rem;
    border-radius: 8px;
    font-size: .9rem;
    color: var(--ink-soft);
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.dropdown-item:hover {
    background: var(--mint-100);
    color: var(--green-700);
    padding-left: 1.05rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--green-800);
    transition: transform .3s ease, opacity .3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ------------------------------------------------------------
   Hero
------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 3rem) 0 4rem;
    background:
        radial-gradient(900px 500px at 85% 15%, rgba(47, 165, 124, .12), transparent 60%),
        radial-gradient(700px 500px at 10% 85%, rgba(27, 107, 82, .10), transparent 60%),
        var(--white);
    overflow: hidden;
}

#neural-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: var(--mint-100);
    border: 1px solid var(--mint-200);
    color: var(--green-700);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.eyebrow .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 165, 124, .5); }
    70% { box-shadow: 0 0 0 9px rgba(47, 165, 124, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 165, 124, 0); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.9rem);
    font-weight: 700;
    margin: 1.2rem 0 1.4rem;
    letter-spacing: -.02em;
}

.hero-title .grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.typed-wrap { display: inline-block; min-width: 1ch; }

.typed-cursor {
    display: inline-block;
    width: 3px;
    margin-left: 2px;
    background: var(--green-500);
    animation: blink 1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
    font-size: 1.15rem;
    color: var(--ink-mute);
    max-width: 560px;
    margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-meta {
    display: flex;
    gap: 2.2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-meta-item { font-size: .85rem; color: var(--ink-mute); }

.hero-meta-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--green-700);
}

/* hero visual — hexagon network card */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hex-orb {
    position: relative;
    width: min(420px, 90%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.hex-orb::before {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(126, 212, 180, .35), rgba(27, 107, 82, .08) 65%);
    filter: blur(2px);
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.06); opacity: 1; }
}

.hex-orb svg { width: 78%; height: auto; position: relative; z-index: 1; }

.float-chip {
    position: absolute;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: .65rem 1rem;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 600;
    color: var(--green-800);
    display: flex;
    align-items: center;
    gap: .5rem;
    animation: floaty 5s ease-in-out infinite;
}

.float-chip .chip-ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--mint-100);
    color: var(--green-600, var(--green-700));
    font-size: .85rem;
}

.chip-1 { top: 6%; left: -4%; animation-delay: 0s; }
.chip-2 { top: 38%; right: -8%; animation-delay: 1.3s; }
.chip-3 { bottom: 8%; left: 2%; animation-delay: 2.4s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--ink-mute);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.scroll-hint .wheel {
    width: 22px;
    height: 34px;
    border: 2px solid var(--green-500);
    border-radius: 12px;
    position: relative;
}

.scroll-hint .wheel::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 7px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--green-500);
    animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ------------------------------------------------------------
   Sections
------------------------------------------------------------ */
section { padding: 5.5rem 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.2rem; }

.section-tag {
    display: inline-block;
    padding: .35rem .95rem;
    border-radius: 999px;
    background: var(--mint-100);
    border: 1px solid var(--mint-200);
    color: var(--green-700);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag.on-dark {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    color: var(--green-300);
}

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -.015em;
    margin-bottom: .9rem;
}

.section-subtitle { color: var(--ink-mute); font-size: 1.06rem; }

.tinted { background: var(--mint-50); }

/* ------------------------------------------------------------
   Marquee (capability ticker)
------------------------------------------------------------ */
.marquee {
    padding: 1.1rem 0;
    background: var(--green-900);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 28s linear infinite;
    will-change: transform;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
    color: var(--mint-100);
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

.marquee-item::before { content: "⬢"; color: var(--green-400); font-size: .8rem; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   Cards / grids
------------------------------------------------------------ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease,
        background .4s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--grad-dark);
}

.card:hover::before { transform: scaleX(1); }

.card:hover h3 { color: #fff; }
.card:hover p { color: rgba(255, 255, 255, .78); }

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--mint-100);
    color: var(--green-700);
    margin-bottom: 1.3rem;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.card:hover .card-icon {
    background: rgba(255, 255, 255, .12);
    color: var(--green-300);
    transform: scale(1.06) rotate(-4deg);
}

.card h3 { font-size: 1.22rem; margin-bottom: .7rem; transition: color .35s ease; }

.card p { color: var(--ink-mute); font-size: .96rem; transition: color .35s ease; }

.card-list { margin-top: 1.1rem; display: grid; gap: .45rem; }

.card-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: .9rem;
    color: var(--ink-soft);
    transition: color .35s ease;
}

.card-list li::before {
    content: "⬢";
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-size: .7rem;
    top: .2rem;
    transition: color .35s ease;
}

.card:hover .card-list li { color: rgba(255, 255, 255, .85); }
.card:hover .card-list li::before { color: var(--green-300); }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.2rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9rem;
    color: var(--green-700);
    transition: color .35s ease;
}

.card:hover .card-link { color: var(--green-300); }

.card-link .arrow { transition: transform .25s ease; }
.card-link:hover .arrow { transform: translateX(5px); }

/* ------------------------------------------------------------
   Stats band
------------------------------------------------------------ */
.stats-band {
    background: var(--grad-dark);
    border-radius: calc(var(--radius) + 6px);
    padding: 3.2rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.stats-band::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(126, 212, 180, .25), transparent 70%);
}

.stat { text-align: center; position: relative; z-index: 1; }

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    color: #fff;
}

.stat-num .suffix { color: var(--green-300); }

.stat-label { color: rgba(255, 255, 255, .75); font-size: .9rem; margin-top: .3rem; }

/* ------------------------------------------------------------
   Journey / timeline
------------------------------------------------------------ */
.journey { position: relative; display: grid; gap: 2.4rem; max-width: 860px; margin: 0 auto; }

.journey::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(var(--green-400), var(--mint-200));
}

.journey-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.4rem;
    align-items: start;
}

.journey-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid var(--green-400);
    color: var(--green-700);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.journey-body {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.8rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.journey-step:hover .journey-body {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.journey-phase {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-500);
}

.journey-body h3 { font-size: 1.25rem; margin: .3rem 0 .5rem; }
.journey-body p { color: var(--ink-mute); font-size: .96rem; }

/* ------------------------------------------------------------
   Values (what we stand for)
------------------------------------------------------------ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.value-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    position: relative;
}

.value-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-tile .value-ico {
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--mint-100);
    margin-bottom: 1rem;
}

.value-tile h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.value-tile p { font-size: .9rem; color: var(--ink-mute); }

/* ------------------------------------------------------------
   CTA band
------------------------------------------------------------ */
.cta-band { padding: 5rem 0; }

.cta-card {
    position: relative;
    background: var(--grad-dark);
    border-radius: calc(var(--radius) + 8px);
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
}

.cta-card::before,
.cta-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.cta-card::before {
    width: 300px; height: 300px;
    left: -120px; bottom: -140px;
    background: radial-gradient(circle, rgba(70, 192, 148, .35), transparent 70%);
}

.cta-card::after {
    width: 260px; height: 260px;
    right: -100px; top: -120px;
    background: radial-gradient(circle, rgba(126, 212, 180, .3), transparent 70%);
}

.cta-card > * { position: relative; z-index: 1; }

.cta-card h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, .8);
    max-width: 620px;
    margin: 0 auto 2rem;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.footer {
    background: var(--green-950);
    color: rgba(255, 255, 255, .78);
    padding: 4rem 0 1.6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand .footer-logo {
    height: 40px;
    width: auto;
    background: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.footer-brand p { font-size: .92rem; max-width: 300px; }

.footer-tag {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-head);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-300);
}

.footer h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1.1rem;
    letter-spacing: .04em;
}

.footer-col ul { display: grid; gap: .55rem; }

.footer-col a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .68);
    transition: color .2s ease, padding-left .2s ease;
}

.footer-col a:hover { color: var(--green-300); padding-left: 4px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.6rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

.footer-social { display: flex; gap: .7rem; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    transition: background .25s ease, transform .25s ease;
}

.footer-social a:hover { background: var(--green-700); transform: translateY(-3px); }

.footer-social svg { width: 16px; height: 16px; fill: #fff; }

/* ------------------------------------------------------------
   Page header (inner pages)
------------------------------------------------------------ */
.page-header {
    position: relative;
    padding: calc(var(--nav-h) + 5rem) 0 4.5rem;
    text-align: center;
    background:
        radial-gradient(800px 400px at 80% 0%, rgba(47, 165, 124, .12), transparent 60%),
        radial-gradient(600px 400px at 10% 100%, rgba(27, 107, 82, .08), transparent 60%),
        var(--mint-50);
    overflow: hidden;
}

.page-header .hex-bg {
    position: absolute;
    font-size: 220px;
    color: rgba(47, 165, 124, .07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.hex-bg.hb-1 { top: -40px; left: -30px; transform: rotate(12deg); }
.hex-bg.hb-2 { bottom: -70px; right: -20px; transform: rotate(-18deg); }

.page-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 1rem 0 1.1rem;
    position: relative;
    z-index: 1;
}

.page-title .grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ink-mute);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.page-header-ctas {
    margin-top: 2.2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------
   Split section (text + visual)
------------------------------------------------------------ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.split h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 1rem; letter-spacing: -.015em; }
.split p { color: var(--ink-mute); margin-bottom: 1rem; }

.split-quote {
    margin: 1.4rem 0;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid var(--green-500);
    background: var(--mint-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-head);
    font-size: 1.08rem;
    color: var(--green-800);
    font-weight: 500;
}

.split-visual {
    position: relative;
    border-radius: var(--radius);
    background: var(--grad-dark);
    padding: 2.5rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.split-visual h3 { color: var(--green-300); font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.4rem; }

.check-list { display: grid; gap: .9rem; }

.check-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    font-size: .95rem;
    color: rgba(255, 255, 255, .88);
}

.check-list .tick {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(70, 192, 148, .25);
    color: var(--green-300);
    display: grid;
    place-items: center;
    font-size: .75rem;
    margin-top: .1rem;
}

/* ------------------------------------------------------------
   Accordion (FAQ)
------------------------------------------------------------ */
.accordion { max-width: 820px; margin: 0 auto; display: grid; gap: .9rem; }

.acc-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow .3s ease, border-color .3s ease;
}

.acc-item.open { border-color: var(--green-400); box-shadow: var(--shadow-md); }

.acc-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
}

.acc-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--mint-100);
    color: var(--green-700);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.acc-item.open .acc-icon {
    transform: rotate(45deg);
    background: var(--grad-brand);
    color: #fff;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.acc-body-inner {
    padding: 0 1.4rem 1.3rem;
    color: var(--ink-mute);
    font-size: .95rem;
}

/* ------------------------------------------------------------
   Case / insight cards
------------------------------------------------------------ */
.case-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .35s ease, box-shadow .35s ease;
}

.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.case-meta { display: flex; justify-content: space-between; align-items: center; gap: .8rem; flex-wrap: wrap; }

.case-sector {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--mint-100);
    padding: .3rem .8rem;
    border-radius: 999px;
}

.case-region { font-size: .8rem; color: var(--ink-mute); }

.case-card h3 { font-size: 1.25rem; }

.case-card .case-problem { color: var(--ink-mute); font-size: .95rem; flex-grow: 1; }

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    padding: 1rem 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
}

.case-result strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.45rem;
    color: var(--green-700);
}

.case-result span { font-size: .76rem; color: var(--ink-mute); line-height: 1.35; display: block; }

.case-stack { font-size: .84rem; color: var(--ink-soft); }

.case-tag {
    align-self: flex-start;
    font-size: .72rem;
    color: var(--ink-mute);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .25rem .7rem;
}

/* ------------------------------------------------------------
   Team
------------------------------------------------------------ */
.team-block { margin-bottom: 3.4rem; }
.team-block:last-of-type { margin-bottom: 0; }

.team-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.team-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1.1rem;
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.team-pill-business { background: var(--mint-100); color: var(--green-700); border: 1px solid var(--mint-200); }
.team-pill-tech { background: var(--green-900); color: var(--green-300); }

.team-heading h3 { font-size: 1.25rem; color: var(--ink-soft); font-weight: 500; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 1.5rem;
}

.team-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem 1.6rem 1.8rem;
    text-align: center;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 88px;
    background:
        radial-gradient(120px 70px at 80% 0%, rgba(126, 212, 180, .28), transparent 70%),
        radial-gradient(160px 80px at 15% 10%, rgba(47, 165, 124, .16), transparent 70%);
    transition: opacity .35s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint-200);
}

.team-avatar {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 1.3rem;
    display: grid;
    place-items: center;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.team-card:hover .team-avatar { transform: scale(1.08) rotate(-3deg); }

/* rotating brand ring around the avatar — sits behind .avatar-core */
.team-avatar::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--green-500), var(--mint-200), var(--green-300), var(--green-700), var(--green-500));
    z-index: 0;
    opacity: .55;
    animation: spin 7s linear infinite;
    animation-play-state: paused;
    transition: opacity .35s ease;
}

.team-card:hover .team-avatar::before {
    opacity: 1;
    animation-play-state: running;
}

/* thin white gap between the ring and the avatar face */
.team-avatar::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #fff;
    z-index: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* the actual visible circle — sits above the ring pseudo-elements */
.avatar-core {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: #fff;
    background: var(--grad-brand);
    box-shadow: 0 10px 22px -6px rgba(27, 107, 82, .55), inset 0 -6px 14px rgba(0, 0, 0, .12), inset 0 3px 6px rgba(255, 255, 255, .25);
    transition: box-shadow .35s ease;
}

.team-card:hover .avatar-core {
    box-shadow: 0 14px 30px -6px rgba(27, 107, 82, .6), inset 0 -6px 14px rgba(0, 0, 0, .12), inset 0 3px 6px rgba(255, 255, 255, .3);
}

.tone-2 .avatar-core { background: linear-gradient(135deg, var(--green-900), var(--green-500)); box-shadow: 0 10px 22px -6px rgba(14, 59, 46, .55), inset 0 -6px 14px rgba(0, 0, 0, .15), inset 0 3px 6px rgba(255, 255, 255, .2); }
.tone-3 .avatar-core { background: linear-gradient(135deg, var(--green-500), var(--green-300)); box-shadow: 0 10px 22px -6px rgba(47, 165, 124, .5), inset 0 -6px 14px rgba(0, 0, 0, .1), inset 0 3px 6px rgba(255, 255, 255, .3); }
.tone-4 .avatar-core { background: linear-gradient(135deg, var(--green-800), var(--green-400)); box-shadow: 0 10px 22px -6px rgba(20, 82, 63, .55), inset 0 -6px 14px rgba(0, 0, 0, .12), inset 0 3px 6px rgba(255, 255, 255, .25); }

.team-card h4 { position: relative; z-index: 1; font-size: 1.15rem; margin-bottom: .2rem; }

.team-role {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 600;
    color: var(--green-600, var(--green-500));
    letter-spacing: .03em;
    margin-bottom: .7rem;
}

.team-bio { position: relative; z-index: 1; font-size: .88rem; color: var(--ink-mute); margin-bottom: 1.1rem; }

.team-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
}

.team-tags li {
    font-size: .72rem;
    font-weight: 500;
    color: var(--green-800);
    background: var(--mint-100);
    border: 1px solid var(--mint-200);
    border-radius: 999px;
    padding: .25rem .7rem;
    transition: background .25s ease, color .25s ease;
}

.team-card:hover .team-tags li { background: var(--mint-200); }

/* ------------------------------------------------------------
   Contact
------------------------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--grad-dark);
    border-radius: var(--radius);
    padding: 2.4rem;
    color: #fff;
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
}

.contact-info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: .8rem; }
.contact-info-card > p { color: rgba(255, 255, 255, .78); font-size: .95rem; margin-bottom: 1.8rem; }

.contact-line {
    display: flex;
    gap: .9rem;
    align-items: center;
    padding: .8rem 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .93rem;
    color: rgba(255, 255, 255, .88);
}

.contact-line .cico {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    color: var(--green-300);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.4rem;
    box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--ink);
    background: var(--mint-50);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 165, 124, .14);
}

.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: .9rem; }

.form-status {
    font-size: .9rem;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease;
    border-radius: 10px;
}

.form-status:empty { margin-top: 0; }

.form-status-success {
    max-height: 120px;
    opacity: 1;
    padding: .85rem 1rem;
    background: var(--mint-100);
    color: var(--green-800);
    border: 1px solid var(--mint-200);
}

.form-status-error {
    max-height: 120px;
    opacity: 1;
    padding: .85rem 1rem;
    background: #FDECEC;
    color: #9B2C2C;
    border: 1px solid #F5C6C6;
}

.form-status-error a { color: #9B2C2C; text-decoration: underline; }

#contact-submit:disabled { opacity: .7; cursor: progress; }

/* ------------------------------------------------------------
   Scroll reveal
------------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in { opacity: 1; transform: none; }

.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-inline: auto; }
    .hero-ctas, .hero-meta { justify-content: center; }
    .hero-visual { margin-top: 1.5rem; }
    .cards-3, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split, .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        background: #fff;
        padding: 1.4rem 6%;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow-y: auto;
        border-top: 1px solid var(--line);
    }

    .nav-menu.active { transform: translateX(0); }

    .nav-link { padding: .9rem .6rem; font-size: 1.05rem; }

    .nav-link.active::after { display: none; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--mint-200);
        border-radius: 0;
        margin: 0 0 .4rem .9rem;
        padding: 0 0 0 .4rem;
        display: none;
    }

    .nav-item.open .dropdown-menu { display: block; }

    .nav-cta { margin: 1rem 0 0; justify-content: center; }

    .hamburger { display: flex; }

    .logo-img { height: 58px; }

    section { padding: 3.8rem 0; }

    .cards-3, .cards-2, .values-grid { grid-template-columns: 1fr; }

    .stats-band { grid-template-columns: repeat(2, 1fr); padding: 2.4rem 1.4rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }

    .form-row { grid-template-columns: 1fr; }

    .case-results { grid-template-columns: repeat(3, 1fr); }

    .float-chip { display: none; }

    .journey::before { left: 23px; }
    .journey-num { width: 48px; height: 48px; }
    .journey-step { grid-template-columns: 48px 1fr; gap: 1rem; }

    .cta-card { padding: 2.6rem 1.6rem; }
}
