/* ============================================================
   SECTION 1 — CORE DESIGN SYSTEM (was styles.css)
   ============================================================ */
/* ============================================================
   EvonticTech — Shared Stylesheet
   Design system: "Hybrid Split" (dark hero/footer + light body)
   Reused across every page of the site.
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand */
  --blue:        #0F72D4;
  --blue-deep:   #0A57A8;
  --blue-soft:   #4FA0F0;
  --green:       #84DA5E;
  --green-deep:  #5FB83E;

  /* Ink / dark surfaces */
  --ink-950:     #03101F;
  --ink-900:     #071A30;
  --ink-850:     #09213C;
  --ink-800:     #0D2A4A;
  --ink-700:     #12365C;

  /* Light surfaces */
  --paper:       #F5F8FC;
  --paper-2:     #EAF1FA;
  --white:       #FFFFFF;

  /* Text */
  --text-dark:   #0B1F38;
  --text-body:   #44566E;
  --text-faint:  #7C8BA0;
  --text-light:  #EAF2FB;
  --text-dim:    #9DB4D0;

  /* Effects */
  --grad-bg:     linear-gradient(120deg, var(--blue) 0%, var(--green) 100%);
  --grad-text:   linear-gradient(100deg, var(--blue-soft) 0%, var(--green) 90%);
  --shadow-sm:   0 4px 14px rgba(9, 33, 60, .06);
  --shadow-md:   0 14px 40px rgba(9, 33, 60, .10);
  --shadow-lg:   0 30px 70px rgba(9, 33, 60, .16);
  --shadow-glow: 0 18px 50px rgba(15, 114, 212, .35);

  /* Layout */
  --maxw:        1240px;
  --radius:      18px;
  --radius-sm:   12px;
  --gap:         clamp(1rem, 2.4vw, 1.6rem);
  --header-h:    84px;

  /* Type */
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif:'Cormorant Garamond', Georgia, serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 2.4rem); }
.section { position: relative; padding-block: clamp(3rem, 5.2vw, 5rem); }
.section--dark { background: var(--ink-900); color: var(--text-light); }
.section--light { background: var(--paper); }
.section--white { background: var(--white); }

/* ---------- 4. Typography ---------- */
h1,h2,h3,h4 { color: var(--text-dark); line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--grad-bg); border-radius: 2px; }
.section--dark .eyebrow { color: var(--green); }

.h-display { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.h-section { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--text-body); max-width: 60ch; }
.section--dark .lead { color: var(--text-dim); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: 0; }

