/* =========================================================
   UnitedNet Design — Relaunch
   Design system & styles
   ========================================================= */

:root {
  color-scheme: light; /* form controls sit on light surfaces */
  /* Brand — black + eagle green (#3fb720) + silver */
  --ink:        #0c100e;   /* near-black (matches logo) */
  --ink-2:      #141a16;
  --ink-3:      #1f2822;
  --indigo:     #3fb720;   /* brand green (primary accent) */
  --indigo-600: #37a01c;
  --indigo-700: #2c8215;
  --cyan:       #7ed957;   /* light lime highlight (on dark) */
  --violet:     #2c8215;   /* deep green (gradient partner) */

  /* Neutrals */
  --white:  #ffffff;
  --paper:  #f5f7f4;
  --paper-2:#e9efe6;
  --line:   #e2e8de;
  --slate:  #566058;
  --slate-2:#828d83;
  --heading:#131a14;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15,25,18,.06), 0 2px 6px rgba(15,25,18,.05);
  --shadow-md: 0 10px 30px rgba(15,25,18,.10);
  --shadow-lg: 0 24px 60px rgba(15,25,18,.18);
  --shadow-glow: 0 18px 44px rgba(63,183,32,.34);
  --grad: linear-gradient(120deg, var(--indigo) 0%, var(--violet) 60%, var(--cyan) 120%);
  --grad-soft: linear-gradient(120deg, #3fb720 0%, #2c8215 100%);

  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:26px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 40px);

  --font-head: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
a, button, .btn, [role="button"], input, select, textarea, summary { touch-action: manipulation; }

/* Visible keyboard focus for all interactive elements (works on dark + light) */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 6px;
}
.faq__q:focus-visible, .card:focus-visible, .contact-line:focus-visible { outline-offset: -3px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Steady width for animated counters */
[data-count] { font-variant-numeric: tabular-nums; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--indigo);
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(63,183,32,.09);
  border: 1px solid rgba(63,183,32,.16);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(29px, 4.4vw, 46px);
  margin: 18px 0 14px;
  color: var(--heading);
}
.section-head p { font-size: clamp(16px, 2vw, 19px); margin: 0; color: var(--slate); }

.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-soft); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgba(63,183,32,.45); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: #fff; color: var(--heading); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, padding .3s ease;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,16,14,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  border-bottom-color: rgba(255,255,255,.08);
  padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff; letter-spacing: -.02em; }
.scrolled .brand { color: var(--heading); }
/* logo is a full lockup (eagle + white wordmark) built for dark backgrounds */
.brand__mark { height: 62px; width: auto; flex: none; display: block; transition: height .3s ease; }
.site-header.scrolled .brand__mark { height: 50px; }
.site-footer .brand__mark { height: 72px; }
.brand__name b { color: inherit; }
.brand__name span { color: var(--indigo); }

.nav__links { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,.82);
  padding: 9px 15px; border-radius: 100px;
  transition: color .2s ease, background .2s ease;
}
.nav__links a { white-space: nowrap; }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.10); }

/* mobile menu + backdrop hidden on desktop, shown via media query */
.nav__mobile, .nav-backdrop { display: none; }
.scrolled .nav__links a { color: rgba(255,255,255,.82); }
.scrolled .nav__links a:hover { color: #fff; background: rgba(255,255,255,.10); }
.nav__links a.active { color: #fff; }
.scrolled .nav__links a.active { color: var(--cyan); }
.nav__links a.active { color: var(--cyan); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: rgba(255,255,255,.9); }
.scrolled .nav__phone { color: rgba(255,255,255,.9); }
.nav__phone svg { width: 17px; height: 17px; color: var(--cyan); }
.scrolled .nav__phone svg { color: var(--cyan); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; border-radius: 12px;
  background: rgba(255,255,255,.12); position: relative; flex: none;
}
.scrolled .nav__toggle { background: rgba(255,255,255,.12); }
.nav__toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .2s ease, top .3s ease; }
.scrolled .nav__toggle span { background: #fff; }
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 78% -10%, #12401c 0%, rgba(18,64,28,0) 60%),
              radial-gradient(900px 500px at 8% 8%, #0d2c15 0%, rgba(13,44,21,0) 55%),
              linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  overflow: hidden;
  padding-top: clamp(120px, 17vw, 180px);
  padding-bottom: clamp(70px, 10vw, 120px);
}
.hero__glow { position: absolute; inset: 0; pointer-events: none; opacity: .9; }
.hero__glow::before, .hero__glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero__glow::before { width: 460px; height: 460px; background: var(--indigo); top: -120px; right: -60px; }
.hero__glow::after  { width: 380px; height: 380px; background: var(--cyan); bottom: -160px; left: -80px; opacity: .28; }
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 920px; }
.hero h1 {
  color: #fff;
  font-size: clamp(33px, 5vw, 54px);
  line-height: 1.08;
  margin: 22px 0 20px;
}
.hero h1 .grad { background: linear-gradient(100deg, #a8e88a, #3fb720); -webkit-background-clip: text; background-clip: text; color: transparent; }
/* keep the green phrase on one line from tablet up (wraps freely on small phones) */
@media (min-width: 700px) {
  .hero h1, .page-hero h1 { text-wrap: pretty; }
  .hero h1 .grad, .page-hero h1 .grad { white-space: nowrap; }
}
.hero__sub { font-size: clamp(17px, 2.3vw, 21px); color: rgba(233,238,252,.82); max-width: 620px; margin: 0 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .eyebrow { color: #cfe0ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }

.hero__trust { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 52px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); color: #fff; letter-spacing: -.02em; }
.hero__stat .lbl { font-size: 14px; color: rgba(207,217,242,.72); margin-top: 2px; }

/* ---------- Trust bar / values strip ---------- */
.strip { background: var(--ink-2); color: #fff; padding: 22px 0; }
.strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.strip__item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: rgba(255,255,255,.9); }
.strip__item svg { width: 20px; height: 20px; color: var(--cyan); }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.card::before { content:""; position:absolute; inset:0 0 auto 0; height:4px; background: var(--grad); opacity:0; transition: opacity .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 58px; height: 58px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(63,183,32,.12), rgba(46,138,20,.12));
  color: var(--indigo);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { margin: 0 0 20px; font-size: 16px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--indigo); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }
.card__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--paper-2); }
.card:hover .card__num { color: rgba(63,183,32,.18); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 20px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: var(--cyan); margin-bottom: 14px; }
.value__ic svg { width: 22px; height: 22px; }
.value h4 { font-size: 17px; margin-bottom: 5px; }
.value p { margin: 0; font-size: 14.5px; }
.about__copy .lead { margin: 18px 0 26px; }
.about__list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 13px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--slate); }
.about__list svg { width: 22px; height: 22px; flex: none; color: var(--indigo); margin-top: 1px; }

