/* ============================================================
   NODEFIELD AGTECH — PREMIUM DESIGN SYSTEM
   Deep forest + emerald · glass · aurora · noise · motion
   ============================================================ */

@property --ga {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

:root {
    /* Brand */
    --ink:          #04120C;
    --forest:       #0A2E20;
    --forest-2:     #0E3B29;
    --slate:        #0F1F18;
    --slate-mid:    #163426;
    --green:        #157A47;
    --green-light:  #2FBF71;
    --emerald:      #34D399;
    --mint:         #A7F3D0;
    --green-glow:   rgba(47, 191, 113, 0.28);
    --green-faint:  rgba(21, 122, 71, 0.07);

    /* Surfaces */
    --white:        #FFFFFF;
    --off-white:    #F5F9F4;
    --cream:        #FBFDFA;
    --muted:        #5C7268;
    --muted-dark:   #9DB4A8;
    --border:       rgba(255, 255, 255, 0.08);
    --border-light: #E2EBE1;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #14894E 0%, #22B566 55%, #14894E 100%);
    --grad-text:    linear-gradient(100deg, #7CEBAF 0%, #2FBF71 48%, #C4F5DB 100%);
    --grad-dark:    linear-gradient(180deg, #071F15 0%, #04120C 100%);

    /* Geometry */
    --radius-sm:    12px;
    --radius-md:    18px;
    --radius-lg:    26px;
    --radius-xl:    36px;

    /* Shadows */
    --shadow-xs:    0 1px 2px rgba(10, 46, 32, 0.05), 0 2px 8px rgba(10, 46, 32, 0.04);
    --shadow-sm:    0 2px 6px rgba(10, 46, 32, 0.05), 0 10px 24px -8px rgba(10, 46, 32, 0.08);
    --shadow-md:    0 4px 12px rgba(10, 46, 32, 0.06), 0 24px 48px -16px rgba(10, 46, 32, 0.14);
    --shadow-lg:    0 8px 20px rgba(4, 18, 12, 0.10), 0 40px 80px -24px rgba(4, 18, 12, 0.28);
    --shadow-glow:  0 8px 32px -6px var(--green-glow);

    /* Motion */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Noise texture (inline SVG, zero requests) */
    --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: var(--white);
    color: var(--slate);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.loading { height: 100vh; overflow-y: hidden; }
body.menu-open { overflow: hidden; }

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

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

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--green), var(--forest-2));
    border-radius: 8px;
    border: 3px solid var(--off-white);
}

:focus-visible {
    outline: 2px solid var(--green-light);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.skip-link {
    position: absolute;
    top: -60px; left: 20px;
    background: var(--forest);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    z-index: 100000;
    transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* =============================================
   SCROLL PROGRESS
============================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 3000;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green) 0%, var(--emerald) 60%, var(--mint) 100%);
    box-shadow: 0 0 12px var(--green-glow);
    border-radius: 0 3px 3px 0;
}

/* =============================================
   PRELOADER
============================================= */
#preloader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(47, 191, 113, 0.14), transparent 60%),
        var(--ink);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}