.section-head { max-width: 760px; margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-section { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  --bx: 0;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .92rem 1.7rem; border-radius: 100px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
  transform: translate(var(--bx), 0);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-bg); color: #042; color: #06240a; box-shadow: var(--shadow-glow); }
.btn-primary:hover { box-shadow: 0 24px 60px rgba(15,114,212,.5); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.13); border-color: rgba(132,218,94,.6); }
.btn-light { background: var(--ink-900); color: #fff; box-shadow: var(--shadow-md); }
.btn-light:hover { background: var(--blue); }
.btn-outline { border: 1.5px solid rgba(11,31,56,.18); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(7, 26, 48, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(3,16,31,.4);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem,5vw,2.4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: flex; align-items: center; gap: .7rem; font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: #fff; }
.logo .mark { width: 38px; height: 38px; flex: none; }
.logo-img { height: 58px; width: auto; display: block; transition: height .4s var(--ease); }
.site-header.scrolled .logo-img { height: 46px; }
.footer-brand .logo-img { height: 62px; }
.logo .evon { color: #fff; }
.logo .tech { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { color: var(--text-light); font-weight: 600; font-size: .95rem; position: relative; padding-block: .3rem; transition: color .25s; }
.nav-links a::after { content:""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--grad-bg); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* dropdown */
.has-drop { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: .35rem; }
.drop-toggle svg { width: 14px; height: 14px; transition: transform .3s; }
.has-drop:hover .drop-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 270px; background: rgba(9,33,60,.96); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: .6rem;
  box-shadow: 0 30px 60px rgba(3,16,31,.55);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s var(--ease), transform .28s var(--ease); transition-delay: 0.15s;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.dropdown a { display: flex; align-items: center; gap: .7rem; padding: .65rem .8rem; border-radius: 10px; font-size: .9rem; color: var(--text-dim); transition: background .22s, color .22s; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(255,255,255,.06); color: #fff; }
.dropdown a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-bg); flex: none; }

/* categorized mega menu */
.dropdown.mega {
  left: auto; right: 0; transform: translateY(12px);
  min-width: 540px; padding: 1.1rem 1.1rem .9rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 1.2rem;
}
.has-drop:hover .dropdown.mega { transform: translateY(0); transition-delay: 0s; }
.drop-group { display: flex; flex-direction: column; }
.drop-head {
  font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--green); padding: .55rem .8rem .3rem; display: flex; align-items: center; gap: .45rem;
}
.drop-head::before { content:""; width: 14px; height: 2px; background: var(--grad-bg); border-radius: 2px; }
.dropdown.mega a { font-size: .88rem; padding: .5rem .8rem; }

.header-cta { display: inline-flex; }
.header-cta .btn { padding: .7rem 1.3rem; font-size: .9rem; }

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

/* mobile drawer */
.drawer { position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 99;
  background: linear-gradient(160deg, var(--ink-900), var(--ink-950));
  padding: calc(var(--header-h) + 1rem) 1.8rem 2rem; transform: translateX(105%);
  transition: transform .5s var(--ease); box-shadow: -30px 0 80px rgba(0,0,0,.5);
  display: flex; flex-direction: column; gap: .3rem; overflow-y: auto; }
body.menu-open .drawer { transform: translateX(0); }
.drawer a { color: var(--text-light); font-weight: 700; font-size: 1.15rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.drawer .sub { font-size: .98rem; font-weight: 600; color: var(--text-dim); padding-left: 1rem; }
.drawer .drawer-head { color: var(--green); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; padding: 1rem 0 .3rem; border: none; }
.drawer .btn { margin-top: 1.4rem; justify-content: center; }
.overlay { position: fixed; inset: 0; background: rgba(3,16,31,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; z-index: 98; transition: opacity .4s; }
body.menu-open .overlay { opacity: 1; visibility: visible; }

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(165deg, var(--ink-950) 0%, var(--ink-850) 55%, var(--ink-900) 100%);
  color: var(--white); overflow: hidden; padding-block: 7rem 3rem;
}
#hero-net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .85; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }
.orb-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(15,114,212,.55), transparent 70%); top: -120px; right: -60px; animation: float1 16s ease-in-out infinite; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(132,218,94,.32), transparent 70%); bottom: -120px; left: -80px; animation: float2 19s ease-in-out infinite; }
.hero-grid-overlay { position:absolute; inset:0; z-index:1; opacity:.4; pointer-events:none;
  background-image: linear-gradient(rgba(79,160,240,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(79,160,240,.07) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(120% 80% at 50% 30%, #000 30%, transparent 80%); }

.hero .container { position: relative; z-index: 3; }
.hero-inner { max-width: 880px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem; padding: .5rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  font-size: .82rem; font-weight: 600; color: var(--text-light); margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(132,218,94,.7); animation: pulse 2.2s infinite; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.12; letter-spacing: -.03em; color: #E9F1FC; }
.hero h1 .line { display: block; padding-bottom: .04em; }
.hero p.lead { margin-top: 1.6rem; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #C8DAF0; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.4rem,4vw,3.4rem); margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat .num { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero-stat .num .suffix { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat .label { font-size: .82rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin-top: .25rem; }

/* hero word reveal */
.hero h1 .reveal-word { display: inline-block; transform: translateY(.5em); opacity: 0; }
.hero.loaded h1 .reveal-word { animation: wordUp .9s var(--ease) forwards; }

/* ---------- Section dividers (dark <-> light) ---------- */
.divider { position: relative; line-height: 0; }
.divider svg { width: 100%; height: clamp(38px, 4.5vw, 72px); display: block; }
.divider--down svg path { fill: var(--paper); }       /* sits at bottom of dark section */
.divider--up   svg path { fill: var(--ink-900); }      /* sits at bottom of light section into dark */

/* ============================================================
   8. SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.service-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.7rem 1.8rem; box-shadow: var(--shadow-sm);
  border: 1px solid #E6EDF6; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.service-card::before { content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-bg); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.service-card::after { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(15,114,212,.08), transparent 55%); opacity: 0; transition: opacity .45s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.3rem;
  background: linear-gradient(145deg, rgba(15,114,212,.12), rgba(132,218,94,.14));
  color: var(--blue); transition: transform .45s var(--ease), background .45s, color .45s;
}
.svc-icon svg { width: 28px; height: 28px; }
.service-card:hover .svc-icon { background: var(--grad-bg); color: #06240a; transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-size: 1.18rem; margin-bottom: .55rem; letter-spacing: -.01em; }
.service-card p { font-size: .92rem; color: var(--text-body); line-height: 1.6; }
.svc-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.2rem; font-weight: 700; font-size: .86rem; color: var(--blue); }
.svc-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.service-card:hover .svc-link svg { transform: translateX(4px); }
.svc-num { position: absolute; top: 1.4rem; right: 1.5rem; font-size: .8rem; font-weight: 800; color: #D4E0EE; letter-spacing: .05em; }

/* ============================================================
   9. WHO WE ARE
   ============================================================ */
.who { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.who-visual { position: relative; }
.who-visual .frame {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/4.4;
  background: linear-gradient(160deg, var(--ink-850), var(--ink-950));
  position: relative; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
}
.who-visual .frame .glow-net { position: absolute; inset: 0; opacity: .9; }
.who-visual .badge-float {
  position: absolute; background: var(--white); border-radius: 16px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .8rem;
}
.badge-float .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-bg); display: grid; place-items: center; color: #06240a; flex: none; }
.badge-float .ic svg { width: 22px; height: 22px; }
.badge-float .t { font-weight: 800; color: var(--text-dark); font-size: 1.05rem; line-height: 1; }
.badge-float .s { font-size: .76rem; color: var(--text-faint); }
.badge-a { top: 1.4rem; left: -1.4rem; animation: bob 5s ease-in-out infinite; }
.badge-b { bottom: 1.6rem; right: -1.2rem; animation: bob 6s ease-in-out infinite .6s; }

.who-body .h-section { margin-block: 1rem 1.3rem; }
.who-feature-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.who-feature { display: flex; gap: .9rem; align-items: flex-start; }
.who-feature .check { width: 26px; height: 26px; border-radius: 8px; background: rgba(132,218,94,.18); color: var(--green-deep); display: grid; place-items: center; flex: none; margin-top: 2px; }
.who-feature .check svg { width: 15px; height: 15px; }
.who-feature b { color: var(--text-dark); font-weight: 800; }
.who-feature p { font-size: .94rem; }

/* ============================================================
   10. VISION & MISSION
   ============================================================ */
.vm-wrap { position: relative; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.vm-card {
  position: relative; border-radius: 22px; padding: clamp(2rem, 3.5vw, 3rem);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s;
}
.vm-card:hover { transform: translateY(-6px); border-color: rgba(132,218,94,.4); }
.vm-card .vm-ic { width: 64px; height: 64px; border-radius: 18px; background: var(--grad-bg); display: grid; place-items: center; color: #06240a; margin-bottom: 1.4rem; }
.vm-card .vm-ic svg { width: 32px; height: 32px; }
.vm-card h3 { font-size: 1.6rem; margin-bottom: .9rem; color: #fff; }
.vm-card p { color: var(--text-dim); font-size: 1rem; }
.vm-card .vm-quote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--green); line-height: 1.4; margin-top: 1.2rem; }
.vm-card .ghost-num { position: absolute; right: 1.4rem; bottom: -1rem; font-size: 7rem; font-weight: 800; color: rgba(255,255,255,.04); line-height: 1; }

/* ============================================================
   11. WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.why-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem 1.9rem; box-shadow: var(--shadow-sm); border: 1px solid #E9EFF7; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .why-ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.3rem; background: linear-gradient(145deg, var(--ink-900), var(--ink-800)); color: var(--green); }
.why-card .why-ic svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.why-card p { font-size: .94rem; }

.why-banner {
  margin-top: clamp(2.4rem,5vw,3.5rem); border-radius: var(--radius);
  background: linear-gradient(120deg, var(--ink-900), var(--ink-850));
  padding: clamp(2rem,4vw,3rem); display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.why-banner::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 90% 0%, rgba(132,218,94,.18), transparent 50%); pointer-events: none; }
.why-stat { position: relative; text-align: center; }
.why-stat .num { font-size: clamp(2rem,3.4vw,2.8rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.why-stat .num .suffix { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why-stat .label { color: var(--text-dim); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin-top: .4rem; }

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.tst-card { background: var(--white); border-radius: var(--radius); padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm); border: 1px solid #E9EFF7; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tst-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tst-quote-mark { font-family: var(--serif); font-size: 4.5rem; line-height: .6; color: var(--blue); opacity: .18; height: 30px; }
.tst-stars { display: flex; gap: 3px; margin: .4rem 0 1rem; color: #F6B73C; }
.tst-stars svg { width: 17px; height: 17px; }
.tst-card p.quote { color: var(--text-dark); font-size: 1.02rem; line-height: 1.6; font-weight: 500; }
.tst-author { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid #EDF2F8; }
.tst-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-bg); display: grid; place-items: center; font-weight: 800; color: #06240a; flex: none; }
.tst-author .name { font-weight: 800; color: var(--text-dark); font-size: .98rem; }
.tst-author .role { font-size: .82rem; color: var(--text-faint); }

/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--ink-950), var(--ink-850)); }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb.a { width: 420px; height: 420px; background: radial-gradient(circle, rgba(15,114,212,.5), transparent 70%); top: -160px; left: -60px; }
.cta-orb.b { width: 380px; height: 380px; background: radial-gradient(circle, rgba(132,218,94,.35), transparent 70%); bottom: -160px; right: -40px; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(2rem,4.6vw,3.4rem); color: #fff; }
.cta-inner p { color: var(--text-dim); margin-top: 1.1rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer { background: var(--ink-950); color: var(--text-dim); padding-top: clamp(3.5rem,6vw,5.5rem); position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(1.6rem,3vw,3rem); padding-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1.2rem; }
.footer-brand p { font-size: .94rem; max-width: 34ch; color: var(--text-dim); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--text-light); transition: transform .3s var(--ease), background .3s, color .3s; }
.footer-social a:hover { background: var(--grad-bg); color: #06240a; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .93rem; color: var(--text-dim); transition: color .25s, padding-left .25s; display: inline-flex; align-items: center; gap: .4rem; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: .7rem; font-size: .93rem; margin-bottom: .9rem; align-items: flex-start; }
.footer-contact .ic { color: var(--green); margin-top: 3px; flex: none; }
.footer-contact .ic svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   15. SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform, opacity; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-blur] { filter: blur(8px); }
[data-reveal][data-blur].in { filter: blur(0); }

/* ============================================================
   16. KEYFRAMES
   ============================================================ */
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(132,218,94,.6);} 70%{box-shadow:0 0 0 12px rgba(132,218,94,0);} 100%{box-shadow:0 0 0 0 rgba(132,218,94,0);} }
@keyframes float1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-30px,30px);} }
@keyframes float2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(30px,-26px);} }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }

