/* ================================================================
   SIMPHIC — ELEVATE TEMPLATE FAITHFUL CLONE
   Layout reference: https://elevate-template.framer.website/
   Brand: gold #BE9018 replaces Elevate's red
   ================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Brand Palette Replacement */
  --brand-pri: #0c98a3;
  
  --gold:      #d19e12;
  --gold-dk:   #b0850c;
  --gold-bg:   #fdfaef;
  --gold-bdr:  #e0c466;

  --ink:       #112c40;
  --ink2:      #2b4861;
  --ink3:      #5f7e9a;
  --ink4:      #A9BCCD;

  --bg:        #FFFFFF;
  --bg2:       #F7F6F3;
  --bdr:       #E5E5E1;
  --bdr2:      #CFCEC8;

  --ff-head: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --mw:   1180px; /* max container width */
  --px:   32px;   /* horizontal page padding */
  --py:   100px;  /* section vertical padding */

  --r:     8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh-md: 0 6px 24px rgba(0,0,0,.09);
  --sh-lg: 0 14px 48px rgba(0,0,0,.11);

  --ease: .22s ease;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 var(--px); }

/* ── LUCIDE ──────────────────────────────────────────────────── */
[data-lucide] { display: inline-block; vertical-align: middle; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-family: var(--ff-body); font-size: .91rem; font-weight: 600;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  line-height: 1;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
}
.btn-primary {
  background: var(--brand-pri); color: #fff; border-color: var(--brand-pri);
}
.btn-primary:hover {
  background: var(--ink); border-color: var(--ink);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(12,152,163,.35);
}
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--bdr2);
}
.btn-ghost:hover { border-color: var(--brand-pri); color: var(--brand-pri); }
.btn-dark  { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink2); border-color: var(--ink2); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: .96rem; }
.btn-md { padding: 11px 22px; }
.btn-sm { padding: 8px 17px; font-size: .82rem; }
.btn-ico { width: 15px; height: 15px; flex-shrink: 0; }

/* ── TYPE UTILITIES ──────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .69rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ink3); margin-bottom: 14px;
}
.eyebrow-gold { color: var(--gold-dk); }
.h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  font-weight: 800; line-height: 1.1;
  color: var(--ink); letter-spacing: -.025em; margin-bottom: 16px;
}
.body-txt {
  font-size: .97rem; color: var(--ink2); line-height: 1.8;
  margin-bottom: 28px; max-width: 600px;
}
.centred { text-align: center; margin-left: auto; margin-right: auto; }
.accent  { color: var(--gold); }
.sec-hd  { text-align: center; margin-bottom: 60px; }

/* ── FADE-UP ANIMATION ────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── MARQUEE ──────────────────────────────────────────────────── */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   NAVBAR
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  transition: background var(--ease), padding var(--ease), border-bottom var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 11px 0; border-bottom: 1px solid var(--bdr); box-shadow: 0 1px 0 var(--bdr);
}
.nav-inner { display: flex; align-items: center; gap: 20px; }

.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-size: 1.3rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em; flex-shrink: 0;
}
.logo-mark { width: 50px; height: 50px; color: var(--gold); }
.foot-logo { color: #fff; }
.foot-logo .logo-mark { color: var(--gold); }

.nav-links { display: flex; align-items: center; margin-left: auto; }
.nav-links a {
  color: var(--ink2); font-size: .88rem; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-pill);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg2); }
.nav .btn { margin-left: 6px; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: var(--ease); transform-origin: center;
}

/* Mobile drawer */
.nav-drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px var(--px) 22px;
  background: rgba(255,255,255,.98); border-top: 1px solid var(--bdr);
}
.nav-drawer.open { display: flex; }
.nav-drawer ul   { display: flex; flex-direction: column; gap: 2px; }
.nav-drawer a {
  display: block; color: var(--ink2); padding: 10px 14px;
  border-radius: var(--r); font-weight: 500; transition: var(--ease);
}
.nav-drawer a:hover { color: var(--ink); background: var(--bg2); }
.nav-drawer .btn { width: 100%; margin-top: 10px; justify-content: center; }

/* ================================================================
   HERO
   Left text 55% | Right image 45%
   ================================================================ */
.hero {
  padding: 144px 0 84px;
  border-bottom: 1px solid var(--bdr);
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px; align-items: center;
}

