/* ============================================================
   iSeries Technology — Global Stylesheet (2026 modern redesign)
   ============================================================ */
@import url('tokens.css');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate-600);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  letter-spacing: -.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--green-400); color: #04130b; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--slate-900);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: -.02em; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.6rem; }
.section { padding: var(--section-y) 0; position: relative; }
.section--tint { background: var(--bg-2); }
.section--dark { background: var(--grad-dark); color: rgba(255,255,255,.78); overflow: hidden; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.72); }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { color: var(--slate-400); font-size: 1.12rem; }
.section--dark .section-head p { color: rgba(255,255,255,.66); }

/* Eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: .45rem 1rem; border-radius: 999px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); box-shadow: 0 0 10px var(--green-400); }

/* Gradient text */
.gtext, h1 .accent, h2 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .94rem;
  padding: .8rem 1.45rem; border-radius: 12px;
  cursor: pointer; border: 1px solid transparent; transition: var(--t);
  white-space: nowrap; letter-spacing: -.01em;
}
.btn--arrow::after { content: '→'; font-size: 1.02em; transition: transform var(--t); }
.btn--arrow:hover::after { transform: translateX(3px); }
.btn--primary { background: var(--green-500); color: #11210a; box-shadow: 0 6px 18px -7px rgba(94,159,51,.55); }
.btn--primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(94,159,51,.6); }
.btn--white { background: var(--white); color: var(--slate-900); border-color: var(--line); }
.btn--white:hover { border-color: var(--green-300); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: rgba(255,255,255,.05); color: var(--white); border-color: rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn--dark { background: var(--ink-900); color: var(--white); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: .98rem 1.8rem; font-size: 1rem; }
/* legacy alias */
.btn--noarrow::after { content: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,253,252,.72);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 94px; }
.brand { display: flex; align-items: center; }
.brand img { height: 68px; width: auto; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .93rem;
  color: var(--slate-700); padding: .6rem .95rem; border-radius: 999px;
  transition: var(--t); position: relative;
}
.nav a::after { content: ''; position: absolute; left: 50%; bottom: .35rem; width: 0; height: 2px; background: var(--grad-brand); border-radius: 2px; transform: translateX(-50%); transition: width var(--t); }
.nav a:hover, .nav a.is-active { color: var(--slate-900); }
.nav a:hover::after, .nav a.is-active::after { width: 18px; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + .6rem); left: 0; min-width: 250px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .6rem; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--t);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .65rem .85rem; font-size: .9rem; border-radius: var(--radius-sm); }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--green-50); color: var(--green-600); }
.header-cta { margin-left: .6rem; }
.header-cta::after { content: '→'; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--ink-900); margin: 5px 0; transition: var(--t); border-radius: 2px; }

/* ---------- Hero (light, with orbs) ---------- */
.hero { position: relative; padding: clamp(4.5rem, 11vw, 9rem) 0 clamp(3.5rem,7vw,6rem); overflow: hidden; background: var(--bg); }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: 0; }
.hero::before { width: 620px; height: 620px; background: radial-gradient(circle, rgba(132,194,71,.45), transparent 65%); top: -260px; right: -160px; }
.hero::after { width: 520px; height: 520px; background: radial-gradient(circle, rgba(112,184,64,.30), transparent 65%); bottom: -240px; left: -200px; }
.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero p { font-size: 1.22rem; color: var(--slate-500); margin-bottom: 2.2rem; max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__contactbar { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: .94rem; color: var(--slate-500); }
.hero__contactbar span { display: inline-flex; align-items: center; gap: .5rem; }

/* Hero stat cards (glass) */
.hero-stats { position: relative; z-index: 1; margin-top: clamp(2.5rem,5vw,4rem); display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }
.stat {
  background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); transition: var(--t);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-100); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem,3vw,2.6rem); color: var(--slate-900); letter-spacing: -.04em; line-height: 1; }
.stat__num .gtext, .stat__num span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: .9rem; color: var(--slate-400); margin-top: .5rem; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; transition: var(--t); height: 100%;
  overflow: hidden;
}
.card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--t); pointer-events: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-brand-soft); border: 1px solid var(--green-100);
  margin-bottom: 1.3rem; font-size: 1.5rem; transition: var(--t);
}
.card:hover .card__icon { box-shadow: var(--glow-soft); transform: scale(1.05); }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--slate-400); font-size: .97rem; }
.card ul { margin-top: .9rem; }
.card ul li { position: relative; padding-left: 1.5rem; margin-bottom: .5rem; font-size: .94rem; color: var(--slate-600); }
.card ul li::before { content: ''; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); }
.section--dark .card { background: rgba(255,255,255,.04); border-color: var(--line-dark); backdrop-filter: blur(6px); }
.section--dark .card p { color: rgba(255,255,255,.62); }
.section--dark .card ul li { color: rgba(255,255,255,.78); }

