/* ============================================================
   SYNERGY DIGITAL LAB — MASTER STYLESHEET v2.0
   White theme · Bricolage Grotesque + Lora
   Applies to: ALL pages site-wide
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette */
  --white:    #ffffff;
  --off:      #f8f7f5;
  --paper:    #f2efe9;
  --ink:      #111110;
  --mid:      #5a5855;
  --light:    #a09d99;
  --green:    #00FF41;
  --green-d:  #00cc33;
  --green-pale: #e6fff0;
  --border:   #e8e5e0;
  --shadow:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 128px;

  /* Container */
  --max-w: 1280px;
  --pad-x: 5vw;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { transition: color .2s; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 20px;
}
h1 .ital {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}
h2 .ital {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
}

h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}

p { color: var(--mid); line-height: 1.78; }
p strong { color: var(--ink); }

/* ── UTILITIES ── */
.sec-kicker {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.sec-sub {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--mid);
  max-width: 56ch;
}

.sec  { padding: var(--space-xl) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.full-sec { padding: var(--space-xl) var(--pad-x); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green);
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,255,65,0.25);
  color: var(--ink);
}

.btn-secondary {
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* Legacy aliases used across pages */
.btn-red {
  background: var(--green);
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-red:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,255,65,0.25);
  color: var(--ink);
}
.btn-border {
  color: var(--ink);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-border:hover { border-color: var(--ink); color: var(--ink); }

/* ── TOP BAR ── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  padding: 9px var(--pad-x);
  letter-spacing: .04em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar strong { color: #fff; }
.topbar a { color: rgba(255,255,255,.7); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar-sep { opacity: .3; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo-dot { color: var(--green); font-size: 1.4rem; line-height: 1; }

.nav-center {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-center a {
  color: var(--mid);
  text-decoration: none;
  font-size: .83rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-center a:hover,
.nav-center a.active { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: .83rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-phone svg { color: var(--green); }
.nav-phone:hover { color: var(--green); }

.btn-nav {
  background: var(--green);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .8rem;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--green-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,255,65,0.4);
  color: var(--ink);
}

/* ── HAMBURGER ── */
#nt { display: none; }

.ntl {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  z-index: 600;
  position: relative;
}
.ntl span,
.ntl::before,
.ntl::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}

/* Animate to ✕ */
#nt:checked ~ .ntl span           { opacity: 0; transform: translateX(-8px); }
#nt:checked ~ .ntl::before        { transform: translateY(7px) rotate(45deg); }
#nt:checked ~ .ntl::after         { transform: translateY(-7px) rotate(-45deg); }
#nt:checked ~ .nav-mobile         { display: flex; }

