:root {
  --color-navy: #273b70;
  --color-navy-light: #3d5291;
  --color-teal: #00bfba;
  --color-blue: #0058ba;
  --color-mint: #47efd6;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray-mid: #e0e0e0;
  --color-gray-text: #666666;
  --color-gray-muted: #999999;
  --color-dark-text: #1a1a2e;
  --color-success: #10b981;
  --gradient-brand: linear-gradient(135deg, #00bfba, #0058ba);
  --shadow-soft: 0 16px 40px rgba(11, 19, 43, 0.16);
  --shadow-strong: 0 22px 60px rgba(7, 13, 31, 0.32);
  --radius-card: 24px;
  --radius-pill: 999px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", "Century Gothic", sans-serif;
  color: var(--color-dark-text);
  background: var(--color-white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(71, 239, 214, 0.16), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(0, 88, 186, 0.18), transparent 30%),
    var(--color-navy);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(39, 59, 112, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand-lockup img {
  width: 220px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--color-mint);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  background: var(--color-teal);
  color: var(--color-navy);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--color-white);
}

.nav-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 20px;
  color: var(--color-white);
}

.nav-panel.open {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(71, 239, 214, 0.12), transparent 18%),
    radial-gradient(circle at 78% 14%, rgba(0, 191, 186, 0.18), transparent 22%),
    radial-gradient(circle at 65% 65%, rgba(0, 88, 186, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  padding: 92px 0 88px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-mint);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 999px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 22px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  border: 1px solid var(--color-gray-mid);
  color: var(--color-navy);
  background: transparent;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.hero-proof {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-panel {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.hero-panel-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-navy);
}

.hero-panel-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.hero-metric {
  padding: 16px;
  border-radius: 20px;
  background: var(--color-gray-light);
}

.hero-metric strong {
  display: block;
  color: var(--color-blue);
  font-size: 1.6rem;
  line-height: 1;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--color-gray-light);
}

.section-white {
  background: var(--color-white);
}

.section-dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 15% 20%, rgba(71, 239, 214, 0.08), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(0, 88, 186, 0.14), transparent 24%),
    var(--color-navy);
}

.section-gradient {
  color: var(--color-white);
  background: var(--gradient-brand);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  font-size: 1.08rem;
  color: inherit;
  opacity: 0.82;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.card.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.08;
}

.card p,
.card li {
  color: var(--color-gray-text);
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.8);
}

.stat-card strong,
.service-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 2rem;
  line-height: 1;
}

.service-tier {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  background: rgba(0, 191, 186, 0.12);
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-price {
  margin-top: 18px;
  color: var(--color-navy);
  font-weight: 700;
}

.list-clean {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-teal);
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.industry-card .industry-tag {
  color: var(--color-mint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-mint);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-weight: 700;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.logo-pill {
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.cta-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero {
  color: var(--color-white);
  background:
    radial-gradient(circle at 20% 20%, rgba(71, 239, 214, 0.12), transparent 18%),
    radial-gradient(circle at 82% 15%, rgba(0, 88, 186, 0.16), transparent 24%),
    var(--color-navy);
}

.page-hero-inner {
  padding: 90px 0 68px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.page-content {
  padding: 76px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}

.content-card {
  padding: 30px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-gray-mid);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--color-white);
  color: var(--color-dark-text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.note {
  color: var(--color-gray-text);
  font-size: 0.95rem;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #1f2f59;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 16px;
}

.footer-tagline {
  margin-top: 14px;
  color: var(--color-mint);
  font-style: italic;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.footer-meta {
  margin-top: 14px;
  font-size: 0.95rem;
}

.muted {
  color: var(--color-gray-text);
}

.text-light {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1024px) {
  .hero-grid,
  .cta-panel,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.cols-4,
  .card-grid.cols-3,
  .steps,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid {
    padding: 72px 0 64px;
  }

  .section,
  .page-content {
    padding: 72px 0;
  }

  .card-grid.cols-4,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .steps,
  .logo-strip,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .brand-lockup img {
    width: 182px;
  }

  .hero-panel,
  .hero-panel-card,
  .card,
  .step-card,
  .content-card,
  .cta-card {
    padding: 22px;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
