/* ============================================================
   GEO Landing Page — 1031 Specialists
   Brand colors: Black + White + #F7D938 yellow accent
   ============================================================ */

:root {
  --black: #0a0a0a;
  --offblack: #1a1a1a;
  --darkgrey: #2d2d2d;
  --grey: #6c7686;
  --lightgrey: #e5e7eb;
  --offwhite: #f8f9fa;
  --white: #ffffff;
  --yellow: #F7D938;       /* Brand accent */
  --yellow-dark: #d4b817;
  --max-width: 1100px;
  --narrow-width: 760px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--offblack);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--black); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--yellow-dark); }

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

.container.narrow { max-width: var(--narrow-width); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--lightgrey);
  z-index: 100;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo {
  height: 42px;
  width: auto;
}
.header-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.15s;
  box-shadow: 0 0 0 0 rgba(247, 217, 56, 0.6);
  animation: header-cta-pulse 2.2s ease-in-out infinite;
}
.header-cta:hover {
  background: var(--yellow-dark);
  color: var(--black);
  animation: none;
  box-shadow: 0 4px 14px rgba(247, 217, 56, 0.5);
}
@keyframes header-cta-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(247, 217, 56, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(247, 217, 56, 0); }
  100% { box-shadow: 0 0 0 0   rgba(247, 217, 56, 0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--lightgrey);
}
.hero-inner { text-align: center; max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--offwhite);
  border-radius: 999px;
}

.hero-headline {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--black);
}
.highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--darkgrey);
  margin: 0 auto 36px;
  max-width: 680px;
}
.hero-sub em {
  color: var(--black);
  font-style: italic;
  font-weight: 500;
}

.hero-note {
  font-size: 14px;
  color: var(--grey);
  margin-top: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.1s, box-shadow 0.15s;
  font-family: inherit;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(247, 217, 56, 0.4);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247, 217, 56, 0.5);
}
.btn-submit { width: 100%; padding: 18px; font-size: 17px; margin-top: 8px; }
.btn-final { display: block; max-width: 320px; margin: 32px auto 0; text-align: center; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-light { background: var(--offwhite); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .lead { color: var(--lightgrey); }
.section-dark a { color: var(--yellow); }

.section-headline {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--black);
}
.section-headline.white { color: var(--white); }
.section-headline.center { text-align: center; }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--darkgrey);
  margin: 0 0 20px;
}
.lead.white { color: var(--lightgrey); }
.lead strong { color: var(--black); font-weight: 700; }
.section-dark .lead strong { color: var(--white); }

.section p { font-size: 17px; line-height: 1.7; color: var(--darkgrey); }
.section-dark p { color: var(--lightgrey); }
.section p strong { color: var(--black); font-weight: 600; }
.section-dark p strong { color: var(--white); }

/* ============================================================
   VALUE LIST (the "why this matters" bullets)
   ============================================================ */
.value-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #2d2d2d;
  color: var(--lightgrey);
  font-size: 17px;
}
.value-list li:last-child {
  border-bottom: none;
  padding-top: 18px;
  font-size: 19px;
  color: var(--white);
}
.value-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.dollar-example {
  background: var(--offblack);
  border-left: 4px solid var(--yellow);
  padding: 24px 28px;
  margin: 32px 0 0;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--lightgrey);
}
.dollar-example strong { color: var(--yellow); font-weight: 800; }

/* ============================================================
   DELIVERABLES CARDS
   ============================================================ */
.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.deliv-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 14px;
  border: 1px solid var(--lightgrey);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.deliv-icon { font-size: 36px; margin-bottom: 12px; }
.deliv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--black);
}
.deliv-card p { margin: 0; font-size: 16px; line-height: 1.6; }

@media (max-width: 720px) {
  .deliverables { grid-template-columns: 1fr; }
}

/* ============================================================
   FORM
   ============================================================ */
.form-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--offwhite) 100%);
  padding: 100px 0;
}
.form-intro {
  text-align: center;
  font-size: 18px;
  color: var(--darkgrey);
  margin: 0 0 40px;
}

.lead-form {
  background: var(--white);
  padding: 40px 36px 36px;
  border-radius: 16px;
  border: 1px solid var(--lightgrey);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .row-2 { grid-template-columns: 1fr; }
}

.field {
  display: block;
  margin-bottom: 18px;
}
.field > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--darkgrey);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--lightgrey);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input::placeholder { color: #9ca3af; }
.field input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(247, 217, 56, 0.25);
}
.field input.error {
  border-color: #d63031;
  background: #fff5f5;
}

.captcha-wrap {
  display: flex;
  justify-content: center;
  margin: 18px 0 12px;
  min-height: 78px;
}

.form-fineprint {
  font-size: 13px;
  color: var(--grey);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}

.form-error {
  background: #fee;
  border: 1px solid #fbb;
  color: #a01919;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
}

.form-success {
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.form-success h3 {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--black);
}
.form-success p {
  font-size: 17px;
  color: var(--darkgrey);
  margin: 0;
}

/* ============================================================
   PROOF ROW
   ============================================================ */
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--lightgrey);
}
.proof-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 13px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 720px) {
  .proof-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   NEXT STEPS LIST
   ============================================================ */
.next-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.next-list li {
  counter-increment: step;
  position: relative;
  padding: 20px 0 20px 60px;
  font-size: 17px;
  color: var(--lightgrey);
  border-bottom: 1px solid #2d2d2d;
}
.next-list li:last-child { border-bottom: none; }
.next-list li strong { color: var(--white); font-weight: 600; }
.next-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--lightgrey);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #2d2d2d;
  font-size: 14px;
}
.site-footer p { margin: 0 0 8px; line-height: 1.6; color: var(--lightgrey); font-size: 14px; }
.site-footer a { color: var(--yellow); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .copyright { color: var(--grey); font-size: 12px; margin-top: 16px; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
