/* =========================================================
   MHIG Sp. z o.o. — Stylesheet (LIGHT THEME v2)
   Paleta nawiązująca do logo: kremowe tło, granat, limonka, pomarańcz
   Glassmorphism na jasnym tle · miękkie cienie · WCAG AA
   Mobile-first · A11y · Performance-first
   ========================================================= */

/* ---------- 0. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ---------- 1. DESIGN TOKENS — LIGHT PALETTE ---------- */
:root {
    --navy-950: #061629;
    --navy-900: #081E36;
    --navy-800: #0B2A4A;
    --navy-700: #153D66;
    --navy-600: #1E4976;
    --navy-500: #2D6096;
    --navy-400: #5A82AE;
    --navy-300: #8AAAC7;

    --lime-700: #4A7A1C;
    --lime-600: #5A9321;
    --lime-500: #7BB033;
    --lime-400: #8BC53F;
    --lime-300: #A9D86A;
    --lime-200: #C7E88F;
    --lime-100: #E9F5D2;
    --lime-50:  #F5FAE8;

    --orange-600: #C17A08;
    --orange-500: #E89514;
    --orange-400: #F5A623;
    --orange-300: #F8B94D;
    --orange-200: #FBD08E;
    --orange-100: #FDE8C4;

    --cream-100: #FDFBF5;
    --cream-200: #FBF6E9;

    --gray-50:  #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E4EAF2;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;

    --white: #FFFFFF;

    --bg: #FAFBFD;
    --bg-cream: #FDFBF5;
    --bg-elev: #FFFFFF;
    --surface: rgba(255, 255, 255, 0.70);
    --surface-solid: #FFFFFF;
    --surface-tint: rgba(11, 42, 74, 0.03);

    --border: rgba(11, 42, 74, 0.08);
    --border-strong: rgba(11, 42, 74, 0.15);
    --border-accent: rgba(139, 197, 63, 0.35);

    --accent: var(--lime-400);
    --accent-dark: var(--lime-600);
    --accent-2: var(--orange-400);
    --accent-navy: var(--navy-800);

    --ink: var(--navy-800);
    --ink-strong: var(--navy-900);
    --ink-dim: #34506F;
    --ink-mute: #6B7E94;
    --ink-inverse: #FFFFFF;

    --font-display: 'Unbounded', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    --fs-h1: clamp(2.25rem, 1.4rem + 4.2vw, 4.5rem);
    --fs-h2: clamp(1.75rem, 1.2rem + 2.8vw, 3rem);
    --fs-h3: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
    --fs-lead: clamp(1rem, 0.92rem + 0.4vw, 1.175rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;

    --shadow-xs:  0 1px 2px rgba(11, 42, 74, 0.05);
    --shadow-sm:  0 2px 6px rgba(11, 42, 74, 0.06), 0 1px 2px rgba(11, 42, 74, 0.04);
    --shadow-md:  0 10px 25px -10px rgba(11, 42, 74, 0.14), 0 4px 10px -4px rgba(11, 42, 74, 0.06);
    --shadow-lg:  0 25px 60px -25px rgba(11, 42, 74, 0.2), 0 8px 20px -8px rgba(11, 42, 74, 0.08);
    --shadow-xl:  0 40px 80px -30px rgba(11, 42, 74, 0.22), 0 10px 30px -10px rgba(11, 42, 74, 0.1);
    --shadow-lime: 0 15px 40px -12px rgba(139, 197, 63, 0.5), 0 2px 0 0 rgba(255, 255, 255, 0.25) inset;
    --shadow-lime-lg: 0 22px 55px -12px rgba(139, 197, 63, 0.6), 0 2px 0 0 rgba(255, 255, 255, 0.3) inset;
    --shadow-orange: 0 15px 40px -12px rgba(245, 166, 35, 0.45);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 180ms;
    --t-med: 320ms;
    --t-slow: 600ms;

    --container: 1240px;
    --container-narrow: 920px;
    --header-h: 76px;
}

/* ---------- 2. BASE ---------- */
html { background: var(--bg); }

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    background-image:
        radial-gradient(circle at 15% 12%, rgba(139, 197, 63, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 85% 8%, rgba(245, 166, 35, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 50% 60%, rgba(30, 73, 118, 0.04) 0%, transparent 55%);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink-strong);
}

strong { color: var(--ink-strong); font-weight: 700; }
em { font-style: italic; }

::selection { background: var(--lime-400); color: var(--navy-900); }

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--lime-400);
    color: var(--navy-900);
    padding: 12px 20px;
    border-radius: var(--r-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top var(--t-fast);
}
.skip-link:focus { top: 16px; }

