:root {
  --navy: #07152f;
  --navy-2: #0c2247;
  --blue: #1d4ed8;
  --blue-2: #2563eb;
  --cyan: #38bdf8;
  --gold: #f6b84b;
  --white: #ffffff;
  --text: #18243a;
  --muted: #5d6b82;
  --soft: #f4f7fb;
  --line: #dce4ef;
  --shadow: 0 24px 70px rgba(7, 21, 47, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img, svg {
  max-width: 100%;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 47, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-2), var(--cyan));
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(56, 189, 248, 0.22);
}

.brand-text {
  font-size: 17px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: 0.25s ease;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.34), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(56, 189, 248, 0.20), transparent 30%),
    linear-gradient(135deg, #061129 0%, #0b2148 58%, #07152f 100%);
  color: var(--white);
}

.section-dark-alt {
  background: linear-gradient(135deg, #07152f 0%, #102a55 100%);
  color: var(--white);
}

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

.hero {
  padding: 112px 0 104px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
  align-items: center;
}

.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.eyebrow {
  color: #93c5fd;
}

.section-label.light {
  color: #93c5fd;
}

.eyebrow::before, .section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd78a);
  color: #1f2937;
  box-shadow: 0 18px 38px rgba(246, 184, 75, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-full {
  width: 100%;
  margin-top: 18px;
}

.trust-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.check-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.18);
  color: #7dd3fc;
}

.hero-card {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: 12%;
  background: rgba(56, 189, 248, 0.28);
  filter: blur(70px);
}

.dashboard-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}

.metric-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.metric-card strong {
  font-size: 22px;
  line-height: 1.1;
}

.metric-card.wide, .flow-line {
  grid-column: 1 / -1;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 700;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.flow-line div {
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(246, 184, 75, 0.13);
  color: #fde68a;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.align-start {
  align-items: start;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
}

.dark-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.section-center {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-center .section-label {
  justify-content: center;
}

.section-center .section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section-center p {
  color: var(--muted);
  font-size: 18px;
}

.narrow {
  max-width: 740px;
}

.feature-grid, .benefit-grid, .market-grid {
  display: grid;
  gap: 16px;
}

.feature-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.feature-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 21, 47, 0.06);
  font-weight: 800;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 21, 47, 0.06);
  font-weight: 800;
}

.benefit-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 13px;
}

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

.step {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(7, 21, 47, 0.07);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

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

.check-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.check-list-grid div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.check-list-grid span {
  color: #7dd3fc;
  font-weight: 900;
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel-accent {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.styled-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 650;
}

.light-list li {
  color: rgba(255, 255, 255, 0.78);
}

.styled-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-2);
  font-weight: 900;
}

.light-list li::before {
  color: #7dd3fc;
}

.market-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.market-grid div {
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.market-grid div:last-child {
  grid-column: span 2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.timeline-item {
  position: relative;
  padding: 20px 14px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--blue-2);
  color: var(--white);
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.section-form {
  background: linear-gradient(135deg, #07152f, #0d2a58);
  color: var(--white);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 110px;
}

.form-intro p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.application-note {
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
}

.application-form {
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

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

label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

label.full {
  grid-column: 1 / -1;
}

input, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-weight: 700;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #b91c1c;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  border-radius: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1;
}

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

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active button span {
  transform: rotate(45deg);
}

.final-cta .section-center {
  margin-bottom: 0;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.center-actions {
  justify-content: center;
}

.site-footer {
  padding: 44px 0;
  background: #050d1d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
  }

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

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

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

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

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: #0b1b39;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  }

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

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding: 84px 0;
  }

  .hero-grid, .two-col, .form-layout, .split-panels {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .form-intro {
    position: static;
  }

  .section {
    padding: 72px 0;
  }

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

  .booking-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-text {
    font-size: 15px;
  }

  .hero-actions, .center-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .dashboard-body, .form-grid, .feature-grid.compact, .benefit-grid, .steps, .market-grid, .timeline, .check-list-grid {
    grid-template-columns: 1fr;
  }

  .flow-line {
    grid-template-columns: 1fr;
  }

  .market-grid div:last-child {
    grid-column: auto;
  }

  .panel, .application-form, .booking-card {
    padding: 24px;
    border-radius: 22px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-subtitle, .section-copy p, .dark-copy, .booking-card p {
    font-size: 16px;
  }
}
