/* ================================================================
   PAWSMOBILE LEXINGTON — Shared Stylesheet
   Palette: Terracotta · Sage Green · Warm Cream
   Fonts: Playfair Display + Nunito
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700;800&display=swap');

:root {
  --terra:        #c05a30;
  --terra-light:  #d4784f;
  --terra-pale:   #f8ede7;
  --terra-dark:   #9a4420;
  --sage:         #6b8c6f;
  --sage-light:   #8aaa8e;
  --sage-pale:    #edf2ee;
  --sage-dark:    #4e6e52;
  --cream:        #faf5ee;
  --warm:         #fff8f2;
  --sand:         #f0e8d8;
  --text:         #2c1a12;
  --text-mid:     #5c3d2e;
  --text-muted:   #9a7a6a;
  --white:        #ffffff;
  --shadow-sm:    0 2px 10px rgba(44,26,18,0.08);
  --shadow-md:    0 6px 28px rgba(44,26,18,0.12);
  --shadow-lg:    0 20px 60px rgba(44,26,18,0.16);
  --radius:       18px;
  --r-sm:         10px;
  --r-xs:         6px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terra-dark); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--terra);
}

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 74px;
  background: rgba(250,245,238,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192,90,48,0.1);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  white-space: nowrap;
}
.nav-logo em { color: var(--terra); font-style: normal; }
.nav-links {
  display: flex; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px; border-radius: var(--r-xs);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--terra);
  background: var(--terra-pale);
}
.nav-has-sub { position: relative; }
.nav-has-sub > a::after { content: ' ↓'; font-size: 0.65rem; }
.nav-sub {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192,90,48,0.1);
  min-width: 210px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--transition);
  list-style: none;
}
.nav-has-sub:hover .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-sub a {
  display: block; padding: 9px 14px; border-radius: var(--r-xs);
  font-size: 0.85rem; color: var(--text-mid);
}
.nav-sub a:hover { background: var(--terra-pale); color: var(--terra); }
.nav-cta {
  font-size: 0.875rem; font-weight: 800;
  color: var(--white); background: var(--terra);
  padding: 11px 26px; border-radius: 100px;
  text-decoration: none; transition: all var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--terra-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,90,48,0.35); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none; position: fixed; top: 74px; left: 0; right: 0; z-index: 999;
  background: var(--cream); border-bottom: 1px solid var(--sand);
  padding: 20px 32px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav-mobile a { font-size: 0.95rem; font-weight: 600; color: var(--text-mid); padding: 10px 0; display: block; }
.nav-mobile .nav-cta { text-align: center; margin-top: 12px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 800;
  padding: 14px 32px; border-radius: 100px; border: none;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-terra {
  background: var(--terra); color: var(--white);
}
.btn-terra:hover { background: var(--terra-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,90,48,0.35); }
.btn-sage {
  background: var(--sage); color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-terra {
  background: transparent; color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline-terra:hover { background: var(--terra); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--terra);
}
.btn-white:hover { background: var(--terra-pale); color: var(--terra-dark); }

/* ── HERO VARIANTS ── */
.hero-photo {
  position: relative;
  padding-top: 74px;
  min-height: 86vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(44,26,18,0.82) 40%, rgba(44,26,18,0.35) 100%);
}
.hero-photo-content {
  position: relative; z-index: 2;
}
.hero-photo h1 { color: var(--white); }
.hero-photo .eyebrow { color: rgba(240,210,190,0.9); }
.hero-photo .eyebrow::before { background: rgba(240,210,190,0.9); }
.hero-photo p { color: rgba(255,255,255,0.8); }

.hero-split {
  padding-top: 74px;
  background: var(--warm);
}
.hero-split-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0 0;
}
.hero-split-visual { position: relative; }
.hero-split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.hero-wave {
  width: 100%; height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -8px;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding-top: 74px;
  background: linear-gradient(135deg, var(--terra-pale) 0%, var(--warm) 60%, var(--sage-pale) 100%);
  padding-bottom: 0;
}
.page-hero-inner {
  padding: 64px 0 56px;
}
.page-hero h1 { max-width: 700px; }
.page-hero p { max-width: 580px; margin-top: 14px; font-size: 1.05rem; }
.page-hero-wave {
  width: 100%; height: 64px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb-sep { opacity: 0.4; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sand);
  border-top: 1px solid rgba(192,90,48,0.1);
  border-bottom: 1px solid rgba(192,90,48,0.1);
}
.trust-bar-inner {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 0;
  padding: 20px 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-mid);
  padding: 8px 28px;
  border-right: 1px solid rgba(44,26,18,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(44,26,18,0.06);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192,90,48,0.2);
}
.card-img {
  width: 100%; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
}
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.9rem; margin-bottom: 18px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid rgba(44,26,18,0.06);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  background: var(--terra-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }
.service-card .link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 800;
  color: var(--terra); margin-top: 16px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.service-card .link-arrow::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .link-arrow::after { transform: translateX(4px); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--terra); padding: 52px 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; text-align: center;
}
.stat { padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ── REVIEWS ── */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid rgba(44,26,18,0.06);
}
.stars { color: #d4a017; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem;
  color: var(--text-mid); line-height: 1.75;
  margin-bottom: 18px;
}
.reviewer { font-size: 0.85rem; font-weight: 800; color: var(--text); }
.reviewer-loc { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.reviewer-photo {
  width: 44px; height: 44px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}

/* ── PRICING CARDS ── */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid rgba(44,26,18,0.08);
  position: relative;
  transition: all var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-md); border-color: rgba(192,90,48,0.25); }