/* ---------- 3. LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
    padding: clamp(3.5rem, 4vw + 2rem, 7rem) 0;
    position: relative;
}

.section__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(2rem, 4vw, 4rem);
}

.section__title {
    font-size: var(--fs-h2);
    margin-bottom: 1rem;
    color: var(--ink-strong);
}

.section__lead {
    font-size: var(--fs-lead);
    color: var(--ink-dim);
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(120deg, var(--lime-600) 0%, var(--lime-500) 35%, var(--orange-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime-700);
    padding: 0.55em 1.1em;
    border: 1px solid rgba(139, 197, 63, 0.4);
    border-radius: var(--r-pill);
    background: rgba(139, 197, 63, 0.1);
    margin-bottom: 1.25rem;
}
.eyebrow--green { color: var(--lime-700); border-color: rgba(139,197,63,.4); background: rgba(139,197,63,.1); }
.eyebrow--orange { color: var(--orange-600); border-color: rgba(245,166,35,.4); background: rgba(245,166,35,.1); }

.eyebrow__dot {
    width: 7px; height: 7px;
    background: var(--lime-500);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lime-400);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

/* ---------- 4. AURORA BACKGROUND ---------- */
.aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.aurora__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: floatBlob 28s ease-in-out infinite;
    will-change: transform;
}
.aurora__blob--1 {
    width: 55vw; height: 55vw;
    background: radial-gradient(circle, rgba(139, 197, 63, 0.35) 0%, transparent 70%);
    top: -15vw; left: -10vw;
}
.aurora__blob--2 {
    width: 48vw; height: 48vw;
    background: radial-gradient(circle, rgba(30, 73, 118, 0.18) 0%, transparent 70%);
    top: 35vh; right: -12vw;
    animation-delay: -10s;
}
.aurora__blob--3 {
    width: 42vw; height: 42vw;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.2) 0%, transparent 70%);
    bottom: -10vw; left: 25vw;
    animation-delay: -18s;
}
@keyframes floatBlob {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(4vw, -3vh) scale(1.08); }
    66% { transform: translate(-3vw, 4vh) scale(0.96); }
}

.aurora__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(11, 42, 74, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11, 42, 74, 0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.aurora__noise { display: none; }

/* ---------- 5. HEADER & NAV ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all var(--t-med) var(--ease);
    padding: 1rem 0;
}
.site-header.is-scrolled {
    padding: 0.55rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand { display: flex; align-items: center; gap: 0.8rem; z-index: 2; }
.brand__logo {
    height: 48px;
    width: auto;
    display: block;
    transition: transform var(--t-med);
}
.brand:hover .brand__logo { transform: scale(1.03); }
.site-header.is-scrolled .brand__logo { height: 42px; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-800);
    letter-spacing: 0.02em;
}
.brand__tag {
    font-size: 0.68rem;
    color: var(--ink-mute);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav { flex: 1; display: none; }
.nav__list { display: flex; gap: 0.25rem; justify-content: center; }
.nav__list a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--ink-dim);
    border-radius: var(--r-sm);
    transition: color var(--t-fast), background var(--t-fast);
}
.nav__list a:hover,
.nav__list a.is-active { color: var(--navy-800); background: rgba(11, 42, 74, 0.06); }

.nav__list a.nav__highlight {
    color: var(--orange-600);
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.3);
}
.nav__list a.nav__highlight:hover { background: rgba(245, 166, 35, 0.2); color: var(--orange-600); }

.header__cta { display: none; align-items: center; gap: 0.6rem; }

/* ---------- 6. BUTTONS ---------- */
.btn {
    --btn-py: 0.85rem;
    --btn-px: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--btn-py) var(--btn-px);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: transform var(--t-fast) var(--ease),
                box-shadow var(--t-med) var(--ease),
                background var(--t-fast),
                color var(--t-fast);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
    background: linear-gradient(120deg, var(--lime-500), var(--lime-600));
    color: var(--white);
    box-shadow: var(--shadow-lime);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lime-lg);
}
.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform var(--t-slow);
}
.btn--primary:hover::before { transform: translateX(120%); }