#preloader::after {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--noise);
    opacity: 0.04;
    pointer-events: none;
}
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 26px; position: relative; z-index: 1; }
.loader-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    animation: loaderPulse 2.2s var(--ease-out) infinite;
}
.loader-text span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
    margin-left: 6px;
}
.loader-bar-wrap {
    width: 200px; height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    position: relative; overflow: hidden;
}
.loader-bar {
    position: absolute; top: 0; left: 0; height: 100%; width: 34%;
    background: linear-gradient(90deg, transparent, var(--emerald), var(--mint));
    border-radius: 3px;
    box-shadow: 0 0 14px var(--green-glow);
    animation: loaderSlide 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes loaderPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes loaderSlide { 0% { left: -34%; } 100% { left: 100%; } }
body.loaded #preloader { opacity: 0; visibility: hidden; }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
    will-change: opacity, transform;
    filter: blur(6px);
}
.reveal       { transform: translateY(44px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-scale { transform: scale(0.92); }
.is-visible { opacity: 1 !important; transform: none !important; filter: none !important; }

/* =============================================
   SHARED KEYFRAMES
============================================= */
@keyframes float     { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatAlt  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes spinGa    { to { --ga: 360deg; } }
@keyframes shimmer   { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 var(--green-glow); } 100% { box-shadow: 0 0 0 18px rgba(47, 191, 113, 0); } }
@keyframes pinPulse  { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); } 100% { box-shadow: 0 0 0 14px rgba(52, 211, 153, 0); } }
@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.12); }
    66%      { transform: translate(-30px, 24px) scale(0.94); }
}
@keyframes blobDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%      { transform: translate(-36px, 20px) scale(1.1); }
    70%      { transform: translate(26px, -28px) scale(0.92); }
}
@keyframes auroraShift {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.75; }
    50%      { transform: rotate(8deg) scale(1.15); opacity: 1; }
}
@keyframes heroUp {
    from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroImg {
    from { opacity: 0; transform: translateY(44px) scale(0.95); filter: blur(10px); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes wheelDrop {
    0%   { opacity: 1; transform: translateY(0); }
    75%  { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; transform: translateY(0); }
}
@keyframes ripple { to { transform: scale(3.4); opacity: 0; } }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* =============================================
   HEADER / NAVBAR
============================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(21, 122, 71, 0.08);
    transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 32px -12px rgba(10, 46, 32, 0.14);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
    gap: 24px;
}
.logo { flex-shrink: 0; display: inline-flex; align-items: center; transition: transform 0.4s var(--ease-spring); }
.logo:hover { transform: scale(1.04); }
.logo img { height: 48px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    padding: 9px 14px;
    border-radius: 999px;
    position: relative;
    transition: color 0.25s, background 0.25s;
}
.nav-links a:hover {
    color: var(--green);
    background: var(--green-faint);
}

.nav-contact { display: flex; align-items: center; gap: 18px; }
.nav-email {
    font-size: 0.86rem; font-weight: 500;
    color: var(--muted); transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-email:hover { color: var(--green); }
.nav-email i { margin-right: 6px; color: var(--green-light); }

.lang-toggle {
    display: inline-flex;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    order: 3;
}
.lang-btn {
    border: none;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.lang-btn.active {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 2px 8px var(--green-glow);
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    width: 46px; height: 44px;
    color: var(--slate);
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
}
.nav-toggle:hover { border-color: var(--green); color: var(--green); }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 30px;
    font-size: 0.92rem; font-weight: 600;
    border-radius: 999px;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out),
                background 0.4s var(--ease-out), border-color 0.3s, color 0.3s,
                background-position 0.5s var(--ease-out);
    cursor: pointer; gap: 10px; letter-spacing: 0.01em; border: none;
    position: relative; overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple 0.65s var(--ease-out) forwards;
    pointer-events: none;
}
.btn-primary {
    background: var(--grad-primary);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 0 2px 6px rgba(10, 46, 32, 0.18), var(--shadow-glow);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-out);
}
.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(10, 46, 32, 0.2), 0 16px 40px -8px var(--green-glow);
    color: var(--white);
}
.btn-primary:hover::before { left: 120%; }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-outline {
    background: rgba(255, 255, 255, 0.6);
    color: var(--slate);
    border: 1.5px solid var(--border-light);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
}
.btn-sm { padding: 11px 22px; font-size: 0.84rem; }

/* =============================================
   SECTION HEADERS
============================================= */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--green); margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--green-faint);
    border: 1px solid rgba(21, 122, 71, 0.14);
}
.section-label::before {
    content: '';
    display: block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 3px rgba(47, 191, 113, 0.18);
}
.section-label.centered { justify-content: center; }

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.1rem, 4.4vw, 3.3rem);
    font-weight: 700; line-height: 1.06;
    letter-spacing: -0.035em; color: var(--slate);
    text-wrap: balance;
}
.section-title.centered { text-align: center; }
.section-sub {
    font-size: 1.1rem; color: var(--muted);
    line-height: 1.7; max-width: 600px;
    margin-top: 18px;
}
.section-sub.centered { text-align: center; margin: 18px auto 0; }

/* =============================================
   HERO
============================================= */
.hero {
    position: relative;
    padding: 110px 0 140px;
    background:
        radial-gradient(ellipse 90% 70% at 70% -20%, rgba(21, 122, 71, 0.35), transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 110%, rgba(14, 59, 41, 0.8), transparent 65%),
        var(--grad-dark);
    overflow: hidden;
    isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.hero-bg::before {
    content: ''; position: absolute;
    width: 720px; height: 720px; top: -220px; left: -180px;
    background: radial-gradient(circle closest-side, rgba(47, 191, 113, 0.2) 0%, rgba(47, 191, 113, 0.07) 45%, transparent 72%);
    border-radius: 50%;
    animation: blobDrift 14s ease-in-out infinite;
}
.hero-bg::after {
    content: ''; position: absolute;
    width: 600px; height: 600px; bottom: -200px; right: -140px;
    background: radial-gradient(circle closest-side, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.05) 45%, transparent 70%);
    border-radius: 50%;
    animation: blobDrift2 17s ease-in-out infinite;
}

/* Aurora glows: pre-softened radial gradients — no filter/blur cost */
.hero-aurora { position: absolute; inset: -10%; pointer-events: none; z-index: -1; }
.hero-aurora span {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
}
.hero-aurora span:nth-child(1) {
    width: 56vw; height: 34vw; top: 4%; left: 20%;
    background: radial-gradient(ellipse closest-side, rgba(21, 122, 71, 0.4), rgba(52, 211, 153, 0.08) 55%, transparent 75%);
    animation: auroraShift 16s ease-in-out infinite;
}
.hero-aurora span:nth-child(2) {
    width: 42vw; height: 28vw; top: 36%; left: 50%;
    background: radial-gradient(ellipse closest-side, rgba(47, 191, 113, 0.28), rgba(11, 61, 42, 0.06) 55%, transparent 75%);
    animation: auroraShift 20s ease-in-out -6s infinite reverse;
}
.hero-aurora span:nth-child(3) {
    width: 34vw; height: 24vw; top: 56%; left: 6%;
    background: radial-gradient(ellipse closest-side, rgba(21, 122, 71, 0.26), rgba(167, 243, 208, 0.06) 55%, transparent 75%);
    animation: auroraShift 24s ease-in-out -12s infinite;
}