/* ============================================================
   17. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .tst-grid { grid-template-columns: repeat(2,1fr); }
  .why-banner { grid-template-columns: repeat(2,1fr); row-gap: 2rem; }
}
@media (max-width: 920px){
  .nav-links, .header-cta { display: none; }
  .burger { display: block; }
  .who { grid-template-columns: 1fr; }
  .who-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .vm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .services-grid, .why-grid, .tst-grid { grid-template-columns: 1fr; }
  .why-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-stats { gap: 1.4rem 2rem; }
  .badge-a { left: 0; } .badge-b { right: 0; }
}
@media (max-width: 420px){
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   18. ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero .reveal-word { opacity: 1 !important; transform: none !important; }
}

/* ---------- Global icon SVG overflow guard ---------- */
/* Prevents img,svg{max-width:100%} from overriding icon sizes inside fixed containers */
.svc-icon, .cap-ic, .why-ic, .v-ic, .vm-ic, .r-ic,
.badge-float .ic, .who-feature .check, .tst-stars,
.footer-social a, .footer-contact .ic,
.hip-card .hip-ic, .hip-bottom .hip-ic-lg,
.subsvc-head .ss-ic, .wtype-card .wt-ic,
.c-ic, .m-ic, .tl-dot, .ch,
.contact-card .c-ic, .value-card .v-ic {
  overflow: hidden;
}
.svc-icon svg, .cap-ic svg, .why-ic svg, .v-ic svg,
.vm-ic svg, .r-ic svg, .wt-ic svg, .ss-ic svg {
  flex-shrink: 0; max-width: none;
}


