:root {
  --blue: #1E78D6;
  --bg: #ECF5FD;
  --text: #0B2545;
  --muted: #53657B;
  --white: #fff;
  --shadow: 0 10px 25px rgba(16, 32, 58, .06);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif; color: var(--text); background: var(--bg); }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 64px 0; }
.section--alt { background: #F7FAFE; }
.section__title { font-size: clamp(26px, 3vw, 34px); margin: 0 0 24px; line-height: 1.2; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.8); backdrop-filter: blur(10px); border-bottom: 1px solid #e6eef8; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.brand img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.05)); }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a { font-weight: 500; }
.nav-toggle { display: none; font-size: 22px; background: transparent; border: 0; line-height: 1; cursor: pointer; }

.hero { padding: 64px 0; background: radial-gradient(1000px 400px at 10% -10%, #EAF3FF, transparent), radial-gradient(700px 300px at 100% 0%, #EAF3FF, transparent); }
.hero__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.hero h1 { font-size: clamp(34px, 6vw, 54px); margin: 0 0 8px; }
.hero .lead { color: var(--muted); font-size: clamp(16px, 2.5vw, 18px); }
.accent { color: var(--blue); }
.cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.info { display:flex; gap: 14px; align-items:center; }
.info__logo { width: 40px; height: 40px; border-radius: 10px; box-shadow: var(--shadow); }
.card { background: var(--white); border-radius: 14px; padding: 18px 20px; }
.card--shadow { box-shadow: var(--shadow); }

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

.card--service .icon { font-size: 28px; }
.card--service h3 { margin: 8px 0; }

.card--price { padding: 22px; border-radius: 16px; box-shadow: var(--shadow); }
.price__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.badge { font-weight: 700; color: var(--text); }
.badge span { font-weight: 500; color: var(--muted); margin-left: 6px; }
.price__list { list-style: none; margin: 0; padding: 0; }
.price__list li { display:flex; justify-content: space-between; border-top: 1px dashed #E1EAF5; padding: 12px 0; font-size: 18px; }

.checks { list-style: none; padding-left: 0; margin: 0; display: grid; gap: 10px; }
.checks li::before { content: '✔'; color: var(--blue); margin-right: 10px; }
.form label { display:block; font-weight: 600; margin-top: 8px; }
.form input, .form textarea { width: 100%; margin-top: 6px; padding: 12px 14px; border:1px solid #d9e4f2; border-radius: 10px; font: inherit; }
.form input:focus, .form textarea:focus { outline: 2px solid #CFE3FF; border-color: #bcd4fa; }
.fineprint { color: var(--muted); font-size: 13px; }

.pill { background: #E6F0FE; color: #15406D; padding: 10px 14px; border-radius: 999px; width: fit-content; font-weight: 600; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding: 12px 18px; font-weight: 700; color: white; background: var(--blue); border-radius: 10px; border: 2px solid var(--blue); transition: transform .05s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--blue); }
.btn--block { width: 100%; }
.btn--small { padding: 8px 12px; border-radius: 8px; }

.site-footer {
  padding: 28px 0 40px;
  background: #0e2a4c;
  color: #d8e6ff;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14); /* slim divider */
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.brandfoot {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 15px;
}

.links a {
  color: #d8e6ff;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.copy {
  font-size: 13px;
  color: #b7c7e6;
}

/* Desktop footer layout */
@media (min-width: 920px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .brandfoot {
    margin-right: auto;
  }
  .links {
    justify-content: center;
    flex: 1;
  }
  .copy {
    text-align: right;
    margin-left: auto;
  }
}
/* Responsive */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .site-nav { position: fixed; right: 16px; top: 64px; background: var(--white); padding: 14px; border-radius: 10px; box-shadow: var(--shadow); display: none; flex-direction: column; gap: 10px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
}

/* Hero background fallback override */
body .hero{ background-image: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/images/hero.jpg') !important; background-size: cover; background-position: center; background-repeat: no-repeat; min-height: clamp(360px, 60vh, 720px); color:#fff; }


/* === Center hero section headline and buttons === */
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
}

.hero__content {
  max-width: 700px;
}

.hero .cta {
  justify-content: center;
}


/* === Improve hero subtitle visibility === */
.hero .lead {
  color: #f2f6ff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