.price-card.featured {
  background: var(--terra);
  border-color: var(--terra);
  transform: scale(1.03);
}
.price-card.featured * { color: rgba(255,255,255,0.9) !important; }
.price-card.featured h3 { color: var(--white) !important; }
.price-card.featured .price-amount { color: var(--white) !important; }
.price-card.featured .btn-terra { background: var(--white); color: var(--terra) !important; }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: var(--white);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 100px; white-space: nowrap;
}
.price-tier { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--terra); line-height: 1;
}
.price-from { font-size: 0.82rem; color: var(--text-muted); margin: 8px 0 20px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 8px 0; border-bottom: 1px solid rgba(44,26,18,0.06);
  display: flex; gap: 10px; align-items: flex-start;
}
.price-features li::before { content: '✓'; color: var(--terra); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.15) !important; }
.price-card.featured .price-features li::before { color: rgba(255,255,255,0.7) !important; }

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(44,26,18,0.07);
  overflow: hidden; margin-bottom: 10px;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(192,90,48,0.2); }
.faq-item.open { border-color: rgba(192,90,48,0.3); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; cursor: pointer; gap: 20px;
}
.faq-q span { font-size: 0.98rem; font-weight: 700; color: var(--text); flex: 1; }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--terra-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0; transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--terra); color: var(--white); transform: rotate(45deg); }
.faq-a {
  padding: 0 26px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p { font-size: 0.92rem; padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 26px; color: var(--text);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(44,26,18,0.12);
  border-radius: var(--r-sm);
  font-family: 'Nunito', sans-serif; font-size: 0.92rem;
  color: var(--text); background: var(--cream);
  outline: none; transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra); background: var(--white);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; padding: 16px;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 800;
  background: var(--terra); color: var(--white);
  border: none; border-radius: 100px; cursor: pointer;
  transition: all var(--transition);
}
.btn-submit:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* ── CONTACT DETAILS ── */
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(44,26,18,0.06);
  margin-bottom: 12px;
}
.contact-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--terra-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 3px; }
.contact-value { font-size: 0.92rem; font-weight: 700; color: var(--text); text-decoration: none; display: block; }
.contact-value:hover { color: var(--terra); }

/* ── CTA BAND ── */
.cta-band { background: var(--sage-dark); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }

.cta-band-terra { background: var(--terra); }

/* ── SPLIT SECTION ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.split-img {
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.split.reverse .split-img { order: 2; }
.split.reverse .split-content { order: 1; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.92rem; color: var(--text-mid);
}
.check-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; min-width: 26px;
  background: var(--terra-pale); color: var(--terra);
  border-radius: 50%; font-weight: 800; font-size: 0.75rem;
}

/* ── FLOATING BADGE ── */
.float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg);
  display: flex; gap: 14px; align-items: center;
  min-width: 200px;
}
.float-card-icon {
  width: 44px; height: 44px; background: var(--terra-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.float-card-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 3px; }
.float-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--text); line-height: 1.1;
}

/* ── SECTION BG VARIANTS ── */
.bg-warm    { background: var(--warm); }
.bg-cream   { background: var(--cream); }
.bg-sand    { background: var(--sand); }
.bg-sage-pale { background: var(--sage-pale); }
.bg-terra-pale { background: var(--terra-pale); }
.bg-sage    { background: var(--sage-dark); }

/* ── FOOTER ── */
footer {
  background: #1e0d08;
  color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 64px 32px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px; display: block;
}
.footer-logo em { color: var(--terra-light); font-style: normal; }
.footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.86rem;
  color: rgba(255,255,255,0.5); margin-bottom: 9px;
  text-decoration: none; transition: color var(--transition);
}
.footer-col a:hover { color: var(--terra-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; }

/* ── MOBILE NAV TOGGLE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-img { order: 0; }
  .split.reverse .split-content { order: 0; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat { border-right: none; padding: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 8px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .trust-item:nth-child(n+3) { display: none; }
  h1 { font-size: 2.1rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-1 { animation: fadeUp 0.7s ease 0.1s both; }
.animate-2 { animation: fadeUp 0.7s ease 0.25s both; }
.animate-3 { animation: fadeUp 0.7s ease 0.4s both; }
.animate-4 { animation: fadeUp 0.7s ease 0.55s both; }