/* Feature list (checks) */
.feature-list li { position: relative; padding-left: 2.1rem; margin-bottom: .8rem; }
.feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: .05em; width: 1.45rem; height: 1.45rem;
  background: var(--grad-brand); color: #04130b; border-radius: 50%;
  display: grid; place-items: center; font-size: .82rem; font-weight: 800;
}
.section--dark .feature-list li { color: rgba(255,255,255,.82); }

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.pill { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.2rem; font-size: .9rem; font-weight: 600; font-family: var(--font-head); color: var(--slate-700); }

/* Split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.split__media img { width: 100%; object-fit: cover; border-radius: var(--radius); }

/* ---------- Image components ---------- */
.card__icon img { width: 30px; height: 30px; object-fit: contain; }
.card__icon--lg { width: 70px; height: 70px; }
.card__icon--lg img { width: 38px; height: 38px; }

.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--media .card__media { height: 200px; overflow: hidden; background: var(--green-50); }
.card--media .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.6,.2,1); }
.card--media:hover .card__media img { transform: scale(1.07); }
.card--media .card__body { padding: 2rem; flex: 1; }
.card--media .card__body h3 { margin-bottom: .6rem; }
.card--media .card__icon { margin-top: -3.6rem; position: relative; background: var(--white); box-shadow: var(--shadow-sm); }

/* Photo band */
.media-band { position: relative; color: var(--white); background-size: cover; background-position: center; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
.media-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(6,18,12,.94) 30%, rgba(8,26,18,.66)); }
.media-band::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(132,194,71,.35), transparent 65%); filter: blur(80px); top: -160px; right: -120px; }
.media-band > .container { position: relative; z-index: 1; }
.media-band h2 { color: var(--white); }
.media-band p { color: rgba(255,255,255,.8); }

/* Icon tile grid */
.icon-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
.icon-grid > .icon-tile { flex: 1 1 168px; max-width: 216px; }
.icon-tile { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1rem; text-align: center; transition: var(--t); overflow: hidden; }
.icon-tile::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transition: transform var(--t); transform-origin: left; }
.icon-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-tile:hover::after { transform: scaleX(1); }
.icon-tile__ic { width: 66px; height: 66px; margin: 0 auto 1rem; background: var(--grad-brand-soft); border: 1px solid var(--green-100); border-radius: 18px; display: grid; place-items: center; transition: var(--t); }
.icon-tile:hover .icon-tile__ic { box-shadow: var(--glow-soft); }
.icon-tile__ic img { width: 32px; height: 32px; object-fit: contain; }
.icon-tile h3 { font-size: 1rem; margin: 0; }

/* Featured partner logos */
.partner-featured { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.partner-featured .pf { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem; display: grid; place-items: center; min-height: 150px; transition: var(--t); }
.partner-featured .pf:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.partner-featured .pf img { max-height: 56px; max-width: 100%; object-fit: contain; }
.partner-featured .pf img.pf-stacked { max-height: 96px; }

/* ---------- Logo marquee ---------- */
.marquee { position: relative; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track .m-logo { height: 96px; min-width: 180px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.6rem; }
.marquee__track .m-logo img { max-height: 52px; max-width: 130px; object-fit: contain; filter: grayscale(35%); opacity: .82; transition: var(--t); }
.marquee__track .m-logo:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Logo wall */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 1.1rem; }
.logo-wall .logo-cell { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; padding: 1.4rem; min-height: 110px; transition: var(--t); }
.logo-wall .logo-cell:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.logo-wall .logo-cell img { max-height: 62px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .72; transition: var(--t); }
.logo-wall .logo-cell:hover img { filter: none; opacity: 1; }

/* CTA band */
.cta-band { position: relative; background: var(--grad-dark); color: var(--white); text-align: center; border-radius: var(--radius-xl); padding: clamp(3rem, 6vw, 5rem); overflow: hidden; border: 1px solid var(--line-dark); }
.cta-band::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(132,194,71,.4), transparent 60%); filter: blur(70px); top: -240px; left: 50%; transform: translateX(-50%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto 2rem; }

