/* DinLokalaIT — site.css */
:root {
  --brand-navy:      #1a3a5c;
  --brand-teal:      #2a8a7a;
  --brand-teal-dark: #1a6a6a;
  --brand-orange:    #f0a030;

  --navy-900: #0f2540;
  --navy-100: #e3ebf3;
  --navy-050: #f3f6fa;

  --teal-600: #227567;
  --teal-050: #eef7f4;

  --orange-600: #d88a1c;
  --orange-200: #fadda3;

  --ink-900: #1a2330;
  --ink-700: #3a4656;
  --ink-500: #667487;
  --ink-300: #b8c1cd;
  --ink-100: #e6eaf0;
  --ink-050: #f5f7fa;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;

  --shadow-1: 0 1px 2px rgba(26,58,92,.06);
  --shadow-2: 0 4px 12px rgba(26,58,92,.08);
  --shadow-3: 0 10px 28px rgba(26,58,92,.12);

  --r-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
::selection { background: var(--orange-200); color: var(--navy-900); }

html { font-size: 18px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--brand-navy);
  line-height: 1.3;
  margin: 0 0 .5em;
  font-weight: 600;
  text-wrap: balance;
}

p { margin: 0 0 1em; max-width: 640px; }
a { color: var(--brand-teal-dark); text-underline-offset: 3px; transition: color 140ms; }
a:hover { color: var(--brand-teal); }
a:focus-visible { outline: 3px solid var(--brand-orange); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { position: static; width: auto; height: auto; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-teal);
}
.section-head { text-align: center; margin-bottom: 56px; }

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--r-lg);
  padding: 14px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 140ms;
  text-decoration: none;
}
.btn--secondary { background: #fff; color: var(--brand-navy); border-color: var(--brand-navy); }
.btn--secondary:hover { background: var(--navy-050); color: var(--brand-navy); }
.btn--cta {
  background: var(--brand-orange);
  color: var(--navy-900);
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 19px;
}
.btn--cta:hover { background: var(--orange-600); color: var(--navy-900); }
.btn--lg { font-size: 20px; padding: 18px 30px; }
.btn--block { width: 100%; }

/* ---- Card ---- */
.card-svc {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: box-shadow 220ms;
  display: flex;
  flex-direction: column;
}
.card-svc:hover { box-shadow: var(--shadow-2); }

/* ---- Fields ---- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 700; color: var(--brand-navy); font-size: 15px; }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 17px;
  padding: 12px 14px;
  border: 2px solid var(--ink-300);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-900);
  min-height: 48px;
  width: 100%;
}
.field input:focus, .field textarea:focus {
  border-color: var(--brand-teal);
  outline: none;
  box-shadow: 0 0 0 4px rgba(240,160,48,.35);
}

/* ======== HEADER ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 24px;
}
.site-header .logo img { height: 110px; width: auto; display: block; }
.site-header .logo--text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--brand-navy);
  text-decoration: none;
}
.header-nav { display: flex; gap: 18px; margin-left: 20px; }
.header-nav a {
  color: var(--brand-navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--brand-teal); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-navy);
  text-decoration: none;
  letter-spacing: .02em;
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all 200ms;
}
.mobile-menu {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--ink-100);
  background: #fff;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: block;
  padding: 10px 0;
  color: var(--brand-navy);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink-100);
}

/* ======== HERO ======== */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--teal-050) 100%);
  padding: 80px 0 100px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero h1 { font-size: 60px; line-height: 1.1; margin: 0; font-weight: 500; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--brand-teal); }
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--brand-navy);
  margin-top: 24px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 32px; flex-wrap: wrap; color: var(--brand-navy); font-size: 15px; font-weight: 500; }
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--navy-100);
}
.hero-image svg, .hero-image img { display: block; width: 100%; height: 100%; }
.hero-image-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.92);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-700);
}

