/* =========================================================
   Le-Emerald Claims Recovery — Shared Stylesheet
   Palette: Deep Emerald / Navy / Gold
   ========================================================= */

:root {
  --emerald-900: #0a3d2a;
  --emerald-800: #0f5132;
  --emerald-700: #146c43;
  --emerald-600: #1a8754;
  --emerald-50:  #ecfdf5;
  --navy-900:    #0b1f3a;
  --navy-800:    #102a4c;
  --navy-700:    #1a3a66;
  --gold-500:    #c9a96e;
  --gold-400:    #d6b986;
  --gold-50:     #faf6ee;
  --ink-900:     #0f172a;
  --ink-700:     #334155;
  --ink-500:     #64748b;
  --ink-300:     #cbd5e1;
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-tint:     #f1f5f9;
  --line:        #e5e7eb;
  --shadow-sm:   0 1px 2px rgba(15,23,42,.06);
  --shadow-md:   0 8px 24px rgba(15,23,42,.08);
  --shadow-lg:   0 24px 60px rgba(15,23,42,.12);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --container:   1200px;
  --transition:  .25s ease;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald-800); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--emerald-600); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--ink-900);
  margin: 0 0 .5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4vw + 1rem, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ========== Kicker / Eyebrow ========== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--emerald-700);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald-800);
  color: #fff;
  border-color: var(--emerald-800);
}
.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-300);
}
.btn-outline:hover { border-color: var(--emerald-800); color: var(--emerald-800); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.25rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-900);
  letter-spacing: -.01em;
}
.logo .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-600));
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(15,81,50,.25);
}
.logo .name small {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-500);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: .55rem .9rem;
  font-weight: 500;
  color: var(--ink-900);
  border-radius: 8px;
  font-size: .96rem;
}
.nav-menu a:hover { background: var(--bg-tint); color: var(--emerald-800); }
.nav-menu a.active { color: var(--emerald-800); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem .65rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-900);
  margin: 4px 0;
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(26,135,84,.10), transparent 60%),
    radial-gradient(900px 400px at -10% 110%, rgba(201,169,110,.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,81,50,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,81,50,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem;
  background: rgba(15,81,50,.06);
  border: 1px solid rgba(15,81,50,.12);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--emerald-800);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.hero-tagline::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-600);
  box-shadow: 0 0 0 4px rgba(26,135,84,.18);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(26,135,84,.18); }
  50% { box-shadow: 0 0 0 7px rgba(26,135,84,.05); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.25rem; color: var(--navy-900); }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 540px;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-600);
}

.hero-visual {
  position: relative;
}
.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  background: #fff;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .85rem;
  max-width: 280px;
}
.hero-card .icon {
  width: 44px; height: 44px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.hero-card strong { color: var(--navy-900); display:block; }
.hero-card span { font-size: .85rem; color: var(--ink-500); }

.hero-bar {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-bar .stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--navy-900);
  font-weight: 700;
}
.hero-bar .stat span { font-size: .85rem; color: var(--ink-500); }

/* ========== Sections ========== */
section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .kicker { justify-content: center; }
.section-head h2 { color: var(--navy-900); }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-dark {
  background: linear-gradient(135deg, var(--navy-900), var(--emerald-900));
  color: #e2e8f0;
}
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: #fff; }
.bg-dark .kicker { color: var(--gold-400); }

/* ========== About / two-col ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.5;
  object-fit: cover;
}
.exp-badge {
  position: absolute;
  right: -20px; top: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.exp-badge strong { display: block; font-size: 1.85rem; font-family: 'Plus Jakarta Sans'; color: var(--navy-900); line-height: 1; }
.exp-badge span { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

.check-list { list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; }
.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: .55rem;
  color: var(--ink-700);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--emerald-50);
  color: var(--emerald-700);
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
}

/* ========== Service cards ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px; height: 120px;
  background: radial-gradient(circle at center, var(--emerald-50), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--emerald-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after { opacity: 1; }
.service-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.service-card h3 { color: var(--navy-900); margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { color: var(--ink-500); font-size: .95rem; margin-bottom: 1rem; }
.service-card .arrow-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; font-size: .9rem; color: var(--emerald-700);
}

/* ========== Process ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -18px; left: 1.5rem;
  background: var(--emerald-800);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: 8px;
  font-size: .9rem;
}
.step h3 { font-size: 1.1rem; color: var(--navy-900); margin-bottom: .5rem; }
.step p { color: var(--ink-500); font-size: .95rem; margin: 0; }

/* ========== Who we serve / chip grid ========== */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-weight: 500;
  color: var(--navy-900);
  font-size: .95rem;
  display: flex; align-items: center; gap: .75rem;
  transition: all var(--transition);
}
.chip:hover { border-color: var(--emerald-600); background: var(--emerald-50); }
.chip .ico {
  width: 32px; height: 32px;
  background: var(--gold-50);
  color: var(--gold-500);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: .9rem;
}