/* ============================================================
   SECTION 2 — SERVICE PAGE COMPONENTS (was service.css)
   ============================================================ */
/* ============================================================
   EvonticTech — Service Pages Stylesheet
   Loaded AFTER styles.css. Shared by all 8 service pages.
   Reuses the core design system; adds page-specific components.
   ============================================================ */

/* ---------- Image placeholder (swap for real photo later) ---------- */
.img-ph {
  position: relative; width: 100%; height: 100%; min-height: 260px; border-radius: 18px;
  border: 1.5px dashed rgba(255,255,255,.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem;
  text-align: center; padding: 1.8rem;
  background: radial-gradient(120% 90% at 50% 0%, rgba(15,114,212,.12), transparent 62%);
}
.img-ph .ph-ic { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-bg); display: grid; place-items: center; color: #06240a; }
.img-ph .ph-ic svg { width: 28px; height: 28px; }
.img-ph .ph-label { font-weight: 800; color: #fff; font-size: 1rem; }
.img-ph .ph-sub { font-size: .82rem; color: var(--text-dim); max-width: 32ch; line-height: 1.5; }
.img-ph .ph-dim { font-size: .68rem; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; margin-top: .35rem; padding: .25rem .7rem; border: 1px solid rgba(255,255,255,.15); border-radius: 100px; }

/* ---------- Hero icon panel (replaces image/SVG in hero right col) ---------- */
.hero-icon-panel {
  border-radius: 22px; padding: 2rem;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.hip-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hip-card {
  border-radius: 16px; padding: 1.4rem 1.2rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: border-color .35s, background .35s;
}
.hip-card:hover { background: rgba(255,255,255,.07); border-color: rgba(132,218,94,.35); }
.hip-card .hip-ic {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-bg); color: #06240a; margin-bottom: .9rem; overflow: hidden;
}
.hip-card .hip-ic svg { width: 22px; height: 22px; max-width: 22px; flex-shrink: 0; }
.hip-card .hip-label { font-weight: 800; font-size: .95rem; color: #fff; line-height: 1.25; }
.hip-card .hip-sub { font-size: .78rem; color: var(--text-dim); margin-top: .3rem; }
.hip-bottom {
  border-radius: 14px; padding: 1.2rem 1.4rem;
  background: rgba(15,114,212,.12); border: 1px solid rgba(15,114,212,.25);
  display: flex; align-items: center; gap: 1rem;
}
.hip-bottom .hip-ic-lg {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-bg); color: #06240a; flex: none; overflow: hidden;
}
.hip-bottom .hip-ic-lg svg { width: 26px; height: 26px; max-width: 26px; flex-shrink: 0; }
.hip-bottom .hip-big { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hip-bottom .hip-desc { font-size: .82rem; color: var(--text-dim); margin-top: .15rem; }

/* ---------- Full-width hero (no right column) — text-centred ---------- */
.svc-hero-full { max-width: 820px; }
.svc-hero-full h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
.svc-hero-full .tagline { max-width: 62ch; }


.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-dim); margin-bottom: 1.4rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-dim); transition: color .25s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--white); font-weight: 600; }

