/* ============ Base ============ */
:root {
  --blue: #2b3fb0;
  --blue-dark: #212f85;
  --blue-light: #eef1fb;
  --ink: #1a1f36;
  --gray: #5a6178;
  --line: #e4e7f0;
  --bg: #ffffff;
  --bg-alt: #f7f8fc;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 63, 176, 0.10);
  /* Google palette for the SERP mockups */
  --g-blue: #1a73e8;
  --g-green: #188038;
  --g-gray: #5f6368;
  --g-yellow: #fbbc04;
  --g-border: #dadce0;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

.center { text-align: center; }
.accent { color: var(--blue); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.lead { font-size: 1.15rem; color: var(--gray); margin: 20px 0 28px; }

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-sub {
  color: var(--gray);
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}
.center.section-sub { text-align: center; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(43, 63, 176, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-ghost {
  color: var(--blue);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); }

.btn-outline {
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }

.btn-light {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-block { display: block; text-align: center; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.btn-call svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ============ Nav ============ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover:not(.btn) { color: var(--blue); }
.nav-links a.btn-primary { color: #fff; }

.nav-back {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-back:hover { color: var(--blue); }

/* Click-to-call in the nav */
.nav-links a.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.nav-links a.nav-call svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-links a.nav-call:hover { color: var(--blue-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

/* ============ Hero ============ */
.hero {
  padding: 90px 0 100px;
  background:
    radial-gradient(1000px 500px at 85% -10%, var(--blue-light) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-points {
  list-style: none;
  margin-top: 32px;
  color: var(--gray);
  font-size: 0.98rem;
}
.hero-points li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}
.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* ============ Google SERP mockup (hero + diagram) ============ */
.hero-card,
.serp {
  font-family: Arial, Helvetica, sans-serif; /* Google's UI font, sells the mockup */
  background: #fff;
  border: 1px solid var(--g-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.g-bar,
.serp-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--g-border);
  border-radius: 999px;
  padding: 11px 18px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.12);
  margin-bottom: 16px;
}
.g-logo { width: 20px; height: 20px; flex-shrink: 0; }
.g-query { color: #202124; font-size: 0.95rem; flex-grow: 1; }
.g-search-icon { width: 20px; height: 20px; flex-shrink: 0; }

.g-section-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #202124;
  margin: 14px 0 8px;
}

.g-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--g-border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.g-highlight {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 4px 14px rgba(43, 63, 176, 0.15);
}
.g-faded { opacity: 0.55; }

.g-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.g-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.85rem;
  min-width: 0;
}
.g-name { font-size: 0.98rem; font-weight: 700; color: #202124; }
.g-line { line-height: 1.4; }
.g-num { color: #202124; font-weight: 400; }
.g-stars { color: var(--g-yellow); letter-spacing: 1px; }
.g-gray { color: var(--g-gray); }
.g-green { color: var(--g-green); }

.g-guaranteed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--g-green);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 3px;
}
.g-guaranteed svg { width: 15px; height: 15px; }

.g-actions {
  display: flex;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.g-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--g-blue);
}
.g-action-circle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--g-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-action-circle svg { width: 18px; height: 18px; }

/* ============ How Google Works ============ */
.serp-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.serp { padding: 18px; }

.serp-zone {
  position: relative;
  border: 1px solid var(--g-border);
  border-radius: 10px;
  padding: 12px 14px 10px;
  margin-bottom: 14px;
}
.serp-zone:last-child { margin-bottom: 0; }

.serp-zone-ppc {
  border-style: dashed;
  opacity: 0.6;
}

.zone-num {
  position: absolute;
  top: -12px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(43, 63, 176, 0.35);
}

.zone-num-muted {
  background: var(--line);
  color: var(--gray);
  box-shadow: none;
  font-size: 0.8rem;
}

.zone-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: #202124;
  margin-bottom: 8px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid #f1f3f4;
  font-size: 0.8rem;
}
.mini-thumb {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.mini-text { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; color: #202124; }
.mini-text b { font-size: 0.83rem; }
.mini-gg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--g-green);
  font-size: 0.7rem;
  font-weight: 700;
}
.mini-gg svg { width: 12px; height: 12px; }

.mini-tag {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--g-gray);
  border: 1px solid var(--g-border);
  border-radius: 4px;
  padding: 0 5px;
  line-height: 1.5;
}


.mini-map {
  height: 64px;
  border-radius: 8px;
  background:
    linear-gradient(115deg, #dcebdd 0%, #cfe3d2 35%, #d5e7f2 65%, #c9def0 100%);
  position: relative;
  margin-bottom: 6px;
  overflow: hidden;
}
.mini-map::before,
.mini-map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
}
.mini-map::before { top: 46%; left: -10%; width: 120%; height: 5px; transform: rotate(-6deg); }
.mini-map::after { top: -10%; left: 58%; width: 5px; height: 120%; transform: rotate(14deg); }
.pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 0;
  background: #ea4335;
  transform: rotate(-45deg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.pin-1 { top: 20px; left: 32%; }
.pin-2 { top: 34px; left: 58%; }
.pin-3 { top: 14px; left: 76%; }

.mini-org { display: flex; flex-direction: column; gap: 5px; padding: 4px 0 2px; }
.org-url { font-size: 0.72rem; color: #202124; }
.org-title { font-size: 0.88rem; color: var(--g-blue); }
.org-line {
  height: 7px;
  border-radius: 4px;
  background: #f1f3f4;
}
.org-line.short { width: 70%; }

.serp-notes { display: flex; flex-direction: column; gap: 28px; }
.serp-note { display: flex; gap: 18px; }
.note-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(43, 63, 176, 0.3);
}
.note-num-muted {
  background: var(--line);
  color: var(--gray);
  box-shadow: none;
  font-size: 0.85rem;
}
.serp-note h3 { font-size: 1.1rem; margin-bottom: 6px; }
.serp-note p { color: var(--gray); font-size: 0.96rem; }

.serp-takeaway {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 0.98rem;
}

.why {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  color: var(--ink) !important;
}
.why strong { color: var(--blue); }

/* ============ Grids / steps ============ */
.grid { display: grid; gap: 28px; margin-top: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============ Bundle banner ============ */
.bundle-banner {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 12px;
  padding: 30px 34px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.bundle-badge {
  position: absolute;
  top: -14px;
  left: 34px;
  background: #fff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.bundle-copy h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  color: #fff;
}
.bundle-copy h3 strong { font-weight: 800; }
.bundle-copy p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.bundle-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex-shrink: 0;
}
.bundle-save {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.bundle-cta .btn-primary {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.bundle-cta .btn-primary:hover { background: #eef1ff; color: var(--blue); }

@media (max-width: 760px) {
  .bundle-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 24px;
  }
  .bundle-badge { left: 24px; }
  .bundle-cta { width: 100%; }
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.price-tagline { color: var(--gray); font-size: 0.95rem; margin-top: 6px; }

/* Keep prices on the same baseline when a tier name wraps to two lines */
@media (min-width: 1001px) {
  .price-card h3 { min-height: 2.4em; }
}

.price { margin: 24px 0 8px; }
.price-amount { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; }
.price-period { color: var(--gray); font-weight: 500; }
.price-addon {
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-features li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink);
  border-bottom: 1px solid var(--bg-alt);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* ============ Process ============ */
.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

/* Google-styled verification card */
.verify-card {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  border: 1px solid var(--g-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #202124;
}
.verify-badge svg { width: 17px; height: 17px; }

.verify-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #202124;
  line-height: 1.3;
  margin: 10px 0 20px;
}

.verify-list { list-style: none; }
.verify-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--g-border);
  border-radius: 8px;
  padding: 11px 14px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #202124;
}
.verify-list em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--g-green);
  background: #e6f4ea;
  border-radius: 4px;
  padding: 3px 9px;
  white-space: nowrap;
}

.verify-progress { margin-top: 18px; }
.verify-progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--g-gray);
  margin-bottom: 7px;
}
.verify-bar {
  height: 8px;
  border-radius: 999px;
  background: #e8eaed;
  overflow: hidden;
}
.verify-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--g-blue);
}

/* Day-by-day steps */
.process-steps { list-style: none; }
.process-steps li {
  position: relative;
  padding: 0 0 26px 30px;
  border-left: 2px solid var(--line);
}
.process-steps li:last-child { padding-bottom: 0; border-left-color: transparent; }
.process-steps li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--bg);
}
.process-day {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.process-steps h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-steps p { color: var(--gray); font-size: 0.96rem; }

/* ============ Steps ============ */
.step { text-align: center; padding: 0 12px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(43, 63, 176, 0.3);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 0.97rem; }

/* ============ Recent Work ============ */
.work-site {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.work-shots { position: relative; padding-bottom: 40px; }
.work-desktop {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.work-mobile {
  position: absolute;
  width: 30%;
  right: -12px;
  bottom: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(26, 31, 54, 0.22);
}

.work-copy h3 { margin-bottom: 12px; }
.work-copy p { color: var(--gray); font-size: 0.97rem; margin-bottom: 14px; }
.work-copy p:last-child { margin-bottom: 0; }

.lsa-heading { margin-top: 72px; font-size: 1.3rem; }
.lsa-heading-first { margin-top: 48px; }
.lsa-heading + .work-site { margin-top: 28px; }

.lsa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.lsa-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lsa-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.lsa-card img { width: 100%; border-bottom: 1px solid var(--line); }

.lsa-stats {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--gray);
}
.lsa-big b { font-size: 1.25rem; color: var(--ink); letter-spacing: -0.01em; }
.lsa-period { flex-basis: 100%; font-size: 0.78rem; }

.gbp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.work-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 20px;
}

/* ============ CTA ============ */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
}
.cta-inner { text-align: center; max-width: 720px; }
.cta .section-sub { color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; }
.cta-note { margin-top: 20px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); }
.cta-note a { color: #fff; font-weight: 600; }

/* ============ Audit form ============ */
.audit-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 640px;
  margin: 8px auto 0;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full, .consent.full { grid-column: 1 / -1; }

.form-field label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.audit-form input[type="text"],
.audit-form input[type="email"],
.audit-form input[type="tel"],
.audit-form textarea {
  font-family: "Poppins", sans-serif;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  width: 100%;
  resize: vertical;
}
.audit-form input:focus,
.audit-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.consent a { color: var(--blue); }

.audit-form .btn-block { width: 100%; border: none; cursor: pointer; font-family: "Poppins", sans-serif; }

/* ============ Legal pages ============ */
.legal { padding: 72px 24px; max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .updated { color: var(--gray); font-size: 0.9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--gray); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--blue); }

/* ============ Footer ============ */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner { text-align: center; color: var(--gray); font-size: 0.95rem; }
.footer-logo { height: 26px; width: auto; margin: 0 auto 14px; }
.footer-copy { margin-top: 8px; font-size: 0.85rem; }
.footer-contact {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.95rem;
}
.footer-contact a { color: var(--blue); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--blue-dark); }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.9rem;
}
.footer-links a { color: var(--gray); text-decoration: none; }
.footer-links a:hover { color: var(--blue); }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 460px; }
  .grid-3 { grid-template-columns: 1fr; }
  .work-site { grid-template-columns: 1fr; gap: 40px; }
  .lsa-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .gbp-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .section { padding: 72px 0; }

  .serp-layout { grid-template-columns: 1fr; gap: 40px; }
  .serp { max-width: 460px; margin: 0 auto; width: 100%; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 12px 24px rgba(26, 31, 54, 0.08);
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 520px) {
  .hero { padding: 60px 0 72px; }
  .g-actions { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .audit-form { padding: 24px 20px; }
}
