:root {
  --page-bg: #f4f8fc;
  --surface: #ffffff;
  --surface-soft: #edf5ff;
  --surface-strong: #dfeeff;
  --primary: #0f6fd1;
  --primary-deep: #0a2f62;
  --primary-ink: #123868;
  --text-main: #17324d;
  --text-soft: #58738f;
  --line: rgba(17, 76, 145, 0.12);
  --accent: #ffcf40;
  --shadow-lg: 0 16px 36px rgba(12, 53, 103, 0.12);
  --shadow-md: 0 10px 24px rgba(12, 53, 103, 0.09);
  --shadow-sm: 0 6px 14px rgba(12, 53, 103, 0.06);
  --radius-xl: 18px;
  --radius-lg: 12px;
  --radius-md: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(66, 153, 225, 0.2), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, var(--page-bg) 48%, #ffffff 100%);
}

main {
  overflow: clip;
}

a {
  color: var(--primary);
}

.site-shell {
  position: relative;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
}

.site-shell::before {
  top: -120px;
  right: -180px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(15, 111, 209, 0.16), rgba(15, 111, 209, 0) 70%);
}

.site-shell::after {
  bottom: 8%;
  left: -200px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 207, 64, 0.18), rgba(255, 207, 64, 0) 68%);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 16px;
}

.nav-surface {
  border: 1px solid rgba(15, 111, 209, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px rgba(10, 47, 98, 0.07);
}

nav {
  height: auto;
  line-height: 1;
  background: transparent;
  box-shadow: none;
}

nav .nav-wrapper {
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--primary-deep);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0f6fd1, #0b3f88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.brand-mark--text {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

nav ul a,
.sidenav a {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 0.01em;
}

nav .sidenav-trigger,
nav .sidenav-trigger i {
  color: var(--primary-deep) !important;
}

nav ul a:hover,
.sidenav a:hover,
nav ul a.active-link {
  color: var(--primary);
  background: transparent;
}

.btn,
.btn-large,
.btn-flat {
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
  box-shadow: none;
}

.btn,
.btn-large {
  background: linear-gradient(135deg, var(--primary) 0%, #0b4f9d 100%);
}

.btn:hover,
.btn-large:hover {
  background: linear-gradient(135deg, #0f7ae3 0%, #0b4f9d 100%);
  box-shadow: 0 10px 22px rgba(15, 111, 209, 0.18);
}

.btn-outline {
  color: var(--primary);
  border: 1px solid rgba(15, 111, 209, 0.22);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline:hover {
  color: var(--primary);
  background: rgba(237, 245, 255, 0.95);
}

.hero-section,
.page-hero {
  padding: 32px 0 30px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 430px);
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.hero-copy,
.page-hero-copy {
  padding: 18px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(15, 111, 209, 0.12);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow .material-symbols-rounded {
  font-size: 1rem;
}

.hero-copy h1,
.page-hero-copy h1,
.thank-you-card h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary-deep);
}

.page-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.hero-copy p,
.page-hero-copy p,
.section-head p,
.lead-text,
.form-note,
.faq-intro,
.footer-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.hero-chips,
.page-hero-actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions,
.page-hero-actions {
  margin-top: 28px;
}

.hero-chips {
  margin-top: 18px;
}

.soft-chip,
.contact-chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-ink);
  font-weight: 700;
}

.soft-chip .material-symbols-rounded,
.contact-chip .material-symbols-rounded,
.mini-chip .material-symbols-rounded {
  font-size: 1.1rem;
  color: var(--primary);
}

.metrics-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.surface-card,
.step-card,
.faq-surface,
.cta-band,
.thank-you-card,
.section-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 111, 209, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.metric-card {
  padding: 20px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--primary-deep);
}

.metric-card span {
  color: var(--text-soft);
  line-height: 1.6;
}

.hero-form-card,
.contact-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.95));
  border: 1px solid rgba(15, 111, 209, 0.11);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-form-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  top: -32px;
  right: 28px;
  width: 112px;
  height: 112px;
  background: radial-gradient(circle, rgba(255, 207, 64, 0.28), rgba(255, 207, 64, 0));
}

.form-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.form-brand .brand-mark {
  width: 52px;
  height: 52px;
}

.form-brand strong {
  display: block;
  color: var(--primary-deep);
  font-size: 1.08rem;
}

.form-brand span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-form-card h2,
.contact-panel h2,
.section-head h2,
.cta-band h2,
.thank-you-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--primary-deep);
}

.hero-form-card .helper-text {
  color: var(--text-soft);
}

.hero-media-stack,
.page-hero-media {
  display: grid;
  gap: 18px;
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  width: fit-content;
  border-radius: 12px;
  background: rgba(10, 47, 98, 0.92);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.floating-badge .material-symbols-rounded {
  color: var(--accent);
}

.floating-badge strong {
  display: block;
}

.floating-badge span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #0d3872, #125db3 56%, #eff6ff 56%);
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto -18% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-frame--contain img,
.app-shot img,
.logo-panel img {
  object-fit: contain;
}

.media-caption,
.hero-mini-card,
.stat-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.media-caption strong,
.hero-mini-card strong,
.stat-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-deep);
}

.media-caption span,
.hero-mini-card span,
.stat-strip span {
  color: var(--text-soft);
  line-height: 1.55;
}