.hero-grid {
    position: absolute; inset: 0; z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
}
.hero-noise {
    position: absolute; inset: 0; z-index: 0;
    background-image: var(--noise);
    opacity: 0.05;
    pointer-events: none;
}

.hero .container {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 64px;
}
.hero-content { flex: 1.05; min-width: 0; }

.hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--mint);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-pill .dot {
    width: 8px; height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulseRing 2s var(--ease-out) infinite;
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.7rem, 5.4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 28px 0 24px;
    text-wrap: balance;
}
.hero h1 .highlight {
    background: var(--grad-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 7s ease-in-out infinite;
}
/* split-word reveal (applied by effects.js) */
.hero h1.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero h1.split .wi { display: inline-block; transform: translateY(112%); transition: transform 0.9s var(--ease-out); will-change: transform; }
.hero h1.split.in .wi { transform: translateY(0); }
/* background-clip:text doesn't survive inline-block descendants — when the
   title is split into words, move the gradient onto each word instead */
.hero h1.split .highlight { background: none; animation: none; color: inherit; }
.hero h1.split .highlight .wi {
    background: var(--grad-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 7s ease-in-out infinite;
}

.hero p {
    color: rgba(226, 240, 231, 0.78);
    font-size: 1.13rem;
    line-height: 1.75;
    max-width: 560px;
    font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 56px;
    max-width: 560px;
}
.metric-item {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 32px -12px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--ease-spring), border-color 0.3s, background 0.3s;
}
.metric-item:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(52, 211, 153, 0.07);
}
.metric-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    display: flex;
    align-items: baseline;
}
.metric-value span:last-child { color: var(--green-light); }
.metric-label { font-size: 0.8rem; color: var(--muted-dark); margin-top: 4px; letter-spacing: 0.02em; }

/* hero staged entrance */
.hero-pill, .hero h1, .hero-content > p, .hero-buttons, .hero-metrics { opacity: 0; }
body.loaded .hero-pill        { animation: heroUp 0.9s var(--ease-out) 0.05s forwards; }
body.loaded .hero h1          { animation: heroUp 0.9s var(--ease-out) 0.16s forwards; }
body.loaded .hero-content > p { animation: heroUp 0.9s var(--ease-out) 0.28s forwards; }
body.loaded .hero-buttons     { animation: heroUp 0.9s var(--ease-out) 0.40s forwards; }
body.loaded .hero-metrics     { animation: heroUp 0.9s var(--ease-out) 0.52s forwards; }

/* hero visual */
.hero-image { flex: 1; position: relative; min-width: 0; opacity: 0; }
body.loaded .hero-image { animation: heroImg 1.1s var(--ease-out) 0.35s forwards; }

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 30px 80px -20px rgba(0, 0, 0, 0.55),
        0 0 60px -20px var(--green-glow);
    transform-style: preserve-3d;
    will-change: transform;
}
.hero-image-wrapper::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--ga, 0deg),
        transparent 0%, rgba(52, 211, 153, 0.7) 12%, rgba(167, 243, 208, 0.9) 18%,
        rgba(52, 211, 153, 0.5) 26%, transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: spinGa 7s linear infinite;
    pointer-events: none;
}
.hero-image-wrapper img {
    border-radius: calc(var(--radius-lg) - 8px);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 16px;
    background: rgba(9, 32, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 48px -12px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.8rem;
    z-index: 3;
    will-change: transform;
}
.hero-float-card .hfc-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--grad-primary);
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px var(--green-glow);
}
.hero-float-card b { display: block; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.01em; }
.hero-float-card small { color: var(--muted-dark); font-size: 0.72rem; }
.hfc-1 { top: -26px; right: 8%; animation: float 6s ease-in-out infinite; }
.hfc-2 { bottom: 14%; left: -34px; animation: floatAlt 7s ease-in-out -2s infinite; }
.hfc-3 { bottom: -24px; right: 12%; animation: float 8s ease-in-out -4s infinite; }

.scroll-indicator {
    position: absolute;
    bottom: 78px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s;
}
body.loaded .scroll-indicator { opacity: 0.7; }
.scroll-indicator:hover { opacity: 1 !important; }
.scroll-indicator .mouse {
    width: 24px; height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}
.scroll-indicator .wheel {
    width: 3px; height: 7px;
    background: var(--green-light);
    border-radius: 3px;
    animation: wheelDrop 1.8s var(--ease-out) infinite;
}

/* =============================================
   WAVE DIVIDER
============================================= */
.wave-divider { margin-top: -52px; line-height: 0; background: transparent; position: relative; z-index: 3; margin-bottom: -1px; }
.wave-divider svg { width: 100%; height: 52px; display: block; }

