/* ============================================================
   BANWARI GROUP — shared design system
   Type:  Fraunces (display) · Inter (body) · Barlow Condensed (utility)
   Color: brand green + signal stripe (blue/red/amber/lime)
   All text colors verified ≥ WCAG AA contrast.
   ============================================================ */

:root {
  /* Brand greens */
  --ink:        #0B2A1B;   /* primary text on light            15.4:1 */
  --body:       #1F3328;   /* secondary text on light          13.4:1 */
  --muted:      #41534A;   /* labels / captions on light        8.2:1 */
  --green-link: #156A40;   /* interactive green text on light   6.6:1 */
  --green:      #14613B;   /* brand button fill (white text)    7.5:1 */
  --green-700:  #0F5230;
  --green-900:  #0B3A24;   /* dark panels                            */
  --green-950:  #082A1A;

  /* Signal accents (decorative + accessible text variants) */
  --blue:   #1565C0;  --blue-soft:   #5B9BE0;
  --red:    #C62828;  --red-soft:    #E57373;
  --amber:  #C07A00;  --amber-soft:  #F0B429;
  --amber-text: #9A6300;   /* AA-safe amber on white  4.9:1 */
  --lime:   #A5E86B;  --lime-eye:    #BDEE8E;   /* on dark only */
  --teal:   #00695C;  --teal-soft:   #4DB6AC;
  --violet: #4527A0;  --violet-soft: #9575CD;

  /* Surfaces */
  --white:  #FFFFFF;
  --soft:   #EFF4ED;
  --soft-2: #E4ECE1;
  --line:   #D7E2D5;
  --line-dark: rgba(255,255,255,0.14);

  /* On-dark text */
  --on-dark:        #FFFFFF;
  --on-dark-muted:  #C5D2CB;   /* 8.2:1 */
  --on-dark-muted2: #AEBFB6;   /* 6.6:1 */

  --shadow-sm: 0 2px 14px rgba(8,42,26,0.08);
  --shadow-md: 0 14px 40px rgba(8,42,26,0.12);
  --shadow-lg: 0 26px 70px rgba(8,42,26,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--body);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-link); }

/* ---------- accessibility: skip link + focus ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--green); color: #fff; padding: 12px 20px;
  border-radius: var(--radius-sm); font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ---------- shared layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--green-900); color: var(--on-dark); position: relative; overflow: hidden; }

/* signal stripe — refined brand motif (decorative) */
.stripe { display: flex; height: 6px; width: 100%; }
.stripe span { flex: 1; }
.stripe .s-b { background: var(--blue); }
.stripe .s-r { background: var(--red); }
.stripe .s-a { background: var(--amber-soft); }
.stripe .s-l { background: var(--lime); }

/* section heading block */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--green-link);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--lime); border-radius: 2px; }
.section--dark .eyebrow { color: var(--lime-eye); }
.heading {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600; font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04; color: var(--ink); letter-spacing: -0.01em;
}
.heading em { font-style: italic; color: var(--green-link); }
.section--dark .heading { color: var(--on-dark); }
.section--dark .heading em { color: var(--lime-eye); }
.lead { font-size: 19px; line-height: 1.65; color: var(--body); max-width: 56ch; margin-top: 20px; }
.section--dark .lead { color: var(--on-dark-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: all .25s var(--ease);
  min-height: 52px;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--solid { background: var(--green); color: #fff; }
.btn--solid:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--green-link); border-color: var(--green-link); }
.btn--ghost:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }
.btn--light { background: var(--lime); color: var(--green-950); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lightghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--lightghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 28px;
}

/* brand lockup (self-contained, adapts via currentColor) */
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--green); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.brand__mark svg { width: 28px; height: 28px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 23px; letter-spacing: -0.01em; }
.brand__sub { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* real logo image */
.logo { height: 64px; width: auto; display: block; }
.logo-plate {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 14px; padding: 12px 20px;
  box-shadow: var(--shadow-md); text-decoration: none;
}
.logo-plate .logo { height: 42px; }
.hero__panel-brand .logo-plate { padding: 10px 16px; }
.hero__panel-brand .logo-plate .logo { height: 34px; }
.statpanel__top .logo-plate .logo { height: 40px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: inline-block; color: var(--body); text-decoration: none;
  font-weight: 500; font-size: 16px; padding: 9px 14px; border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__links a:hover { background: var(--soft); color: var(--green-link); }
.nav__links a[aria-current="page"] { color: var(--green-link); font-weight: 600; }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 3px; width: 22px; margin: 4px auto 0;
  background: var(--lime); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 600; font-size: 15px; color: var(--muted); white-space: nowrap; }
.nav__btn {
  background: var(--green); color: #fff; text-decoration: none; font-weight: 600;
  font-size: 15px; padding: 11px 22px; border-radius: 999px; transition: all .25s var(--ease);
}
.nav__btn:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.nav__toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line);
  background: var(--white); border-radius: 12px; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; width: 22px; height: 2.5px; background: var(--green); border-radius: 2px; transition: all .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 96px 28px 104px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--green-link);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.hero__eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(165,232,107,0.3); }