/* ---------- Process ---------- */
.process { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.process .hero__glow::before { background: var(--violet); opacity:.25; }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: rgba(207,217,242,.75); }
.process .eyebrow { color: #cfe0ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 2; }
.step { padding: 6px 4px; }
.step__n { font-family: var(--font-head); font-weight: 700; font-size: 15px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: var(--cyan); margin-bottom: 18px; }
.step h4 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.step p { margin: 0; font-size: 15px; color: rgba(207,217,242,.72); }

/* ---------- CTA banner ---------- */
.cta-banner { padding: clamp(48px, 7vw, 84px) 0; }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--grad-soft);
  border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 70px);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 120%, rgba(126,217,87,.5), transparent 60%); pointer-events:none; }
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { color: #fff; font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,.9); font-size: clamp(16px, 2vw, 19px); max-width: 560px; margin: 0 auto 30px; }
.cta-card .btn--outline { background:#fff; }
.cta-card .cta-actions { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact__info { position: sticky; top: 100px; }
.contact__cards { display: grid; gap: 14px; margin: 26px 0 30px; }
.contact-line {
  display: flex; gap: 15px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, transform .2s ease;
}
a.contact-line:hover { border-color: var(--indigo); transform: translateY(-2px); }
.contact-line__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(63,183,32,.12), rgba(46,138,20,.12)); color: var(--indigo); }
.contact-line__ic svg { width: 22px; height: 22px; }
.contact-line .lbl { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-2); font-family: var(--font-head); }
.contact-line .val { font-size: 17px; color: var(--heading); font-weight: 600; font-family: var(--font-head); word-break: break-word; }
.contact-line .sub { font-size: 14px; color: var(--slate); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 23px; margin-bottom: 6px; }
.form-card > p { margin: 0 0 24px; font-size: 15.5px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--heading); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--heading);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--indigo); background: #fff;
  box-shadow: 0 0 0 4px rgba(63,183,32,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--slate); margin-bottom: 22px; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--indigo); }