.btn--secondary {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-xs);
}
.btn--secondary:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--navy-700);
    border-color: var(--border-strong);
}
.btn--ghost:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.btn--phone {
    padding: 0.55rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn--lg {
    --btn-py: 1.1rem;
    --btn-px: 1.9rem;
    font-size: 1rem;
}

.btn--block { width: 100%; }

.btn--glow { position: relative; }
.btn--glow::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, var(--lime-400), var(--orange-400), var(--lime-400));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(16px);
    transition: opacity var(--t-med);
}
.btn--glow:hover::after { opacity: 0.7; }

/* ---------- 7. HAMBURGER & MOBILE MENU ---------- */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all var(--t-fast);
    box-shadow: var(--shadow-xs);
}
.hamburger:hover { background: var(--navy-800); border-color: var(--navy-800); }
.hamburger:hover span { background: var(--white); }
.hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: transform var(--t-med) var(--ease), opacity var(--t-fast), background var(--t-fast);
    transform-origin: center;
}
.hamburger.is-open { background: var(--navy-800); border-color: var(--navy-800); }
.hamburger.is-open span { background: var(--white); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
    background: var(--white);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-menu li a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-800);
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all var(--t-fast);
}
.mobile-menu li a:hover, .mobile-menu li a:active {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

/* ---------- 8. HERO ---------- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
}
.hero__grid {
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: 1fr;
    align-items: center;
}

.hero__title {
    font-size: var(--fs-h1);
    margin: 1rem 0 1.5rem;
    font-weight: 700;
    color: var(--ink-strong);
}
.hero__lead {
    font-size: var(--fs-lead);
    color: var(--ink-dim);
    max-width: 640px;
    margin-bottom: 2.2rem;
    line-height: 1.65;
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}
.stat { text-align: left; }
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
    font-weight: 800;
    color: var(--lime-600);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat__suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--lime-600);
    font-weight: 800;
}
.stat__label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--ink-mute);
    line-height: 1.4;
    font-weight: 500;
}

/* ---------- Hero Orbit z logo ---------- */
.hero__visual {
    display: none;
    position: relative;
    aspect-ratio: 1;
    max-width: 520px;
    justify-self: center;
}
.orbit {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}
.orbit__core {
    width: 62%;
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid rgba(139, 197, 63, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 0 80px rgba(139, 197, 63, 0.2), var(--shadow-xl);
    animation: corePulse 4s ease-in-out infinite;
    padding: 8%;
}
.orbit__core img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 80px rgba(139,197,63,.2), var(--shadow-xl); }
    50% { box-shadow: 0 0 120px rgba(139,197,63,.35), var(--shadow-xl); }
}
.orbit__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(11, 42, 74, 0.12);
    animation: orbit 20s linear infinite;
}
.orbit__ring--1 { inset: 5%; animation-duration: 24s; }
.orbit__ring--2 { inset: 15%; animation-duration: 18s; animation-direction: reverse; border-color: rgba(139, 197, 63, 0.2); }
.orbit__ring--3 { inset: 0%; animation-duration: 30s; border-color: rgba(245, 166, 35, 0.15); }
.orbit__ring--4 { inset: 10%; animation-duration: 22s; animation-direction: reverse; }

.orbit__tag {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    padding: 0.45em 0.95em;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--navy-800);
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
}
.orbit__ring--1 .orbit__tag { background: var(--lime-50); color: var(--lime-700); border-color: rgba(139,197,63,.3); }
.orbit__ring--2 .orbit__tag { background: var(--orange-100); color: var(--orange-600); border-color: rgba(245,166,35,.3); top: auto; bottom: -16px; }
.orbit__ring--3 .orbit__tag { background: var(--white); color: var(--navy-600); top: 50%; left: -16px; transform: translateY(-50%); }
.orbit__ring--4 .orbit__tag { top: 50%; right: -16px; left: auto; transform: translateY(-50%); color: var(--lime-700); background: var(--lime-50); border-color: rgba(139,197,63,.3); }

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

.orbit__ring .orbit__tag { animation: orbit 20s linear infinite reverse; animation-duration: inherit; }

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 2px solid var(--border-strong);
    border-radius: var(--r-pill);
    display: none;
    background: var(--white);
}
.hero__scroll span {
    display: block;
    width: 3px; height: 8px;
    background: var(--lime-500);
    border-radius: 3px;
    margin: 8px auto;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ---------- 9. TRUST BAR ---------- */
.trust {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.trust__label {
    text-align: center;
    color: var(--ink-mute);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xs);
    transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.trust__item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 197, 63, 0.4);
    box-shadow: var(--shadow-md);
}
.trust__item svg { width: 28px; height: 28px; color: var(--lime-600); flex-shrink: 0; }
.trust__item strong { display: block; font-size: 0.95rem; font-family: var(--font-display); color: var(--navy-800); }
.trust__item span { display: block; font-size: 0.78rem; color: var(--ink-mute); margin-top: 2px; }

