/* ==========================================================================
   PEAK SEO-AEO — Mobile-first stylesheet
   Approach: base styles target mobile (320px+), then progressively enhance
   via min-width media queries for tablet (640px), desktop (1024px),
   and wide (1280px).
   ========================================================================== */

/* --- Design tokens --- */
:root {
  /* Brand palette — bright blue + max neon green (client approved) */
  --navy: #2f63ad;
  --navy-deep: #244e8a;
  --navy-darker: #193662;
  --green: #00ff9d;
  --green-bright: #4dffb8;
  --green-soft: #a8ffd9;
  --green-deep: #04b06e;
  --silver: #d5d8de;
  --cream: #f8f7f3;
  --white: #ffffff;
  --text-dark: #2f63ad;
  --text-muted: #5a6378;
  --border: rgba(0, 255, 157, 0.28);
  /* Legacy aliases so existing class names keep working without churn */
  --teal: var(--green);
  --teal-bright: var(--green-bright);
  --teal-soft: var(--green-soft);
  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Layout */
  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

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

/* ==========================================================================
   HEADER (mobile-first)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 72px;
  width: auto;
}

.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all var(--transition);
  border: 2px solid var(--navy);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}

/* ==========================================================================
   HERO (mobile-first)
   ========================================================================== */
.hero {
  padding: 6rem 1.25rem 3rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(60px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(50px);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 157, 0.12);
  color: var(--navy);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  line-height: 1.3;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 400;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.15em;
  background: var(--teal);
  z-index: -1;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 0.95rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
  border: 2px solid var(--navy);
  min-height: 48px;
  text-align: center;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.btn-secondary {
  color: var(--navy);
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: color var(--transition);
  min-height: 48px;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--teal);
}

.hero-supporting {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  line-height: 1.5;
}

.hero-trust-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   SECTIONS (mobile-first base)
   ========================================================================== */
.section {
  padding: 3.5rem 1.25rem;
  position: relative;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-deep);
  margin-bottom: 0.85rem;
}

