/* ============================================================
   Harbour Point CPA — Demo Site
   designmenu.ca demo  |  Nanaimo, BC
   ============================================================ */

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

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FFFFFF;
  --bg-2:         #F7F8FA;
  --bg-3:         #EEF0F4;
  --text-1:       #111827;
  --text-2:       #374151;
  --text-3:       #6B7280;
  --accent:       #0D5C6E;
  --accent-hover: #094756;
  --accent-2:     #0F7A90;
  --accent-light: #EDF7F9;
  --copper:       #C07A2E;
  --copper-hover: #A3671F;
  --copper-light: #FBF4EA;
  --dark:         #0A1628;
  --dark-2:       #0F2040;
  --dark-3:       #1A2F52;
  --bdr:          #E5E7EB;
  --bdr-2:        #D1D5DB;
  --white:        #FFFFFF;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:    0 4px 8px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.1);
  --font:         'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max-w:        1160px;
  --section:      96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Typography ───────────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
p { color: var(--text-2); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all .18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,92,110,.3);
}
.btn-copper {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-copper:hover {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,122,46,.3);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--bdr-2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn svg { flex-shrink: 0; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdr);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { color: white; }
.nav-wordmark { font-size: 16px; font-weight: 800; color: var(--text-1); letter-spacing: -0.02em; line-height: 1.2; }
.nav-wordmark span { display: block; font-size: 10px; font-weight: 600; color: var(--text-3); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-2);
  padding: 8px 14px; border-radius: var(--radius);
  transition: all .15s;
}
.nav-links a:hover { background: var(--bg-2); color: var(--text-1); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  font-size: 14px; font-weight: 700; color: var(--text-1);
  display: flex; align-items: center; gap: 6px; transition: color .15s;
}
.nav-phone:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--white);
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  transition: all .15s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; margin: 5px 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--bdr);
}
.hero-proof-item { font-size: 13px; color: var(--text-3); display: flex; align-items: center; gap: 7px; }
.hero-proof-item strong { color: var(--text-1); font-weight: 700; }
.hero-proof-divider { width: 1px; height: 20px; background: var(--bdr); }

/* Hero right — dashboard card */
.hero-dashboard {
  background: var(--dark);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 28px;
  margin-top: 0;
  align-self: end;
}
.dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dashboard-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.dashboard-badge {
  font-size: 11px; font-weight: 700;
  background: rgba(13,92,110,.4); color: var(--accent-2);
  padding: 4px 10px; border-radius: 100px;
}
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.metric-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.metric-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.metric-value { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.metric-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 3px; }
.metric-up { color: #34D399; font-size: 11px; font-weight: 700; }
.dashboard-list { display: flex; flex-direction: column; gap: 8px; }
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
}
.dash-row-label { color: rgba(255,255,255,.65); font-weight: 500; }
.dash-row-val { color: var(--white); font-weight: 700; }
.dash-row-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.status-done { background: rgba(52,211,153,.15); color: #34D399; }
.status-review { background: rgba(192,122,46,.15); color: var(--copper); }
.status-pending { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }

/* ── Marquee strip ────────────────────────────────────────── */
.marquee-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: var(--section) 0; }
.section-sm { padding: 64px 0; }
.section-hdr { margin-bottom: 56px; }
.section-hdr.centered { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-hdr h2 { margin-bottom: 14px; }
.section-hdr p { font-size: 17px; }

/* ── Services grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .2s;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--bdr-2); }
.service-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.service-card.featured .service-icon { background: rgba(255,255,255,.15); }
.service-card h3 { margin-bottom: 10px; }
.service-card.featured h3 { color: var(--white); }
.service-card p { font-size: 14px; color: var(--text-3); line-height: 1.7; }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-from {
  font-size: 14px; font-weight: 700;
  color: var(--accent); margin-top: 16px;
}
.service-card.featured .service-from { color: rgba(255,255,255,.9); }
.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--copper);
  margin-top: 12px; transition: gap .15s;
}
.service-card.featured .service-link { color: rgba(255,255,255,.85); }
.service-link:hover { gap: 8px; }

/* ── Process ──────────────────────────────────────────────── */
.process { background: var(--dark); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: rgba(255,255,255,.1);
}
.process-step { padding: 0 24px; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 16px; font-weight: 800; color: var(--white);
  position: relative; z-index: 1;
}
.step-num.active { background: var(--accent); border-color: var(--accent); }
.process-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── Why us ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-content h2 { margin-bottom: 16px; }
.why-content p { margin-bottom: 20px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  transition: border-color .2s;
}
.why-item:hover { border-color: var(--accent); }
.why-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.why-item h4 { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-1); text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-3); line-height: 1.6; }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}
.why-stat.accent-bg { background: var(--accent); }
.why-stat.copper-bg { background: var(--copper); }
.why-stat-num {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.why-stat-label { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }
.why-stat.accent-bg .why-stat-label, .why-stat.copper-bg .why-stat-label { color: rgba(255,255,255,.8); }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: var(--copper); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-biz { font-size: 12px; color: var(--text-3); }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(13,92,110,.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 40%, rgba(192,122,46,.15) 0%, transparent 55%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.6); font-size: 17px; max-width: 500px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 32px; height: 32px; background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.footer-wordmark { font-size: 15px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.2; }
.footer-wordmark span { display: block; font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 300px; margin-bottom: 18px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 8px; transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-col h4 { font-size: 10px; color: rgba(255,255,255,.3); margin-bottom: 16px; letter-spacing: 0.16em; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 10% 50%, rgba(13,92,110,.5) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 560px; }

/* ── Services page ────────────────────────────────────────── */
.service-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--bdr);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block-label { position: sticky; top: 100px; }
.service-block-label h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-block-label p { font-size: 14px; color: var(--text-3); margin-bottom: 20px; }
.service-prices { display: flex; flex-direction: column; gap: 0; }
.price-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--bdr);
}
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.price-desc { font-size: 13px; color: var(--text-3); }
.price-amount { font-size: 18px; font-weight: 800; color: var(--accent); flex-shrink: 0; white-space: nowrap; }
.price-note { font-size: 11px; font-weight: 600; color: var(--text-3); text-align: right; }
.service-includes {
  margin-top: 20px;
  background: var(--bg-2);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.service-includes h4 { font-size: 11px; margin-bottom: 12px; }
.service-includes ul { display: flex; flex-direction: column; gap: 8px; }
.service-includes li {
  font-size: 13px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-includes li::before { content: '→'; color: var(--copper); font-weight: 700; flex-shrink: 0; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 32px; }
.contact-block { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--bdr); }
.contact-block:last-of-type { border-bottom: none; }
.contact-icon { width: 42px; height: 42px; background: var(--accent-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text-1); line-height: 1.6; }
.contact-value a { color: var(--text-1); transition: color .15s; }
.contact-value a:hover { color: var(--accent); }
.contact-value small { font-size: 13px; font-weight: 400; color: var(--text-3); display: block; }

.form-card { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--text-3); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--bdr-2); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font);
  color: var(--text-1); background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13,92,110,.1);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; font-size: 14px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .contact-split { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block-label { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .nav-phone { display: none; }
  .dashboard-metrics { grid-template-columns: 1fr 1fr; }
}