/* ======== URGENT HELP ======== */
.urgent-help { background: var(--brand-orange); padding: 28px 0; }
.urgent-help .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.urgent-help-text { font-family: var(--font-serif); font-style: italic; font-size: 30px; line-height: 1.15; font-weight: 500; color: #fff; }
.urgent-help-sub { font-size: 18px; margin-top: 6px; opacity: .95; color: #fff; }
.urgent-help .btn { background: #fff; color: var(--brand-orange); border: none; font-weight: 600; white-space: nowrap; }
.urgent-help .btn:hover { background: #f5f5f5; color: var(--brand-orange); }

/* ======== PROMISE BAND ======== */
.promise-band { background: #fff; padding: 64px 0; border-bottom: 1px solid var(--ink-100); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.promise-icon {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--teal-050); border: 2px solid var(--brand-teal); color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 22px; margin-bottom: 14px;
}
.promise-grid h3 { font-size: 22px; margin: 0 0 6px; font-weight: 600; line-height: 1.2; }
.promise-grid p { font-size: 16px; color: var(--ink-700); margin: 0; line-height: 1.55; }

/* ======== REASSURANCE ======== */
.reassurance { background: #fff; padding: 72px 0; }
.reassurance .container { max-width: 820px; text-align: center; }
.reassurance h2 { font-size: 48px; margin: 0; font-weight: 500; line-height: 1.15; }
.reassurance-quote {
  font-family: var(--font-serif); font-style: italic; font-size: 24px; line-height: 1.5;
  color: var(--brand-navy); margin-top: 26px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.reassurance-body {
  font-size: 19px; color: var(--ink-700); margin-top: 14px; line-height: 1.55;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

/* ======== HOW IT WORKS ======== */
.how-it-works { background: var(--navy-050); }
.how-it-works h2 { font-size: 52px; margin: 8px 0 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-number {
  width: 88px; height: 88px; border-radius: 999px; background: #fff;
  border: 3px solid var(--brand-orange); margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 44px; color: var(--brand-navy);
}
.step h3 { font-size: 26px; margin: 0; font-weight: 600; }
.step p { font-size: 17px; color: var(--ink-700); margin: 10px auto 0; max-width: 320px; }

/* ======== SERVICES ======== */
.services { background: #fff; }
.services h2 { font-size: 52px; margin: 8px 0 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-050); color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 22px; font-style: italic; margin-bottom: 16px;
}
.card-svc h3 { font-size: 24px; margin: 0; font-weight: 600; }
.card-svc p { font-size: 16px; color: var(--ink-700); margin: 8px 0 0; line-height: 1.55; }

/* ======== TRUST ======== */
.trust { background: var(--teal-050); }
.trust .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust h2 { font-size: 48px; margin: 8px 0 16px; }
.trust h2 em { font-style: italic; }
.trust-body { font-size: 19px; color: var(--ink-700); margin-top: 20px; line-height: 1.6; }
.trust-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.trust-check { display: flex; gap: 10px; align-items: center; color: var(--brand-navy); font-size: 16px; font-weight: 500; }
.trust-check .check { color: var(--brand-orange); font-size: 18px; font-weight: 700; }
.testimonial { background: #fff; border-radius: 24px; padding: 36px; box-shadow: var(--shadow-2); }
.testimonial-quote { font-family: var(--font-serif); font-style: italic; font-size: 28px; color: var(--brand-navy); line-height: 1.4; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 999px; background: var(--navy-100);
  color: var(--brand-navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 20px; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--brand-navy); font-size: 17px; }
.testimonial-sub { font-size: 14px; color: var(--ink-500); }

/* ======== PRICING ======== */
.pricing { background: #fff; }
.pricing h2 { font-size: 52px; margin: 8px 0 0; }
.pricing-intro-italic {
  font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--brand-navy);
  margin-top: 18px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.4;
}
.pricing-intro-body { font-size: 20px; color: var(--ink-700); margin-top: 10px; max-width: 640px; margin-left: auto; margin-right: auto; }
.onboarding-callout {
  background: var(--navy-050); border: 2px solid var(--brand-navy); border-radius: 20px;
  padding: 28px 32px; margin: 40px 0 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.onboarding-callout h3 { font-size: 30px; margin: 4px 0 8px; }
.onboarding-callout p { font-size: 17px; color: var(--ink-700); margin: 0; max-width: 620px; line-height: 1.55; }
.onboarding-price { text-align: center; flex-shrink: 0; }
.onboarding-price .amount { font-family: var(--font-serif); font-weight: 600; font-size: 56px; color: var(--brand-navy); line-height: 1; }
.onboarding-price .label { font-size: 14px; color: var(--ink-500); margin-top: 4px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan-card { border-radius: 24px; padding: 32px; position: relative; display: flex; flex-direction: column; }
.plan-card--default { background: #fff; color: var(--ink-900); border: 1px solid var(--ink-100); box-shadow: var(--shadow-1); }
.plan-card--primary { background: var(--brand-navy); color: #fff; box-shadow: 0 24px 48px rgba(26,58,92,.22); transform: translateY(-8px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand-orange); color: var(--navy-900); padding: 6px 18px;
  border-radius: 999px; font-weight: 700; font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
}
.plan-card h3 { font-size: 28px; margin: 0; font-weight: 600; }
.plan-card--default h3 { color: var(--brand-navy); }
.plan-card--primary h3 { color: #fff; }
.plan-desc { font-size: 16px; margin-top: 6px; margin-bottom: 18px; font-style: italic; font-family: var(--font-serif); }
.plan-card--default .plan-desc { color: var(--ink-700); }
.plan-card--primary .plan-desc { color: rgba(255,255,255,.85); }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-family: var(--font-serif); font-weight: 600; font-size: 64px; letter-spacing: -.02em; line-height: 1; }
.plan-card--default .plan-price .amount { color: var(--brand-navy); }
.plan-card--primary .plan-price .amount { color: #fff; }
.plan-price .unit { font-size: 15px; }
.plan-card--default .plan-price .unit { color: var(--ink-500); }
.plan-card--primary .plan-price .unit { color: rgba(255,255,255,.75); }
.plan-sub { font-size: 14px; margin-top: 6px; }
.plan-card--default .plan-sub { color: var(--ink-500); }
.plan-card--primary .plan-sub { color: rgba(255,255,255,.7); }
.plan-features { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.plan-features li { display: flex; gap: 10px; font-size: 16px; }
.plan-card--default .plan-features li { color: var(--ink-900); }
.plan-card--primary .plan-features li { color: rgba(255,255,255,.92); }
.plan-features .check { color: var(--brand-orange); font-weight: 700; }
.pricing-footer { text-align: center; margin-top: 28px; font-size: 15px; color: var(--ink-500); }

/* ======== LOCAL PRESENCE ======== */
.local-presence { background: var(--navy-050); }
.local-presence .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.local-map { background: #fff; border-radius: 24px; padding: 8px; box-shadow: var(--shadow-2); aspect-ratio: 5/4; overflow: hidden; }
.local-map svg { display: block; width: 100%; height: 100%; border-radius: 16px; }
.local-presence h2 { font-size: 48px; margin: 8px 0 16px; }
.body-text { font-size: 19px; color: var(--ink-700); margin-top: 20px; line-height: 1.6; }
.local-contact { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.local-contact .label { font-size: 14px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.phone-link { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--brand-navy); text-decoration: none; letter-spacing: .02em; }
.hours { font-size: 18px; color: var(--brand-navy); font-weight: 500; margin-top: 4px; }

/* ======== FAQ ======== */
.faq { background: #fff; }
.faq .container { max-width: 820px; }
.faq h2 { font-size: 48px; margin: 8px 0 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--ink-100); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 22px 24px;
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-serif); font-size: 22px; color: var(--brand-navy); font-weight: 600;
}
.faq-question:hover { background: var(--ink-050); }
.faq-toggle { flex-shrink: 0; font-size: 26px; color: var(--brand-teal); font-family: var(--font-body); font-weight: 300; transition: transform 200ms; line-height: 1; }
.faq-item[data-open] .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; font-size: 17px; color: var(--ink-700); line-height: 1.6; }
.faq-cta { text-align: center; margin-top: 40px; font-size: 18px; color: var(--ink-700); }
.faq-cta a { color: var(--brand-teal-dark); font-weight: 600; }

/* ======== FINAL CTA ======== */
.final-cta { padding: 80px 0; }
.final-cta-box {
  background: var(--brand-navy); color: #fff; border-radius: 32px;
  padding: 64px 56px; display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center; position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; left: -40px; right: -40px; bottom: -90px; height: 180px;
  background: radial-gradient(ellipse at 50% 0%, var(--brand-orange) 0%, var(--brand-orange) 35%, transparent 70%);
  transform: scaleY(.3); opacity: .85;
}
.final-cta-content { position: relative; }
.final-cta-content .eyebrow { color: var(--brand-orange); }
.final-cta-content h2 { font-size: 52px; color: #fff; margin: 6px 0 16px; font-weight: 500; }
.final-cta-content > p { font-size: 19px; color: rgba(255,255,255,.85); max-width: 540px; margin: 0; line-height: 1.55; }
.final-cta-content > p.final-cta-gratis { color: var(--brand-orange); margin: 0 0 14px; }
.final-cta-content > p.final-cta-gratis strong { font-weight: 700; }
.final-cta-phone {
  display: inline-block; margin-top: 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 64px;
  letter-spacing: .02em; color: #fff; text-decoration: none; line-height: 1;
}
.final-cta-email { font-size: 16px; color: rgba(255,255,255,.7); margin-top: 14px; }
.final-cta-email a { color: var(--brand-orange); }
.final-cta-form { position: relative; background: #fff; border-radius: 24px; padding: 32px; color: var(--ink-900); }
.final-cta-form h3 { font-size: 26px; margin: 0 0 8px; }
.form-sub { font-size: 15px; color: var(--ink-700); margin: 0 0 18px; }
.form-success { text-align: center; padding: 24px 8px; }
.form-success .icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--teal-050); color: var(--brand-teal);
  margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-family: var(--font-serif); font-weight: 700;
  border: 2px solid var(--brand-teal);
}
.form-success .title { font-family: var(--font-serif); font-size: 24px; color: var(--brand-navy); font-weight: 600; }
.form-success p { font-size: 15px; color: var(--ink-700); margin-top: 8px; max-width: none; }
.form-disclaimer { font-size: 13px; color: var(--ink-500); margin-top: 10px; text-align: center; }

/* ======== FOOTER ======== */
.site-footer { background: var(--brand-navy); color: #fff; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-box { background: #fff; display: inline-block; padding: 14px 18px; border-radius: 12px; }
.footer-logo-box img { height: 48px; width: auto; display: block; }
.footer-logo-box--text { font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: var(--brand-navy); padding: 12px 18px; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,.75); font-size: 15px; max-width: 280px; line-height: 1.55; }
.footer-col h5 { font-family: var(--font-body); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 15px; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-phone { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: .02em; margin-bottom: 8px; color: #fff; }
.footer-contact-info { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.7; }
.footer-contact-info a { color: rgba(255,255,255,.75); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55); font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ======== STICKY CALL ======== */
.sticky-call {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
  background: var(--brand-orange); color: var(--navy-900); padding: 16px 22px;
  border-radius: 999px; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; box-shadow: 0 12px 32px rgba(26,58,92,.25); font-weight: 700;
}
.sticky-call:hover { color: var(--navy-900); background: var(--orange-600); }
.phone-text { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: .02em; }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 420px; }
  .trust .container { grid-template-columns: 1fr; gap: 40px; }
  .local-presence .container { grid-template-columns: 1fr; gap: 40px; }
  .final-cta-box { grid-template-columns: 1fr; gap: 36px; padding: 48px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 90px; }
  .container { padding: 0 18px !important; }
  .hero h1 { font-size: 42px !important; }
  h2 { font-size: 32px !important; }
  .header-nav { display: none; }
  .header-right .header-phone { display: none; }
  .hamburger { display: flex; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--primary { transform: none; }
  .onboarding-callout { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .trust-checks { grid-template-columns: 1fr; }
  .local-contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-phone { font-size: 42px; }
  .reassurance h2 { font-size: 36px !important; }
  .section { padding: 64px 0; }
}
