:root {
  --navy: #06264a;
  --blue: #0d67f5;
  --blue-2: #1f7cff;
  --sky: #eaf4ff;
  --green: #3fd47b;
  --yellow: #ffd23f;
  --orange: #f58220;
  --ink: #102033;
  --muted: #5a6b7d;
  --line: #dce7f3;
  --white: #fff;
  --shadow: 0 20px 55px rgba(6, 38, 74, .16);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 18px;
  line-height: 1.55
}

.container {
  width: min(1280px, 90vw);
  margin-inline: auto
}
h1,
h2,
h3,
.brand {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.05
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  margin: 0 0 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  margin: 0 0 1rem;
  font-weight: 900;
  letter-spacing: -.04em
}

.why-us h2 {
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

h3 {
  font-size: 1.35rem;
  margin: .5rem 0
}

.lead {
  font-size: 1.28rem;
  max-width: 650px
}

.sub {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted)
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.dash {
  width: 72px;
  height: 7px;
  background: #fff;
  margin-bottom: 2rem
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid var(--line)
}

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

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--navy)
}
.logo {
  height: 160px;
  width: auto;
  display: block;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(13, 103, 245, .25)
}

.brand small {
  display: block;
  font-family: 'Source Sans 3';
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem
}

.nav-menu a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800
}

.nav-toggle {
  display: none
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  padding: 1rem 1.35rem;
  box-shadow: 0 12px 25px rgba(255, 210, 63, .3);
  cursor: pointer
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-small {
  padding: .68rem 1rem
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
  box-shadow: none
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 38, 74, .15), rgba(13, 103, 245, .85)), radial-gradient(circle at 90% 20%, rgba(63, 212, 123, .45), transparent 26%), linear-gradient(115deg, var(--blue) 0 52%, rgba(255, 255, 255, .1) 52% 62%, rgba(6, 38, 74, .88) 62% 100%)
}

.hero-bg:after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -25%;
  width: 55%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0));
  clip-path: polygon(28% 0, 100% 0, 74% 100%, 0 100%)
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: center;
  min-height: 720px;
  padding: 6rem 0
}

.hero-copy .eyebrow {
  color: #fff
}

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

.hero-card {
  background: #fff;
  color: var(--navy);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg)
}

.card-label {
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em
}

.metric {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  gap: 1rem
}

.metric strong {
  color: var(--green)
}

.intro-band {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.intro-grid p {
  font-size: 1.2rem
}

.why-us {
  padding: 7rem 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  background: white;
  border: none;
  border-radius: 24px;
  padding: 2.5rem;
  min-height: 280px;
  box-shadow: 0 15px 40px rgba(6, 38, 74, .08);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(6, 38, 74, .15);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.why-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.why-card p {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 6rem 0
}

.light {
  background: var(--sky)
}

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

.center {
  text-align: center;
  margin-inline: auto
}

.cards,
.pricing-grid {
  display: grid;
  gap: 1.5rem
}

.three,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr)
}

.service-card,
.price-card,
.timeline article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(6, 38, 74, .08)
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  font-family: 'Inter';
  font-weight: 900
}

.feature-split {
  padding: 1rem 0 6rem
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: stretch
}

.panel {
  border-radius: 32px;
  padding: 4rem;
  color: #fff;
  position: relative;
  overflow: hidden
}

.panel-blue {
  background: linear-gradient(120deg, var(--blue), var(--navy))
}

.panel:after {
  content: "";
  position: absolute;
  right: -12%;
  top: 0;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, .13);
  clip-path: polygon(35% 0, 100% 0, 70% 100%, 0 100%)
}

.checklist {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 3rem;
  background: #fff
}

.checklist ul,
.price-card ul {
  padding-left: 1.2rem
}

.checklist li,
.price-card li {
  margin: .75rem 0
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-family: 'Inter'
}

.price-card {
  position: relative
}

.price {
  font-family: 'Inter';
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  margin: .75rem 0
}

.price span {
  font-size: 1rem;
  color: var(--muted)
}

.popular {
  border: 3px solid var(--green);
  transform: translateY(-12px)
}

.badge {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  background: var(--green);
  color: var(--navy);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .8rem
}

.about {
  background: #f8fbff;
  padding: 7rem 0;
}

.about-image {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  border-radius: 32px;
  padding: 1rem;
}

.about-title {
  color: var(--muted);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.about-content .eyebrow {
  margin-bottom: 0.25rem;
}

.about-content h2 {
  font-size: 3.2rem;
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateY(-30px);
}

.about-content p {
  margin-bottom: 1.25rem;
}

.cta {
  background: var(--navy);
  color: #fff;
  padding: 6rem 0
}

.cta .eyebrow {
  color: var(--yellow)
}

.cta-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: start
}
.cta-contact {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.cta-contact a {
  color: var(--yellow);
  text-decoration: none;
}

.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem
}
.contact-form .btn {
  font-size: 1rem;
}
label {
  font-weight: 900
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem;
  margin-top: .35rem;
  font: inherit
}

textarea {
  min-height: 130px
}

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

.footer {
  padding: 2rem 0;
  background: #061a32;
  color: #d7e6f7
}

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

.footer .brand,
.footer a {
  color: #fff
}

.footer .brand small {
  color: #d7e6f7
}

.footer .logo {
  height: 100px;
  width: auto;
}

@media (max-width:900px) {
  .nav-toggle {
    display: block;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    padding: .55rem .8rem;
    font-weight: 900
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 4vw;
    border-bottom: 1px solid var(--line)
  }

  .nav-menu.open {
    display: flex
  }

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

.about-content h2 {
  font-size: 2.5rem;
}

  .hero-grid,
  .intro-grid,
  .split-grid,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    min-height: auto;
    padding: 4rem 0
  }

  .three,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr
  }

  .popular {
    transform: none
  }

  .footer-grid {
    flex-direction: column;
    text-align: center
  }

  .panel {
    padding: 2.5rem
  }

  h1 {
    font-size: 2.5rem
  }
}