*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI,Arial,sans-serif;
}

:root{
  --bg1:#155174;
  --bg2:#1d6590;
  --bg3:#2476a6;
  --panel:#d9fbff;
  --teal:#00e0c6;
  --orange:#ff7b00;
  --white:#ffffff;
  --muted:#d9edf7;
  --line:rgba(255,255,255,.18);
}

body{
  background:linear-gradient(135deg,var(--bg1),var(--bg2),var(--bg3));
  color:white;
  overflow-x:hidden;
  min-height:100vh;
}

a{
  color:inherit;
}

.header{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 70px;
  background:rgba(5,28,48,.82);
  border-bottom:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  position:sticky;
  top:0;
  z-index:999;
}

.logo{
  font-size:30px;
  font-weight:900;
  color:var(--teal);
  letter-spacing:.2px;
}

.logo span{
  color:var(--orange);
}

.nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav a{
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  color:white;
}

.nav a:hover{
  color:var(--teal);
}

.nav .active{
  color:white;
  border-bottom:3px solid var(--teal);
  padding-bottom:13px;
}

.cta{
  background:var(--orange);
  padding:12px 22px;
  border-radius:9px;
  color:white !important;
  border:none !important;
}

.page{
  max-width:1360px;
  margin:auto;
  padding:58px 7%;
}

.hero{
  max-width:1360px;
  margin:auto;
  padding:62px 7% 35px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:72px;
  align-items:center;
}

.hero-left h1{
  font-size:72px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-2px;
}

.hero-left h1 span{
  display:block;
  background:linear-gradient(90deg,#00e0c6,#33d7ff,#fff,#ff8c00);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-left p{
  margin-top:22px;
  max-width:690px;
  color:white;
  font-size:21px;
  line-height:1.55;
}

.badges{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  text-align:center;
}

.circle{
  margin:0 auto 12px;
  width:68px;
  height:68px;
  border-radius:50%;
  border:2px solid var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--teal);
  font-size:32px;
  background:rgba(0,224,198,.08);
}

.badge h4{
  font-size:16px;
  margin-bottom:6px;
}

.badge p{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.truth-row{
  border-top:1px solid var(--line);
  margin-top:30px;
  padding-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.truth-item{
  display:flex;
  gap:12px;
  align-items:center;
}

.truth-icon{
  color:var(--teal);
  font-size:30px;
}

.truth-item h3{
  color:var(--teal);
  font-size:20px;
}

.truth-item p{
  font-size:13px;
  color:white;
  margin-top:0;
}

.form-panel{
  background:linear-gradient(135deg,rgba(230,255,255,.96),rgba(196,239,246,.94));
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 30px 80px rgba(0,0,0,.32);
  border-radius:18px;
  padding:30px;
  color:#07324c;
}

.form-panel h2{
  color:#006ea4;
  font-size:30px;
  margin-bottom:4px;
}

.form-panel p{
  color:#0d3853;
  font-weight:600;
  margin-bottom:18px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 18px;
}

.field label{
  display:block;
  font-size:13px;
  font-weight:800;
  margin-bottom:6px;
  color:#17384d;
}

.field input,
.field select,
.field textarea{
  width:100%;
  height:38px;
  border:1px solid rgba(0,62,96,.18);
  border-radius:6px;
  padding:0 12px;
  color:#07324c;
  background:rgba(255,255,255,.72);
  font-weight:600;
}

.field textarea{
  height:70px;
  padding:12px;
  resize:none;
}

.full{
  grid-column:1 / -1;
}

.submit{
  grid-column:1 / -1;
  height:46px;
  background:var(--orange);
  color:white;
  border:0;
  border-radius:8px;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.secure{
  grid-column:1 / -1;
  text-align:center;
  color:#315669;
  font-size:13px;
  font-weight:600;
}

.workflow{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:30px 7%;
  margin-top:20px;
}

.workflow h2{
  text-align:center;
  color:var(--teal);
  font-size:27px;
  margin-bottom:28px;
}

.steps{
  max-width:1360px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.step{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.step-icon{
  min-width:66px;
  height:66px;
  border:2px solid var(--teal);
  border-radius:50%;
  color:var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  background:rgba(0,224,198,.08);
}

.step h3{
  font-size:16px;
  margin-bottom:6px;
}

.step p{
  color:white;
  line-height:1.45;
  font-size:14px;
}

.lower{
  max-width:1360px;
  margin:auto;
  padding:34px 7%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:38px;
}

.info-column{
  border-right:1px solid var(--line);
  padding-right:28px;
}

.info-column:last-child{
  border-right:0;
}

.info-column h3{
  color:var(--teal);
  font-size:24px;
  margin-bottom:10px;
}

.info-column p{
  color:white;
  line-height:1.5;
  margin-bottom:12px;
}

.info-column ul{
  list-style:none;
  line-height:1.65;
}

.info-column li::before{
  content:"◎ ";
  color:var(--teal);
}

.small-btn{
  display:inline-block;
  margin-top:14px;
  padding:10px 22px;
  border:1px solid var(--teal);
  border-radius:7px;
  color:var(--teal);
  text-decoration:none;
  font-weight:800;
}

.footer{
  max-width:1360px;
  margin:auto;
  padding:28px 7% 18px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1.3fr repeat(4,1fr);
  gap:42px;
}

.footer h3{
  color:var(--teal);
}

.footer h3 span{
  color:var(--orange);
}

.footer h4{
  color:white;
  margin-bottom:9px;
}

.footer a{
  display:block;
  color:#d9edf7;
  text-decoration:none;
  margin-bottom:6px;
  font-size:14px;
}

.footer p{
  color:#d9edf7;
  line-height:1.5;
  font-size:14px;
}

.bottom{
  max-width:1360px;
  margin:auto;
  padding:18px 7%;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  color:#d9edf7;
  font-size:14px;
}

.content-page{
  max-width:1120px;
  margin:auto;
  padding:70px 7%;
}

.content-page h1{
  font-size:48px;
  color:var(--teal);
  margin-bottom:22px;
}

.content-page h2{
  color:white;
  margin-top:34px;
  margin-bottom:12px;
  font-size:26px;
}

.content-page p{
  color:white;
  line-height:1.8;
  margin-bottom:18px;
  font-size:17px;
}

.content-page ul{
  margin:16px 0 22px 22px;
  line-height:1.9;
  color:white;
  font-size:16px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:28px;
}

.price-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:28px;
}

.price-card h2{
  color:var(--teal);
  margin-top:0;
}

.price{
  font-size:38px;
  color:white;
  font-weight:900;
  margin:10px 0 16px;
}

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

.state-grid{
  columns:4;
}

.notice{
  background:rgba(255,255,255,.08);
  border-left:4px solid var(--orange);
  padding:18px;
  border-radius:12px;
  margin:20px 0;
}

@media(max-width:1100px){
  .hero{grid-template-columns:1fr;}
  .steps,.lower,.footer,.pricing-grid{grid-template-columns:1fr 1fr;}
  .hero-left h1{font-size:54px;}
  .nav{gap:14px;}
  .header{padding:0 25px;}
}

@media(max-width:760px){
  .steps,.lower,.footer,.pricing-grid,.badges,.truth-row,.service-grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .full,.submit,.secure{grid-column:auto;}
  .header{height:auto;position:relative;flex-direction:column;padding:18px;}
}