/* Tag / badge above H1 */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-pill);
  font-size: .73rem; font-weight: 600; color: var(--ink3); margin-bottom: 22px;
}
.tag-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* H1 */
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 900; line-height: .96; letter-spacing: -.04em;
  color: var(--ink); margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.04rem; color: var(--ink2);
  line-height: 1.78; margin-bottom: 38px; max-width: 440px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

/* Trust bar */
.trust      { display: flex; align-items: center; gap: 14px; }
.trust-avs  { display: flex; }
.av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2.5px solid var(--bg); margin-left: -9px;
  box-shadow: var(--sh-sm); flex-shrink: 0;
}
.av:first-child { margin-left: 0; }
.av1 { background: var(--gold); }
.av2 { background: #08878B; }
.av3 { background: #455036; }
.av4 { background: #2D4A5F; }
.trust-stars { color: var(--gold); font-size: .82rem; }
.trust-label { font-size: .75rem; color: var(--ink3); font-weight: 500; margin-top: 2px; }

/* Hero image */
.hero-media { position: relative; }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%; height: 470px; object-fit: cover;
  border-radius: var(--r-xl); border: 1px solid var(--bdr);
  box-shadow: var(--sh-lg); display: block;
}

/* Overlay chips */
.chip {
  position: absolute;
  background: var(--bg); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-md); white-space: nowrap;
}
.chip-tr { top: 20px; right: -16px; }
.chip-bl { bottom: -14px; left: -14px; }
.chip-ico { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.chip-lbl { font-size: .65rem; color: var(--ink3); font-weight: 500; line-height: 1; }
.chip-val { font-family: var(--ff-head); font-size: .92rem; font-weight: 800; color: var(--ink); line-height: 1.3; }

/* ================================================================
   DOMAIN STRIP
   ================================================================ */
.domain-strip {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
.strip-label {
  display: none;
}
.strip-overflow { overflow: hidden; }
.strip-track {
  display: flex; gap: 40px; width: max-content;
  animation: stripTicker 35s linear infinite;
  align-items: center;
}
.strip-track:hover { animation-play-state: paused; }
.strip-track span {
  display: flex; align-items: center; gap: 40px;
  font-family: var(--ff-head); 
  font-size: 1.85rem; font-weight: 900; text-transform: uppercase; 
  letter-spacing: 0.04em; color: var(--bg);
  white-space: nowrap; cursor: default;
  transition: color var(--ease);
}
.strip-track span:hover { color: var(--brand-pri); }
.strip-track span::after {
  content: "✦";
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.25rem;
}

@keyframes stripTicker {
  to { transform: translateX(calc(-50% - 30px)); }
}

/* ================================================================
   ABOUT
   Left: image | Right: eyebrow + H2 + body + stats + CTA
   (matching Elevate's about layout exactly)
   ================================================================ */
.about-sec {
  padding: var(--py) 0;
  border-bottom: 1px solid var(--bdr);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img {
  width: 100%; height: 540px; object-fit: cover; display: block;
  border-radius: var(--r-xl); border: 1px solid var(--bdr); box-shadow: var(--sh-lg);
}

/* Inline stats strip — inside text column */
.about-stats {
  display: flex; align-items: stretch;
  border: 1px solid var(--bdr); border-radius: var(--r-lg);
  overflow: hidden; margin: 22px 0 30px;
}
.a-stat {
  flex: 1; padding: 18px 10px; text-align: center; cursor: default;
  transition: background var(--ease);
}
.a-stat + .a-stat { border-left: 1px solid var(--bdr); }
.a-stat:hover { background: var(--gold-bg); }
.a-num {
  display: block;
  font-family: var(--ff-head); font-size: 1.9rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.a-stat > span { display: block; font-size: .7rem; color: var(--ink3); font-weight: 500; margin-top: 5px; }

/* ================================================================
   CAPABILITIES / DOMAINS
   *** CRITICAL SECTION — matches Elevate exactly ***

   grid: 42% left (eyebrow+H2+body+CTA) | 58% right (service list)
   NO separate full-width header above — H2 lives INSIDE left column
   ================================================================ */
.caps-sec {
  padding: var(--py) 0;
  background: var(--brand-pri);
  border-bottom: 1px solid var(--bdr);
}

/* Typography Overrides for Greenish Background */
.caps-sec .h2 { color: #fff; }
.caps-sec .body-txt { color: rgba(255,255,255,0.85); }

/* The 2-column grid */
.caps-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px; align-items: start;
}

/* LEFT column — sticky, has the heading */
.caps-intro {
  position: sticky; top: 88px;
}
.caps-intro .body-txt { margin-bottom: 28px; }
.caps-quote {
  margin-top: 32px; padding: 14px 16px;
  border-left: 3px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08); border-radius: 0 var(--r) var(--r) 0;
  font-size: .82rem; color: rgba(255,255,255,0.95); font-style: italic; line-height: 1.6;
}

/* RIGHT column — stacked service items */
.caps-list { display: flex; flex-direction: column; gap: 40px; padding-bottom: 60px; }

.cap-item {
  position: sticky;
  display: flex; align-items: flex-start; gap: 32px;
  padding: 56px 48px; background: var(--bg);
  border: 1px solid var(--bdr); border-radius: var(--r-xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: box-shadow var(--ease);
}
.cap-item:nth-child(1) { top: 110px; z-index: 1; }
.cap-item:nth-child(2) { top: 140px; z-index: 2; }
.cap-item:nth-child(3) { top: 170px; z-index: 3; }
.cap-item:nth-child(4) { top: 200px; z-index: 4; }
.cap-item:hover { box-shadow: var(--sh-md); }

/* Circular icon (matches Elevate's small colored dot icon) */
.cap-ico-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(231,58,51,0.1); border: 1px solid rgba(231,58,51,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--brand-pri);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.cap-item:hover .cap-ico-wrap { background: var(--brand-pri); border-color: var(--brand-pri); color: #fff; }
.cap-ico-wrap [data-lucide] { width: 28px; height: 28px; }

.cap-body h3 {
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 14px; margin-top: 6px;
}
.cap-body p { font-size: 1.05rem; color: var(--ink2); line-height: 1.8; }

/* ================================================================
   PROJECTS
   Asymmetric 2-col grid — matching Elevate's masonry pattern:
   ┌──────────┬──────────┐
   │          │ SHORT    │
   │  TALL    ├──────────┤
   │          │          │
   ├──────────│  TALL    │
   │ SHORT    │          │
   └──────────┴──────────┘
   ================================================================ */
.proj-sec {
  padding: var(--py) 0;
  border-bottom: 1px solid var(--bdr);
}
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.proj-card {
  position: relative;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--bdr);
  cursor: pointer;
}
.p-tall  { height: 420px; }
.p-short { height: 265px; }

.proj-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease; filter: brightness(.88);
}
.proj-card:hover img { transform: scale(1.05); filter: brightness(.72); }

.proj-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 18px 20px;
}
.proj-tag {
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-pill);
  font-size: .69rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: #fff;
}
.proj-caption {
  background: rgba(8,12,18,.55); backdrop-filter: blur(6px);
  border-radius: var(--r); padding: 14px 16px;
}
.proj-caption h3 {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.proj-caption p { font-size: .81rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.proj-cta { text-align: center; margin-top: 40px; }

/* ================================================================
   TESTIMONIALS / IMPACT
   Left: accordion list | Right: sticky image
   (matching Elevate's "What Our Clients Say's" layout)
   ================================================================ */
.test-sec {
  padding: var(--py) 0;
  background: var(--brand-pri);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Typography Overrides for Greenish Background */
.test-sec .h2 { color: #fff; }
.test-sec .body-txt { color: rgba(255,255,255,0.85); }

.slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 48px;
  overflow: hidden; /* Hide spilling track for seamless loop */
}
.slider-wrapper::before, .slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0; bottom: 80px;
  width: 15%;
  min-width: 60px;
  z-index: 5;
  pointer-events: none;
}
.slider-wrapper::before {
  left: 0; background: linear-gradient(to right, var(--brand-pri) 0%, transparent 100%);
}
.slider-wrapper::after {
  right: 0; background: linear-gradient(to left, var(--brand-pri) 0%, transparent 100%);
}

.infinite-slider-track {
  display: flex; gap: 16px; width: max-content;
  /* Moderate bottom padding for smoother curve */
  padding: 16px 0 140px 0;
  animation: scrollInfinite 40s linear infinite;
  transform-style: preserve-3d;
}
.infinite-slider-track:hover { animation-play-state: paused; }

@keyframes scrollInfinite {
  to { transform: translateX(calc(-50% - 8px)); }
}

.test-card-modern {
  background: var(--bg); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: box-shadow 0.4s ease;
  width: 460px; flex-shrink: 0;
  /* Inject both Y-translation and Tangent Rotation */
  transform: translateY(var(--curve-y, 0px)) rotate(var(--curve-rot, 0deg));
  transform-origin: 50% 50%;
}
.test-card-modern:hover { 
  transform: translateY(calc(var(--curve-y, 0px) - 8px)) rotate(var(--curve-rot, 0deg)); 
  box-shadow: var(--sh-md); 
}
.tc-stars { color: #facc15; font-size: 1.4rem; margin-bottom: 24px; letter-spacing: 2px; }
.tc-quote { font-size: 1.15rem; line-height: 1.8; color: var(--ink); margin-bottom: 40px; font-weight: 500; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--bdr); padding-top: 24px; }
.tav1 { background: var(--gold); }
.tav2 { background: #08878B; }
.tav3 { background: #455036; }
.tav4 { background: #2D4A5F; }
.tc-info strong { display: block; font-size: 1.05rem; color: var(--ink); font-family: var(--ff-head); }
.tc-info span { display: block; font-size: .85rem; color: var(--ink3); margin-top: 4px;}

.modern-metrics { display: flex; justify-content: center; gap: 80px; margin-top: 56px; flex-wrap: wrap;}
.m-metric {
  padding: 10px; text-align: center;
  transition: transform 0.4s ease;
  min-width: 220px;
}
.m-metric:hover { transform: translateY(-8px); }
.m-metric strong {
  display: block; font-family: var(--ff-head);
  font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.m-metric span { display: block; font-size: 1.05rem; color: rgba(255,255,255,0.8); font-weight: 700; text-transform: uppercase; margin-top: 14px; letter-spacing: 0.08em; }

/* ================================================================
   FAQ
   Centered accordion with numbered questions (matching Elevate)
   ================================================================ */
.faq-sec {
  padding: var(--py) 0;
  border-bottom: 1px solid var(--bdr);
}
.faq-wrap { max-width: 780px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--bdr); }
.faq-item:first-child { border-top: 1px solid var(--bdr); }

.faq-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 22px 0; background: none; border: none;
  text-align: left; cursor: pointer;
}
.faq-q-row { display: flex; align-items: baseline; gap: 12px; }
.faq-num   { font-family: var(--ff-head); font-size: .8rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.faq-q     { font-size: .96rem; font-weight: 600; color: var(--ink); }
.faq-btn:hover .faq-q { color: var(--gold-dk); }

.faq-tog {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg2); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.faq-ico { width: 13px; height: 13px; color: var(--ink3); transition: transform var(--ease), color var(--ease); }
.faq-item.active .faq-tog { background: var(--gold); border-color: var(--gold); }
.faq-item.active .faq-ico { color: #fff; transform: rotate(45deg); }

.faq-ans { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-item.active .faq-ans { max-height: 200px; }
.faq-ans p { padding-bottom: 20px; font-size: .9rem; color: var(--ink2); line-height: 1.8; }

/* ================================================================
   CTA / GET INVOLVED
   Warm gold-tinted box (matching Elevate's pink/salmon CTA box)
   ================================================================ */
.cta-sec {
  padding: 100px 0;
  background: var(--bg);
}
.cta-pro {
  border-top: 2px solid var(--ink);
  padding-top: 48px;
}
.cta-mega-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 520px;
}
.cta-pro-bottom {
  display: grid; grid-template-columns: minmax(0, 1.25fr) auto; gap: 28px;
  align-items: center;
}
.cta-b-left p {
  font-size: .98rem; color: var(--ink2); line-height: 1.7; max-width: 560px;
  font-weight: 500;
}
.cta-b-right {
  display: flex; justify-content: flex-end;
}
.btn-mega {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  background: var(--brand-pri); color: #fff;
  font-family: var(--ff-head); font-size: .98rem; font-weight: 700;
  padding: 16px 24px; border-radius: 100px;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  white-space: nowrap;
}
.btn-mega:hover {
  background: var(--ink); color: #fff; transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.btn-mega [data-lucide] { width: 32px; height: 32px; }

@media (max-width: 900px) {
  .cta-pro-bottom { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
  .cta-b-right { justify-content: flex-start; }
  .cta-mega-title { margin-bottom: 22px; }
  .btn-mega { font-size: .95rem; padding: 14px 22px; }
  .btn-mega [data-lucide] { width: 24px; height: 24px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #0A0A0A; padding-top: 72px; }
.foot-inner {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 80px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand > p { color: rgba(255,255,255,.38); font-size: .86rem; line-height: 1.74; margin: 14px 0 22px; }
.foot-soc { display: flex; gap: 8px; margin-bottom: 10px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: var(--r);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); }
.soc-ico { width: 15px; height: 15px; color: rgba(255,255,255,.45); transition: color var(--ease); }
.soc-btn:hover .soc-ico { color: #fff; }
.soc-note { font-size: .7rem; color: rgba(255,255,255,.22); font-style: italic; }

.foot-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.foot-col h3 {
  font-family: var(--ff-head); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 16px;
}
.foot-col ul  { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { color: rgba(255,255,255,.38); font-size: .86rem; transition: color var(--ease), padding-left var(--ease); }
.foot-col ul a:hover { color: var(--gold); padding-left: 4px; }
.foot-col > p { color: rgba(255,255,255,.38); font-size: .84rem; line-height: 1.68; margin-bottom: 14px; }
.foot-form { display: flex; gap: 6px; }
.foot-form input {
  flex: 1; padding: 9px 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill); color: #fff;
  font-size: .83rem; font-family: var(--ff-body); outline: none;
  transition: border-color var(--ease);
}
.foot-form input::placeholder { color: rgba(255,255,255,.24); }
.foot-form input:focus { border-color: var(--gold); }

.foot-bar { padding: 20px 0; }
.foot-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.foot-bar-inner span { font-size: .78rem; color: rgba(255,255,255,.24); }
.foot-tag { color: var(--gold) !important; font-weight: 600; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero {
  padding: 124px 0 54px;
  background: var(--bg);
  border-bottom: 1px solid var(--bdr);
}
.contact-hero-inner {
  max-width: 760px;
}
.contact-hero .eyebrow {
  margin-bottom: 12px;
  color: var(--brand-pri);
}
.contact-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.15rem, 4.1vw, 3.5rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-hero .body-txt {
  font-size: .98rem;
  max-width: 640px;
  margin-bottom: 0;
}
.contact-main,
.contact-process,
.contact-banner,
.contact-success {
  padding: 52px 0;
}
.contact-grid,
.contact-banner-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 24px;
}
.contact-card,
.contact-side-card,
.contact-success-card {
  background: #fff;
  border: 1px solid rgba(17,44,64,.10);
  border-radius: 14px;
  box-shadow: none;
}
.contact-card,
.contact-side-card,
.contact-success-card {
  padding: 24px;
}
.contact-card h2,
.contact-side-card h2,
.contact-success-card h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-field {
  display: grid;
  gap: 7px;
}
.contact-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: .02em;
}
.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid rgba(17,44,64,.12);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: .9rem;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--brand-pri);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(12,152,163,.16);
}
.contact-textarea {
  min-height: 124px;
  resize: vertical;
}
.contact-card button.btn {
  width: fit-content;
  min-width: 166px;
}
.contact-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--ink3);
}
.contact-note .note-ico {
  width: 13px;
  height: 13px;
  color: var(--brand-pri);
  flex-shrink: 0;
}
.contact-side-card {
  background: #fff;
}
.contact-side-block {
  padding: 14px 0;
  border-top: 1px solid rgba(17,44,64,.09);
}
.contact-side-block:first-of-type {
  border-top: none;
  padding-top: 0;
}
.contact-side-title,
.contact-step h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-side-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,152,163,.12);
  color: var(--brand-pri);
  flex-shrink: 0;
}
.contact-side-icon [data-lucide] {
  width: 12px;
  height: 12px;
}
.contact-side-block p,
.contact-step p,
.contact-banner-card .body-txt,
.contact-success-card .body-txt {
  color: var(--ink2);
  font-size: .9rem;
  line-height: 1.72;
}
.contact-side-block p + p {
  margin-top: 8px;
}
.contact-side-block a {
  color: var(--ink);
  font-weight: 600;
}
.contact-side-block a:hover {
  color: var(--brand-pri);
}
.contact-meta {
  color: var(--ink3);
  font-size: .82rem;
}
.contact-socials {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}
.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(17,44,64,.10);
  border-radius: 10px;
  background: #fff;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.contact-socials a:hover {
  border-color: var(--brand-pri);
  color: var(--brand-pri);
  background: #f8fdff;
}
.contact-social-left,
.contact-social-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-social-left {
  color: var(--ink);
  font-weight: 600;
  font-size: .89rem;
}
.contact-social-left [data-lucide] {
  width: 13px;
  height: 13px;
  color: var(--brand-pri);
}
.contact-social-right {
  color: var(--ink3);
  font-size: .78rem;
}
.contact-social-right [data-lucide] {
  width: 11px;
  height: 11px;
}
.contact-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.contact-step {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.contact-step:not(:first-child) {
  border-left: 1px solid var(--bdr);
  padding-left: 18px;
}
.contact-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-pri);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .75rem;
  margin-bottom: 10px;
}
.contact-step-ico {
  width: 13px;
  height: 13px;
  margin-left: 6px;
  color: var(--brand-pri);
}
.contact-step h3 {
  font-size: .96rem;
  margin-bottom: 6px;
}
.contact-step p {
  margin-bottom: 0;
}
.contact-banner-card {
  padding: 26px 0;
  grid-template-columns: minmax(0, 1.4fr) auto;
  background: transparent;
  color: var(--ink);
  align-items: center;
  border: none;
  border-top: 1px solid var(--bdr);
  border-radius: 0;
}
.contact-banner-card .h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  max-width: 720px;
}
.contact-banner-card .h2,
.contact-success-card .h2 {
  color: var(--ink);
}
.contact-banner-card .eyebrow {
  color: var(--ink3);
  margin-bottom: 10px;
}
.contact-banner-card .body-txt,
.contact-success-card .body-txt {
  color: var(--ink2);
}
.contact-banner-actions,
.contact-success-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.contact-banner-actions .btn,
.contact-success-actions .btn {
  font-size: .86rem;
  padding: 10px 16px;
}
.contact-success {
  min-height: 56vh;
  display: flex;
  align-items: center;
}
.contact-success-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-success-mark {
  display: inline-flex;
  margin-right: 6px;
  vertical-align: text-bottom;
  color: var(--brand-pri);
}
.contact-success-mark [data-lucide] {
  width: 14px;
  height: 14px;
}

@media (max-width: 1040px) {
  .contact-grid,
  .contact-banner-card {
    grid-template-columns: 1fr;
  }
  .contact-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-step:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 104px 0 34px;
  }
  .contact-main,
  .contact-process,
  .contact-banner,
  .contact-success {
    padding: 38px 0;
  }
  .contact-card,
  .contact-side-card,
  .contact-success-card {
    padding: 18px;
  }
  .contact-form-row,
  .contact-step-grid {
    grid-template-columns: 1fr;
  }
  .contact-step:not(:first-child) {
    border-top: 1px solid var(--bdr);
    padding-top: 12px;
  }
  .contact-banner-actions,
  .contact-success-actions {
    justify-content: flex-start;
  }
  .contact-socials a {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .contact-social-right {
    font-size: .78rem;
  }
}

@media (max-width: 520px) {
  .contact-hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1040px) {
  /* Stack all 2-col grids */
  .hero-grid    { grid-template-columns: 1fr; gap: 44px; }
  .hero-media   { display: none; } /* hide image on tablet */
  .about-grid   { grid-template-columns: 1fr; gap: 44px; }
  .about-img-col{ display: none; }
  .caps-grid    { grid-template-columns: 1fr; gap: 48px; }
  .caps-intro   { position: static; }
  .test-grid    { grid-template-columns: 1fr; gap: 44px; }
  .test-media   { display: none; }
  .foot-inner   { grid-template-columns: 1fr; gap: 44px; }
  .foot-nav     { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --py: 72px; }
  .nav-links, .nav .btn-primary { display: none; }
  .burger         { display: flex; }
  .proj-grid      { grid-template-columns: 1fr; }
  .p-tall, .p-short { height: 260px; } /* equal heights on mobile */
  .cta-box        { padding: 44px 28px; }
  .hero-h1        { font-size: clamp(2.8rem, 9vw, 4.4rem); }
}
@media (max-width: 520px) {
  :root { --px: 20px; }
  .foot-nav     { grid-template-columns: 1fr; }
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-opts     { flex-direction: column; }
  .foot-form    { flex-direction: column; }
  .test-metrics { grid-template-columns: 1fr; }
}

/* --- NEW CENTERED HERO UPDATES --- */
.hero-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-tag {
  background: var(--bg);
  border: 1px solid var(--bdr);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: .73rem; font-weight: 600; margin-bottom: 22px;
}
.tag-ico { width: 14px; height: 14px; color: #E73A33; }
.justify-center { justify-content: center; width: 100%; }
.hero-media-full {
  margin-top: 60px;
  position: relative;
  width: 100%;
}
.hero-img-wide {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.glass-trust-chip {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(255,255,255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 20px; border-radius: var(--r-pill);
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--sh-md);
  border: 1px solid var(--bdr);
}
.trust-text-col { text-align: left; }

/* --- BRAND ACCENTS --- */
.cap-ico-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(12,152,163,0.1); border: 1px solid rgba(12,152,163,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--brand-pri);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.cap-item:hover .cap-ico-wrap { background: var(--brand-pri); border-color: var(--brand-pri); color: #fff; }

/* --- EYEBROW PILLS --- */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--r-pill);
  background: var(--bg); border: 1px solid var(--bdr);
  color: var(--ink); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px;
}
.centered-pill { display: inline-flex; margin: 0 auto 20px; align-items: center;}
.sec-hd { display: flex; flex-direction: column; align-items: center; }
.eyebrow-ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(12,152,163,0.15); color: var(--brand-pri);
  display: flex; align-items: center; justify-content: center;
}
.eyebrow-ico [data-lucide] { width: 13px; height: 13px; }

/* --- PROJECT CARDS --- */
.proj-grid-new {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.proj-card-new { 
  display: flex; flex-direction: column; cursor: pointer; text-decoration: none; 
}
.p-img-box {
  position: relative; width: 100%; height: 360px; overflow: hidden;
  border-radius: var(--r-xl); margin-bottom: 20px; border: 1px solid var(--bdr);
}
.p-img-tall { height: 480px; }
.p-img-box img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}
.p-img-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.p-img-overlay .btn { transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; }

.proj-card-new:hover .p-img-box img { transform: scale(1.04); filter: brightness(0.85); }
.proj-card-new:hover .p-img-overlay { opacity: 1; }
.proj-card-new:hover .p-img-overlay .btn { transform: translateY(0); pointer-events: auto; }

.p-info { display: flex; flex-direction: column; align-items: flex-start; }
.p-cat { font-size: .8rem; color: var(--ink3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.p-info h3 { font-family: var(--ff-head); font-size: 1.3rem; color: var(--ink); font-weight: 700; margin-top: 0; text-align: left; transition: color 0.3s ease; }
.proj-card-new:hover .p-info h3 { color: var(--brand-pri); }
.center { text-align: center; }
.mt-4 { margin-top: 40px; }

/* --- FOOTER LIGHT --- */
.footer-light { padding-top: 80px; background: var(--bg); border-top: 1px solid var(--bdr); }
.foot-light-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.foot-col p.foot-desc { font-size: .9rem; color: var(--ink2); max-width: 300px; margin-top: 16px; margin-bottom: 0; line-height: 1.6; }
.foot-links h3 { font-family: var(--ff-head); font-size: .9rem; margin-bottom: 20px; color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.foot-links ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col.foot-links ul a { color: var(--ink2); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; transition: color var(--ease); padding-left: 0; }
.foot-col.foot-links ul a:hover { color: var(--brand-pri); padding-left: 4px; }
.ico-xs { width: 14px; height: 14px; }
.foot-light-bar { padding: 24px 0; border-top: 1px solid var(--bdr); display: flex; justify-content: space-between; font-size: .85rem; color: var(--ink2); }

@media (max-width: 768px) {
  .proj-grid-new { grid-template-columns: 1fr; }
  .p-img-box, .p-img-tall { height: 260px; }
  .foot-light-inner { grid-template-columns: 1fr 1fr; }
  .hero-tag { margin-top: 40px; }
}
@media (max-width: 520px) {
  .foot-light-inner { grid-template-columns: 1fr; }
}
