/* LowTaxGlobal - Shared Stylesheet */

:root {
  --navy: #0a2540;
  --navy-dark: #061a30;
  --navy-light: #14365e;
  --emerald: #00b67a;
  --emerald-dark: #009966;
  --emerald-light: #1ed498;
  --gold: #d4a84b;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-muted: #eef2f7;
  --text: #1a2b3c;
  --text-muted: #5a6b7c;
  --border: #e1e8f0;
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--emerald); }

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

/* ===== Top utility bar ===== */
.topbar {
  background: var(--navy-dark);
  color: #cfd8e3;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #cfd8e3; }
.topbar a:hover { color: var(--emerald-light); }
.topbar .lang { display: flex; gap: 14px; }

/* ===== Header / Nav ===== */
header.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .mark {
  display: inline-block;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
  border-radius: 8px;
  position: relative;
}
.logo .mark::after {
  content: "L";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
}
.logo span.tld { color: var(--emerald-light); }

.nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav ul a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}
.nav ul a:hover { color: var(--emerald-light); }
.nav ul a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--emerald);
}
.nav .cta-btn {
  background: var(--emerald);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
}
.nav .cta-btn:hover { background: var(--emerald-light); color: var(--navy); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-align: center;
}
.btn-primary {
  background: var(--emerald);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--emerald-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover { background: #fff; color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--emerald-dark);
  font-weight: 600;
}
.btn-ghost:hover { color: var(--emerald); }

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(10,37,64,.92) 0%, rgba(20,54,94,.85) 100%),
    radial-gradient(circle at 20% 30%, rgba(0,182,122,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,182,122,.15) 0%, transparent 50%),
    var(--navy);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(0,182,122,.15);
  color: var(--emerald-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,182,122,.3);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--emerald-light); }
.hero p.lead {
  font-size: 18px;
  color: #cfd8e3;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats .stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--emerald-light);
}
.hero-stats .stat span {
  font-size: 13px;
  color: #cfd8e3;
}

/* Hero card (right side) */
.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}
.hero-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 14px; }
.hero-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 14px;
}
.hero-card select,
.hero-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}
.hero-card select:focus, .hero-card input:focus {
  outline: none;
  border-color: var(--emerald);
}
.hero-card .btn { width: 100%; margin-top: 20px; }
.hero-card .micro { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--emerald-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: var(--emerald-light); }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.section-dark .section-head p { color: #cfd8e3; }

/* ===== Services grid ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald);
}
.service-card .icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,182,122,.15), rgba(0,182,122,.05));
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.service-card h3 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.service-card a.more {
  color: var(--emerald-dark);
  font-weight: 600;
  font-size: 14px;
}

/* ===== Jurisdictions section ===== */
.jur-region {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.jur-region h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
}
.jur-region ul { list-style: none; }
.jur-region li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border);
}
.jur-region li:last-child { border-bottom: none; }
.jur-region li a { color: var(--text); }
.jur-region li a:hover { color: var(--emerald-dark); }

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  text-align: center;
  padding: 24px 16px;
}
.step .num {
  width: 48px; height: 48px;
  background: var(--emerald);
  color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
}
.step h4 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial .stars { color: var(--gold); margin-bottom: 12px; font-size: 16px; }
.testimonial p { color: var(--text); font-size: 14px; margin-bottom: 16px; line-height: 1.7; }
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.testimonial .who strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial .who span { font-size: 12px; color: var(--text-muted); }