/* =============================================
   PRODUCTS
============================================= */
.projects { padding: 110px 0 130px; background: var(--white); position: relative; overflow: hidden; }
.projects::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    top: 5%; right: -360px;
    background: radial-gradient(circle, var(--green-faint) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.projects-header { text-align: center; margin-bottom: 96px; }

.project-row {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 56px 0;
    position: relative;
}
.project-row + .project-row {
    border-top: 1px solid var(--border-light);
    margin-top: 24px;
    padding-top: 88px;
}
.project-row.reversed > :first-child { order: 2; }

.project-screenshot {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 12px;
    background: linear-gradient(160deg, var(--cream), var(--off-white));
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    overflow: hidden;
    isolation: isolate;
    will-change: transform;
}
.project-screenshot::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--ga, 0deg),
        transparent 0%, rgba(47, 191, 113, 0.65) 14%, rgba(167, 243, 208, 0.9) 20%,
        rgba(47, 191, 113, 0.4) 28%, transparent 44%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: spinGa 9s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
}
.project-screenshot:hover::before { opacity: 1; }
.project-screenshot:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 24px 64px -16px var(--green-glow);
}
.project-screenshot img {
    border-radius: calc(var(--radius-lg) - 10px);
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    transition: transform 0.7s var(--ease-out);
}
.project-screenshot:hover img { transform: scale(1.035); }

.project-info { min-width: 0; }
.project-cat {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green);
    background: var(--green-faint);
    border: 1px solid rgba(21, 122, 71, 0.14);
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.project-info h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    line-height: 1.1;
}
.project-status {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green);
    background: rgba(47, 191, 113, 0.1);
    border: 1px solid rgba(47, 191, 113, 0.25);
    padding: 6px 13px;
    border-radius: 999px;
}
.live-dot {
    width: 7px; height: 7px;
    background: var(--green-light);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseRing 2s var(--ease-out) infinite;
}
.project-tagline {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--green);
    margin: 14px 0 16px;
    letter-spacing: -0.01em;
}
.project-desc { color: var(--muted); font-size: 0.98rem; line-height: 1.75; }

.project-features { margin: 26px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.project-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; font-weight: 500; color: var(--slate);
    line-height: 1.45;
}
.project-features li i {
    color: var(--green-light);
    margin-top: 3px;
    font-size: 0.95rem;
    filter: drop-shadow(0 1px 4px var(--green-glow));
}

.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.project-tags span {
    font-size: 0.74rem; font-weight: 600;
    color: var(--muted);
    background: var(--off-white);
    border: 1px solid var(--border-light);
    padding: 6px 13px;
    border-radius: 999px;
    transition: all 0.3s var(--ease-out);
}
.project-tags span:hover {
    color: var(--green);
    border-color: rgba(21, 122, 71, 0.3);
    background: var(--green-faint);
    transform: translateY(-2px);
}
.project-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Browser mock (used when a product has no screenshot) --- */
.project-visual { position: relative; }
.mock {
    border-radius: var(--radius-lg);
    background: linear-gradient(170deg, #10231A, #0A1A12);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.mock-bar {
    display: flex; align-items: center; gap: 7px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mock-bar i {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.16); display: block;
}
.mock-bar i:first-child { background: #F87171; }
.mock-bar i:nth-child(2) { background: #FBBF24; }
.mock-bar i:nth-child(3) { background: #34D399; }
.mock-url {
    margin-left: 12px;
    font-size: 0.72rem;
    color: var(--muted-dark);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 4px 14px;
    letter-spacing: 0.03em;
}
.mock-body { padding: 22px; min-height: 300px; position: relative; }
.m-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.m-kpi {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    color: #fff;
}
.m-kpi.accent { background: linear-gradient(140deg, rgba(47, 191, 113, 0.28), rgba(47, 191, 113, 0.08)); border-color: rgba(47, 191, 113, 0.35); }
.m-kpi b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; display: block; }
.m-kpi small { color: var(--muted-dark); font-size: 0.7rem; }
.m-list { display: flex; flex-direction: column; gap: 10px; }
.m-row {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 11px 14px;
}
.m-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--emerald));
    flex-shrink: 0;
}
.m-meta { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.m-line { height: 7px; width: 70%; border-radius: 4px; background: rgba(255, 255, 255, 0.14); }
.m-line.short { width: 40%; background: rgba(255, 255, 255, 0.08); }
.m-bar-track { width: 90px; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.m-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green), var(--emerald)); }