/* ---------- Service hero (split) ---------- */
.svc-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--ink-950) 0%, var(--ink-850) 55%, var(--ink-900) 100%);
  color: var(--white); padding-block: calc(var(--header-h) + 3.2rem) 4.5rem;
}
.svc-hero .container { position: relative; z-index: 3; }
.svc-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.svc-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.12; color: #E9F1FC; margin: 1rem 0 1.1rem; letter-spacing: -.025em; }
.svc-hero .tagline { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: #C8DAF0; max-width: 52ch; }
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.svc-hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; }
.svc-hero-chips span {
  display: inline-flex; align-items: center; gap: .45rem; padding: .42rem .85rem; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: var(--text-light);
}
.svc-hero-chips svg { width: 14px; height: 14px; color: var(--green); }

/* hero visual card */
.svc-hero-visual { position: relative; }
.svc-hero-visual .viz-card {
  position: relative; border-radius: 22px; padding: 1.6rem; aspect-ratio: 1/1;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg); overflow: hidden;
}
.svc-hero-visual .viz-card svg { width: 100%; height: 100%; }
.svc-hero-visual .scan-ring { transform-origin: center; animation: spin 14s linear infinite; }
.svc-hero-visual .scan-ring.rev { animation-duration: 22s; animation-direction: reverse; }

