:root{
  --blue: #4B6F8F;
  --blue-dark: #2F4F6A;
  --blue-light: #7FA3C1;
  --accent: #2FA4A9;
  --bg: #F4F1E8;
  --text: #2b2b2b;
  --card: #ffffff;
  --border: rgba(75,111,143,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  width:100%;
  background:rgba(47,79,106,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
  width:100%;
  color:#fff;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  white-space:nowrap;
}

.brand__dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:var(--blue-light);
  box-shadow:0 0 0 6px rgba(127,163,193,.18);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}

.nav a{
  opacity:.92;
  transition:opacity .2s ease, transform .2s ease;
}

.nav a:hover{
  opacity:1;
  transform:translateY(-1px);
  text-decoration:underline;
  text-underline-offset:6px;
}

.nav__cta{
  background:rgba(255,255,255,.12);
  padding:10px 14px;
  border-radius:12px;
}

.burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
}

.burger span{
  display:block;
  height:2px;
  margin:7px 0;
  border-radius:8px;
  background:#fff;
}

.wave{
  width:100%;
  height:70px;
  overflow:hidden;
  line-height:0;
  margin-top:-1px;
}

.wave svg{
  width:100%;
  height:100%;
}

.wave path{
  fill:var(--blue);
  opacity:.10;
}

.hero{
  padding:72px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(47,164,169,.10), transparent 35%),
    radial-gradient(circle at top right, rgba(75,111,143,.10), transparent 30%);
}

.hero__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.kicker{
  display:inline-block;
  margin:0 0 16px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(75,111,143,.12), rgba(47,164,169,.12));
  color:var(--blue-dark);
  font-weight:700;
}

h1{
  margin:0 0 14px;
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.02;
  letter-spacing:-0.02em;
}

.lead{
  margin:0 0 10px;
  max-width:54ch;
  font-size:20px;
  line-height:1.55;
}

.hero__subtext{
  margin:0 0 20px;
  color:#4c4c4c;
  line-height:1.55;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0 18px;
}

.hero__bullets{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:14px 0 0;
  padding:0;
  list-style:none;
  font-weight:500;
}

.hero__card{
  padding:16px;
  overflow:hidden;
  border:1px solid rgba(75,111,143,.16);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(75,111,143,.10), rgba(255,255,255,.94));
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.hero__photoWrap{
  overflow:hidden;
  margin-bottom:14px;
  border-radius:18px;
  box-shadow:0 12px 24px rgba(0,0,0,.10);
}

.hero__photo{
  width:100%;
  height:180px;
  object-fit:cover;
}

.hero__cardInner{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
}

.hero__cardInner h2{
  margin-top:0;
}

.contactBox{
  display:grid;
  gap:12px;
  margin:16px 0 18px;
}

.label{
  font-size:12px;
  opacity:.7;
}

.value{
  font-weight:600;
}

.section{
  padding:64px 0;
}

.section--alt{
  background:rgba(244,241,232,.55);
  border-top:1px solid rgba(0,0,0,.04);
  border-bottom:1px solid rgba(0,0,0,.04);
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.section__head h2{
  margin:0;
  font-size:32px;
}

.section__head p{
  margin:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.card{
  padding:18px;
  border:1px solid var(--border);
  border-radius:20px;
  background:linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover{
  transform:translateY(-5px);
  border-color:rgba(47,164,169,.35);
  box-shadow:0 16px 30px rgba(0,0,0,.10);
}

.card h3{
  margin:0 0 8px;
  color:var(--blue-dark);
  font-size:1.25rem;
}

.card p{
  margin:0;
  line-height:1.55;
}

.why{
  padding:70px 0;
}

.why__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:30px;
}

.why__card{
  padding:22px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}

.why__card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px rgba(0,0,0,.10);
}

.why__icon{
  margin-bottom:10px;
  font-size:26px;
}

.why__card h3{
  margin:0 0 8px;
  color:var(--blue-dark);
}

.why__card p{
  margin:0;
  color:#444;
  line-height:1.55;
}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
}

.panel{
  padding:18px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
}

.list{
  margin:14px 0 0;
  padding-left:18px;
}

.list.small{
  font-size:15px;
}

.pricing{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.priceCard{
  padding:18px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
}

.priceCard h3{
  margin:0 0 10px;
  color:var(--blue-dark);
}

.price{
  margin:0 0 8px;
  font-size:32px;
  font-weight:800;
  color:var(--blue);
}

.contactGrid{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.contactItem{
  padding:14px;
  border:1px solid rgba(0,0,0,.05);
  border-radius:14px;
  background:rgba(255,255,255,.75);
}

.form{
  padding:18px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
}

label{
  display:block;
  margin-bottom:14px;
  font-weight:600;
}

input,
textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:12px;
  background:#fff;
  font:inherit;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:rgba(75,111,143,.6);
  box-shadow:0 0 0 4px rgba(75,111,143,.18);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 16px;
  border:1px solid transparent;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

.btn--primary{
  color:#fff;
  background:linear-gradient(135deg, var(--blue-dark), var(--accent));
}

.btn--primary:hover{
  background:linear-gradient(135deg, var(--blue-dark), var(--accent));
}

.btn--ghost{
  color:var(--blue-dark);
  background:rgba(255,255,255,.65);
  border-color:rgba(47,79,106,.18);
}

.btn--ghost:hover{
  background:rgba(75,111,143,.10);
}

.w100{
  display:inline-flex;
  width:100%;
  justify-content:center;
}

.muted{
  opacity:.78;
}

.small{
  font-size:13px;
}

.footer{
  padding:22px 0;
  color:#fff;
  background:rgba(47,79,106,.92);
}

.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-size:14px;
}

@media (max-width: 1000px){
  .hero__grid,
  .split,
  .why__grid{
    grid-template-columns:1fr;
  }

  .cards,
  .pricing{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .cards,
  .pricing{
    grid-template-columns:1fr;
  }

  .burger{
    display:block;
  }

  .nav{
    position:fixed;
    top:64px;
    right:16px;
    display:none;
    flex-direction:column;
    gap:12px;
    width:min(240px, 86vw);
    padding:12px;
    margin-left:0;
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;
    background:rgba(47,79,106,.98);
    box-shadow:0 18px 40px rgba(0,0,0,.22);
  }

  .nav.open{
    display:flex;
  }

  .footer__row,
  .section__head{
    flex-direction:column;
    align-items:flex-start;
  }

  h1{
    font-size:clamp(32px, 9vw, 46px);
  }

  .hero{
    padding-top:48px;
  }
}
#helpdesk h3 {
  margin-top:20px;
  color: var(--blue-dark);
}