.m-map { padding: 0; overflow: hidden; min-height: 340px; }
.map-canvas {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(47, 191, 113, 0.12), transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
}
.m-pin {
    position: absolute;
    width: 13px; height: 13px;
    background: var(--green-light);
    border: 2.5px solid #fff;
    border-radius: 50%;
    animation: pinPulse 2.2s var(--ease-out) infinite;
}
.m-pin.b { animation-delay: 0.5s; }
.m-pin.c { animation-delay: 1s; }
.m-pin.d { animation-delay: 1.5s; }
.m-chip {
    position: absolute;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(9, 32, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.74rem; font-weight: 600;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
}
.m-chip .ic { color: var(--green-light); }
.m-chip.tl { top: 18px; left: 18px; }
.m-chip.br { bottom: 18px; right: 18px; }
.m-chip.dealer { position: static; margin-top: 14px; }
.m-search {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--muted-dark);
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.m-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.m-prod {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    color: #fff;
}
.m-prod-img {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: grid; place-items: center;
    background: rgba(47, 191, 113, 0.14);
    color: var(--green-light);
    margin-bottom: 10px;
}
.m-prod-name { font-size: 0.84rem; font-weight: 700; }
.m-prod-cat { font-size: 0.68rem; color: var(--muted-dark); margin: 2px 0 6px; }
.m-prod-price { font-size: 0.74rem; font-weight: 600; color: var(--green-light); }

/* =============================================
   SOCIAL PROOF  (dark)
============================================= */
.social-proof {
    position: relative;
    padding: 130px 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(21, 122, 71, 0.3), transparent 62%),
        radial-gradient(ellipse 50% 40% at 90% 110%, rgba(47, 191, 113, 0.12), transparent 65%),
        var(--grad-dark);
    overflow: hidden;
    isolation: isolate;
}
.social-proof::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--noise);
    opacity: 0.045;
    pointer-events: none;
}
.social-proof::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 72%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 20%, transparent 72%);
    pointer-events: none;
    z-index: -1;
}
.social-proof-header { margin-bottom: 70px; }
.social-proof .section-sub { color: var(--muted-dark); }

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 80px;
}
.trust-stat {
    text-align: center;
    padding: 34px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: transform 0.45s var(--ease-spring), border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.trust-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(52, 211, 153, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.trust-stat:hover::before { opacity: 1; }
.trust-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.35);
}
.trust-stat b {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.trust-stat > span { color: var(--muted-dark); font-size: 0.86rem; margin-top: 6px; display: block; }
.trust-stat b .count { font: inherit; color: inherit; display: inline; }

.testimonial {
    max-width: 820px;
    margin: 0 auto 72px;
    text-align: center;
    position: relative;
    padding: 52px 48px 44px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px -30px rgba(0, 0, 0, 0.5);
}
.testimonial::before {
    content: '\201C';
    position: absolute;
    top: -34px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 24px var(--green-glow));
}
.testimonial blockquote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 500;
    line-height: 1.5;
    color: #EDF7F0;
    letter-spacing: -0.015em;
    text-wrap: balance;
}
.testimonial cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--green-light);
    font-weight: 600;
}

.client-logos {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    padding: 6px 0;
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
}
.logo-track.is-ready { animation: marquee 30s linear infinite; }
.client-logos:hover .logo-track.is-ready { animation-play-state: paused; }
.client-logos span {
    flex-shrink: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(214, 232, 221, 0.55);
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s;
}
.client-logos span:hover { color: var(--mint); border-color: rgba(52, 211, 153, 0.4); }

/* =============================================
   FEATURES / CAPABILITIES
============================================= */
.features {
    padding: 130px 0;
    background:
        radial-gradient(ellipse 60% 40% at 15% 0%, rgba(47, 191, 113, 0.06), transparent 60%),
        var(--off-white);
    position: relative;
}
.features-header { text-align: center; margin-bottom: 76px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    position: relative;
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 235, 225, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xs);
    transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out), border-color 0.35s;
    overflow: hidden;
    isolation: isolate;
}
.feature-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(47, 191, 113, 0.09), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.feature-card:hover::before, .feature-card:hover::after { opacity: 1; }
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 191, 113, 0.35);
    box-shadow: var(--shadow-md), 0 20px 48px -18px var(--green-glow);
}
.feature-icon-wrap {
    width: 64px; height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 1.5rem;
    color: var(--green);
    background: linear-gradient(145deg, rgba(47, 191, 113, 0.13), rgba(21, 122, 71, 0.05));
    border: 1px solid rgba(47, 191, 113, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    transition: transform 0.5s var(--ease-spring), background 0.4s, color 0.4s, box-shadow 0.4s;
}
.feature-card:hover .feature-icon-wrap {
    transform: scale(1.08) rotate(-5deg);
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 28px -6px var(--green-glow);
}
.feature-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--slate);
    margin-bottom: 10px;
}
.feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* =============================================
   ABOUT
============================================= */
.about { padding: 130px 0; background: var(--white); position: relative; overflow: hidden; }
.about::before {
    content: '';
    position: absolute;
    width: 620px; height: 620px;
    bottom: -280px; left: -320px;
    background: radial-gradient(circle, var(--green-faint) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; margin-top: 20px; }

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}
.about-highlight {
    display: flex; align-items: center; gap: 13px;
    font-size: 0.92rem; font-weight: 600;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 17px 20px;
    box-shadow: var(--shadow-xs);
    transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.35s;
}
.about-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 191, 113, 0.35);
    box-shadow: var(--shadow-sm);
}
.about-highlight i {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 12px;
    color: var(--green);
    background: var(--green-faint);
    border: 1px solid rgba(21, 122, 71, 0.12);
    font-size: 1rem;
}

