/* ============================================
   HEXAGON PEST CONTROL — BRAND STYLE SYSTEM
   ============================================ */

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

:root {
  --y:  #f5a623;
  --o:  #f07020;
  --p:  #e8306a;
  --m:  #d4207a;
  --v:  #a855c8;

  --grad:      linear-gradient(90deg, var(--y) 0%, var(--o) 30%, var(--p) 60%, var(--v) 100%);
  --grad-diag: linear-gradient(135deg, var(--y) 0%, var(--o) 30%, var(--p) 60%, var(--v) 100%);
  --grad-text: linear-gradient(90deg, #f5a623 0%, #f07020 35%, #e8306a 70%, #a855c8 100%);

  --dark:   #0d0d0d;
  --dark2:  #111111;
  --dark3:  #181818;
  --border: rgba(255,255,255,0.08);
  --white:  #ffffff;
  --text:   #e0e0e0;
  --muted:  rgba(255,255,255,0.48);

  --radius:    14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 48px rgba(232,48,106,0.2);

  --hex-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='83' viewBox='0 0 72 83'%3E%3Cpath d='M36 1L71 20v42L36 82 1 62V20Z' fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='1'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--o); margin-bottom: 14px; display: inline-block;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.05;
  color: var(--white); margin-bottom: 48px;
  letter-spacing: -0.025em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 15px 30px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 4px 24px rgba(232,48,106,0.4); }
.btn-grad:hover { box-shadow: 0 8px 36px rgba(232,48,106,0.6); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.28); }
.btn-outline:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.05); }
.btn.full { width: 100%; }

