:root {
  --bg-page: #f4f7fb;
  --bg-soft: #eef3f8;
  --bg-white: #ffffff;
  --ink: #10233e;
  --ink-strong: #0b1a30;
  --muted: #607089;
  --muted-soft: #7a879b;
  --line: #d8e2ee;
  --line-strong: #c6d3e2;
  --brand: #0f2a52;
  --brand-deep: #09172c;
  --brand-accent: #2e77ff;
  --brand-accent-soft: #eaf1ff;
  --success: #0f8a5f;
  --shadow-soft: 0 16px 40px rgba(16, 35, 62, 0.08);
  --shadow-card: 0 10px 24px rgba(16, 35, 62, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg-page);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(46, 119, 255, 0.22), transparent 22%),
    radial-gradient(circle at left center, rgba(111, 215, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #0d1d37 0%, #10284d 52%, #0f2a52 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 62%);
  pointer-events: none;
}

.navbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(7, 19, 36, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(4, 10, 22, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 140ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.75rem 0 2.75rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-panel .eyebrow {
  color: #8bc1ff;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2,
.cta-panel h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 4.6vw, 4.9rem);
  max-width: 12ch;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.cta-panel h2 {
  color: var(--ink-strong);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.cta-panel h2 {
  color: #ffffff;
}

.hero-text,
.section-copy p,
.section-heading p,
.service-card p,
.solution-card p,
.contact-copy p,
.cta-panel p,
.hero-card-section p,
.trust-item span {
  line-height: 1.8;
}

.hero-text,
.hero-points li {
  color: rgba(255, 255, 255, 0.82);
}

.section-copy p,
.section-heading p,
.service-card p,
.solution-card p,
.contact-copy p {
  color: var(--muted);
}

.hero-text {
  max-width: 64ch;
  margin-top: 1.4rem;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #ffffff;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  box-shadow: 0 12px 26px rgba(46, 119, 255, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #256df0;
  box-shadow: 0 16px 30px rgba(46, 119, 255, 0.28);
}

.button-outline,
.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: none;
}

.hero-points,
.check-list,
.outcomes-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.9rem;
}

.hero-points li,
.check-list li,
.outcomes-list li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-points li::before,
.check-list li::before,
.outcomes-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-points li::before {
  background: #8bc1ff;
}

.check-list li,
.outcomes-list li {
  color: var(--muted);
  line-height: 1.75;
}

.check-list li::before,
.outcomes-list li::before {
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(46, 119, 255, 0.08);
}

.hero-card,
.about-panel,
.service-card,
.solution-card,
.outcomes-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
}

.hero-card {
  padding: 2rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 40px rgba(4, 10, 22, 0.22);
}

.hero-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin-bottom: 1.5rem;
}

.card-label {
  margin: 0 0 0.65rem;
  color: #8bc1ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.85rem;
  line-height: 1.2;
}

.hero-card-section p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-stat-grid div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stat-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.hero-stat-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.trust-band {
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem 0;
}

.trust-item {
  padding: 0.65rem 1rem;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: none;
  padding-left: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink-strong);
  font-size: 0.98rem;
}

.section {
  padding: 5.25rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.section-copy,
.contact-copy {
  max-width: 720px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.about-panel,
.contact-form,
.outcomes-panel,
.cta-panel {
  padding: 2rem;
}

.about-panel h3,
.service-card h3,
.solution-card h3,
.outcomes-panel h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--ink-strong);
  font-size: 1.28rem;
}

.services-grid,
.solutions-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.service-card,
.solution-card {
  padding: 1.8rem;
}

.service-card {
  position: relative;
}

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--brand-accent);
}

.solution-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--brand-accent-soft);
  color: var(--brand-accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.outcomes-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.cta-section {
  padding-top: 1rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0e2140 0%, #12305e 100%);
  box-shadow: 0 18px 38px rgba(9, 23, 44, 0.18);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-details a {
  color: var(--brand-accent);
  font-weight: 600;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink-strong);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #97b8ff;
  box-shadow: 0 0 0 3px rgba(46, 119, 255, 0.12);
}

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

.form-note {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  background: var(--brand-deep);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .hero,
  .about-grid,
  .contact-grid,
  .outcomes-panel,
  .services-grid,
  .solutions-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-left: none;
    padding-left: 0;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .navbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

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

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button-outline,
  .button-secondary {
    width: 100%;
  }

  .hero-card,
  .about-panel,
  .service-card,
  .solution-card,
  .outcomes-panel,
  .contact-form,
  .cta-panel,
  .navbar {
    border-radius: 14px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