/* ========== Feature alternating rows ========== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/3.5;
  object-fit: cover;
  width: 100%;
}
.feature-text h3 { color: var(--navy-900); margin-bottom: 1rem; }
.feature-text .tag {
  display: inline-block;
  background: var(--gold-50);
  color: var(--navy-900);
  padding: .35rem .75rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

/* ========== CTA band ========== */
.cta-band {
  background:
    linear-gradient(120deg, rgba(11,31,58,.92), rgba(10,61,42,.92)),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1600&q=80') center/cover no-repeat;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(226,232,240,.85); margin: 0; }
.cta-band .actions { display: flex; gap: .75rem; justify-content: flex-end; flex-wrap: wrap; }

/* ========== FAQ ========== */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--emerald-700);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] { border-color: var(--emerald-600); box-shadow: var(--shadow-sm); }
.faq-item .answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--ink-500);
}

/* ========== Form ========== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-900);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-900);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(26,135,84,.12);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ========== Footer ========== */
.site-footer {
  background: var(--navy-900);
  color: #cbd5e1;
  padding: 4.5rem 0 1.5rem;
  margin-top: 0;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer p { color: #94a3b8; font-size: .9rem; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a { color: #cbd5e1; font-size: .92rem; }
.site-footer ul a:hover { color: var(--gold-400); }
.footer-contact .row {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .92rem; margin-bottom: .65rem; color: #cbd5e1;
}
.footer-contact .row .ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--gold-400);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: .85rem;
}
.footer-logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-logo .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-600));
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
}
.disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  color: #94a3b8;
  font-size: .82rem;
  line-height: 1.7;
}
.disclaimer-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: #94a3b8;
}

/* ========== Page banner (inner pages) ========== */
.page-banner {
  background:
    linear-gradient(120deg, rgba(11,31,58,.85), rgba(10,61,42,.85)),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1800&q=80') center/cover no-repeat;
  color: #fff;
  padding: 5rem 0 4.5rem;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner p { color: rgba(226,232,240,.85); max-width: 700px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  font-size: .9rem; color: rgba(226,232,240,.7);
  margin-top: 1rem;
}
.breadcrumb a { color: var(--gold-400); }

/* ========== Loan segments grid ========== */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.segment {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
  transition: all var(--transition);
}
.segment:hover { border-color: var(--emerald-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.segment .ico {
  width: 40px; height: 40px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1rem;
}
.segment strong { color: var(--navy-900); font-size: .95rem; }

/* ========== Utilities ========== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; } .mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.muted { color: var(--ink-500); }

/* ========== SVG icon wrap ========== */
.ico-svg {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  display: grid; place-items: center;
  transition: all var(--transition);
}
.ico-svg svg { width: 26px; height: 26px; stroke-width: 1.6; }
.service-card:hover .ico-svg {
  background: var(--emerald-800);
  color: #fff;
  transform: scale(1.05);
}
.ico-svg.gold { background: var(--gold-50); color: var(--gold-500); }
.ico-svg.sm { width: 44px; height: 44px; }
.ico-svg.sm svg { width: 20px; height: 20px; }

/* ========== Trusted-by / Sectors strip ========== */
.trusted-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trusted-strip .label {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
}
.trusted-marquee {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}
.trusted-item {
  display: flex; align-items: center; justify-content: center;
  gap: .55rem;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  opacity: .55;
  transition: opacity var(--transition);
}
.trusted-item:hover { opacity: 1; }
.trusted-item .dot {
  width: 8px; height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ========== Stat cards ========== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat-cell {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .ico-svg.sm { margin-bottom: 1rem; }
.stat-cell strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.1rem;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.stat-cell span { font-size: .9rem; color: var(--ink-500); }

/* ========== Pillar cards (refined service cards) ========== */
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--emerald-800);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--emerald-600); }
.pillar-card:hover::before { transform: scaleY(1); transform-origin: top; }
.pillar-card .num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-300);
  letter-spacing: .1em;
}
.pillar-card h3 { color: var(--navy-900); font-size: 1.15rem; margin: 1.25rem 0 .5rem; }
.pillar-card p { color: var(--ink-500); font-size: .95rem; margin-bottom: 1.25rem; }
.pillar-card .read {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .88rem;
  color: var(--emerald-700);
}

