* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background-color: #0A0D14;
  color: #E9EEF7;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  color: #E9EEF7;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: #E9EEF7;
}

a {
  color: #3E7BFA;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6b97ff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-solid {
  background-color: #3E7BFA;
  color: #FFFFFF;
}

.btn-solid:hover {
  background-color: #2f6af2;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #3E7BFA;
  border: 1px solid #3E7BFA;
}

.btn-outline:hover {
  background-color: #3E7BFA;
  color: #FFFFFF;
}

.btn-dark {
  background-color: #0A0D14;
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: #131927;
  color: #FFFFFF;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3E7BFA;
  margin-bottom: 14px;
}

.muted {
  color: #9AA8C4;
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.two-row-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0A0D14;
  border-bottom: 1px solid #1D2740;
}

.two-row-nav.scrolled {
  box-shadow: 0 10px 30px rgba(10, 13, 20, 0.8);
}

.nav-row-top {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9AA8C4;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #3E7BFA;
}

.nav-top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #E9EEF7;
}

.nav-row-links {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list li + li {
  border-left: 1px solid #1D2740;
}

.nav-list a {
  display: inline-block;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9AA8C4;
  position: relative;
}

.nav-list a:hover {
  color: #E9EEF7;
}

.nav-list a.is-active {
  color: #E9EEF7;
}

.nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 6px;
  height: 2px;
  background-color: #3E7BFA;
}

.center-stack-hero {
  padding: 96px 24px 88px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background-color: #3E7BFA;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  max-width: 880px;
  margin: 0 auto 26px;
  letter-spacing: -0.01em;
}

.hero-subcopy {
  max-width: 720px;
  margin: 0 auto 38px;
  font-size: 18px;
  color: #9AA8C4;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.equalizer {
  width: 200px;
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  border-bottom: 2px solid #9AA8C4;
}

.eq-bar {
  display: block;
  width: 18px;
}

.eq-bar-1 {
  height: 30px;
  background-color: #3E7BFA;
}

.eq-bar-2 {
  height: 58px;
  background-color: #E9EEF7;
}

.eq-bar-3 {
  height: 44px;
  background-color: #3E7BFA;
}

.eq-bar-4 {
  height: 74px;
  background-color: #E9EEF7;
}

.eq-bar-5 {
  height: 52px;
  background-color: #3E7BFA;
}

.timeline {
  padding: 96px 0;
  background-color: #0A0D14;
}

.timeline-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.timeline-heading h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.timeline-heading p {
  color: #9AA8C4;
  font-size: 17px;
}

.timeline-list {
  list-style: none;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: #1D2740;
}

.timeline-item {
  position: relative;
  padding-left: 44px;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #3E7BFA;
  border: 2px solid #0A0D14;
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #E9EEF7;
}

.timeline-content p {
  color: #9AA8C4;
}

.metric-band {
  background-color: #3E7BFA;
  padding: 56px 24px;
}

.metric-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 8px 20px;
}

.metric + .metric {
  border-left: 1px solid #0A0D14;
}

.metric-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.statement-band {
  padding: 110px 24px;
  background-color: #131927;
}

.statement-inner {
  max-width: 920px;
}

.statement-line {
  font-size: 34px;
  font-weight: 800;
  max-width: 820px;
  margin-bottom: 22px;
}

.statement-support {
  max-width: 760px;
  font-size: 17px;
  color: #9AA8C4;
}

.cta-band {
  background-color: #3E7BFA;
  padding: 88px 24px;
  text-align: center;
}

.cta-inner h2 {
  font-size: 36px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.cta-inner p {
  color: #FFFFFF;
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 30px;
}

.single-row-footer {
  background-color: #0A0D14;
  border-top: 1px solid #1D2740;
  padding: 44px 24px 40px;
  text-align: center;
}

.footer-links {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 600;
  color: #E9EEF7;
}

.footer-links a:hover {
  color: #3E7BFA;
}

.footer-links .sep {
  color: #1D2740;
  font-weight: 700;
}

.footer-legal {
  font-size: 13px;
  color: #9AA8C4;
}

.footer-legal a {
  color: #9AA8C4;
}

.footer-legal a:hover {
  color: #E9EEF7;
}

.page-hero {
  background-color: #131927;
  border-bottom: 1px solid #1D2740;
  padding: 80px 24px 64px;
  text-align: center;
}

.page-hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: #9AA8C4;
}

.service-section {
  padding: 80px 0;
}

.service-section:nth-child(even) {
  background-color: #131927;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.service-block h2 {
  font-size: 28px;
}

.service-block h2 span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #3E7BFA;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-block p {
  color: #9AA8C4;
  margin-bottom: 16px;
}

.service-block p strong {
  color: #E9EEF7;
  font-weight: 600;
}

.process-section {
  padding: 96px 0;
  background-color: #0A0D14;
}

.process-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.process-intro {
  color: #9AA8C4;
  max-width: 720px;
  margin-bottom: 48px;
}

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

.process-step {
  background-color: #131927;
  border: 1px solid #1D2740;
  border-radius: 12px;
  padding: 28px 24px;
}

.process-step .step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #3E7BFA;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #9AA8C4;
}

.contact-section {
  padding: 88px 0 96px;
  background-color: #0A0D14;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-form-wrap > p {
  color: #9AA8C4;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #E9EEF7;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background-color: #131927;
  border: 1px solid #1D2740;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 16px;
  color: #E9EEF7;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #3E7BFA;
}

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

.btn-submit {
  border: none;
  font-family: inherit;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid #3E7BFA;
  border-radius: 8px;
  background-color: #131927;
  color: #E9EEF7;
  font-size: 15px;
}

.contact-info {
  background-color: #131927;
  border: 1px solid #1D2740;
  border-radius: 12px;
  padding: 36px 32px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 22px;
}

.info-block {
  margin-bottom: 26px;
}

.info-block .info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3E7BFA;
  margin-bottom: 6px;
}

.info-block p,
.info-block a {
  color: #E9EEF7;
  font-size: 16px;
}

.info-block a:hover {
  color: #3E7BFA;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #1D2740;
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  color: #9AA8C4;
}

.hours-list .time {
  color: #E9EEF7;
  font-weight: 600;
}

.faq-section {
  padding: 0 0 96px;
  background-color: #0A0D14;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 36px;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  background-color: #131927;
  border: 1px solid #1D2740;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #E9EEF7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #3E7BFA;
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: #9AA8C4;
}

@media (max-width: 960px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .nav-cta {
    display: none;
  }

  .nav-row-links {
    display: none;
    max-width: none;
    padding: 0;
    border-top: 1px solid #1D2740;
  }

  .nav-row-links.nav-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 18px;
  }

  .nav-list li + li {
    border-left: none;
  }

  .nav-list a {
    display: block;
    padding: 12px 0;
  }

  .nav-list a.is-active::after {
    display: none;
  }

  .hero-title {
    font-size: 38px;
  }

  .metric-row {
    flex-direction: column;
    gap: 0;
  }

  .metric {
    width: 100%;
    padding: 26px 0;
  }

  .metric + .metric {
    border-left: none;
    border-top: 1px solid #0A0D14;
  }

  .statement-line {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .hero-title {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .timeline-heading h2,
  .process-section h2,
  .cta-inner h2 {
    font-size: 30px;
  }
}