.hero__title {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(46px, 6.4vw, 86px); line-height: 0.98;
  color: var(--ink); letter-spacing: -0.02em;
}
.hero__title em { font-style: italic; color: var(--green-link); }
.hero__desc { font-size: 20px; line-height: 1.6; color: var(--body); max-width: 48ch; margin: 26px 0 36px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--line); }
.stat__num { font-family: 'Fraunces', serif; font-weight: 600; font-size: 36px; color: var(--green-link); line-height: 1; }
.stat__num span { color: var(--lime); -webkit-text-fill-color: initial; }
.stat__label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* hero route panel — the signature element */
.hero__panel {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-950) 100%);
  border-radius: 22px; padding: 40px 38px 34px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg); color: var(--on-dark);
}
.hero__panel::before {
  content: ""; position: absolute; width: 360px; height: 360px; top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(165,232,107,0.16), transparent 70%);
}
.hero__panel-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; position: relative; }
.hero__panel-brand .brand__name { color: #fff; font-size: 22px; }
.hero__panel-brand .brand__sub { color: var(--on-dark-muted); }
.hero__panel-brand .brand__mark { background: var(--lime); }
.hero__panel-brand .brand__mark svg path,
.hero__panel-brand .brand__mark svg circle { stroke: var(--green-950); }
.hero__panel-brand .brand__mark svg circle.node { fill: var(--green-950); stroke: none; }

.route { position: relative; width: 100%; height: 188px; margin-bottom: 8px; }
.route svg { width: 100%; height: 100%; overflow: visible; }
.route .route-line { fill: none; stroke: rgba(255,255,255,0.18); stroke-width: 2; }
.route .route-progress {
  fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 8 10; animation: routeMove 3.2s linear infinite;
}
@keyframes routeMove { to { stroke-dashoffset: -180; } }
.route .node { fill: var(--green-900); stroke: var(--lime); stroke-width: 2.5; }
.route .node-pulse { fill: var(--lime); transform-origin: center; animation: nodePulse 2.4s ease-in-out infinite; }
@keyframes nodePulse { 0%,100% { opacity: .35; r: 5; } 50% { opacity: 1; r: 7; } }
.route .port-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1.5px; fill: var(--on-dark-muted); text-transform: uppercase; }

.hero__panel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.panel-card { background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: 12px; padding: 18px 20px; }
.panel-card .pc-num { font-family: 'Fraunces', serif; font-weight: 600; font-size: 30px; color: #fff; line-height: 1; }
.panel-card .pc-num span { color: var(--lime); }
.panel-card .pc-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 8px; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.banner { background: linear-gradient(160deg, var(--green-900) 0%, var(--green-950) 100%); color: var(--on-dark); position: relative; overflow: hidden; }
.banner::before { content: ""; position: absolute; width: 420px; height: 420px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(165,232,107,0.14), transparent 70%); }
.banner__inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 28px 76px; position: relative; }
.banner .eyebrow { color: var(--lime-eye); }
.banner__title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(40px, 5.4vw, 70px); line-height: 1; letter-spacing: -0.02em; }
.banner__title em { font-style: italic; color: var(--lime-eye); }
.banner__desc { font-size: 19px; line-height: 1.6; color: var(--on-dark-muted); max-width: 60ch; margin-top: 20px; }
.crumb { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 18px; }
.crumb a { color: var(--lime-eye); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* ============================================================
   REUSABLE GRIDS / CARDS
   ============================================================ */
.head-block { max-width: 720px; margin-bottom: 56px; }
.head-block.center { margin-inline: auto; text-align: center; }
.head-block.center .eyebrow { justify-content: center; }

/* feature highlights (home) */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__ico { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; font-size: 28px; margin-bottom: 20px; background: var(--soft); }
.feature h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 23px; color: var(--ink); margin-bottom: 10px; }
.feature p { color: var(--body); font-size: 16px; }