.form-consent a { color: var(--indigo); text-decoration: underline; }
.form-note { font-size: 13px; color: var(--slate-2); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--heading); }
.faq__q .ic { width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--paper-2); display: grid; place-items: center; color: var(--indigo); transition: transform .3s ease, background .3s ease; }
.faq__q .ic svg { width: 18px; height: 18px; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--indigo); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { margin: 0 4px 22px; font-size: 16px; color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(207,217,242,.7); padding: clamp(56px, 7vw, 80px) 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand { color: #fff; margin-bottom: 16px; }
.footer__brand p { max-width: 320px; font-size: 15px; }
.footer__col h5 { font-family: var(--font-head); color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 15px; color: rgba(207,217,242,.72); transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 14px; }
.footer__bottom a { color: rgba(207,217,242,.72); }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Mobile sticky contact bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(13,21,48,.08);
}
.mobile-bar .btn { flex: 1; padding: 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---------- Legal pages ---------- */
.legal { padding-top: clamp(120px, 16vw, 170px); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 10px; }
.legal .updated { color: var(--slate-2); font-size: 15px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; color: var(--heading); }
.legal p, .legal li { font-size: 16px; color: var(--slate); }
.legal a { color: var(--indigo); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-family: var(--font-head); font-weight: 600; color: var(--indigo); }

/* ---------- Sub-page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1000px 500px at 82% -20%, #12401c 0%, rgba(18,64,28,0) 60%),
              linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding-top: clamp(120px, 16vw, 168px);
  padding-bottom: clamp(48px, 7vw, 82px);
}
.page-hero .hero__glow::before { width: 380px; height: 380px; top: -120px; right: -40px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__inner { max-width: 800px; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5.4vw, 56px); margin: 16px 0 16px; line-height: 1.06; }
.page-hero h1 .grad { background: linear-gradient(100deg, #a8e88a, #3fb720); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { font-size: clamp(16px, 2.1vw, 20px); color: rgba(233,238,252,.82); max-width: 600px; margin: 0 0 30px; }
.page-hero .eyebrow { color: #cfe0ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; color: rgba(207,217,242,.7); font-family: var(--font-head); }
.crumbs a { color: rgba(207,217,242,.7); transition: color .2s ease; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .5; }
.crumbs .current { color: var(--cyan); }

/* ---------- Service detail: two-column feature block ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split--reverse .split__media { order: -1; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 15px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; color: var(--slate); }
.feature-list li strong { color: var(--heading); font-weight: 600; }
.feature-list .fic { width: 26px; height: 26px; flex: none; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(63,183,32,.14), rgba(46,138,20,.14)); color: var(--indigo); margin-top: 1px; }
.feature-list .fic svg { width: 15px; height: 15px; }

/* Illustrative media card (no external images needed) */
.media-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  min-height: 340px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; padding: 40px;
}
.media-card::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px; opacity:.6; }
.media-card__glow { position:absolute; width:280px; height:280px; border-radius:50%; filter: blur(80px); background: var(--indigo); opacity:.4; top:-60px; right:-40px; }
.media-card__ic { position: relative; z-index:2; width: 120px; height: 120px; border-radius: 32px; display:grid; place-items:center; background: var(--grad-soft); color:#fff; box-shadow: var(--shadow-glow); }
.media-card__ic svg { width: 62px; height: 62px; }

/* Portrait / team photo */
.portrait { position: relative; }
.portrait__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.portrait__frame img { width: 100%; height: auto; display: block; }
.portrait__badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(12,16,14,.68); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-md);
}
.portrait__badge b { display: block; font-family: var(--font-head); font-size: 17px; letter-spacing: -.01em; }
.portrait__badge span { font-size: 13px; color: var(--cyan); font-weight: 500; }
.portrait::before {
  content: ""; position: absolute; inset: auto -14px -14px auto; width: 62%; height: 62%;
  border-radius: var(--radius-lg); background: var(--grad-soft); opacity: .16; z-index: -1;
  filter: blur(6px);
}

/* Bullet feature grid (what's included) */
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.incl {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease;
}
.incl:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.incl__ic { width: 44px; height: 44px; border-radius: 12px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(63,183,32,.12), rgba(46,138,20,.12)); color: var(--indigo); margin-bottom: 14px; }
.incl__ic svg { width: 22px; height: 22px; }
.incl h4 { font-size: 17px; margin-bottom: 6px; }
.incl p { margin: 0; font-size: 14.5px; }

/* "Other services" cards row */
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mini-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .3s ease, border-color .3s ease;
}
.mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mini-card.is-current { background: var(--paper-2); border-style: dashed; pointer-events: none; }
.mini-card__ic { width: 48px; height: 48px; border-radius: 13px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(63,183,32,.12), rgba(46,138,20,.12)); color: var(--indigo); margin-bottom: 16px; }
.mini-card__ic svg { width: 24px; height: 24px; }
.mini-card h3 { font-size: 19px; margin-bottom: 8px; }
.mini-card p { margin: 0 0 14px; font-size: 15px; }
.mini-card .card__link { font-size: 14.5px; }

/* Section background helpers */
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: #fff; }

/* Stats band (reusable) */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 10px; }
.stat-box .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 4vw, 44px); color: var(--heading); letter-spacing: -.02em; }
.bg-ink .stat-box .num { color: #fff; }
.stat-box .lbl { font-size: 14.5px; color: var(--slate); margin-top: 4px; }
.bg-ink .stat-box .lbl { color: rgba(207,217,242,.72); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .mini-cards { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .nav__links, .nav__phone { display: none; }
  .nav__actions > .btn--primary { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 99;
    background: var(--ink-2); padding: 92px 26px 30px;
    transform: translateX(105%); transition: transform .35s cubic-bezier(.4,0,.1,1);
    display: flex; flex-direction: column; gap: 6px; box-shadow: -20px 0 60px rgba(0,0,0,.4);
    overflow-y: auto;
  }
  body.menu-open .nav__mobile { transform: none; }
  .nav__mobile a { color: rgba(255,255,255,.86); font-family: var(--font-head); font-weight: 500; font-size: 19px; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__mobile a:last-of-type { border: none; }
  .nav__mobile .btn { margin-top: 16px; }
  .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(6,10,24,.5); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: .3s; z-index: 98; }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .site-footer { padding-bottom: 90px; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 20px 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
