* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fb;
  color: #0f172a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(203, 213, 225, 0.7);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.logo-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  display: block;
  color: #005fa7;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: #005fa7;
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: #005fa7;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 95, 167, 0.16);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover,
.contact-form button:hover {
  background: #004f8c;
  transform: translateY(-1px);
}

.button-small {
  padding: 10px 20px;
  box-shadow: none;
}

.button-secondary {
  background: #fff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}

.button-secondary:hover {
  background: #fff;
  color: #005fa7;
  border-color: rgba(0, 95, 167, 0.4);
}

.menu-button,
.close-button {
  display: none;
  border: 0;
  background: transparent;
  color: #334155;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 61;
  width: min(320px, 86vw);
  padding: 24px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.16);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  color: #005fa7;
}

.mobile-menu nav {
  display: grid;
  gap: 12px;
}

.mobile-menu nav a {
  padding: 13px 12px;
  border-radius: 14px;
  color: #334155;
  font-weight: 600;
}

.mobile-menu nav a:hover {
  background: #f8fafc;
  color: #005fa7;
}

main {
  padding-top: 72px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.hero-glow-one {
  right: -128px;
  top: -160px;
  width: 480px;
  height: 480px;
  background: rgba(0, 95, 167, 0.10);
}

.hero-glow-two {
  left: -128px;
  bottom: -256px;
  width: 448px;
  height: 448px;
  background: rgba(226, 232, 240, 0.70);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 95, 167, 0.20);
  border-radius: 999px;
  background: rgba(0, 95, 167, 0.05);
  color: #005fa7;
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: #020617;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-card {
  border-radius: 32px;
  background: linear-gradient(135deg, #005fa7, #003f70);
  padding: 14px;
  box-shadow: 0 25px 60px rgba(0, 95, 167, 0.20);
}

.hero-card-inner {
  border-radius: 24px;
  background: #fff;
  padding: 32px;
}

.hero-card-inner img {
  width: auto;
  height: 208px;
  margin-inline: auto;
  object-fit: contain;
}

.profile-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.profile-block p,
.section-heading p,
.about-box p,
.fees-section p:first-child,
.section-label {
  margin: 0;
  color: #005fa7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.profile-block p {
  color: #64748b;
  font-weight: 600;
}

.profile-block h2 {
  margin: 12px 0 0;
  color: #020617;
  font-size: 24px;
  line-height: 1.2;
}

.section {
  padding: 80px 0;
}

.section-white {
  background: #fff;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.contact-grid h2,
.about-box h2,
.fees-section h2 {
  margin: 12px 0 0;
  color: #020617;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading span,
.about-box span,
.contact-grid span {
  display: block;
  margin-top: 16px;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.expertise-card,
.step-card,
.strength,
.contact-grid {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.expertise-card {
  padding: 24px;
  border-radius: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(0, 95, 167, 0.10);
  color: #005fa7;
  font-size: 24px;
}

.expertise-card h3,
.step-card h3,
.fees-box h3 {
  margin: 0;
  color: #020617;
  font-size: 18px;
}

.expertise-card p,
.step-card p,
.fees-box p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.about-box {
  padding: 32px;
  border-radius: 32px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.strengths {
  display: grid;
  align-content: center;
  gap: 16px;
}

.strength {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  color: #1e293b;
  font-weight: 650;
}

.strength span {
  color: #005fa7;
  font-size: 20px;
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  padding: 28px;
  border-radius: 28px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #005fa7;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.fees-section {
  background: #003f70;
  color: #fff;
  padding: 80px 0;
}

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
}

.fees-section p:first-child {
  color: #dbeafe;
}

.fees-section h2 {
  color: #fff;
}

.fees-section span {
  display: block;
  max-width: 820px;
  margin-top: 20px;
  color: #eff6ff;
  font-size: 18px;
  line-height: 1.8;
}

.fees-box {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.fees-box h3,
.fees-box p {
  color: #fff;
}

.fees-box p {
  color: #eff6ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  padding: 40px;
  border-radius: 32px;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  color: #334155;
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-details span {
  color: #005fa7;
  font-size: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: #f8fafc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  color: #0f172a;
  font: inherit;
  outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 95, 167, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 95, 167, 0.12);
}

.contact-form small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #64748b;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner a:hover {
  color: #005fa7;
}

@media (max-width: 980px) {
  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .menu-button,
  .close-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .hero-grid {
    padding-top: 56px;
    padding-bottom: 72px;
  }

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

  .button {
    width: 100%;
  }

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

  .hero-card,
  .hero-card-inner,
  .contact-grid {
    border-radius: 24px;
  }

  .hero-card {
    padding: 18px;
  }

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

  .hero-card-inner img {
    height: 170px;
  }

  .section,
  .fees-section {
    padding: 64px 0;
  }

  .contact-grid {
    padding: 24px;
  }

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