/* ---------- 10. GLASS CARDS ---------- */
.glass-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--t-med) var(--ease), border-color var(--t-med), box-shadow var(--t-med);
    position: relative;
}
.glass-card--tilt:hover {
    transform: translateY(-6px) rotate(-0.4deg);
    border-color: rgba(139, 197, 63, 0.35);
    box-shadow: var(--shadow-lg);
}

.glass-card__icon {
    width: 56px; height: 56px;
    display: grid;
    place-items: center;
    border-radius: var(--r-md);
    margin-bottom: 1.2rem;
    border: 1px solid transparent;
}
.glass-card__icon svg { width: 28px; height: 28px; }
.glass-card__icon--navy { background: rgba(30, 73, 118, 0.1); color: var(--navy-600); border-color: rgba(30, 73, 118, 0.2); }
.glass-card__icon--green { background: var(--lime-50); color: var(--lime-700); border-color: rgba(139, 197, 63, 0.3); }
.glass-card__icon--orange { background: var(--orange-100); color: var(--orange-600); border-color: rgba(245, 166, 35, 0.3); }

.glass-card h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; color: var(--navy-800); }
.glass-card p { color: var(--ink-dim); line-height: 1.6; }

/* ---------- 11. PHILOSOPHY ---------- */
.philosophy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

/* ---------- 12. AREAS ---------- */
.areas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.25rem;
}

.area-card {
    position: relative;
    padding: 2rem 1.7rem 1.8rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-med) var(--ease), border-color var(--t-med), box-shadow var(--t-med);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.area-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lime-500), var(--orange-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med) var(--ease);
}
.area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 197, 63, 0.4);
    box-shadow: var(--shadow-lg);
}
.area-card:hover::before { transform: scaleX(1); }

.area-card--featured {
    background: linear-gradient(165deg, var(--lime-50) 0%, var(--white) 60%);
    border-color: rgba(139, 197, 63, 0.3);
}
.area-card--featured::before { transform: scaleX(1); }

.area-card--new {
    background: linear-gradient(165deg, var(--orange-100) 0%, var(--white) 60%);
    border-color: rgba(245, 166, 35, 0.35);
}
.area-card--new::before {
    background: linear-gradient(90deg, var(--orange-400), var(--lime-500));
    transform: scaleX(1);
}

.area-card__num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--lime-600), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
    letter-spacing: -0.04em;
}
.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    line-height: 1.25;
    color: var(--navy-800);
}
.area-card p {
    color: var(--ink-dim);
    font-size: 0.93rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}
.area-card__list {
    margin-bottom: 1.5rem;
    flex: 1;
}
.area-card__list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: var(--ink-mute);
    margin-bottom: 0.35rem;
    line-height: 1.45;
    font-weight: 500;
}
.area-card__list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.5em;
    width: 5px; height: 5px;
    background: var(--lime-500);
    border-radius: 50%;
}
.area-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lime-700);
    padding: 0.4rem 0;
    border-bottom: 1.5px solid transparent;
    transition: border-color var(--t-fast), gap var(--t-fast);
    align-self: flex-start;
}
.area-card__link:hover { border-color: var(--lime-600); gap: 0.7rem; }
.area-card__link span { transition: transform var(--t-fast); }
.area-card__link:hover span { transform: translateX(3px); }

.area-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3em 0.8em;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--lime-100);
    color: var(--lime-700);
    border: 1px solid rgba(139, 197, 63, 0.45);
    border-radius: var(--r-pill);
    z-index: 2;
}
.area-card__badge--new {
    background: var(--orange-100);
    color: var(--orange-600);
    border-color: rgba(245, 166, 35, 0.5);
}

/* ---------- 13. FUNDING ---------- */
.funding {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 197, 63, 0.04) 50%, transparent 100%);
}
.funding__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    position: relative;
}

.funding__steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.funding__steps li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.funding__step-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--lime-500), var(--lime-600));
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lime);
}
.funding__steps strong { display: block; font-family: var(--font-display); color: var(--navy-800); margin-bottom: 0.25rem; font-size: 1.05rem; }
.funding__steps p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.5; }

