/* Go Steed — go-steed.com (Black / Blue / White) */
:root {
  --primary: #2F7BFF;
  --secondary: #6BB0FF;
  --accent: #FFFFFF;
  --bg: #05070C;
  --dark: #05070C;
  --light: #0B1220;
  --surface: #10182A;
  --white: #ffffff;
  --muted: #9AABBE;
  --border: rgba(107, 176, 255, 0.18);
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --container: 1200px;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --header-h: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(47, 123, 255, 0.28), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(107, 176, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #05070C 0%, #070C16 40%, #05070C 100%);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.75rem, var(--container));
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2F7BFF, #1A5FE0);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 123, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4A8FFF, #2F7BFF);
  box-shadow: 0 14px 28px rgba(47, 123, 255, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(107, 176, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(47, 123, 255, 0.18);
  border-color: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--white);
  color: #0A1630;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.btn-accent:hover {
  background: #E8F1FF;
}

.btn-dark {
  background: #0A1220;
  color: var(--white);
  border-color: var(--border);
}

.btn-dark:hover {
  background: #121C30;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 12, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 176, 255, 0.16);
  height: var(--header-h);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(220px, 52vw);
  line-height: 0;
  color: var(--white);
}

.logo-img,
.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.logo-mark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(5, 7, 12, 0.92) 0%, rgba(10, 22, 48, 0.88) 45%, rgba(18, 58, 138, 0.75) 100%),
    radial-gradient(circle at 18% 20%, rgba(47, 123, 255, 0.35), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(107, 176, 255, 0.28), transparent 46%),
    linear-gradient(160deg, #05070C 0%, #0A1630 45%, #123A8A 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 123, 255, 0.35), transparent 70%);
  right: -80px;
  top: 10%;
  filter: blur(10px);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.75rem 5.25rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.hero-copy {
  max-width: min(920px, 100%);
}

.brand-signal {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}

.brand-signal a {
  color: inherit;
}

.hero h1 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  max-width: 920px;
  margin-bottom: 0.95rem;
  line-height: 1.35;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 6.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin-bottom: 1.35rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}

.hero-tagline .line {
  display: block;
}

.hero-tagline .line-accent {
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  max-width: 820px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-lead strong {
  color: var(--secondary);
  font-weight: 600;
}

.footer-bottom a,
.footer-about a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover,
.footer-about a:hover,
.brand-signal a:hover {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}

.page-hero {
  min-height: auto;
  padding: 0;
}

.page-hero .hero-inner {
  /* Match homepage hero left/right padding */
  padding: 4.75rem 5.25rem 5rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-hero .hero-copy {
  max-width: min(920px, 100%);
  width: 100%;
}

.page-hero h1,
.page-hero .hero-lead {
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}

/* Partners */
.partners {
  background: var(--surface);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.partners h2 {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: partnersSlide 35s linear infinite;
  will-change: transform;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 88px;
  padding: 0.85rem 1.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 140px;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
}

@keyframes partnersSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1rem;
  }

  .partner-logo[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .partner-logo {
    width: 150px;
    height: 76px;
  }

  .partner-logo img {
    max-width: 118px;
    max-height: 44px;
  }

  .partners-track {
    animation-duration: 28s;
  }
}

/* Feature grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 87, 255, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(0, 184, 255, 0.18));
  color: var(--primary);
  margin-bottom: 1.1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.solution-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.solution-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.solution-card p {
  color: var(--muted);
}

/* Content band */
.content-band {
  background: var(--surface);
}

.content-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.content-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.content-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.topic-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.topic-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.topic-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

.content-panel {
  background:
    linear-gradient(160deg, rgba(0, 87, 255, 0.08), rgba(0, 184, 255, 0.12)),
    var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.content-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.content-panel p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 18px rgba(0, 87, 255, 0.25);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Stats */
.stats {
  background:
    linear-gradient(120deg, var(--dark) 0%, #123055 50%, #0a3d8f 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.testimonial .stars {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 0.85rem;
}

.testimonial .stars svg {
  width: 18px;
  height: 18px;
  fill: #F5B400;
  flex-shrink: 0;
}

.testimonial p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial small {
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 1.35rem 1.2rem;
  color: var(--muted);
}

/* CTA Banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, var(--primary), #0046d1 45%, var(--secondary));
  color: var(--white);
  padding: 4.5rem 0;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  right: -80px;
  bottom: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
}

/* Availability modal / check strip */
.check-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.check-form,
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 140px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  background: #0A1220;
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select option {
  background: #0A1220;
  color: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-info {
  background: var(--dark);
  color: var(--white);
  border-radius: 20px;
  padding: 2.25rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
}

.info-list {
  display: grid;
  gap: 1.25rem;
}

.info-list li strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.info-list li span,
.info-list li a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-success,
.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 500;
}

.form-success {
  background: rgba(47, 123, 255, 0.16);
  color: #B8D4FF;
  border: 1px solid rgba(107, 176, 255, 0.35);
}

.form-error {
  background: rgba(255, 80, 80, 0.12);
  color: #FFB4B4;
  border: 1px solid rgba(255, 120, 120, 0.35);
}

.form-success.show,
.form-error.show {
  display: block;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Plans / speed guide */
.speed-guide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.speed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.speed-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 87, 255, 0.3);
}

.speed-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.speed-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.benefit-list li {
  display: flex;
  gap: 0.55rem;
  color: var(--muted);
}

.benefit-list li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 700;
}

.values-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.value-card,
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.value-card h3,
.audience-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.value-card p,
.audience-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.process-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.process-item strong {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  line-height: 28px;
}

.process-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

.mission-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.mission-box h2 {
  margin-bottom: 1rem;
}

.mission-box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.vision-card {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 20px;
  padding: 2rem;
}

.vision-card.alt {
  background: linear-gradient(145deg, var(--dark), #1a3a5c);
}

.vision-card h3 {
  margin-bottom: 0.75rem;
}

.vision-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  display: inline-flex;
  max-width: min(260px, 70vw);
  margin-bottom: 1.15rem;
}

.site-footer .logo img {
  max-width: 260px;
  max-height: 56px;
}

.footer-about {
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--secondary);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(24px); }
}

/* Legal pages */
.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid,
  .solutions-grid,
  .testimonials-grid,
  .values-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .process-row,
  .speed-guide,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-split,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .logo {
    max-width: min(168px, 46vw);
  }

  .logo img {
    max-width: 168px;
    max-height: 40px;
  }

  .site-footer .logo {
    max-width: min(200px, 60vw);
  }

  .site-footer .logo img {
    max-width: 200px;
    max-height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a.active::after {
    display: none;
  }

  .nav .btn {
    margin-top: 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .page-hero .hero-inner {
    padding: 3.75rem 2rem 4rem;
  }
}

@media (max-width: 640px) {
  .hero-inner,
  .page-hero .hero-inner {
    padding: 3.25rem 1.25rem 3.5rem;
  }

  .logo {
    max-width: min(148px, 44vw);
  }

  .logo img {
    max-width: 148px;
    max-height: 36px;
  }

  .site-footer .logo {
    max-width: min(180px, 70vw);
  }

  .site-footer .logo img {
    max-width: 180px;
    max-height: 42px;
  }

  .features-grid,
  .solutions-grid,
  .testimonials-grid,
  .values-grid,
  .audience-grid,
  .steps,
  .process-row,
  .speed-guide,
  .stats-grid,
  .footer-grid,
  .form-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
