:root {
  --night: #0b1324;
  --blue: #2f5fa7;
  --light-blue: #8db7e8;
  --ice: #eef3f8;
  --graphite: #151a22;
  --text: #eef3f8;
  --muted: #aab9ce;
  --border: rgba(141, 183, 232, 0.22);
  --shadow: 0 20px 60px rgba(1, 7, 19, 0.34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', 'Avenir Next', sans-serif;
  background: radial-gradient(circle at 78% 12%, rgba(47, 95, 167, 0.28), transparent 32rem), var(--night);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 19, 36, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: block;
  width: 9.2rem;
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ice);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(141, 183, 232, 0.5);
  border-radius: 10px;
  background: linear-gradient(135deg, #3b75c4, var(--blue));
  color: var(--ice);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 25px rgba(47, 95, 167, 0.34), 0 0 0 3px rgba(141, 183, 232, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--light-blue);
  box-shadow: 0 14px 30px rgba(47, 95, 167, 0.42), 0 0 0 4px rgba(141, 183, 232, 0.12);
}

.btn:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-small {
  padding: 0.7rem 0.95rem;
}

.btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero {
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--light-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-text,
.section-heading p,
.card p,
.about-grid p,
.step p,
.cta-box p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #dce7f8;
}

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.hero-card,
.card,
.step,
.cta-box,
.trust-card,
.pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card h3 {
  margin-bottom: 0.5rem;
}

.lead-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(21, 26, 34, 0.72);
  color: var(--ice);
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #a9b8ca;
}

.brands {
  padding: 1rem 0 2rem;
}

.trust-section {
  padding-top: 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.trust-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.trust-cards {
  display: grid;
  gap: 1rem;
}

.trust-card,
.pillar-card {
  padding: 1.2rem 1.3rem;
}

.pillars-section {
  padding-top: 0.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 1rem;
}

.featured-pillar {
  background: linear-gradient(135deg, rgba(47, 95, 167, 0.34), rgba(141, 183, 232, 0.12));
}

.featured-pillar h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.brand-pill {
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 2rem 0;
}

.alt-section {
  background: var(--ice);
  color: var(--graphite);
}

.alt-section .about-grid p,
.alt-section .eyebrow {
  color: #52657f;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-grid h2,
.cta-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.7rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.4rem;
}

.card h3,
.step h3 {
  margin-bottom: 0.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metrics div {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.metrics strong {
  display: block;
  font-size: 1.4rem;
  color: var(--blue);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.4rem;
}

.step span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--light-blue);
  font-weight: 800;
}

.testimonial-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--light-blue);
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.cta-box > div {
  flex: 1;
}

.cta-box .btn {
  margin: 0 auto;
}

.footer {
  padding: 4rem 0 2rem;
  background: rgba(4, 9, 19, 0.72);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-wrap {
  margin-bottom: 2rem;
  padding: 1.35rem;
  border-radius: 50%;
  background: rgba(47, 95, 167, 0.14);
  border: 1px solid rgba(141, 183, 232, 0.2);
}

.footer-logo {
  display: block;
  width: 6rem;
  line-height: 0;
}

.footer-logo img {
  display: block;
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  color: var(--ice);
}

.footer-nav a,
.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--light-blue);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.social-link {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ice);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link .instagram-icon {
  fill: none;
}

.social-link .social-fill {
  fill: currentColor;
  stroke: none;
}

.footer-subscribe {
  width: min(100%, 28rem);
  margin-bottom: 2.5rem;
}

.footer-subscribe label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ice);
  font-weight: 700;
}

.subscribe-fields {
  display: flex;
  gap: 0.5rem;
}

.subscribe-fields input {
  min-width: 0;
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(21, 26, 34, 0.72);
  color: var(--ice);
  font: inherit;
}

.subscribe-fields input::placeholder {
  color: #a9b8ca;
}

.subscribe-message {
  min-height: 1.5rem;
  margin-top: 0.5rem;
  color: var(--light-blue);
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.alt-section .metrics div {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(47, 95, 167, 0.18);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cards-grid,
  .steps-grid,
  .trust-grid,
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .cta-box,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    gap: 0.5rem;
  }

  .subscribe-fields {
    flex-direction: column;
  }

  .subscribe-fields .btn {
    width: 100%;
  }

  .cards-grid,
  .about-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 0.5rem;
  }
}