.section-label.centred {
  display: block;
  text-align: center;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section h2 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-intro.centred {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Problem --- */
.problem-section {
  background: var(--navy);
  color: var(--cream);
}

.problem-section .section-label { color: var(--green); }
.problem-section h2 { color: var(--cream); }
.problem-section h2 .italic { color: var(--green); }
.problem-section .section-intro { color: rgba(248, 247, 243, 0.8); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: width 0.4s ease;
}

.pain-card:hover {
  background: rgba(0, 255, 157, 0.08);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.pain-card:hover::before { width: 100%; }

.pain-number {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.pain-card p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Why --- */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.why-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.why-text strong {
  color: var(--navy);
  font-weight: 600;
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(47, 99, 173, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.comparison-row:first-child .col-seo { color: var(--navy); }
.comparison-row:first-child .col-aeo { color: var(--teal); }

.col-seo, .col-aeo {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.col-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* --- Solution --- */
.solution-section {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(60px);
}

.solution-section .section-label { color: var(--green); }
.solution-section h2 { color: var(--cream); }
.solution-section h2 .italic { color: var(--green); }
.solution-section .section-intro { color: rgba(248, 247, 243, 0.8); }

.solution-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}

.solution-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.solution-item p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Services --- */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0, 255, 157, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(47, 99, 173, 0.12);
  border-color: var(--teal);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Audience --- */
.audience-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.audience-list {
  list-style: none;
  margin-top: 1.5rem;
}

.audience-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.audience-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

.audience-visual {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.audience-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.audience-visual h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  position: relative;
  color: var(--cream);
}

.audience-visual p {
  color: rgba(248, 247, 243, 0.85);
  margin-bottom: 1.25rem;
  position: relative;
  line-height: 1.6;
  font-size: 0.95rem;
}

.audience-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
}

.flag-badge {
  background: rgba(0, 255, 157, 0.15);
  color: var(--teal);
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--teal);
}

/* --- Process --- */
.process-section { background: var(--cream); }

.process-steps {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  align-items: start;
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(47, 99, 173, 0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  font-style: italic;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Results --- */
.results-section {
  background: var(--navy);
  color: var(--cream);
}

.results-section .section-label { color: var(--green); }
.results-section h2 { color: var(--cream); }
.results-section h2 .italic { color: var(--green); }
.results-section .section-intro { color: rgba(248, 247, 243, 0.8); }

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
}

.result-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.result-card p {
  color: rgba(248, 247, 243, 0.85);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* --- FAQ --- */
.faq-section { background: var(--cream); }

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  gap: 0.75rem;
  min-height: 48px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  background: var(--teal);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Final CTA --- */
.final-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(60px);
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.final-cta h2 .italic {
  color: var(--teal);
  font-style: italic;
  font-weight: 400;
}

.final-cta p {
  font-size: 1rem;
  color: rgba(248, 247, 243, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-large {
  background: var(--teal);
  color: var(--navy);
  padding: 1rem 1.85rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
  border: 2px solid var(--teal);
  min-height: 52px;
}

.btn-cta-large:hover,
.btn-cta-large:focus-visible {
  background: transparent;
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 157, 0.3);
}

/* --- Contact --- */
.contact-section {
  background: var(--cream);
  padding: 3.5rem 1.25rem;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  margin: 0 auto 1.25rem;
}

.contact-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(47, 99, 173, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--navy);
  transition: all var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  margin-top: 0.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
}

.consent-label a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  background: var(--navy);
  color: var(--cream);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--navy);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  width: 100%;
  margin-top: 0.75rem;
  min-height: 52px;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}

/* ==========================================================================
   FOOTER (mobile-first)
   ========================================================================== */
.site-footer {
  background: var(--navy-darker);
  color: var(--cream);
  padding: 3rem 1.25rem 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 255, 157, 0.15);
}

.footer-brand p {
  color: rgba(248, 247, 243, 0.7);
  margin-top: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}


.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(248, 247, 243, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover,
.footer-col a:focus-visible { color: var(--teal); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: rgba(248, 247, 243, 0.5);
  gap: 0.5rem;
}

.footer-legal-strip {
  color: rgba(248, 247, 243, 0.45);
  font-size: 0.75rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* --- Entrance animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero-sub, .hero-cta-row, .hero-supporting {
  animation: fadeUp 0.8s ease-out backwards;
}

.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.25s; }
.hero-cta-row { animation-delay: 0.4s; }
.hero-supporting { animation-delay: 0.55s; }
.hero-trust-row { animation: fadeUp 0.8s ease-out 0.7s backwards; }

/* ==========================================================================
   TABLET (640px+)
   ========================================================================== */
@media (min-width: 640px) {
  .header-inner { padding: 0 1.75rem; }
  .logo img { height: 58px; }
  .footer-logo img { height: 84px; }
  .nav-cta { padding: 0.65rem 1.3rem; font-size: 0.85rem; }

  .hero { padding: 7rem 1.75rem 4rem; }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
  .hero-sub { font-size: 1.1rem; max-width: 620px; }
  .hero-cta-row { flex-direction: row; align-items: center; }
  .btn-primary, .btn-secondary { width: auto; }
  .hero-supporting { font-size: 0.95rem; max-width: 600px; }
  .hero-trust-row { gap: 2.5rem; margin-top: 3rem; }
  .trust-number { font-size: 1.75rem; }
  .trust-label { font-size: 0.8rem; }

  .section { padding: 5rem 1.75rem; }
  .section h2 { font-size: clamp(2rem, 4.5vw, 2.75rem); }
  .section-intro { font-size: 1.1rem; max-width: 680px; }

  .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .pain-card { padding: 1.75rem; }

  .solution-list { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }

  .comparison-card { padding: 2rem; }

  .process-step { grid-template-columns: 70px 1fr; gap: 1.5rem; padding: 1.75rem; }
  .step-number { font-size: 2.5rem; }

  .faq-question { padding: 1.25rem 1.75rem; font-size: 1.1rem; }
  .faq-icon { width: 32px; height: 32px; font-size: 1.15rem; }
  .faq-answer { padding: 0 1.75rem 1.25rem; font-size: 1rem; }

  .final-cta { padding: 6rem 1.75rem; }
  .final-cta p { font-size: 1.1rem; }
  .btn-cta-large { padding: 1.15rem 2.25rem; font-size: 1.05rem; }

  .contact-form { padding: 2.5rem; }
  .form-row { grid-template-columns: 1fr 1fr; }

  .site-footer { padding: 4rem 1.75rem 2rem; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }
}

/* ==========================================================================
   DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  .header-inner { padding: 0 2rem; }
  .logo img { height: 64px; }
  .footer-logo img { height: 92px; }
  .nav-cta { padding: 0.65rem 1.4rem; font-size: 0.9rem; }

  .hero { padding: 9rem 2rem 6rem; }
  .hero::before { top: 20%; right: -10%; width: 600px; height: 600px; filter: blur(80px); }
  .hero::after { bottom: -20%; left: -10%; width: 500px; height: 500px; filter: blur(60px); }
  .hero h1 { font-size: clamp(3rem, 5vw, 5rem); max-width: 900px; }
  .hero-sub { font-size: 1.25rem; max-width: 680px; }
  .hero-supporting { font-size: 0.95rem; padding-left: 1.25rem; }
  .trust-number { font-size: 2rem; }
  .trust-label { font-size: 0.85rem; }

  .section { padding: 6rem 2rem; }
  .section h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); max-width: 800px; }
  .section-intro { font-size: 1.15rem; max-width: 720px; margin-bottom: 3rem; }

  .pain-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .pain-card { padding: 2rem; }
  .pain-number { font-size: 1.1rem; }
  .pain-card p { font-size: 1rem; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
  .why-text p { font-size: 1.1rem; }
  .comparison-card { padding: 2.5rem; }
  .comparison-row { padding: 1.25rem 0; gap: 1.5rem; }
  .col-seo, .col-aeo { font-size: 0.95rem; }
  .col-divider { height: 30px; }
  .comparison-row:first-child { font-size: 0.8rem; }

  .solution-list { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
  .solution-item { padding: 1.5rem; gap: 1rem; }
  .solution-item p { font-size: 1rem; }

  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .service-card { padding: 2.5rem; }
  .service-icon { width: 56px; height: 56px; font-size: 1.1rem; margin-bottom: 1.5rem; }
  .service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
  .service-card p { font-size: 0.98rem; }

  .audience-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .audience-list { margin-top: 2rem; }
  .audience-list li { padding: 1rem 0; font-size: 1.05rem; gap: 1rem; }
  .audience-visual { padding: 3rem; }
  .audience-visual::before { width: 200px; height: 200px; filter: blur(100px); }
  .audience-visual h3 { font-size: 1.75rem; margin-bottom: 1rem; }
  .audience-visual p { margin-bottom: 1.5rem; }
  .audience-flags { gap: 1rem; margin-top: 2rem; }
  .flag-badge { padding: 0.5rem 1rem; font-size: 0.85rem; }

  .process-steps { margin-top: 3rem; gap: 1.5rem; }
  .process-step { grid-template-columns: 80px 1fr; gap: 2rem; padding: 2rem; }
  .step-number { font-size: 3rem; }
  .step-content h3 { font-size: 1.3rem; }

  .results-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .result-card { padding: 2rem; }
  .result-card h4 { font-size: 1.2rem; }

  .faq-list { margin-top: 3rem; max-width: 900px; }
  .faq-item { margin-bottom: 1rem; }
  .faq-question { padding: 1.5rem 2rem; font-size: 1.15rem; }
  .faq-answer { padding: 0 2rem 1.5rem; }

  .final-cta { padding: 8rem 2rem; }
  .final-cta::before { width: 800px; height: 800px; filter: blur(80px); }
  .final-cta h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
  .final-cta p { font-size: 1.2rem; margin-bottom: 3rem; }
  .btn-cta-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }

  .contact-section { padding: 6rem 2rem; }
  .contact-form { padding: 3rem; }

  .site-footer { padding: 4rem 2rem 2rem; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; }
  .footer-bottom { font-size: 0.85rem; }
  .footer-legal-strip { font-size: 0.8rem; }
}

/* ==========================================================================
   WIDE (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
  .hero h1 { font-size: 5rem; }
  .section h2 { font-size: 3.25rem; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .site-header, .nav-cta, .btn-primary, .btn-secondary,
  .btn-cta-large, .form-submit, .final-cta, .contact-section {
    display: none;
  }
  body { background: white; color: black; }
  .hero, .section { padding: 1rem 0; }
}
