:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --text:#0b2239;
  --muted:#51667a;
  --line:#e7edf4;
  --brand:#2b8a76;
  --brand2:#6fd16f;
  --accent:#2f8fbe;
  --shadow: 0 14px 35px rgba(9,30,66,.10);
  --shadow2: 0 10px 22px rgba(9,30,66,.08);
  --radius:18px;
  --radius2:14px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 500px at 20% 0%, rgba(47,143,190,.10), transparent 55%),
              radial-gradient(900px 420px at 90% 25%, rgba(111,209,111,.10), transparent 55%),
              var(--bg);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand svg{width:44px; height:44px}
.brand .title{display:flex; flex-direction:column; line-height:1.05}
.brand .title strong{font-size:18px; letter-spacing:-.2px}
.brand .title span{font-size:12px; color:var(--muted)}
nav{display:flex; gap:18px; align-items:center}
nav a{
  text-decoration:none;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
nav a:hover{background:#f1f6fb; color:var(--text)}
.actions{display:flex; align-items:center; gap:12px}
.phone{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand2), #8fe28a);
  border-color: rgba(43,138,118,.18);
  color:#0b2239;
}
.btn-primary:hover{filter:brightness(0.98)}
.btn-ghost{
  background:transparent;
}
main{padding: 12px 0 36px}

/* HERO V4 (clean image, no overlay text) */
.hero.hero-image-only img{
  width:100%;
  height: 560px;
  display:block;
  object-fit: cover;
  object-position: center 15%;
  margin-top: 0;
}
.hero-caption{
  margin-top: 18px;
  display:flex;
  justify-content:flex-start;
}
.hero-caption .left{
  max-width: 720px;
  padding: 0 4px;
}
.hero-caption h1{
  margin:0 0 10px;
  font-size: 46px;
  line-height:1.06;
  letter-spacing:-.9px;
}
.hero-caption p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color: var(--muted);
  max-width: 58ch;
}
.hero-caption .cta{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
@media (max-width: 980px){
  .hero.hero-image-only img{height: 520px;}
  .hero-caption h1{font-size:38px;}
}
@media (max-width: 520px){
  .hero.hero-image-only img{height: 440px;}
  .hero-caption h1{font-size:32px;}
}


/* HERO (matches approved mock: clean image with soft left overlay + text on image) */
.hero{
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#dfe8f0;
}
@media (max-width: 980px){
  .hero{min-height: 560px}
  }
@media (max-width: 520px){
  .hero{min-height: 560px}
  }


.hero{
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#dfe8f0;
}
.hero-caption-removed h1{
  margin:10px 0 8px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.8px;
}
.hero-caption-removed p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:var(--muted);
  max-width: 62ch;
}
@media (max-width: 980px){
  .hero-caption-removed h1{font-size:38px}
}
@media (max-width: 520px){
  .hero-caption-removed h1{font-size:32px}
}

.hero{
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#dfe8f0;
  position:relative;
  min-height: 520px;
}
/* overlay removed per request */
/*
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(246,248,251,.96) 0%, rgba(246,248,251,.70) 42%, rgba(246,248,251,.10) 70%, rgba(246,248,251,0) 100%),
    linear-gradient(180deg, rgba(246,248,251,0) 0%, rgba(246,248,251,.55) 92%, rgba(246,248,251,.70) 100%);
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.kdot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand2), var(--accent));
  box-shadow:0 0 0 5px rgba(47,143,190,.10);
}
.features{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px 16px;
  box-shadow: var(--shadow2);
}
.feature{
  display:flex; gap:12px; align-items:flex-start;
}
.ico{
  width:36px; height:36px;
  border-radius:14px;
  background: rgba(47,143,190,.10);
  border: 1px solid rgba(47,143,190,.18);
  flex: 0 0 auto;
}
.feature strong{display:block; font-size:14px; margin-top:2px}
.feature span{display:block; font-size:12.5px; color:var(--muted); line-height:1.5; margin-top:6px}
.section{
  margin-top:22px;
}
.section .cta-band{
  text-align:center;
  padding:26px 18px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.section .cta-band h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.3px;
}
.section .cta-band .btn{margin-top:14px}
.page{
  padding: 12px 0 36px;
}
.page h1{font-size:34px; letter-spacing:-.6px; margin:10px 0 8px}
.page p{color:var(--muted); line-height:1.7}
.grid-2{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:16px;
}
.panel{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{display:block; font-size:12.5px; color:var(--muted); margin:10px 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  font-family: var(--font);
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(47,143,190,.45)}
.check{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(241,246,251,.65);
  margin-top:10px;
}
.check input{width:18px; height:18px; margin-top:3px}
.check p{margin:0; font-size:12.5px; color:var(--muted); line-height:1.55}
.check b{color:var(--text)}
.link-strong{
  font-weight:900;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.note{
  font-size:12.5px; color:var(--muted); line-height:1.6;
  background: rgba(47,143,190,.06);
  border: 1px solid rgba(47,143,190,.12);
  padding: 12px 12px;
  border-radius: 14px;
}
footer{
  margin-top: 34px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  padding: 20px 0;
  display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;
}
.foot-left strong{display:block; font-size:14px; margin-bottom:6px}
.foot-left div{color:var(--muted); font-size:12.5px; line-height:1.7}
.foot-right{
  display:flex; justify-content:flex-end; gap:12px; align-items:flex-start; flex-wrap:wrap;
}
.foot-right a{
  font-size:13px;
  color: var(--accent);
  font-weight:900;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(47,143,190,.18);
  background: rgba(47,143,190,.06);
}
.foot-right a:hover{background: rgba(47,143,190,.09)}
.smallprint{
  border-top:1px solid var(--line);
  padding: 12px 0;
  color: rgba(81,102,122,.85);
  font-size: 12px;
  text-align:center;
}
@media (max-width: 980px){
  nav{display:none}
    .features{grid-template-columns:1fr 1fr}
  .grid-2{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .foot-right{justify-content:flex-start}
}
@media (max-width: 520px){
  .hero{min-height: 520px}
  .features{grid-template-columns:1fr}
}

.hero{
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#dfe8f0;
}
.hero-caption-removed h1{
  margin:10px 0 8px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.8px;
}
.hero-caption-removed p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:var(--muted);
  max-width: 62ch;
}
@media (max-width: 980px){
  .hero-caption-removed h1{font-size:38px}
}
@media (max-width: 520px){
  .hero-caption-removed h1{font-size:32px}
}


/* Fix checkbox layout: do not apply full-width input styling to checkboxes */
input[type="checkbox"]{
  width:auto;
  padding:0;
  border-radius:0;
  background:transparent;
}
.check input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:3px;
  flex: 0 0 auto;
}
/* Checkbox alignment */
.check{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.check p{margin:0}
