/* ============================================================
   Mosquito & Tick Control — Fargo • Detroit Lakes
   Shared stylesheet
   ============================================================ */

:root {
  --blue: #123A78;
  --blue-dark: #0E2E5E;
  --blue-tint: #E8EFF8;
  --ink: #1A1A1A;
  --charcoal: #2F3136;
  --gray: #5B616B;
  --gray-light: #8A909A;
  --line: #E2E7EE;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FC;
  --white: #FFFFFF;

  --maxw: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,0.06);
  --shadow: 0 6px 24px rgba(18,58,120,0.08);
  --shadow-lg: 0 18px 48px rgba(18,58,120,0.12);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --t: 220ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { color: var(--charcoal); }

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

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

.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }

.lead { font-size: 1.18rem; color: var(--gray); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-tint); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* Logo lockup */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .l1 {
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.logo-text .l2 {
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.nav-links > li > a:hover { color: var(--blue); background: var(--bg-soft); }

/* Dropdown */
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
  opacity: 0.6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.94rem;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--blue); }

.nav-cta { margin-left: 10px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,58,120,0.04), rgba(18,58,120,0) 60%),
    var(--bg-soft);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(18,58,120,0.07) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 70%);
  mask-image: linear-gradient(180deg, black, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: 1.2rem; color: var(--gray); margin-bottom: 32px; max-width: 52ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

/* Hero visual card */
.hero-visual {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  min-height: 420px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px;
}
.hero-visual::after {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
  border-radius: 50%;
}
.hero-visual-card {
  position: relative;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  max-width: 320px;
}
.hero-visual-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero-visual-card h3 { font-size: 1.1rem; margin: 6px 0 6px; }
.hero-visual-card p { font-size: 0.92rem; color: var(--gray); margin: 0; }
.hero-leaf {
  position: absolute;
  opacity: 0.5;
  color: rgba(255,255,255,0.5);
}

/* ---------- Generic section heads ---------- */
.sec-head { max-width: 60ch; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 14px; font-size: 1.1rem; color: var(--gray); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-tint); }
.step-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.98rem; color: var(--gray); }

/* ---------- Feature list ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
.feature { display: flex; gap: 16px; }
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: grid; place-items: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { font-size: 0.96rem; color: var(--gray); }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.area-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 38px 34px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--t), box-shadow var(--t);
}
.area-card:nth-child(2) { background: var(--charcoal); }
.area-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(255,255,255,0.12), transparent 55%);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-card .kicker { position: relative; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.area-card h3 { position: relative; color: var(--white); font-size: 1.7rem; margin: 6px 0 10px; }
.area-card p { position: relative; color: rgba(255,255,255,0.85); font-size: 0.98rem; margin-bottom: 18px; }
.area-card .area-link {
  position: relative;
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.area-card .area-link svg { width: 16px; height: 16px; transition: transform var(--t); }
.area-card:hover .area-link svg { transform: translateX(4px); }

/* ---------- Fit cards ---------- */
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--white);
}
.fit-icon { color: var(--blue); margin-bottom: 16px; }
.fit-icon svg { width: 30px; height: 30px; }
.fit h3 { font-size: 1.15rem; margin-bottom: 8px; }
.fit p { font-size: 0.96rem; color: var(--gray); }

/* ---------- Pricing preview ---------- */
.pricing-band {
  background: var(--blue);
  color: var(--white);
  border-radius: 18px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.pricing-band h2 { color: var(--white); }
.pricing-band p { color: rgba(255,255,255,0.85); margin-top: 12px; font-size: 1.05rem; }
.pricing-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.pricing-box .from { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.pricing-box .amount { font-size: 3rem; font-weight: 800; margin: 6px 0; line-height: 1; }
.pricing-box .per { font-size: 0.95rem; opacity: 0.85; margin-bottom: 20px; }
.pricing-box .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue);
  transition: transform var(--t);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 22px; color: var(--gray); font-size: 1rem; max-width: 64ch; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 60px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
}
.cta-band h2 { color: var(--white); position: relative; }
.cta-band p { color: rgba(255,255,255,0.88); position: relative; margin: 14px auto 28px; max-width: 52ch; font-size: 1.1rem; }
.cta-band .cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn-primary { background: var(--white); color: var(--blue); }
.cta-band .btn-primary:hover { background: var(--bg-soft); }
.cta-band .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.5); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.12); }
.cta-contact { position: relative; margin-top: 24px; font-size: 0.96rem; color: rgba(255,255,255,0.9); }
.cta-contact a { color: var(--white); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .logo-text .l1 { color: var(--white); }
.site-footer .logo-text .l2 { color: rgba(255,255,255,0.6); }
.footer-about { margin-top: 18px; font-size: 0.95rem; max-width: 38ch; color: rgba(255,255,255,0.65); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }
.footer-contact a { color: var(--white); font-weight: 600; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(26,26,26,0.08);
}
.sticky-cta .btn { flex: 1; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(18,58,120,0.05), rgba(18,58,120,0) 70%),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(18,58,120,0.06) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 80%);
  mask-image: linear-gradient(180deg, black, transparent 80%);
}
.page-hero-inner { position: relative; padding: 70px 0 64px; max-width: 760px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero h1 .accent { color: var(--blue); }
.page-hero p { font-size: 1.18rem; color: var(--gray); }
.breadcrumb { font-size: 0.86rem; color: var(--gray-light); margin-bottom: 18px; }
.breadcrumb a { color: var(--gray); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Two-col content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: 16px;
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  min-height: 360px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  padding: 40px;
}
.split-media::after {
  content: "";
  position: absolute; bottom: -30%; left: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
}
.split-media .media-quote { position: relative; text-align: center; max-width: 30ch; }
.split-media .media-quote svg { width: 40px; height: 40px; opacity: 0.5; margin: 0 auto 16px; }
.split-media .media-quote p { color: rgba(255,255,255,0.95); font-size: 1.15rem; font-weight: 600; }
.check-list { list-style: none; margin-top: 22px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.check-list li svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.check-list li span { color: var(--charcoal); }

/* ---------- Plan overview ---------- */
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.plan .from { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); font-weight: 700; }
.plan .amount { font-size: 2.6rem; font-weight: 800; margin: 4px 0; }
.plan .amount small { font-size: 1rem; font-weight: 600; color: var(--gray); }
.plan ul { list-style: none; margin: 20px 0 24px; }
.plan li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.plan li svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 0.8fr; gap: 56px; align-items: start; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18,58,120,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--gray-light); margin-top: 6px; }
.contact-aside { }
.contact-aside h3 { margin-bottom: 8px; }
.info-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 20px;
}
.info-block .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-light); font-weight: 700; }
.info-block .value { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.info-block .value a { color: var(--blue); }
.form-success {
  display: none;
  background: var(--blue-tint);
  border: 1.5px solid var(--blue);
  color: var(--blue-dark);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- About ---------- */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.founder {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
}
.founder-photo {
  width: 160px; height: 160px;
  border-radius: 14px;
  background: var(--blue-tint);
  display: grid; place-items: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .hero-visual { min-height: 320px; }
  .features { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .pricing-band { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { margin: 0 auto; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px;
    gap: 2px;
  }
  .nav.open .nav-links > li > a { padding: 14px; font-size: 1rem; }
  .nav.open .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0;
    padding: 0 0 0 14px;
  }
  .nav.open .nav-cta { display: block; margin: 10px 12px 4px; }
  .nav.open .nav-cta .btn { width: 100%; }
  .steps, .fit-grid, .about-values { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band, .pricing-band { padding: 36px 24px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
  .site-footer { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