/* ===== Stats / At a glance ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-big strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--emerald-light);
  line-height: 1;
  margin-bottom: 8px;
}
.section-dark .stat-big span { color: #cfd8e3; }
.stat-big span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Office cards ===== */
.office-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.office-card .photo {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  color: #fff;
  display: grid; place-items: center;
  font-size: 48px;
}
.office-card .body { padding: 20px; }
.office-card h4 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.office-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: var(--navy);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}
.cta-banner p {
  font-size: 17px;
  margin-bottom: 28px;
  color: var(--navy-dark);
}
.cta-banner .btn {
  background: var(--navy);
  color: #fff;
}
.cta-banner .btn:hover { background: var(--navy-dark); color: #fff; }

/* ===== Articles / blog ===== */
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card .thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--emerald-dark));
}
.article-card .body { padding: 20px; }
.article-card .date {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-card h4 {
  color: var(--navy);
  font-size: 16px;
  margin: 8px 0 10px;
  line-height: 1.4;
}
.article-card p { color: var(--text-muted); font-size: 14px; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--navy-dark);
  color: #cfd8e3;
  padding: 60px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 700;
}
footer ul { list-style: none; columns: 1; }
footer .footer-jurisdictions ul { columns: 2; gap: 12px; }
footer ul li { padding: 4px 0; }
footer ul li a { color: #9aa9bb; font-size: 13px; }
footer ul li a:hover { color: var(--emerald-light); }
footer .footer-about p { color: #9aa9bb; line-height: 1.6; margin-bottom: 16px; }
footer .footer-about .logo { margin-bottom: 16px; }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7a8898;
  font-size: 13px;
}
footer .footer-bottom a { color: #9aa9bb; margin-left: 16px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: #fff;
  font-size: 14px;
}
.socials a:hover { background: var(--emerald); color: var(--navy); }

/* ===== Page header (inner pages) ===== */
.page-header {
  background:
    linear-gradient(135deg, rgba(10,37,64,.95) 0%, rgba(20,54,94,.92) 100%),
    var(--navy);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
}
.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.page-header p {
  color: #cfd8e3;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: #9aa9bb;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--emerald-light); }

/* ===== Pricing table ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all .25s;
}
.price-card.featured {
  border-color: var(--emerald);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.price-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}
.price-card .desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  min-height: 42px;
}
.price-card .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card .price small { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.price-card .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card ul li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}
.price-card ul li::before {
  content: "✓";
  color: var(--emerald);
  font-weight: 800;
}
.price-card .btn { width: 100%; }

/* ===== Forms ===== */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0,182,122,.12);
}

/* ===== Order steps ===== */
.order-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.order-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px; right: 24px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.order-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}
.order-step .circle {
  width: 38px; height: 38px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 8px;
  font-weight: 700;
  color: var(--text-muted);
}
.order-step.active .circle { border-color: var(--emerald); background: var(--emerald); color: var(--navy); }
.order-step span { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.order-step.active span { color: var(--navy); }

/* ===== Generic content / lists ===== */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { color: var(--navy); margin: 32px 0 14px; font-size: 26px; }
.content-block h3 { color: var(--navy); margin: 24px 0 10px; font-size: 20px; }
.content-block p { margin-bottom: 14px; color: var(--text); }
.content-block ul { padding-left: 20px; margin-bottom: 16px; }
.content-block ul li { margin-bottom: 6px; }

/* Map placeholder */
.world-map {
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-muted));
  border-radius: var(--radius-lg);
  height: 320px;
  display: grid; place-items: center;
  color: var(--text-muted);
  font-size: 15px;
  border: 2px dashed var(--border);
  margin-bottom: 40px;
  position: relative;
}
.world-map::before {
  content: "🌍";
  font-size: 80px;
  opacity: .3;
}

/* Awards row */
.awards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.award-badge {
  width: 90px; height: 90px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--emerald-light);
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  padding: 8px;
  line-height: 1.2;
}

/* Feature with image rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.feature-row:nth-child(even) .feature-img { order: 2; }
.feature-row .feature-img {
  background: linear-gradient(135deg, var(--navy-light), var(--emerald-dark));
  height: 320px;
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  font-size: 80px;
  color: rgba(255,255,255,.3);
}
.feature-row h3 { color: var(--navy); font-size: 24px; margin-bottom: 12px; }
.feature-row p { color: var(--text-muted); margin-bottom: 14px; }
.feature-row ul { padding-left: 20px; color: var(--text-muted); }

/* App promo */
.app-promo {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.app-promo h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.app-promo p { color: #cfd8e3; margin-bottom: 24px; max-width: 580px; margin-left: auto; margin-right: auto; }
.app-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.app-badge:hover { background: #222; color: #fff; }
.app-badge .icon { font-size: 22px; }
.app-badge small { display: block; font-size: 10px; opacity: .8; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .grid-3, .grid-4, .grid-2, .price-grid, .stats-row, .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav ul { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .topbar { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0; }
}