/* ========== Quote / Leadership ========== */
.quote-block {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(201,169,110,.12), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--emerald-900) 100%);
  color: #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: "\201C";
  position: absolute;
  top: -20px; left: 30px;
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 14rem;
  line-height: 1;
  color: rgba(201,169,110,.18);
  font-weight: 800;
}
.quote-block .q-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.quote-block blockquote {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.3rem, 1.5vw + .8rem, 1.85rem);
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  letter-spacing: -.01em;
}
.quote-block .cite {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.quote-block .cite-line { width: 32px; height: 2px; background: var(--gold-500); }
.quote-block .cite-text { font-size: .9rem; color: rgba(255,255,255,.75); }
.quote-block .cite-text strong { color: #fff; display: block; font-family: 'Plus Jakarta Sans', sans-serif; }
.quote-block .q-side {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.quote-block .q-side h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.quote-block .q-side ul { list-style: none; padding: 0; margin: 0; }
.quote-block .q-side li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
  color: rgba(226,232,240,.85);
  display: flex; justify-content: space-between;
}
.quote-block .q-side li:last-child { border: none; }
.quote-block .q-side li strong { color: var(--gold-400); font-family: 'Plus Jakarta Sans', sans-serif; }

/* ========== Section divider (subtle) ========== */
.divider {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 760px;
}
.divider .label {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1rem;
}
.divider .label::before, .divider .label::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin: 0 .75rem;
}
.divider h2 {
  color: var(--navy-900);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.7rem);
  margin-bottom: .65rem;
}
.divider p { color: var(--ink-500); font-size: 1.05rem; margin: 0; }

/* ========== Approach pillars (numbered horizontal list) ========== */
.approach-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.approach-cell {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--line);
  transition: background var(--transition);
}
.approach-cell:last-child { border-right: none; }
.approach-cell:hover { background: var(--bg-soft); }
.approach-cell .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: .15em;
  margin-bottom: .75rem;
}
.approach-cell h3 { color: var(--navy-900); font-size: 1.1rem; margin-bottom: .5rem; }
.approach-cell p { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ============================================
   BUSIMA-STYLE LAYOUT COMPONENTS (Home)
   ============================================ */

/* ---- Full-bleed hero with image background ---- */
.hero-bleed {
  position: relative;
  min-height: 640px;
  padding: 7rem 0 9rem;
  color: #fff;
  overflow: hidden;
}
.hero-bleed .hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bleed .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bleed .hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(11,31,58,.85) 0%, rgba(10,61,42,.75) 45%, rgba(11,31,58,.25) 100%);
}
.hero-bleed .container { position: relative; z-index: 2; }
.hero-bleed .hero-kicker {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .25em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-bleed .hero-kicker::before {
  content: ""; width: 30px; height: 2px; background: var(--gold-500);
}
.hero-bleed h1 {
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw + 1rem, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero-bleed .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-bleed .btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  font-weight: 700;
  padding: 1rem 1.75rem;
}
.hero-bleed .btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); }