.about-map-card {
    position: relative;
    padding: 56px 44px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(47, 191, 113, 0.25), transparent 62%),
        linear-gradient(165deg, #0D2C1F, var(--ink));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}
.about-map-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 78%);
    mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 78%);
    z-index: -1;
}
.about-map-card::after {
    content: '';
    position: absolute;
    top: 44px; left: 44px;
    width: 74px; height: 74px;
    border-radius: 50%;
    border: 1px solid rgba(52, 211, 153, 0.4);
    animation: mapPulse 3s var(--ease-out) infinite;
    pointer-events: none;
}
@keyframes mapPulse {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.9); opacity: 0; }
}
.about-map-card i {
    font-size: 2.6rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 26px;
    animation: float 7s ease-in-out infinite;
}
.about-map-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-wrap: balance;
}
.about-map-card p { color: var(--muted-dark); font-size: 0.95rem; line-height: 1.75; }

/* =============================================
   PROCESS / HOW IT WORKS
============================================= */
.how-it-works {
    padding: 130px 0;
    background:
        radial-gradient(ellipse 55% 45% at 85% 10%, rgba(47, 191, 113, 0.06), transparent 62%),
        var(--off-white);
}
.how-it-works-header { text-align: center; margin-bottom: 86px; }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}
.steps-container::before {
    content: '';
    position: absolute;
    top: 44px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        rgba(21, 122, 71, 0.3) 0 10px, transparent 10px 20px);
    z-index: 0;
}
.step {
    position: relative;
    text-align: center;
    padding: 0 24px;
    z-index: 1;
    transition: transform 0.45s var(--ease-spring);
}
.step:hover { transform: translateY(-8px); }
.step-number {
    width: 88px; height: 88px;
    margin: 0 auto 30px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow 0.4s, border-color 0.4s;
}
.step-number::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--ga, 0deg),
        transparent, rgba(47, 191, 113, 0.8), rgba(167, 243, 208, 1), rgba(47, 191, 113, 0.5), transparent 42%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: spinGa 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}
.step:hover .step-number::before { opacity: 1; }
.step:hover .step-number { box-shadow: var(--shadow-md), 0 16px 40px -12px var(--green-glow); }
.step-number .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.step h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--slate);
    margin-bottom: 12px;
}
.step p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; max-width: 300px; margin: 0 auto; }

/* =============================================
   WHY US  (dark)
============================================= */
.why-us {
    position: relative;
    padding: 140px 0;
    background:
        radial-gradient(ellipse 75% 60% at 85% 0%, rgba(21, 122, 71, 0.32), transparent 60%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(47, 191, 113, 0.1), transparent 62%),
        var(--grad-dark);
    overflow: hidden;
    isolation: isolate;
}
.why-us-bg {
    position: absolute; inset: 0;
    background-image: var(--noise);
    opacity: 0.045;
    pointer-events: none;
}
.why-us .container {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 76px;
    align-items: center;
}
.why-us-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--mint);
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.22);
    margin-bottom: 22px;
}
.why-us h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    text-wrap: balance;
}
.why-us h2 em {
    font-style: normal;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.why-us-intro {
    color: var(--muted-dark);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 22px 0 40px;
    max-width: 520px;
}
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s var(--ease-spring), border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.why-item::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(52, 211, 153, 0.1), transparent 62%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover {
    transform: translateX(8px);
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(52, 211, 153, 0.05);
}
.why-icon {
    width: 46px; height: 46px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--grad-primary);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 8px 22px -4px var(--green-glow);
    transition: transform 0.45s var(--ease-spring);
}
.why-item:hover .why-icon { transform: scale(1.1) rotate(-6deg); }
.why-item-text strong { display: block; color: #fff; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.why-item-text span { color: var(--muted-dark); font-size: 0.88rem; line-height: 1.6; margin-top: 3px; display: block; }

.why-us-image { position: relative; }
.why-us-image-frame {
    border-radius: var(--radius-lg);
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 90px -20px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}
.why-us-image-frame img {
    border-radius: calc(var(--radius-lg) - 8px);
    width: 100%;
    transition: transform 0.7s var(--ease-out);
}
.why-us-image-frame:hover img { transform: scale(1.04); }
.why-badge {
    position: absolute;
    bottom: -26px; left: -22px;
    display: flex; align-items: center; gap: 14px;
    padding: 17px 24px;
    border-radius: 18px;
    background: rgba(9, 32, 22, 0.82);
    border: 1px solid rgba(52, 211, 153, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.55), 0 0 40px -12px var(--green-glow);
    color: #fff;
    animation: float 6s ease-in-out infinite;
}
.why-badge-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 13px;
    background: var(--grad-primary);
    font-size: 1.1rem;
    box-shadow: 0 6px 18px var(--green-glow);
}
.why-badge strong { display: block; font-size: 0.95rem; }
.why-badge small { color: var(--muted-dark); font-size: 0.76rem; }