/* ---------- 14. FORM ---------- */
.funding-form {
    padding: 2rem;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.funding-form__title { font-size: 1.4rem; margin-bottom: 0.4rem; color: var(--navy-800); }
.funding-form__sub { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 1.6rem; }

.field { margin-bottom: 1.1rem; position: relative; }
.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-700);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--gray-50);
    border: 1.5px solid var(--border-strong);
    border-radius: var(--r-md);
    color: var(--navy-800);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--lime-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 197, 63, 0.15);
}
.field select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A9321' stroke-width='1.8' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}
.field select option { background: var(--white); color: var(--navy-800); }

.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 1.1rem; }
.field--row > div { margin-bottom: 0; }

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
    border-color: #dc2626;
    background: #fef2f2;
}

.field__error {
    display: block;
    min-height: 1em;
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 0.35rem;
    font-weight: 600;
}

.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    font-size: 0.82rem;
    color: var(--ink-dim);
    line-height: 1.45;
    margin: 0.4rem 0 0.4rem;
    cursor: pointer;
}
.checkbox input {
    width: 18px; height: 18px;
    accent-color: var(--lime-500);
    margin-top: 2px;
    cursor: pointer;
}

.honey {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0; width: 0;
}

.form-status {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--r-md);
    font-size: 0.88rem;
    font-weight: 600;
    display: none;
    line-height: 1.4;
}
.form-status.is-success { display: block; background: var(--lime-50); color: var(--lime-700); border: 1px solid rgba(139, 197, 63, 0.4); }
.form-status.is-error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid rgba(220, 38, 38, 0.3); }
.form-status.is-loading { display: block; background: var(--gray-100); color: var(--ink-dim); border: 1px solid var(--border); }

/* ---------- 15. FAQ ---------- */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--t-med), box-shadow var(--t-med);
    box-shadow: var(--shadow-xs);
}
.faq__item:hover { border-color: rgba(139, 197, 63, 0.25); box-shadow: var(--shadow-sm); }
.faq__item[open] {
    border-color: rgba(139, 197, 63, 0.4);
    background: var(--lime-50);
    box-shadow: var(--shadow-md);
}

.faq__item summary {
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy-800);
    list-style: none;
    user-select: none;
    line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; }

.faq__icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border: 1.5px solid var(--border-strong);
    background: var(--white);
    border-radius: 50%;
    position: relative;
    transition: transform var(--t-med) var(--ease), background var(--t-med), border-color var(--t-med);
}
.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 2px;
    background: var(--lime-600);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    transition: transform var(--t-med) var(--ease), background var(--t-med);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon {
    transform: rotate(180deg);
    background: var(--lime-500);
    border-color: var(--lime-500);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--white); }
.faq__item[open] .faq__icon::after { transform: translate(-50%,-50%) rotate(0); }

.faq__body {
    padding: 0 1.4rem 1.4rem;
    color: var(--ink-dim);
    font-size: 0.95rem;
    line-height: 1.65;
}
.faq__body p { margin-bottom: 0.7rem; }
.faq__body ul,
.faq__body ol { margin: 0.5rem 0 0.8rem 1.2rem; }
.faq__body li { list-style: disc; margin-bottom: 0.3rem; }
.faq__body ol li { list-style: decimal; }
.faq__body a { color: var(--lime-700); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.faq__body strong { color: var(--navy-800); }

/* ---------- 16. CONTACT ---------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.contact__cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card { padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-card__head h3 { font-size: 1.6rem; margin-top: 0.4rem; color: var(--navy-800); }
.contact-card__pin {
    display: inline-block;
    padding: 0.3em 0.8em;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(30, 73, 118, 0.08);
    color: var(--navy-600);
    border: 1px solid rgba(30, 73, 118, 0.2);
    border-radius: var(--r-pill);
}
.contact-card__pin--green { background: var(--lime-50); color: var(--lime-700); border-color: rgba(139, 197, 63, 0.35); }
.contact-card address { font-style: normal; color: var(--ink-dim); line-height: 1.6; }
.contact-card__links { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-card__links a {
    display: inline-block;
    padding: 0.4rem 0;
    font-weight: 700;
    color: var(--navy-800);
    transition: color var(--t-fast);
}
.contact-card__links a:hover { color: var(--lime-700); }
.contact-card__map {
    aspect-ratio: 16/9;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--gray-100);
    margin-top: 0.3rem;
}
.contact-card__map iframe {
    width: 100%; height: 100%;
    border: 0;
}

.contact__cta { padding: 2rem; display: flex; flex-direction: column; gap: 0.7rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.contact__cta h3 { font-size: 1.4rem; margin-bottom: 0.2rem; color: var(--navy-800); }
.contact__cta p { color: var(--ink-dim); margin-bottom: 0.8rem; }

.glass-card--bright {
    background: linear-gradient(155deg, var(--lime-50) 0%, var(--white) 70%);
    border-color: rgba(139, 197, 63, 0.3);
}

.contact__cert {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    color: var(--lime-700);
}
.contact__cert svg { width: 36px; height: 36px; flex-shrink: 0; }
.contact__cert strong { display: block; color: var(--navy-800); font-family: var(--font-display); font-size: 0.95rem; }
.contact__cert span { display: block; color: var(--ink-mute); font-size: 0.75rem; margin-top: 2px; }

/* ---------- 17. FOOTER ---------- */
.site-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--white) 0%, var(--lime-50) 100%);
    position: relative;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
}
.footer__brand .brand__logo { height: 70px; }
.footer__brand p {
    margin-top: 1rem;
    color: var(--ink-dim);
    font-size: 0.9rem;
    max-width: 420px;
    line-height: 1.6;
}
.footer__col h4 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime-700);
    margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__col a {
    color: var(--ink-dim);
    font-size: 0.93rem;
    transition: color var(--t-fast);
    font-weight: 500;
}
.footer__col a:hover { color: var(--navy-800); }
.footer__col li:not(:has(a)) { color: var(--ink-mute); font-size: 0.88rem; }