/* Floating contact card on hero */
.hero-contact-card {
  position: absolute;
  right: 1.25rem;
  bottom: -55px;
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-700));
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 1.25rem;
  min-width: 320px;
  z-index: 3;
}
.hero-contact-card .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.hero-contact-card .small {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-contact-card .phone {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.hero-contact-card .hours {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: .6rem;
  margin-top: .55rem;
}

/* Floating service strip below hero */
.hero-strip-wrap { position: relative; margin-top: -70px; z-index: 4; }
.hero-strip {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.hero-strip .cell {
  padding: 1.85rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
  border-right: 1px solid var(--line);
  transition: background var(--transition);
}
.hero-strip .cell:last-child { border-right: none; }
.hero-strip .cell:hover { background: var(--bg-soft); }
.hero-strip .cell .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-strip .cell strong {
  display: block;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

/* ---- About section with rating cards ---- */
.rating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.rating-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.rating-card .score {
  display: flex; align-items: baseline; gap: .35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--emerald-800);
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.rating-card .stars {
  color: var(--gold-500);
  font-size: .85rem;
  letter-spacing: .15em;
  margin-bottom: .65rem;
}
.rating-card strong {
  display: block;
  color: var(--navy-900);
  font-size: .95rem;
  margin-bottom: .25rem;
}
.rating-card span { font-size: .82rem; color: var(--ink-500); }

/* ---- Gradient banner with overlapping stat ---- */
.gradient-banner {
  position: relative;
  margin: 5rem 0 0;
  padding: 5rem 0 7rem;
  color: #fff;
  overflow: hidden;
}
.gradient-banner .bg {
  position: absolute; inset: 0; z-index: 0;
}
.gradient-banner .bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.gradient-banner .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11,31,58,.95) 30%, rgba(15,81,50,.85) 100%);
}
.gradient-banner .container { position: relative; z-index: 2; max-width: 720px; }
.gradient-banner h2 { color: #fff; font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem); margin-bottom: 1rem; }
.gradient-banner p { color: rgba(255,255,255,.85); max-width: 540px; }
.gradient-banner .kicker { color: var(--gold-400); }

.gradient-banner-card {
  position: relative;
  z-index: 3;
  margin-top: -80px;
  margin-bottom: 4rem;
}
.gradient-banner-card .card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.gradient-banner-card .card h3 {
  color: var(--navy-900);
  font-size: 1.25rem;
  margin-bottom: 0;
}
.gradient-banner-card .card p {
  color: var(--ink-500);
  font-size: .92rem;
  margin: 0;
}
.gradient-banner-card .card .big {
  text-align: center;
}
.gradient-banner-card .card .big strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--emerald-700);
  line-height: 1;
  letter-spacing: -.03em;
}
.gradient-banner-card .card .big span {
  font-size: .85rem; color: var(--ink-500);
  display: block; margin-top: .35rem;
}

/* ---- Services section with side header ---- */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.services-head h2 { color: var(--navy-900); margin-bottom: 0; max-width: 360px; }
.services-head .right { display: flex; flex-direction: column; align-items: flex-start; }
.services-head .right p { color: var(--ink-500); margin-bottom: 1rem; }

/* ---- Image + gradient panel split ---- */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-row .image-side img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 420px;
}
.split-row .panel-side {
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(201,169,110,.18), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--emerald-900) 100%);
  color: #fff;
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.split-row .panel-side h2 {
  color: #fff;
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.1rem);
  margin-bottom: 1rem;
}
.split-row .panel-side p { color: rgba(255,255,255,.85); }
.split-row .feature-line {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.split-row .feature-line:last-child { border-bottom: none; }
.split-row .feature-line .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(201,169,110,.15);
  color: var(--gold-400);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.split-row .feature-line h4 { color: #fff; font-size: 1.05rem; margin-bottom: .35rem; }
.split-row .feature-line p { font-size: .92rem; color: rgba(255,255,255,.75); margin: 0; }

/* ---- Why Choose Us 3-col image cards ---- */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--emerald-600); }
.why-card .head {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 1rem;
}
.why-card .head .ico-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--emerald-50);
  color: var(--emerald-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.why-card .head strong { color: var(--navy-900); font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 1.05rem; }
.why-card .head span { font-size: .8rem; color: var(--ink-500); display: block; }
.why-card img { width: 100%; aspect-ratio: 4/2.6; object-fit: cover; }
.why-card .body { padding: 1.5rem; flex: 1; }
.why-card .body p { color: var(--ink-500); font-size: .95rem; margin-bottom: 1rem; }
.why-card .body a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 700; color: var(--navy-900);
  background: var(--gold-500);
  padding: .55rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  transition: background var(--transition);
}
.why-card .body a:hover { background: var(--gold-400); }

/* ---- Abilities section with progress bars + video ---- */
.abilities-bg {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.abilities-bg .bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.abilities-bg .bg-img img { width: 100%; height: 100%; object-fit: cover; }
.abilities-bg .bg-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,31,58,.95) 30%, rgba(10,61,42,.5) 100%);
}
.abilities-bg .container { position: relative; z-index: 2; }
.abilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.abilities-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.abilities-card .kicker { color: var(--emerald-700); }
.abilities-card h2 { color: var(--navy-900); margin-bottom: 1rem; }
.abilities-card > p { color: var(--ink-500); margin-bottom: 1.5rem; }
.progress {
  margin-bottom: 1.25rem;
}
.progress .top {
  display: flex; justify-content: space-between;
  font-size: .92rem; font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .45rem;
}
.progress .top span:last-child { color: var(--emerald-700); }
.progress .bar {
  height: 7px;
  background: var(--bg-tint);
  border-radius: 999px;
  overflow: hidden;
}
.progress .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-600));
  border-radius: 999px;
  width: 0;
  transition: width 1.4s cubic-bezier(.2,.7,.2,1);
}