/* ── MOBILE MENU PANEL ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  padding: 16px 0 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--green); }
.nav-mobile a svg { opacity: .3; }
.nav-mobile .nav-mobile-cta {
  margin-top: 24px;
  background: var(--green);
  color: var(--ink);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  border-bottom: none;
  justify-content: center;
}
.nav-mobile .nav-mobile-cta:hover { background: var(--green-d); color: var(--ink); }
.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-phone a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border: none;
  padding: 0;
  display: inline;
}
.nav-mobile-phone svg { color: var(--green); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--white);
  padding: 80px var(--pad-x) 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,65,0.08), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-desc {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--mid);
  max-width: 52ch;
  margin-bottom: 36px;
}
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--mid);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── PROOF / SOCIAL BAR ── */
.proof-bar {
  background: var(--ink);
  border-top: 2px solid var(--green);
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
}
.proof-item strong { color: var(--green); }
.proof-stars { color: rgba(255,255,255,.9); letter-spacing: 2px; font-size: 1rem; }
.proof-sep { width: 1px; height: 20px; background: rgba(255,255,255,.2); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sb {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: background .25s;
}
.sb:last-child { border-right: none; }
.sb:hover { background: rgba(255,255,255,.03); }
.sb-n {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.sb-n em { font-style: normal; color: var(--green); }
.sb-l { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.sb-sub { font-size: .74rem; color: rgba(255,255,255,.25); margin-top: 4px; }

/* ── COUNTERS ── */
.counter-section {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px var(--pad-x);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}
.counter-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover .ci-n { color: var(--green); }
.ci-n {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  transition: color .3s;
}
.ci-n em { font-style: normal; font-size: 2rem; color: var(--green); }
.ci-l { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--light); }
.ci-sub { font-size: .78rem; color: var(--mid); margin-top: 4px; }

/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.marquee-track-outer {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track-outer:hover { animation-play-state: paused; }
.marquee-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--mid);
}
.marquee-tag strong { color: var(--ink); }
.marquee-tag svg { color: var(--green); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICE CARDS ── */
.svcs-bg { background: var(--off); border-top: 1px solid var(--border); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.svc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,255,65,0.08);
}
.svc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--green);
  transition: width .4s;
}
.svc:hover::after { width: 100%; }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(0,255,65,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.svc-t { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; color: var(--ink); }
.svc-d { font-size: .84rem; line-height: 1.82; color: var(--mid); }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}
.svc-list { list-style: none; padding: 0; margin-top: 14px; }
.svc-list li {
  font-size: .8rem;
  color: var(--mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── REVIEW CARDS ── */
.reviews-bg { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.score { display: flex; align-items: center; gap: 16px; }
.big-score { font-size: 4rem; font-weight: 800; letter-spacing: -.06em; color: var(--ink); line-height: 1; }
.big-score sub { font-size: 1.5rem; font-weight: 400; color: var(--light); vertical-align: bottom; }
.score-detail { display: flex; flex-direction: column; gap: 4px; }
.score-stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }
.score-count { font-size: .8rem; font-weight: 600; color: var(--mid); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .3s;
}
.review-card:hover { border-color: rgba(0,255,65,0.2); box-shadow: var(--shadow); }
.rc-stars { color: #f5a623; font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.rc-text {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 18px;
  font-style: italic;
}
.rc-text::before { content: '"'; }
.rc-text::after  { content: '"'; }
.rc-author { display: flex; align-items: center; gap: 10px; }
.rc-avatar {
  width: 36px; height: 36px;
  background: rgba(0,255,65,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--green);
  flex-shrink: 0;
}
.rc-name { font-size: .82rem; font-weight: 700; color: var(--ink); }
.rc-biz  { font-size: .74rem; color: var(--light); }
.reviews-cta { text-align: center; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.reviews-cta p { font-size: .9rem; color: var(--mid); margin-bottom: 16px; }

/* ── ABOUT / FEATURE GRID ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper);
  border: 1px solid var(--border);
}
.about-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: var(--ink);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.aib-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.aib-text { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.aib-text strong { color: #fff; display: block; font-size: .9rem; margin-bottom: 2px; }
.feature-list { display: flex; flex-direction: column; margin-top: 32px; }
.feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.feat:first-child { border-top: 1px solid var(--border); }
.feat-check {
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-check svg { color: var(--ink); }
.feat-title { font-size: .92rem; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.feat-desc  { font-size: .82rem; line-height: 1.65; color: var(--mid); }

/* ── VS COMPARISON ── */
.vs-section { padding: var(--space-xl) var(--pad-x); background: var(--white); border-top: 1px solid var(--border); }
.vs-inner { max-width: 1000px; margin: 0 auto; }
.vs-header { text-align: center; margin-bottom: 56px; }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vs-col { border-radius: 14px; overflow: hidden; border: 1.5px solid var(--border); }
.vs-col.ours { border-color: var(--green); box-shadow: 0 0 32px rgba(0,255,65,0.1); }
.vs-col-head {
  padding: 20px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mid);
}
.vs-col.ours .vs-col-head { background: rgba(0,255,65,0.08); color: var(--ink); border-color: rgba(0,255,65,0.2); }
.vs-row { display: flex; align-items: center; gap: 12px; padding: 14px 28px; border-bottom: 1px solid var(--border); font-size: .86rem; color: var(--mid); }
.vs-row:last-child { border-bottom: none; }
.vs-row .icon { font-size: 1rem; flex-shrink: 0; }
.vs-row strong { color: var(--ink); font-weight: 700; }

/* ── PROCESS / TIMELINE (dark) ── */
.timeline-section {
  padding: 100px var(--pad-x);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,255,65,0.05), transparent 70%);
}
.timeline-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 1; }
.timeline-header .sec-kicker { color: rgba(0,255,65,0.7); }
.timeline-header h2 { color: #fff; }
.timeline-header h2 .ital { color: var(--green); }
.timeline-header p { color: rgba(255,255,255,0.45); max-width: 48ch; margin: 16px auto 0; font-size: .95rem; line-height: 1.75; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; z-index: 1; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,255,65,0.3) 10%, rgba(0,255,65,0.3) 90%, transparent);
  transform: translateX(-50%);
}
.tl-step { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: start; margin-bottom: 0; position: relative; }
.tl-content { padding: 0 40px 60px; }
.tl-spacer  { padding: 0 40px 60px; }
.tl-step:nth-child(odd)  .tl-content { grid-column: 1; grid-row: 1; text-align: right; }
.tl-step:nth-child(odd)  .tl-spacer  { grid-column: 3; grid-row: 1; }
.tl-step:nth-child(even) .tl-content { grid-column: 3; grid-row: 1; text-align: left; }
.tl-step:nth-child(even) .tl-spacer  { grid-column: 1; grid-row: 1; }
.tl-node { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.tl-dot {
  width: 56px; height: 56px;
  background: var(--ink);
  border: 2px solid rgba(0,255,65,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .4s;
  flex-shrink: 0;
}
.tl-step.active .tl-dot, .tl-dot:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(0,255,65,0.5);
}
.tl-dot-num { font-size: .72rem; font-weight: 800; color: rgba(0,255,65,0.5); letter-spacing: .06em; transition: color .4s; }
.tl-step.active .tl-dot-num, .tl-dot:hover .tl-dot-num { color: var(--ink); }
.tl-line-seg { flex: 1; width: 1px; background: rgba(0,255,65,0.2); min-height: 60px; }
.tl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px;
  transition: all .4s;
  position: relative; overflow: hidden;
}
.tl-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,255,65,0.04), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.tl-card:hover { border-color: rgba(0,255,65,0.25); transform: scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.tl-card:hover::before { opacity: 1; }
.tl-phase { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; opacity: .8; }
.tl-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.02em; }
.tl-desc  { font-size: .84rem; line-height: 1.78; color: rgba(255,255,255,0.45); }
.tl-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  background: rgba(0,255,65,0.08);
  border: 1px solid rgba(0,255,65,0.15);
  padding: 5px 12px; border-radius: 100px;
  font-size: .7rem; font-weight: 600; color: rgba(0,255,65,0.7);
}