/* =============================================
   FAQ
============================================= */
.faq { padding: 130px 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
    position: relative;
}
.faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 14px; bottom: 14px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(var(--green), var(--emerald));
    opacity: 0;
    transition: opacity 0.35s;
}
.faq-item:hover { border-color: rgba(47, 191, 113, 0.3); transform: translateY(-2px); }
.faq-item.open {
    border-color: rgba(47, 191, 113, 0.4);
    box-shadow: var(--shadow-sm), 0 16px 44px -18px var(--green-glow);
}
.faq-item.open::before { opacity: 1; }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 24px 28px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--slate);
    transition: color 0.25s;
}
.faq-item:hover .faq-question, .faq-item.open .faq-question { color: var(--green); }
.faq-question i {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--green-faint);
    color: var(--green);
    font-size: 0.8rem;
    transition: transform 0.5s var(--ease-spring), background 0.35s, color 0.35s;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
    background: var(--grad-primary);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.75;
    transition: max-height 0.55s var(--ease-out), opacity 0.4s var(--ease-out), padding 0.45s var(--ease-out);
}
.faq-item.open .faq-answer {
    max-height: 340px;
    opacity: 1;
    padding: 0 28px 26px;
}

/* =============================================
   CONTACT
============================================= */
.contact {
    padding: 130px 0;
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(47, 191, 113, 0.07), transparent 62%),
        var(--off-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.contact-form {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}
.form-row { position: relative; }
.form-row:nth-child(5), .contact-form > button, .form-status { grid-column: 1 / -1; }

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 17px 18px 15px;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--slate);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23157A47' d='M6 8 0 .8 1 0l5 6 5-6 1 .8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}
.form-row input:hover, .form-row select:hover, .form-row textarea:hover { border-color: rgba(21, 122, 71, 0.35); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.14);
    transform: translateY(-1px);
}

/* floating labels (label follows the field in the DOM) */
.form-row label {
    position: absolute;
    left: 15px; top: 15px;
    font-size: 0.94rem;
    color: var(--muted);
    pointer-events: none;
    padding: 2px 7px;
    border-radius: 7px;
    background: transparent;
    transition: all 0.25s var(--ease-out);
    line-height: 1.3;
}
.form-row input:focus + label,
.form-row input:not(:placeholder-shown) + label,
.form-row textarea:focus + label,
.form-row textarea:not(:placeholder-shown) + label,
.form-row select + label {
    top: -11px; left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green);
    background: var(--white);
    box-shadow: 0 1px 4px rgba(10, 46, 32, 0.06);
}

.form-status { font-size: 0.9rem; font-weight: 600; color: var(--green); min-height: 1.2em; margin-top: -6px; }

.contact-direct {
    position: sticky;
    top: 110px;
    padding: 40px 34px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse 90% 55% at 50% -10%, rgba(47, 191, 113, 0.25), transparent 62%),
        linear-gradient(165deg, #0D2C1F, var(--ink));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.contact-direct::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--noise);
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}
.contact-direct h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.contact-direct > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    margin-bottom: 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    font-weight: 500;
    transition: transform 0.35s var(--ease-spring), background 0.3s, border-color 0.3s;
}
.contact-direct > a:hover {
    transform: translateX(6px);
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.35);
}
.contact-direct > a i {
    width: 38px; height: 38px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--green-light);
    font-size: 1.05rem;
}
.contact-direct > a:first-of-type {
    background: var(--grad-primary);
    background-size: 200% auto;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 10px 30px -8px var(--green-glow);
}
.contact-direct > a:first-of-type i { background: rgba(255, 255, 255, 0.16); color: #fff; }
.contact-direct > a:first-of-type:hover { background-position: right center; transform: translateX(6px) translateY(-2px); }
.contact-direct p a:hover { color: var(--green-light) !important; }

/* =============================================
   CTA
============================================= */
.cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    background:
        radial-gradient(ellipse 65% 60% at 50% 120%, rgba(21, 122, 71, 0.45), transparent 65%),
        radial-gradient(ellipse 45% 40% at 15% -10%, rgba(47, 191, 113, 0.14), transparent 62%),
        var(--grad-dark);
    overflow: hidden;
    isolation: isolate;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--noise);
    opacity: 0.045;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 560px; height: 560px;
    bottom: -300px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle closest-side, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.06) 50%, transparent 72%);
    border-radius: 50%;
    animation: blobDrift 16s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mint);
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.25);
    margin-bottom: 28px;
}
.cta-section h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    text-wrap: balance;
}
.cta-section p {
    color: var(--muted-dark);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 22px auto 0;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
footer {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: 96px 0 44px;
    overflow: hidden;
    isolation: isolate;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.5), transparent);
}
footer::after {
    content: '';
    position: absolute;
    width: 700px; height: 380px;
    top: -220px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse closest-side, rgba(21, 122, 71, 0.2), rgba(21, 122, 71, 0.06) 50%, transparent 72%);
    pointer-events: none;
    z-index: -1;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
}
.footer-brand {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(100deg, #fff 30%, var(--mint));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}
.footer-brand-block p {
    color: var(--muted-dark);
    font-size: 0.93rem;
    line-height: 1.75;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.footer-social a {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted-dark);
    font-size: 1rem;
    transition: all 0.35s var(--ease-spring);
}
.footer-social a:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 26px -6px var(--green-glow);
}
.footer-col h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 22px;
}
.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-dark);
    font-size: 0.9rem;
    padding: 7px 0;
    transition: color 0.25s, transform 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--green-light); transform: translateX(5px); }