.video-side {
  position: relative;
  display: grid; place-items: center;
  min-height: 380px;
}
.video-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: grid; place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(201,169,110,.5);
  animation: ripple 2.4s infinite;
  transition: transform var(--transition);
}
.video-play:hover { transform: scale(1.05); }
@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,.55); }
  70% { box-shadow: 0 0 0 30px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}
.video-label {
  color: #fff;
  font-size: .75rem; letter-spacing: .25em;
  font-weight: 700; text-transform: uppercase;
  margin-top: 1rem; text-align: center;
}

/* ---- Dual contact cards ---- */
.contact-pair {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-pair .dark-card {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(201,169,110,.18), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--emerald-900) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}
.contact-pair .dark-card .kicker { color: var(--gold-400); }
.contact-pair .dark-card h2 { color: #fff; margin-bottom: 1rem; }
.contact-pair .dark-card p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.contact-pair .dark-card .line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  display: block;
  font-size: 1.15rem;
  margin-bottom: .35rem;
}
.contact-pair .dark-card .line.small { font-size: 1rem; opacity: .8; }
.contact-pair .light-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-pair .light-card h2 { color: var(--navy-900); margin-bottom: 1rem; }
.contact-pair .light-card > p { color: var(--ink-500); margin-bottom: 1.5rem; }

/* ---- Newsletter band ---- */
.newsletter {
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(201,169,110,.15), transparent 60%),
    linear-gradient(135deg, var(--emerald-900) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: 3rem 0;
}
.newsletter .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem; align-items: center;
}
.newsletter h3 {
  color: #fff;
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0;
}
.newsletter .form-inline {
  display: flex; gap: .5rem;
  background: #fff;
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.newsletter .form-inline input {
  flex: 1; border: none; outline: none;
  background: transparent; font: inherit;
  font-size: .95rem;
}
.newsletter .form-inline button {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  transition: background var(--transition);
}
.newsletter .form-inline button:hover { background: var(--gold-400); }

/* ---- Responsive adjustments ---- */
@media (max-width: 960px) {
  .hero-bleed { padding: 5rem 0 7rem; min-height: 540px; }
  .hero-contact-card { position: static; margin-top: 2rem; min-width: 100%; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip .cell { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-strip .cell:last-child { border-bottom: none; }
  .gradient-banner-card .card { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .services-head { grid-template-columns: 1fr; gap: 1rem; }
  .split-row { grid-template-columns: 1fr; }
  .split-row .image-side img { min-height: 280px; }
  .split-row .panel-side { padding: 2.5rem 1.75rem; }
  .abilities-grid { grid-template-columns: 1fr; }
  .video-side { min-height: 240px; }
  .contact-pair { grid-template-columns: 1fr; }
  .newsletter .row { grid-template-columns: 1fr; }
  .rating-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-bleed h1 { font-size: 2rem; }
  .gradient-banner-card .card { padding: 1.75rem; }
  .contact-pair .dark-card,
  .contact-pair .light-card { padding: 2rem 1.5rem; }
  .abilities-card { padding: 1.75rem; }
  .newsletter .form-inline { flex-direction: column; padding: .5rem; border-radius: 14px; }
  .newsletter .form-inline button { border-radius: 10px; }
}

/* ========== Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bar { grid-template-columns: repeat(2, 1fr); }
  .trusted-marquee { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .quote-block { padding: 2.5rem 1.75rem; }
  .quote-block .q-grid { grid-template-columns: 1fr; gap: 2rem; }
  .approach-row { grid-template-columns: 1fr 1fr; }
  .approach-cell:nth-child(2) { border-right: none; }
  .approach-cell:nth-child(1), .approach-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > div:first-child { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-row.reverse .feature-text { order: 0; }
  .cta-band { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; }
  .cta-band .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .segment-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .trusted-marquee { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-cell:last-child { border-bottom: none; }
  .approach-row { grid-template-columns: 1fr; }
  .approach-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .approach-cell:last-child { border-bottom: none; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 1rem; right: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    align-items: stretch;
    gap: .25rem;
  }
  .nav-menu.open a { padding: .75rem 1rem; }
  .nav-cta .btn { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { position: static; margin-top: -28px; max-width: 100%; }
  .hero-bar { grid-template-columns: 1fr 1fr; }
  section { padding: 3.5rem 0; }
}