/* ---------- Capabilities grid (reuses .service-card look via .cap-card) ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.cap-card {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid #E6EDF6; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.cap-card::before { content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-bg); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.cap-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cap-card:hover::before { transform: scaleY(1); }
.cap-card .cap-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(145deg, rgba(15,114,212,.12), rgba(132,218,94,.14)); color: var(--blue); transition: background .4s, color .4s, transform .4s var(--ease); }
.cap-card .cap-ic svg { width: 26px; height: 26px; }
.cap-card:hover .cap-ic { background: var(--grad-bg); color: #06240a; transform: rotate(-6deg); }
.cap-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.cap-card p { font-size: .9rem; color: var(--text-body); line-height: 1.55; }

/* ---------- Process / methodology steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; counter-reset: step; position: relative; }
.proc-step { position: relative; background: var(--white); border-radius: var(--radius); padding: 1.7rem 1.4rem; box-shadow: var(--shadow-sm); border: 1px solid #E9EFF7; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.proc-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.proc-step .step-no { font-size: .8rem; font-weight: 800; letter-spacing: .08em; color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(15,114,212,.12), rgba(132,218,94,.14)); margin-bottom: 1rem; }
.proc-step h3 { font-size: 1.05rem; margin-bottom: .45rem; color: var(--text-dark); }
.proc-step p { font-size: .88rem; color: var(--text-body); }
.proc-step .connector { position: absolute; top: 38px; right: -.6rem; width: 1.2rem; height: 2px; background: linear-gradient(90deg, var(--green), transparent); z-index: 2; }
.proc-step:last-child .connector { display: none; }

/* ---------- Compliance / industries badges ---------- */
.badges-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.badge-chip {
  display: inline-flex; align-items: center; gap: .55rem; padding: .65rem 1.15rem; border-radius: 100px;
  background: var(--white); border: 1px solid #E2EAF4; box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: .9rem; color: var(--text-dark); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.badge-chip:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.badge-chip .bdot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-bg); }
.section--dark .badge-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: var(--text-light); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: .9rem; }
.faq details {
  background: var(--white); border: 1px solid #E6EDF6; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: rgba(15,114,212,.35); box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700; font-size: 1.02rem; color: var(--text-dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-ic { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(15,114,212,.12), rgba(132,218,94,.14)); color: var(--blue); transition: transform .35s var(--ease), background .35s, color .35s; }
.faq summary .q-ic svg { width: 16px; height: 16px; }
.faq details[open] summary .q-ic { transform: rotate(135deg); background: var(--grad-bg); color: #06240a; }
.faq .faq-body { padding: 0 1.5rem 1.35rem; color: var(--text-body); font-size: .96rem; line-height: 1.65; }
.faq .faq-body p { margin-top: 0; }

/* ---------- Related services ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.related-card { display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.4rem; background: var(--white); border-radius: var(--radius-sm); border: 1px solid #E6EDF6; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.related-card .r-ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(145deg, var(--ink-900), var(--ink-800)); color: var(--green); }
.related-card .r-ic svg { width: 22px; height: 22px; }
.related-card .r-t { font-weight: 800; color: var(--text-dark); font-size: .98rem; }
.related-card .r-s { font-size: .82rem; color: var(--text-faint); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-step .connector { display: none; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px){
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-visual { max-width: 420px; margin-inline: auto; order: -1; }
}
@media (max-width: 600px){
  .cap-grid, .process-grid { grid-template-columns: 1fr; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){
  .svc-hero-visual .scan-ring { animation: none !important; }
}

/* ============================================================
   Extra components for SEO & WordPress service pages
   ============================================================ */

/* ---------- Sub-service groups (detailed breakdown) ---------- */
.subsvc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.subsvc-card {
  background: var(--white); border: 1px solid #E6EDF6; border-radius: var(--radius);
  padding: 1.9rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.subsvc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.subsvc-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.subsvc-head .ss-ic { width: 48px; height: 48px; border-radius: 13px; flex: none; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(145deg, rgba(15,114,212,.12), rgba(132,218,94,.14)); color: var(--blue); transition: background .4s, color .4s; }
.subsvc-head .ss-ic svg { width: 24px; height: 24px; max-width: 24px; flex-shrink: 0; }
.subsvc-card:hover .ss-ic { background: var(--grad-bg); color: #06240a; }
.subsvc-head h3 { font-size: 1.18rem; }
.subsvc-list { display: grid; gap: .6rem; }
.subsvc-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: var(--text-body); }
.subsvc-list li .tick { width: 19px; height: 19px; border-radius: 6px; flex: none; margin-top: 2px; display: grid; place-items: center;
  background: rgba(132,218,94,.18); color: var(--green-deep); }
.subsvc-list li .tick svg { width: 12px; height: 12px; }

/* ---------- Website-type cards (WordPress) ---------- */
.wtype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.wtype-card {
  position: relative; border-radius: var(--radius); padding: 2rem 1.8rem; overflow: hidden;
  background: var(--white); border: 1px solid #E9EFF7; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.wtype-card::after { content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background: var(--grad-bg); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.wtype-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.wtype-card:hover::after { transform: scaleX(1); }
.wtype-card .wt-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(145deg, var(--ink-900), var(--ink-800)); color: var(--green); overflow: hidden; }
.wtype-card .wt-ic svg { width: 27px; height: 27px; max-width: 27px; flex-shrink: 0; }
.wtype-card h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.wtype-card p { font-size: .92rem; color: var(--text-body); }

@media (max-width: 920px){ .subsvc-grid { grid-template-columns: 1fr; } .wtype-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .wtype-grid { grid-template-columns: 1fr; } }


/* ============================================================
   SECTION 3 — ABOUT & CONTACT COMPONENTS (was about-contact.css)
   ============================================================ */
/* ============================================================
   EvonticTech — About & Contact Pages Stylesheet
   Loaded AFTER styles.css. Adds page-specific components only.
   ============================================================ */

/* ---------- Compact page hero (shared by About + Contact) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--ink-950) 0%, var(--ink-850) 55%, var(--ink-900) 100%);
  color: var(--white); padding-block: calc(var(--header-h) + 3rem) 3.5rem;
  text-align: center;
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.12; color: #E9F1FC; margin: 1rem auto .9rem; max-width: 16ch; letter-spacing: -.025em; }
.page-hero .lead { color: #C8DAF0; max-width: 56ch; margin-inline: auto; }

/* Breadcrumb (base) */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-dim); margin-bottom: 1.4rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-dim); transition: color .25s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--white); font-weight: 600; }
.page-hero .breadcrumb { justify-content: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Intro statement band */
.about-statement { max-width: 920px; margin-inline: auto; text-align: center; }
.about-statement .big {
  font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.4;
  color: var(--text-dark); letter-spacing: -.01em;
}
.about-statement .big .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Story two-column */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.story-stat {
  background: var(--white); border: 1px solid #E6EDF6; border-radius: var(--radius);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.story-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-stat .s-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; color: var(--text-dark); }
.story-stat .s-num .suffix { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.story-stat .s-label { font-size: .85rem; color: var(--text-faint); font-weight: 600; margin-top: .3rem; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.value-card {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem;
  border: 1px solid #E9EFF7; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 100% 0%, rgba(15,114,212,.07), transparent 55%); opacity:0; transition: opacity .4s; }
.value-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.value-card:hover::before { opacity: 1; }
.value-card .v-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(145deg, rgba(15,114,212,.12), rgba(132,218,94,.14)); color: var(--blue); position: relative; z-index: 1; }
.value-card .v-ic svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.18rem; margin-bottom: .55rem; position: relative; z-index: 1; }
.value-card p { font-size: .94rem; color: var(--text-body); position: relative; z-index: 1; }

/* Approach timeline (vertical, alternating) */
.timeline { max-width: 860px; margin-inline: auto; position: relative; }
.timeline::before { content:""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--blue), var(--green)); opacity: .35; }
.tl-item { position: relative; padding-left: 76px; padding-bottom: 2.2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 16px;
  background: var(--ink-900); color: var(--green); display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(9,33,60,.18); z-index: 2;
}
.section--dark .tl-dot { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.tl-item h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.tl-item p { font-size: .96rem; color: var(--text-body); max-width: 56ch; }
.section--dark .tl-item p { color: var(--text-dim); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

/* Contact info column */
.contact-info { display: grid; gap: 1rem; }
.contact-card {
  display: flex; gap: 1.1rem; align-items: flex-start; background: var(--white);
  border: 1px solid #E6EDF6; border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card .c-ic { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: var(--grad-bg); color: #06240a; }
.contact-card .c-ic svg { width: 24px; height: 24px; }
.contact-card .c-label { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: .35rem; }
.contact-card .c-value { font-weight: 700; color: var(--text-dark); font-size: 1rem; line-height: 1.45; }
.contact-card .c-value a { color: var(--text-dark); transition: color .25s; }
.contact-card .c-value a:hover { color: var(--blue); }
.contact-card .c-sub { font-size: .86rem; color: var(--text-faint); margin-top: .2rem; }

/* Form panel */
.form-panel {
  background: var(--white); border: 1px solid #E6EDF6; border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-md);
}
.form-panel h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .5rem; }
.form-panel .form-sub { color: var(--text-body); font-size: .96rem; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--text-dark); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--text-dark);
  background: var(--paper); border: 1.5px solid #E2EAF4; border-radius: 12px; padding: .85rem 1rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(15,114,212,.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-panel .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--text-faint); text-align: center; margin-top: 1rem; }

/* Map panel */
.map-panel { border-radius: var(--radius); overflow: hidden; border: 1px solid #E6EDF6; box-shadow: var(--shadow-sm); background: var(--white); }
.map-panel .map-embed {
  position: relative; aspect-ratio: 21/7; min-height: 240px;
  background: linear-gradient(160deg, var(--ink-850), var(--ink-950));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; text-align: center; color: var(--text-dim);
}
.map-panel .map-embed .m-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-bg); display: grid; place-items: center; color: #06240a; }
.map-panel .map-embed .m-ic svg { width: 28px; height: 28px; }
.map-panel .map-embed .m-label { color: #fff; font-weight: 800; }
.map-panel .map-embed .m-sub { font-size: .84rem; max-width: 40ch; }
.map-panel iframe { width: 100%; height: 100%; border: 0; display: block; }

/* small contact CTA strip */
.contact-hours { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.2rem; }
.contact-hours .ch { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text-body); }
.contact-hours .ch svg { width: 18px; height: 18px; color: var(--green-deep); flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .values-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