.footer-col a i { width: 18px; text-align: center; color: rgba(52, 211, 153, 0.55); font-size: 0.85rem; }

.footer-col .footer-newsletter { margin-top: 30px; }
.footer-newsletter h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 14px;
}
.footer-newsletter p { color: var(--muted-dark); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.newsletter-field {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-field:focus-within {
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.12);
}
.newsletter-field input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    padding: 10px 14px;
}
.newsletter-field input::placeholder { color: rgba(157, 180, 168, 0.6); }
.newsletter-field .btn { padding: 11px 20px; font-size: 0.8rem; flex-shrink: 0; }
.newsletter-status { font-size: 0.82rem; color: var(--green-light); font-weight: 600; margin-top: 10px; min-height: 1.2em; }

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    margin: 56px 0 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copy { color: rgba(157, 180, 168, 0.7); font-size: 0.84rem; }
.footer-mini-links { display: flex; gap: 26px; }
.footer-mini-links a {
    color: var(--muted-dark);
    font-size: 0.84rem;
    transition: color 0.25s;
}
.footer-mini-links a:hover { color: var(--green-light); }

/* =============================================
   FLOATING ACTIONS
============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 26px;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--green);
    font-size: 0.95rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.9);
    transition: all 0.4s var(--ease-spring);
    z-index: 1500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -8px var(--green-glow);
}

.wa-float {
    position: fixed;
    bottom: 28px; right: 26px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(140deg, #22C15E, #128C7E);
    color: #fff;
    font-size: 1.65rem;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 32px -6px rgba(18, 140, 126, 0.55);
    z-index: 1500;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.wa-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulseRing 2.4s var(--ease-out) infinite;
}
.wa-float:hover {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 18px 44px -8px rgba(18, 140, 126, 0.7);
}

/* =============================================
   NOSCRIPT / REDUCED MOTION SAFETY
============================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; filter: none; }
    .hero-pill, .hero h1, .hero-content > p, .hero-buttons, .hero-metrics, .hero-image { opacity: 1; }
    .hero h1.split .wi { transform: none; }
    .scroll-indicator { display: none; }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1080px) {
    .hero .container { flex-direction: column; text-align: center; gap: 76px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero p { margin: 0 auto; }
    .hero-metrics { max-width: 640px; width: 100%; }
    .hero-image { width: 100%; max-width: 620px; }
    .hfc-2 { left: -10px; }
    .steps-container::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 80px; }
    nav { height: 70px; }
    .logo img { height: 42px; }
    .nav-toggle { display: grid; place-items: center; order: 4; }
    .lang-toggle { order: 2; margin-left: auto; }
    /* absolute (not fixed): the header's backdrop-filter makes it the
       containing block for fixed descendants, which would clip the panel */
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        background: linear-gradient(180deg, #FBFDFA 0%, #F2F7F1 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 36px 28px 44px;
        gap: 32px;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
        overflow-y: auto;
        z-index: 999;
    }
    body.menu-open .nav-menu { opacity: 1; visibility: visible; transform: none; }
    .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-links a {
        font-size: 1.15rem;
        font-weight: 600;
        padding: 15px 18px;
        border-radius: 16px;
        border: 1px solid transparent;
    }
    .nav-links a:hover { border-color: rgba(21, 122, 71, 0.15); }
    .nav-contact {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: center;
        margin-top: auto;
    }
    .nav-email { padding: 10px; }

    .hero { padding: 80px 0 120px; }
    .project-row { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
    .project-row.reversed > :first-child { order: 0; }
    .project-row + .project-row { padding-top: 64px; }
    .projects-header { margin-bottom: 56px; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .why-us .container, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .steps-container { grid-template-columns: 1fr; gap: 48px; }
    .contact-direct { position: static; }
    .why-badge { left: 10px; bottom: -20px; }
    .testimonial { padding: 44px 30px 38px; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero { padding: 64px 0 110px; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 2.9rem); }
    .hero-buttons { width: 100%; flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .metric-item { padding: 14px 10px; }
    .metric-value { font-size: 1.3rem; }
    .metric-label { font-size: 0.66rem; }
    .hero-float-card { padding: 10px 13px; font-size: 0.72rem; }
    .hero-float-card .hfc-icon { width: 30px; height: 30px; font-size: 0.78rem; }
    .hfc-1 { top: -18px; right: 2%; }
    .hfc-2 { left: -6px; }
    .hfc-3 { bottom: -16px; right: 4%; }
    .scroll-indicator { display: none; }

    .projects, .features, .about, .how-it-works, .faq, .contact { padding: 88px 0; }
    .social-proof, .why-us, .cta-section { padding: 96px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .trust-stat { padding: 26px 14px; }
    .trust-stat b { font-size: 2rem; }
    .project-features { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; padding: 26px 20px; }
    .form-row:nth-child(5) { grid-column: auto; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .back-to-top { bottom: 96px; right: 20px; width: 46px; height: 46px; }
    .wa-float { bottom: 24px; right: 20px; width: 54px; height: 54px; font-size: 1.5rem; }
}