.footer__bar {
    border-top: 1px solid var(--border);
    padding: 1.2rem 0;
    font-size: 0.78rem;
    color: var(--ink-mute);
    font-weight: 500;
}
.footer__bar-inner {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
}

/* ---------- 18. STICKY CTAs ---------- */
.sticky-cta {
    position: fixed;
    z-index: 80;
    box-shadow: var(--shadow-xl);
    transition: transform var(--t-med) var(--ease), opacity var(--t-med);
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}
.sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta--mobile {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 1rem 1.4rem;
    background: linear-gradient(120deg, var(--lime-500), var(--lime-600));
    color: var(--white);
    border-radius: var(--r-pill);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-lime-lg);
}
.sticky-cta--mobile svg { width: 20px; height: 20px; }

.sticky-cta--desktop {
    display: none;
    right: 2rem;
    bottom: 2rem;
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--lime-500), var(--lime-600));
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lime-lg);
}
.sticky-cta--desktop svg { width: 28px; height: 28px; }
.sticky-cta--desktop:hover { transform: translateY(-4px) scale(1.05); }
.sticky-cta__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--lime-500);
    animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- 19. REVEAL ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].is-revealed { opacity: 1; transform: translate(0, 0); }

/* ---------- 20. UTILITIES ---------- */
.hide-mobile { display: none; }

/* ---------- 21. RESPONSIVE ---------- */
@media (min-width: 720px) {
    .field--row { grid-template-columns: 1fr 1fr; }
    .trust__grid { grid-template-columns: repeat(4, 1fr); }
    .contact__grid { grid-template-columns: 1.5fr 1fr; }
    .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
    .funding__inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
    :root { --header-h: 84px; }
    .hamburger { display: none; }
    .mobile-menu { display: none; }
    .nav { display: block; }
    .header__cta { display: flex; }
    .hide-mobile { display: inline-flex; }

    .hero__grid { grid-template-columns: 1.15fr 1fr; }
    .hero__visual { display: block; }
    .hero__scroll { display: block; }

    .sticky-cta--mobile { display: none; }
    .sticky-cta--desktop { display: flex; }

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

@media (min-width: 1280px) {
    .section { padding: clamp(4rem, 5vw + 2rem, 8rem) 0; }
    .hero__stats { padding: 1.8rem 2rem; }
}

@media (max-width: 420px) {
    .field--row { grid-template-columns: 1fr; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; padding: 1rem; }
    .stat__label { font-size: 0.68rem; }
    .nav__list a { padding: 0.5rem 0.7rem; font-size: 0.85rem; }
    .brand__tag { display: none; }
    .brand__logo { height: 42px; }
}

/* ---------- 22. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .aurora__blob { animation: none; }
    .orbit__ring { animation: none; }
}

/* ---------- 23. PRINT ---------- */
@media print {
    .aurora, .sticky-cta, .hamburger, .mobile-menu, .hero__scroll { display: none !important; }
    body { background: white; color: black; }
    .site-header { position: static; background: white; box-shadow: none; border-bottom: 1px solid #ccc; }
}