/* ── FAQ ACCORDION ── */
.faq-section { padding: var(--space-xl) var(--pad-x); background: var(--white); border-top: 1px solid var(--border); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { margin-bottom: 52px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--light); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-a { display: none; padding: 0 0 22px; font-size: .9rem; line-height: 1.8; color: var(--mid); }
.faq-item.open .faq-a { display: block; }

/* === CITIES WE SERVE GRID === */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cities-grid {
        gap: 16px;
    }
    
    .cities-grid a {
        padding: 28px 24px !important;
        min-width: 0;
    }
}

/* ── CTA SECTION (dark) ── */
.cta-wrap { background: var(--ink); padding: var(--space-xl) var(--pad-x); }
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-left h2 { color: #fff; margin-bottom: 16px; }
.cta-left h2 .ital { color: var(--green); }
.cta-left p { font-size: .97rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.cta-left p strong { color: #fff; }
.cta-promises { display: flex; flex-direction: column; gap: 12px; }
.cp { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.5); }
.cp svg { color: var(--green); flex-shrink: 0; }
.cp strong { color: rgba(255,255,255,.8); }
.cta-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px;
}

/* ── CITY / LOCAL PAGE COMPONENTS ── */
.city-stats { background: var(--ink); display: grid; grid-template-columns: repeat(4,1fr); }
.city-stats .sb { padding: 32px 28px; }

.local-content { padding: var(--space-xl) var(--pad-x); border-top: 1px solid var(--border); }
.local-content-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.local-col h3 { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.local-col p  { font-size: .96rem; line-height: 1.86; color: var(--mid); margin-bottom: 16px; }
.local-col p strong { color: var(--ink); }

.area-section { background: var(--off); border-top: 1px solid var(--border); padding: var(--space-xl) var(--pad-x); }
.area-section-inner { max-width: var(--max-w); margin: 0 auto; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.area-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  transition: all .25s;
}
.area-item:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── MAP ── */
.map-section { padding: var(--space-xl) var(--pad-x); border-top: 1px solid var(--border); }
.map-inner { max-width: var(--max-w); margin: 0 auto; }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}
.map-wrap iframe { width: 100%; height: 440px; border: none; display: block; }

/* ── PORTFOLIO CAROUSEL ── */
.port-section { padding: var(--space-xl) 0; overflow: hidden; background: var(--ink); }
.port-header {
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.port-header .sec-kicker { color: rgba(0,255,65,0.8); }
.port-header h2 { color: #fff; }
.port-header h2 .ital { color: rgba(255,255,255,.5); }
.port-header-right { text-align: right; }
.port-drag-hint { font-size: .78rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 6px; justify-content: flex-end; margin-bottom: 8px; }
.port-arrows { display: flex; gap: 8px; }
.port-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.port-arrow:hover { border-color: var(--green); color: var(--green); background: rgba(0,255,65,0.1); }
.port-track-wrap { overflow: hidden; cursor: grab; user-select: none; }
.port-track-wrap:active { cursor: grabbing; }
.port-track { display: flex; gap: 20px; padding: 0 var(--pad-x) 40px; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.port-card {
  flex-shrink: 0;
  width: 520px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s;
}
.port-card:hover { border-color: var(--green); transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,.4); }
.port-card-visual {
  height: 360px;
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.port-card-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(0,255,65,0.1), transparent 60%);
}
.port-phone {
  width: 160px; height: 310px;
  background: #111;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  position: relative; z-index: 2;
  transition: transform .4s;
}
.port-card:hover .port-phone { transform: scale(1.04) translateY(-6px); }
.port-phone-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 18px;
  background: #111;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}
.port-phone-screen { width: 100%; height: 100%; border-radius: 22px; overflow: hidden; background: #000; }
.port-phone-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: object-position 5s ease-in-out; }
.port-card:hover .port-phone-img { object-position: bottom; }
.port-desktop {
  position: absolute;
  bottom: 20px; right: 24px;
  width: 200px;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
  opacity: .8;
  transition: all .4s;
  transform: perspective(500px) rotateY(-5deg);
}
.port-card:hover .port-desktop { opacity: 1; transform: perspective(500px) rotateY(0deg); }
.port-desktop-bar { background: #333; padding: 6px 10px; display: flex; align-items: center; gap: 5px; }
.port-desktop-dot { width: 7px; height: 7px; border-radius: 50%; }
.port-desktop-img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; object-position: top; }
.port-card-body { padding: 24px 28px 28px; border-top: 1px solid rgba(255,255,255,.06); }
.port-card-tag { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; display: block; }
.port-card-name { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -.02em; }
.port-card-desc { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.port-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--green); text-decoration: none; transition: gap .2s; }
.port-card:hover .port-card-link { gap: 10px; }

/* ── CONTACT STRIP (green bar) ── */
.contact-strip { background: var(--green); padding: 20px var(--pad-x); }
.cs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cs-text { font-size: .95rem; font-weight: 700; color: var(--ink); }
.cs-links { display: flex; gap: 24px; flex-wrap: wrap; }
.cs-link { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; color: var(--ink); text-decoration: none; transition: opacity .2s; }
.cs-link:hover { opacity: .75; }

/* ── FOOTER ── */
footer {
  background: var(--off);
  padding: 72px var(--pad-x) 36px;
  border-top: 1px solid var(--border);
}
.ft { max-width: var(--max-w); margin: 0 auto; }
.ft-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.ft-brand-link {
  text-decoration: none;
  color: inherit;
}
.ft-brand-name {
  font-size: 1.15rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 2px;
}
.ft-brand-name .dot { color: var(--green); font-size: 1.3rem; }
.ft-desc { font-size: .82rem; line-height: 1.7; color: var(--mid); max-width: 28ch; margin-bottom: 16px; }
.ft-cities { font-size: .78rem; color: var(--light); line-height: 1.8; }
footer h4 { font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
footer a  { color: var(--mid); font-size: .82rem; line-height: 2; text-decoration: none; display: block; transition: color .2s; }
footer a:hover { color: var(--green); }
footer p  { color: var(--mid); font-size: .82rem; line-height: 2; }
.ft-bot {
  display: flex;
  justify-content: space-between;
  font-size: .74rem;
  color: var(--light);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 72px var(--pad-x) 96px; }
.legal-wrap h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 8px; }
.legal-wrap .legal-date { font-size: .78rem; color: var(--light); margin-bottom: 52px; }
.legal-wrap h2 { font-size: 1.1rem; margin-top: 40px; margin-bottom: 12px; color: var(--ink); }
.legal-wrap p  { font-size: .96rem; line-height: 1.82; color: var(--mid); margin-bottom: 18px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  margin-bottom: 40px;
}
.legal-back:hover { color: var(--green-d); }

/* ── SCROLL REVEAL ── */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .4s,transform .4s}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TYPING CURSOR ── */
.typing-cursor {
  display: inline-block;
  width: 3px; height: .85em;
  background: var(--green);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink .7s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────────── */

@media (max-width: 1280px) {
  :root { --pad-x: 4vw; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-height: 340px; aspect-ratio: unset; }
  .cta-inner { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .local-content-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 16px; }

  /* Prevent any child from blowing out the viewport */
  html, body { max-width: 100%; overflow-x: hidden; }

  /* Nav */
  nav { padding: 0 16px; }
  .nav-center, .nav-phone, .btn-nav { display: none; }
  .ntl { display: flex; }

  /* Topbar */
  .topbar { font-size: .68rem; gap: 8px; padding: 8px 16px; }
  .topbar-sep { display: none; }

  /* Sections */
  .full-sec, .sec { padding: 60px 16px; }
  .page-hero { padding: 48px 16px 48px; }
  .cta-wrap, .timeline-section, .faq-section { padding: 60px 16px; }
  .contact-strip, .map-section, .local-content, .area-section { padding: 48px 16px; }

  /* Grids */
  .stats-bar, .city-stats { grid-template-columns: 1fr 1fr; }
  .sb { padding: 20px 12px; }
  .sb:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .counter-section { padding: 48px 16px; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 0 16px; }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-top: 1px solid var(--border); }
  .svc-grid, .reviews-grid { grid-template-columns: 1fr; }
  .svc-grid[style] { grid-template-columns: 1fr !important; }
  .reviews-header { flex-direction: column; }
  .ft-top { grid-template-columns: 1fr; gap: 32px; }
  .ft-bot { flex-direction: column; gap: 6px; }
  footer { padding: 48px 16px 28px; }
  .proof-bar { gap: 12px; padding: 14px 16px; }
  .proof-sep { display: none; }
  .cs-inner { flex-direction: column; text-align: center; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .tl-step { grid-template-columns: 48px 1fr; }
  .tl-step:nth-child(odd) .tl-content,
  .tl-step:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; text-align: left; padding: 0 0 40px 16px; }
  .tl-step:nth-child(odd) .tl-spacer,
  .tl-step:nth-child(even) .tl-spacer { display: none; }
  .tl-node { grid-column: 1; grid-row: 1; }
  .tl-dot { width: 48px; height: 48px; }
  .timeline::before { left: 24px; }
  .map-wrap iframe { height: 300px; }

  /* Portfolio cards — prevent 520px fixed width blowing out viewport */
  .port-card { width: calc(100vw - 40px); }
  .port-track { padding: 0 16px 32px; }

  /* Local / city pages */
  .local-content-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .page-hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary, .btn-red, .btn-border { justify-content: center; }
  .area-grid { grid-template-columns: 1fr; }
  .stats-bar, .city-stats { grid-template-columns: 1fr; }
  .sb { border-right: none !important; border-top: 1px solid rgba(255,255,255,.08); }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-item { border-right: none; border-top: 1px solid var(--border); }
  .port-card { width: calc(100vw - 32px); }
}
/* ══════════════════════════════════════
   CITIES GRID — responsive, mobile-safe
   Used on: index.html, oklahoma-city.html, city pages
   ══════════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.city-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  text-decoration: none;
  transition: all .3s;
  min-width: 0;
}
.city-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,255,65,0.08);
}
@media (max-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cities-grid { grid-template-columns: 1fr; }
  .city-card { padding: 28px 24px; }
}