/* ---- CALL BAR ---- */
.call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200; background: var(--grad); padding: 14px 20px; text-align: center;
}
.call-bar a { color: #fff; font-weight: 800; font-size: 1.05rem; text-decoration: none; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,11,11,0.92); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-icon { height: 44px; width: auto; }
.nav-logo-text { height: 72px; width: auto; margin-left: 2px; }
.nav-brand-text {
  display: flex; align-items: baseline; gap: 8px;
  line-height: 1; margin-left: 4px;
}
.nav-brand-hex {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #f5a623 0%, #f07020 25%, #e8306a 60%, #a855c8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-brand-pc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo-fallback { font-family:'DM Sans',sans-serif; font-size:1.3rem; font-weight:800; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,0.58); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 7px 14px; border-radius: 50px;
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-call {
  display: flex !important; align-items: center; gap: 8px;
  background: var(--grad) !important; color: #fff !important;
  font-weight: 700 !important; font-size: 1rem !important; padding: 10px 22px !important;
  border-radius: 50px; box-shadow: 0 4px 18px rgba(232,48,106,0.35);
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.nav-call:hover { box-shadow: 0 6px 30px rgba(232,48,106,0.55) !important; transform: translateY(-1px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 134px 24px 90px; background: var(--dark2);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hex-bg);
  background-size: 72px 83px;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 5% 90%, rgba(168,85,200,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 92% 38%, rgba(240,112,32,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 78% 82%, rgba(232,48,106,0.12) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 740px; }

/* Trust pills */
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 7px 16px;
  font-size: 0.81rem; font-weight: 600; color: rgba(255,255,255,0.72);
}
.trust-pill::before { content: '✓'; color: var(--o); font-weight: 800; }

.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--o); margin-bottom: 18px;
}

/* Big headline: bold sans + italic serif mixed */
.hero-headline { margin-bottom: 24px; line-height: 1.0; }
.hero-headline .line-sans {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.03em;
}
.hero-headline .line-serif {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 900; font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.06rem; color: var(--muted);
  margin-bottom: 36px; max-width: 520px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats */
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stat-num {
  font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 0.79rem; color: rgba(255,255,255,0.38); font-weight: 500; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 142px 24px 78px; background: var(--dark2);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hex-bg); background-size: 72px 83px;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(232,48,106,0.14), transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(168,85,200,0.12), transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 800; line-height: 1.0;
  color: var(--white); letter-spacing: -0.03em; margin-bottom: 20px;
}
.page-hero h1 em {
  font-family: 'Playfair Display', serif; font-style: italic;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p { font-size: 1.04rem; color: var(--muted); max-width: 520px; margin: 0 auto 30px; line-height: 1.7; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(232,48,106,0.3); box-shadow: var(--shadow-glow); }
.svc-card.featured { border-color: rgba(240,112,32,0.35); background: linear-gradient(145deg, rgba(240,112,32,0.07), var(--dark3)); }
.svc-badge {
  display: inline-block; background: var(--grad); color: #fff;
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 14px; align-self: flex-start;
}
.svc-icon { width: 48px; height: 48px; margin-bottom: 14px; }
.svc-icon svg { width: 100%; height: 100%; display: block; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 9px; line-height: 1.35; }
.svc-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.svc-link { font-size: 0.87rem; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============================================
   WHY
   ============================================ */
.why-section { background: var(--dark2); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; inset: 0; background-image: var(--hex-bg); background-size: 72px 83px; opacity: 0.5; }
.why-section .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: border-color 0.2s, background 0.2s; backdrop-filter: blur(4px);
}
.why-card:hover { border-color: rgba(245,166,35,0.3); background: rgba(255,255,255,0.06); }
.why-icon {
  width: 52px; height: 52px; margin-bottom: 16px;
  flex-shrink: 0;
}
.why-icon svg { width: 100%; height: 100%; display: block; }
.why-card h4 { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { background: var(--dark); }
.stars-row { margin-top: -28px; margin-bottom: 44px; display: flex; align-items: center; gap: 12px; }
.star-rating { font-size: 1.05rem; }
.star-label { font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(232,48,106,0.2); }
.review-stars { font-size: 0.83rem; margin-bottom: 10px; }
.review-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-author  { font-size: 0.82rem; font-weight: 700; color: var(--white); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info p { font-size: 0.97rem; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.ci { display: flex; align-items: center; gap: 14px; color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.15s; }
.ci:hover { color: var(--white); }
.ci-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; }
.contact-form { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px; }
.contact-form h3 { font-family: 'DM Sans',sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 24px; letter-spacing: -0.02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.fg input, .fg select, .fg textarea { padding: 13px 16px; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: 0.95rem; color: var(--white); outline: none; resize: none; transition: border-color 0.15s, box-shadow 0.15s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(232,48,106,0.12); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.18); }
.fg select option { background: #181818; }
.form-note { font-size: 0.76rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-note a { color: var(--p); }
.form-success { display: none; margin-top: 14px; padding: 13px 16px; background: rgba(46,200,80,0.08); border: 1px solid rgba(46,200,80,0.25); border-radius: 10px; font-size: 0.9rem; color: #4ade80; font-weight: 600; }
.form-success.show { display: block; }
.form-error { display: none; margin-top: 14px; padding: 13px 16px; background: rgba(232,48,106,0.08); border: 1px solid rgba(232,48,106,0.25); border-radius: 10px; font-size: 0.9rem; color: #f472b6; font-weight: 600; }
.form-error.show { display: block; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip { background: var(--dark2); padding: 72px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: var(--hex-bg); background-size: 72px 83px; opacity: 0.6; }
.cta-strip::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,48,106,0.1), transparent 70%); }
.cta-strip-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-strip h2 { font-family: 'DM Sans',sans-serif; font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-strip h2 em { font-family: 'Playfair Display',serif; font-style: italic; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-strip p { color: var(--muted); margin-bottom: 28px; font-size: 1rem; line-height: 1.65; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; max-width: 240px; }
.footer-brand-text {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 16px; line-height: 1; flex-wrap: wrap;
}
.footer-brand-hex {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem; font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #f5a623 0%, #f07020 25%, #e8306a 60%, #a855c8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-pc {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}
.footer-col h5 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.87rem; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.77rem; color: rgba(255,255,255,0.22); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap::before { content: ''; position: absolute; inset: -2px; border-radius: var(--radius-lg); background: var(--grad-diag); z-index: 0; }
.about-photo { position: relative; z-index: 1; width: 100%; border-radius: calc(var(--radius-lg) - 2px); display: block; object-fit: cover; aspect-ratio: 3/4; }
.about-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 16px; }
.about-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cred-pill { background: var(--dark3); border: 1px solid var(--border); border-radius: 50px; padding: 7px 16px; font-size: 0.81rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.cred-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-detail-content h2 { font-family: 'DM Sans',sans-serif; font-size: 1.85rem; font-weight: 800; color: var(--white); margin: 34px 0 14px; letter-spacing: -0.02em; }
.service-detail-content p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-size: 0.97rem; }
.service-detail-content ul { list-style: none; margin: 0 0 22px 0; }
.service-detail-content li { padding: 9px 0; color: var(--muted); font-size: 0.95rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.service-detail-content li::before { content: '✓'; color: var(--p); font-weight: 800; flex-shrink: 0; }
.sidebar-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; position: sticky; top: 88px; }
.sidebar-card h4 { font-family: 'DM Sans',sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.sidebar-card p { font-size: 0.87rem; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.sidebar-card .btn { width: 100%; margin-bottom: 10px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: rgba(11,11,11,0.98); backdrop-filter: blur(16px); flex-direction: column; align-items: stretch; padding: 18px 20px; gap: 4px; transform: translateY(-110%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); border-bottom: 1px solid var(--border); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.02rem; padding: 11px 16px; }
  .nav-call { text-align: center; justify-content: center; }
  .services-grid, .why-grid, .reviews-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 108px 20px 64px; min-height: auto; }
  .hero-stats { gap: 28px; }
  .page-hero { padding: 110px 20px 58px; }
  .call-bar { display: block; }
  .nav-brand-text { display: none; }
  body { padding-bottom: 54px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .trust-pills { gap: 7px; }
}
