:root {
  --ink-900: #061e35;
  --ink-700: #204365;
  --sky-100: #edf5ff;
  --sky-200: #dcecff;
  --surface: #ffffff;
  --line: #d5e2ef;
  --accent: #ff7f2a;
  --accent-2: #ffae6f;
  --muted: #5f7284;
  --ok: #0f885b;
  --font-title: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --shadow-soft: 0 14px 34px rgba(6, 30, 53, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: radial-gradient(circle at 8% -12%, #d7eaff 0, transparent 42%), #f5f8fc;
  line-height: 1.7;
}

a {
  color: var(--ink-900);
  text-decoration: none;
}

a:hover {
  color: #123f64;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-shell {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.navbar {
  padding: 14px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: min(100%, 258px);
  height: auto;
}

.navbar .brand-link {
  max-width: calc(100% - 72px);
}

.site-footer .brand-logo {
  width: min(100%, 250px);
}

.brand-word {
  font-family: var(--font-title);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0.2px;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 82, 128, 0.2);
}

.navbar-toggler-icon {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%286,30,53,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: var(--ink-900);
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 12px !important;
}

.nav-link:hover,
.nav-link.active {
  color: #0f4a7a;
  background: var(--sky-100);
}

.btn-main,
.btn-lite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  border: 0;
  transition: all 0.2s ease;
}

.btn-main {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-1px);
  background: linear-gradient(120deg, #f56d00, #ff9d4c);
}

.btn-lite {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-900);
}

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

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.97rem;
}

.top-cta {
  border-bottom: 1px solid #f2dbc8;
  background: linear-gradient(120deg, #fff5ec, #ffe8d6);
}

.top-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.top-cta p {
  margin: 0;
  color: var(--ink-900);
  font-weight: 700;
}

.tfn-link {
  color: #0f4a7a;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.tfn-link:hover {
  color: #0b3a60;
}

.top-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero {
  --hero-image: url('../images/hero-bg.jpg');
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(104deg, rgba(5, 23, 39, 0.92), rgba(10, 40, 67, 0.66)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 134, 57, 0.5), transparent 64%);
}

.hero-home {
  padding: 110px 0 98px;
}

.hero-page {
  padding: 88px 0 70px;
}

.hero h1 {
  margin-bottom: 16px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.8px;
  color: #fff;
}

.hero p {
  color: #e9f3ff;
  max-width: 760px;
}

.hero-chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 7px 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

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

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.hero-stat {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  padding: 14px;
  backdrop-filter: blur(4px);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-title);
  color: #fff;
}

.section {
  padding: 74px 0;
}

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.kicker {
  font-size: 0.82rem;
  letter-spacing: 1px;
  font-weight: 800;
  color: #0f5f95;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  margin-bottom: 14px;
  color: var(--ink-900);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.section h3 {
  color: var(--ink-900);
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead-copy {
  max-width: 790px;
  color: var(--muted);
}

.card {
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.thumb {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.feature-list,
.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li,
.policy-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
}

.feature-list li::before,
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(130deg, #ff7f2a, #ffc18f);
}

.banner-note {
  border-left: 4px solid var(--accent);
  background: #fff4ea;
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  color: #586c80;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}

.price-table th {
  background: var(--sky-100);
  color: var(--ink-900);
  font-family: var(--font-title);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.state-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 15px;
}

.state-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.state-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #576a7e;
}

.faq {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  margin-bottom: 12px;
}

.faq h3 {
  font-size: 1.07rem;
}

.form-box {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.form-label {
  color: var(--ink-900);
  font-weight: 700;
}

.form-control,
.form-select,
textarea.form-control {
  border: 1px solid #cfdceb;
  border-radius: 10px;
  padding: 12px 14px;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: #8bb8e4;
  box-shadow: 0 0 0 0.2rem rgba(78, 143, 209, 0.2);
}

.form-note {
  color: #6a7f94;
  font-size: 0.92rem;
}

.ok-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #bfe5d4;
  background: #eaf9f2;
  color: var(--ok);
  font-weight: 700;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #06213b, #0f3a61);
  color: #fff;
  padding: 58px 0;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -80px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255, 139, 64, 0.35);
  pointer-events: none;
  z-index: 0;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

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

.cta-band p {
  color: #dcecff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: #041b2f;
  color: #c2d5e7;
  padding-top: 56px;
}

.site-footer h4,
.site-footer h5 {
  color: #fff;
  font-family: var(--font-title);
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #c2d5e7;
}

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

.footer-contact {
  color: #c2d5e7;
  font-weight: 600;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover {
  color: #dcecff;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  margin-top: 26px;
  padding: 16px 0;
  color: #9fbbd3;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1200;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  color: #52687d;
  margin-bottom: 10px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
}

.city-cloud p {
  margin-bottom: 0;
}

.city-cloud strong {
  color: var(--ink-900);
}

@media (max-width: 991px) {
  .site-header {
    position: static;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .navbar-nav {
    align-items: stretch;
    gap: 6px;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .hero-home {
    padding: 78px 0 62px;
  }

  .hero-page {
    padding: 64px 0 52px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 5.7vw, 2.45rem);
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .hero p {
    font-size: 1.03rem;
    line-height: 1.62;
  }

  .section {
    padding: 52px 0;
  }

  .card {
    padding: 18px;
    border-radius: 14px;
  }

  .thumb img {
    height: 190px;
  }

  .top-cta p {
    max-width: 100%;
    font-size: 1.01rem;
    line-height: 1.5;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 14px !important;
    font-size: 1.07rem;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .hero-actions,
  .cta-actions,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar .brand-link {
    max-width: calc(100% - 64px);
  }

  .navbar .brand-logo {
    width: min(68vw, 230px);
  }

  .top-cta-inner {
    align-items: stretch;
  }

  .top-cta p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .top-cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-cta-actions .btn-main,
  .top-cta-actions .btn-lite {
    min-width: 152px;
    width: auto;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 8vw, 2rem);
    line-height: 1.2;
  }

  .hero-home {
    padding: 62px 0 52px;
  }

  .hero-page {
    padding: 56px 0 46px;
  }

  .hero-stat {
    padding: 12px;
  }

  .section {
    padding: 44px 0;
  }

  .city-cloud {
    padding: 14px;
  }

  .footer-meta {
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .navbar .brand-logo {
    width: min(74vw, 226px);
  }

  .top-cta p {
    font-size: 0.95rem;
  }

  .price-table th,
  .price-table td {
    padding: 10px 11px;
    font-size: 0.93rem;
  }
}