.section-shell {
  padding: 32px 0 48px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head p {
  margin-top: 12px;
}

.card-grid-3,
.card-grid-4,
.gallery-grid,
.feature-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.card-grid-3,
.gallery-grid,
.feature-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.surface-card,
.step-card,
.section-card {
  padding: 24px;
}

.surface-card h3,
.step-card h3,
.section-card h3,
.app-shot h3,
.faq-quick h3 {
  margin: 14px 0 10px;
  font-size: 1.28rem;
  line-height: 1.25;
  color: var(--primary-deep);
  font-weight: 800;
}

.surface-card p,
.step-card p,
.section-card p,
.app-shot p,
.faq-quick p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(15, 111, 209, 0.15), rgba(255, 255, 255, 0.95));
  color: var(--primary);
}

.icon-badge .material-symbols-rounded {
  font-size: 1.55rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.info-panel {
  position: relative;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(155deg, #0d2f60 0%, #0f5fb5 65%, #eef5ff 65%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.info-panel::after {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.info-panel h2,
.info-panel h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
}

.info-panel p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.bullet-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullet-list li,
.plain-list li {
  display: flex;
  gap: 12px;
  color: inherit;
  line-height: 1.65;
}

.bullet-list li .material-symbols-rounded,
.plain-list li .material-symbols-rounded {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 2px;
}

.section-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.72;
}

.photo-card {
  overflow: hidden;
  min-height: 100%;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-shot {
  padding: 20px;
}

.app-shot-frame {
  min-height: 380px;
  padding: 24px 20px 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #1890e4 0%, #0b356d 100%);
  overflow: hidden;
}

.app-shot-frame img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  display: block;
}

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.cta-band {
  position: relative;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 47, 98, 0.98), rgba(15, 111, 209, 0.95));
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.cta-band h2,
.cta-band p,
.cta-band .soft-chip {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .soft-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.faq-surface {
  padding: 18px 8px;
}

.collapsible {
  border: 0;
  box-shadow: none;
  margin: 0;
  background: transparent;
}

.collapsible li {
  margin: 0 12px 12px;
  border: 1px solid rgba(15, 111, 209, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(10, 47, 98, 0.05);
}

.collapsible-header {
  border: 0;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--primary-deep);
}

.collapsible-header .material-symbols-rounded {
  margin-right: 12px;
  color: var(--primary);
}

.collapsible-body {
  border: 0;
  padding: 0 22px 22px;
  color: var(--text-soft);
  line-height: 1.72;
}

.faq-quick {
  padding: 24px;
}

.faq-quick + .faq-quick {
  margin-top: 18px;
}

.contact-panel .input-field,
.hero-form-card .input-field {
  margin-top: 0;
  margin-bottom: 0;
}

.input-field label {
  color: var(--text-soft);
}

.input-field input,
.input-field textarea,
.input-field .select-wrapper input.select-dropdown {
  border-bottom: 1px solid rgba(15, 111, 209, 0.18) !important;
  box-shadow: none !important;
}

.input-field input:focus,
.input-field textarea:focus,
.input-field .select-wrapper input.select-dropdown:focus {
  border-bottom-color: var(--primary) !important;
}

.input-field input:focus + label,
.input-field textarea:focus + label {
  color: var(--primary) !important;
}

.page-section {
  padding: 12px 0 48px;
}

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 24px;
}

.logo-panel img {
  max-width: min(100%, 280px);
  max-height: 280px;
}

.contact-card {
  padding: 24px;
}

.contact-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.2rem;
  color: var(--primary-deep);
}

.contact-card span,
.contact-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-card p + p {
  margin-top: 10px;
}

.service-area {
  padding: 24px;
}

.service-area h3 {
  margin-top: 0;
}

.district-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.district-chips span {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--primary-ink);
  font-weight: 700;
}

.policy-card {
  padding: 30px;
}

.policy-card h2,
.policy-card h3 {
  color: var(--primary-deep);
}

.policy-card p,
.policy-card li {
  color: var(--text-soft);
  line-height: 1.75;
}

.site-footer {
  padding: 18px 0 36px;
}

.footer-surface {
  padding: 26px 30px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(10, 47, 98, 0.98), rgba(11, 79, 157, 0.98));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-legal strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.thank-you-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 28px 0;
}

.thank-you-card {
  padding: 34px;
  text-align: center;
}

.thank-you-card .icon-badge {
  margin-bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 12px;
}

.thank-you-card .icon-badge .material-symbols-rounded {
  font-size: 2rem;
}

.thank-you-media {
  max-width: 320px;
  margin: 28px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hide-on-large-only .brand-lockup {
  padding: 0 16px;
}

.sidenav {
  padding-top: 18px;
}

.sidenav li > a {
  padding: 0 28px;
}

.sidenav li > a.brand-lockup {
  display: flex;
  align-items: center;
  min-height: 84px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.sidenav li > a.brand-lockup .brand-text span {
  display: none;
}

@media (max-width: 1200px) {
  .hero-grid,
  .page-hero-grid,
  .split-panel,
  .footer-grid,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .card-grid-3,
  .gallery-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .nav-wrap {
    padding-top: 12px;
  }

  nav .nav-wrapper {
    min-height: 68px;
    padding: 0 18px;
  }

  .hero-section,
  .page-hero {
    padding-top: 24px;
  }

  .hero-form-card,
  .contact-panel,
  .policy-card,
  .cta-band,
  .footer-surface,
  .thank-you-card {
    padding: 24px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(92vw, 1100px);
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .thank-you-card h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .card-grid-3,
  .gallery-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 28px 0 42px;
  }

  .app-shot-frame {
    min-height: 320px;
  }

  .media-frame {
    min-height: 260px;
  }

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

  .hero-actions .btn,
  .hero-actions .btn-outline,
  .page-hero-actions .btn,
  .page-hero-actions .btn-outline,
  .cta-actions .btn,
  .cta-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
