:root {
  --navy: #032b66;
  --navy-dark: #021b40;
  --teal: #0fa7c7;
  --teal-dark: #128d9a;
  --ink: #102033;
  --muted: #637083;
  --light: #f5f9fc;
  --white: #ffffff;
  --border: #dce9f1;
  --shadow: 0 24px 60px rgba(3, 43, 102, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

::selection {
  background: rgba(15, 167, 199, 0.22);
  color: inherit;
}

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

.container {
  width: min(1160px, 92%);
  margin: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 233, 241, 0.8);
}

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 54px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: 0.25s;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: 0.25s;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15, 167, 199, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 10px;
}

/* Typography */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #a8f2ff;
  margin-bottom: 12px;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

/* Home Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 90px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(15, 167, 199, 0.46), transparent 34%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 48%, var(--teal));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -170px;
  top: -180px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero p,
.page-hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 690px;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card-inner {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 26px;
  padding: 36px;
}

.card-kicker {
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
}

.hero-card h2 {
  color: var(--navy);
  font-size: 2.25rem;
}

.hero-card p {
  color: var(--muted);
  font-size: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-row div {
  background: var(--light);
  border-radius: 18px;
  padding: 16px;
}

.stat-row strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.4rem;
}

.stat-row span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

/* Sections */

.section {
  padding: 84px 0;
}

.section-soft {
  padding: 84px 0;
  background: var(--light);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.content-card,
.mission-card,
.cta-card,
.contact-panel,
.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.content-card p {
  font-size: 1.15rem;
  color: var(--muted);
}

.mission-card {
  text-align: center;
  max-width: 980px;
  margin: auto;
  padding: 56px 64px;
}

.mission-card h2{
    max-width:1200px;
    margin:auto;
    font-size:clamp(1.7rem,2.2vw,2.8rem);
    line-height:1.25;
    letter-spacing:-0.02em;
    font-weight:800;
}

.center-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.center-heading p {
  color: var(--muted);
  font-size: 1.07rem;
}

/* Cards */

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

.feature-card,
.process-card,
.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(3, 43, 102, 0.08);
  transition: 0.25s;
}

.feature-card:hover,
.process-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card span,
.process-card span {
  color: var(--teal);
  font-weight: 900;
  font-size: 1.7rem;
}

.feature-card p,
.process-card p,
.service-card p {
  color: var(--muted);
}

/* Services */

.services-section {
  background: linear-gradient(180deg, #ffffff, var(--light));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  padding: 40px;
  color: var(--ink);
}

.icon-pill {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
}

/* CTA */

.cta-section {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.cta-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
}

.cta-card h2 {
  color: var(--navy);
}

.cta-card p {
  color: var(--muted);
}

/* Internal Page Hero */

.page-hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(15, 167, 199, 0.4), transparent 35%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #ffffff;
  text-align: center;
}

.page-hero h1 {
  max-width: 1000px;
  margin: 0 auto 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.narrow {
  max-width: 880px;
}

/* Timeline */

.timeline {
  max-width: 920px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--teal), var(--navy));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: 0 18px 45px rgba(3, 43, 102, 0.08);
}

.step-number {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  z-index: 1;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

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

/* Quote Band */

.quote-band {
  background: var(--light);
  padding: 70px 0;
  text-align: center;
}

.quote-band h2{
    max-width:1300px;
    margin:auto;
    color:var(--navy);
    font-size:clamp(1.8rem,2.4vw,3rem);
    line-height:1.22;
    letter-spacing:-0.02em;
    font-weight:800;
}

/* Contact */

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

.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-line strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-line a {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  font-weight: 800;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 167, 199, 0.12);
}

/* Footer */

.footer {
  background: #051d3e;
  color: #d8e6f1;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  background: #ffffff;
  border-radius: 18px;
  padding: 8px;
  max-width: 230px;
  height: auto;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding: 20px;
  color: #aac0d2;
}

/* Animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

/* Tablet */

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .navbar {
    height: 72px;
  }

  .brand img {
    height: 48px;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

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

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0;
  }

  .page-hero {
    padding: 70px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .page-hero p {
    font-size: 1.03rem;
  }

  .mission-card {
    padding: 40px 32px;
  }

  .mission-card h2 {
    font-size: 2.3rem;
  }

  .quote-band h2 {
    font-size: 2.4rem;
  }

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

/* Mobile */

@media (max-width: 560px) {
  .brand img {
    height: 42px;
    max-width: 210px;
  }

  .navbar {
    height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .feature-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2.3rem;
  }

  .page-hero h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .page-hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .mission-card,
  .content-card,
  .cta-card,
  .contact-panel,
  .contact-form {
    padding: 32px 24px;
  }

  .mission-card h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .quote-band {
    padding: 50px 0;
  }

  .quote-band h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .section,
  .section-soft {
    padding: 60px 0;
  }

  .hero-card-inner {
    padding: 26px;
  }
}