/* Page hero (inner pages, dark + glow) */
.page-hero { position: relative; background: var(--grad-dark); color: var(--white); padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem,6vw,5rem); overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(132,194,71,.32), transparent 62%); filter: blur(80px); top: -220px; right: -100px; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--green-400); }
.page-hero h1 { color: var(--white); margin: 1.1rem 0 .9rem; }
.page-hero p { color: rgba(255,255,255,.74); max-width: 660px; font-size: 1.14rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--green-400); }
.page-hero--photo { background-size: cover; background-position: center; }
.page-hero--photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(6,18,12,.95) 35%, rgba(8,26,18,.7)); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--ink-950); color: rgba(255,255,255,.66); padding: clamp(3.5rem,6vw,5rem) 0 1.6rem; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green-500), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h4 { color: var(--white); font-size: .8rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer a { transition: var(--t); }
.site-footer a:hover { color: var(--green-400); }
.footer-links li { margin-bottom: .65rem; font-size: .93rem; }
.footer-brand img { height: 56px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .93rem; max-width: 320px; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .85rem; font-size: .92rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); display: grid; place-items: center; font-size: .85rem; }
.footer-social a:hover { background: var(--grad-brand); color: #04130b; border-color: transparent; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 3.2rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .85rem; }
.dev-by { color: var(--green-400); font-weight: 600; }
.dev-by:hover { color: var(--green-400); text-decoration: underline; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--slate-700); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: .98rem; padding: .9rem 1.1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: var(--t); color: var(--slate-900);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(112,184,64,.14); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: .85rem; color: var(--slate-400); }
.form-status { padding: .95rem 1.15rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.is-success { display: block; background: var(--green-50); color: var(--green-600); border: 1px solid var(--green-100); }
.form-status.is-error { display: block; background: #FDECEC; color: #C0392B; border: 1px solid #F5C6C6; }
.hp-field { position: absolute; left: -9999px; }

/* Contact info */
.contact-info { display: grid; gap: 1.2rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__item .ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-brand-soft); border: 1px solid var(--green-100); display: grid; place-items: center; }
.contact-info__item .ic img { width: 22px; height: 22px; object-fit: contain; }
.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius); margin-top: 2rem; }
.icon-inline { width: 30px; height: 30px; vertical-align: middle; margin-right: .5rem; }

/* ---------- Floating action buttons (WhatsApp + Call) ---------- */
.fab-stack { position: fixed; right: 22px; bottom: 24px; z-index: 9100; display: flex; flex-direction: column; gap: .85rem; }
.fab { position: relative; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 28px rgba(8,26,18,.28); transition: transform .25s var(--t,ease), box-shadow .25s; }
.fab svg { width: 28px; height: 28px; fill: currentColor; }
.fab:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 36px rgba(8,26,18,.34); }
.fab--wa { background: #25D366; }
.fab--call { background: var(--green-600); }
.fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: inherit; opacity: .55; z-index: -1; animation: fab-pulse 2.4s ease-out infinite; }
@keyframes fab-pulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 600px) { .fab-stack { right: 16px; bottom: 18px; } .fab { width: 52px; height: 52px; } .fab svg { width: 25px; height: 25px; } }

/* ---------- Hero image slider (home) ---------- */
.hero-slider { position: relative; margin-top: clamp(2.5rem, 5vw, 4rem); border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 21 / 8; box-shadow: var(--shadow-lg); background: var(--ink-900); }
.hslide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity .9s ease, transform 6s ease; pointer-events: none; }
.hslide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.hslide img { width: 100%; height: 100%; object-fit: cover; }
.hslide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,18,12,.62), transparent 55%); }
.hslide__cap { position: absolute; left: clamp(1.2rem,3vw,2.2rem); bottom: clamp(1.2rem,3vw,2rem); z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem,2vw,1.4rem); max-width: 60%; display: flex; align-items: center; gap: .7rem; letter-spacing: -.01em; }
.hslide__cap span { flex: 0 0 auto; width: 11px; height: 11px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 14px var(--green-400); }
.hslide-arrow { position: absolute; top: 50%; translate: 0 -50%; z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(10,28,20,.4); backdrop-filter: blur(8px); color: #fff; font-size: 1.5rem; line-height: 1; display: grid; place-items: center; cursor: pointer; transition: background .25s, border-color .25s; }
.hslide-arrow:hover { background: var(--green-500); border-color: var(--green-500); color: #04130b; }
.hslide-arrow--prev { left: 1.1rem; } .hslide-arrow--next { right: 1.1rem; }
.hslide-dots { position: absolute; bottom: 1.2rem; right: clamp(1.2rem,3vw,2rem); z-index: 3; display: flex; gap: .5rem; }
.hslide-dots .dot { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: width .3s, background .3s; padding: 0; }
.hslide-dots .dot.is-active { width: 26px; background: var(--green-400); }
@media (max-width: 600px) { .hero-slider { aspect-ratio: 4 / 3; } .hslide__cap { max-width: 85%; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .partner-featured { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 94px 0 auto 0; flex-direction: column; align-items: stretch; background: var(--white); border-bottom: 1px solid var(--line); padding: 1rem; gap: .2rem; transform: translateY(-160%); transition: transform .35s cubic-bezier(.4,.14,.3,1); box-shadow: var(--shadow); }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .85rem 1rem; }
  .nav a::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 1rem; }
  .has-dropdown:hover .dropdown { transform: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