/* company / partner cards */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.ecard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ecard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ecard__bar { height: 6px; }
.bar-green  { background: linear-gradient(90deg, var(--green), var(--lime)); }
.bar-blue   { background: linear-gradient(90deg, var(--blue), var(--blue-soft)); }
.bar-amber  { background: linear-gradient(90deg, var(--amber), var(--amber-soft)); }
.bar-teal   { background: linear-gradient(90deg, var(--teal), var(--teal-soft)); }
.bar-violet { background: linear-gradient(90deg, var(--violet), var(--violet-soft)); }
.bar-red    { background: linear-gradient(90deg, var(--red), var(--red-soft)); }
.ecard__body { padding: 32px 30px; flex: 1; display: flex; flex-direction: column; }
.ecard__ico { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; margin-bottom: 20px; }
.ico-green  { background: rgba(20,97,59,0.10); }
.ico-blue   { background: rgba(21,101,192,0.10); }
.ico-amber  { background: rgba(192,122,0,0.12); }
.ico-teal   { background: rgba(0,105,92,0.10); }
.ico-violet { background: rgba(69,39,160,0.10); }
.ico-red    { background: rgba(198,40,40,0.10); }
.ecard h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 28px; letter-spacing: -0.4px; line-height: 1.12; color: var(--ink); margin-bottom: 8px; display: inline-block; position: relative; }
/* catchy gradient company names */
.ecard h3.ttl-green  { background: linear-gradient(95deg, var(--green) 0%, var(--green-link) 45%, var(--lime) 120%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ecard h3.ttl-blue   { background: linear-gradient(95deg, var(--blue) 0%, var(--blue-soft) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ecard h3.ttl-amber  { background: linear-gradient(95deg, var(--amber) 0%, var(--amber-soft) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ecard h3.ttl-teal   { background: linear-gradient(95deg, var(--teal) 0%, var(--teal-soft) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ecard h3.ttl-violet { background: linear-gradient(95deg, var(--violet) 0%, var(--violet-soft) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ecard h3.ttl-red    { background: linear-gradient(95deg, var(--red) 0%, var(--red-soft) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ecard h3::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 3px; width: 0; border-radius: 2px; background: currentColor; opacity: .55; transition: width .35s var(--ease); }
.ecard h3.ttl-green::after  { background: var(--green-link); }
.ecard h3.ttl-blue::after   { background: var(--blue); }
.ecard h3.ttl-amber::after  { background: var(--amber); }
.ecard h3.ttl-teal::after   { background: var(--teal); }
.ecard h3.ttl-violet::after { background: var(--violet); }
.ecard h3.ttl-red::after    { background: var(--red); }
.ecard:hover h3::after { width: 100%; }
.ecard__url { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 1px; display: block; margin-bottom: 16px; }
.u-green { color: var(--green-link); } .u-blue { color: var(--blue); } .u-amber { color: var(--amber-text); }
.u-teal { color: var(--teal); } .u-violet { color: var(--violet); } .u-red { color: var(--red); }
.ecard p { color: var(--body); font-size: 15.5px; margin-bottom: 22px; }
.ecard__list { list-style: none; margin-top: auto; }
.ecard__list li { font-size: 15px; color: var(--body); padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 11px; }
.ecard__list li:last-child { border-bottom: none; }
.ecard__list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--green-link); }
.list-blue li::before { background: var(--blue); }
.list-amber li::before { background: var(--amber); }
.list-teal li::before { background: var(--teal); }
.list-violet li::before { background: var(--violet); }
.list-red li::before { background: var(--red); }
.ecard__foot { padding: 0 30px 28px; }
.ecard__link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; }
.ecard__link .arrow { transition: transform .25s var(--ease); }
.ecard__link:hover .arrow { transform: translateX(5px); }
.link-green { color: var(--green-link); } .link-blue { color: var(--blue); } .link-amber { color: var(--amber-text); }
.link-teal { color: var(--teal); } .link-violet { color: var(--violet); } .link-red { color: var(--red); }

/* partner divider */
.divider-label { display: flex; align-items: center; gap: 20px; justify-content: center; margin: 72px 0 40px; }
.divider-label::before, .divider-label::after { content: ""; height: 1px; flex: 1; max-width: 220px; background: var(--line); }
.divider-pill { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-link); background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 9px 22px; white-space: nowrap; }
.tag {
  position: absolute; top: 18px; right: 18px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--muted);
  background: var(--soft); border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px;
}

/* services grid (dark) */
.srv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.srv {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.srv::after { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.srv:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
.srv:hover::after { transform: scaleX(1); }
.srv.l-b::after { background: var(--blue-soft); }
.srv.l-r::after { background: var(--red-soft); }
.srv.l-a::after { background: var(--amber-soft); }
.srv.l-l::after { background: var(--lime); }
.srv__ico { font-size: 32px; margin-bottom: 16px; }
.srv h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: 0.5px; color: #fff; margin-bottom: 10px; }
.srv p { font-size: 15px; color: var(--on-dark-muted); line-height: 1.6; }

/* two-column layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--narrow { gap: 56px; }

/* about visual */
.figure {
  position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background: linear-gradient(150deg, var(--green-900), var(--green) 55%, #1d8a55);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.figure::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(165,232,107,0.18), transparent 55%); }
.figure__inner { position: relative; text-align: center; color: #fff; padding: 24px; }
.figure__globe { width: 130px; height: 130px; margin: 0 auto 22px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; font-size: 60px; box-shadow: 0 0 50px rgba(165,232,107,0.25); }
.figure__tag { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 4px; text-transform: uppercase; line-height: 1.5; }
.figure__badge { position: absolute; bottom: -22px; right: -18px; background: #fff; border-radius: 14px; padding: 20px 26px; box-shadow: var(--shadow-md); border-left: 5px solid var(--lime); }
.figure__badge b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 38px; color: var(--green-link); display: block; line-height: 1; }
.figure__badge span { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(20,97,59,0.07); border: 1px solid rgba(20,97,59,0.16); font-weight: 600; font-size: 14px; color: var(--green-link); }
.chip::before { content: "✓"; color: var(--green); font-weight: 800; }

/* pillars */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: all .25s var(--ease); }
.pillar:hover { border-color: var(--green-link); background: var(--soft); transform: translateY(-3px); }
.pillar__ico { font-size: 26px; flex-shrink: 0; }
.pillar b { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.pillar span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* why feature rows */
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.why-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: all .25s var(--ease); }
.why-row:hover { border-color: var(--lime); background: var(--soft); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.why-row__ico { width: 50px; height: 50px; flex-shrink: 0; border-radius: 50%; background: rgba(20,97,59,0.08); display: grid; place-items: center; font-size: 22px; }
.why-row b { display: block; font-size: 18px; color: var(--ink); margin-bottom: 5px; }
.why-row p { font-size: 15px; color: var(--body); line-height: 1.55; }

/* stat panel (dark) */
.statpanel { background: linear-gradient(160deg, var(--green-900), var(--green-950)); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.statpanel__top { display: grid; place-items: center; padding: 44px 30px 30px; }
.statpanel__top .brand__mark { width: 64px; height: 64px; background: var(--lime); }
.statpanel__top .brand__mark svg { width: 38px; height: 38px; }
.statpanel__top .brand__mark svg path, .statpanel__top .brand__mark svg circle { stroke: var(--green-950); }
.statpanel__top .brand__mark svg circle.node { fill: var(--green-950); stroke: none; }
.statgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); }
.statgrid > div { background: var(--green-900); padding: 28px 20px; text-align: center; }
.statgrid .n { font-family: 'Fraunces', serif; font-weight: 600; font-size: 40px; color: #fff; line-height: 1; }
.statgrid .n span { color: var(--lime); }
.statgrid .l { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 8px; }

/* ============================================================
   CONTACT + FORM
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; }
.ci-row__ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: rgba(20,97,59,0.08); display: grid; place-items: center; font-size: 20px; }
.ci-row b { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-link); margin-bottom: 5px; }
.ci-row span, .ci-row a { font-size: 16px; color: var(--body); line-height: 1.6; }
.ci-row a { text-decoration: none; }
.ci-row a:hover { color: var(--green-link); text-decoration: underline; }
.linkchips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.linkchip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none; border: 1px solid; transition: all .25s var(--ease); }
.linkchip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.lc-g { color: var(--green-link); border-color: rgba(20,97,59,0.3); background: rgba(20,97,59,0.05); }
.lc-b { color: var(--blue); border-color: rgba(21,101,192,0.3); background: rgba(21,101,192,0.05); }
.lc-a { color: var(--amber-text); border-color: rgba(192,122,0,0.35); background: rgba(192,122,0,0.06); }
.lc-t { color: var(--teal); border-color: rgba(0,105,92,0.3); background: rgba(0,105,92,0.05); }
.lc-v { color: var(--violet); border-color: rgba(69,39,160,0.3); background: rgba(69,39,160,0.05); }

.formcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.formcard__top { height: 6px; }
.formcard__body { padding: 40px 38px; }
.formcard__body h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 28px; color: var(--ink); margin-bottom: 8px; }
.formcard__body .req-note { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.fg { margin-bottom: 20px; }
/* anti-spam honeypot: kept off-screen so bots fill it but humans never see it */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.fg label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--body); margin-bottom: 8px; }
.fg label .star { color: var(--red); }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--soft); border: 1.5px solid var(--line); color: var(--ink);
  padding: 14px 16px; font-family: 'Inter', sans-serif; font-size: 16px; border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.fg input::placeholder, .fg textarea::placeholder { color: #6f8378; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green-link); background: #fff; box-shadow: 0 0 0 4px rgba(20,97,59,0.12); outline: none;
}
.fg textarea { min-height: 120px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-alert { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 15px; margin-bottom: 18px; background: rgba(198,40,40,0.07); border: 1px solid rgba(198,40,40,0.3); color: var(--red); }
.form-success { display: none; text-align: center; padding: 30px 16px; }
.form-success .check { font-size: 46px; margin-bottom: 12px; }
.form-success b { display: block; color: var(--green-link); font-size: 20px; margin-bottom: 8px; font-family: 'Fraunces', serif; }
.form-success p { color: var(--muted); font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.spinner { width: 16px; height: 16px; border: 2.5px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.or-sep { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.or-sep::before, .or-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.or-sep span { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 2px; color: var(--muted); }
.wa-row { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 14px; text-decoration: none; border: 1.5px solid rgba(37,211,102,0.45); background: rgba(37,211,102,0.06); border-radius: var(--radius-sm); font-weight: 600; font-size: 16px; color: var(--ink); transition: all .25s var(--ease); }
.wa-row:hover { background: rgba(37,211,102,0.13); }
.wa-row .sub { color: var(--muted); font-weight: 500; font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-950); color: var(--on-dark); padding: 72px 0 30px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(165,232,107,0.07), transparent 70%); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); position: relative; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: var(--on-dark-muted); }
.footer-brand p { color: var(--on-dark-muted); font-size: 15px; margin-top: 20px; max-width: 38ch; }
.footer-col h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--lime-eye); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--on-dark-muted); text-decoration: none; font-size: 15px; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.wa-foot { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.wa-foot__ico { flex-shrink: 0; color: #25D366; }
.wa-foot:hover { text-decoration: none; }
.wa-foot:hover span { text-decoration: underline; }
.tel-foot { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.tel-foot__ico { flex-shrink: 0; color: var(--lime-eye); }
.tel-foot:hover { text-decoration: none; }
.tel-foot:hover span { text-decoration: underline; }
.foot-office { display: flex; align-items: flex-start; gap: 8px; }
.foot-office .tel-foot__ico { flex-shrink: 0; margin-top: 3px; color: var(--lime-eye); }
.foot-office__nums { display: flex; flex-direction: column; gap: 4px; }
.foot-office__nums a { white-space: nowrap; }
.foot-office__nums em { font-style: normal; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-muted2); margin-top: 2px; }
.footer-bottom { max-width: var(--maxw); margin: 26px auto 0; padding: 0 28px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; position: relative; }
.footer-bottom span { color: var(--on-dark-muted2); font-size: 14px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
body.js-ready .reveal { opacity: 0; transform: translateY(26px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 18px 28px 24px; box-shadow: var(--shadow-md);
  }
  .nav__links.open a { padding: 12px 14px; font-size: 17px; }
  .nav__links.open a[aria-current="page"]::after { margin: 4px 0 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 28px 80px; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav { padding: 14px 18px; }
  .container { padding: 0 18px; }
  .brand__sub { display: none; }
  .feature-grid, .card-grid-3, .card-grid-4, .card-grid-2, .srv-grid, .pillars, .footer-grid { grid-template-columns: 1fr; }
  .statgrid { grid-template-columns: 1fr 1fr; }
  .hero__panel-cards { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 18px 28px; }
  .figure__badge { right: 0; bottom: 0; }
  .banner__inner { padding: 56px 18px 60px; }
  .formcard__body { padding: 30px 22px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (max-width: 640px) {
  .logo { height: 52px; }
  .logo-plate { padding: 10px 16px; }
}

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