
:root{
  --navy:#0D2236;
  --teal:#1D8B8F;
  --teal-dark:#166C70;
  --coral:#FF6B4A;
  --gold:#E2A93B;
  --cream:#F7F3EC;
  --white:#FFFFFF;
  --ink:#1E2833;
  --muted:#66707A;
  --line:#E7DED0;
  --panel:#FCFAF6;
  --soft-teal:#EEF9F8;
  --soft-gold:#FFF6E1;
  --shadow:0 18px 46px rgba(13,34,54,.08);
  --radius:26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 88% 4%, rgba(29,139,143,.10) 0 18%, transparent 38%),
    linear-gradient(180deg,#FCFAF6 0%,#F4EEE5 100%);
  color:var(--ink);
}
a{color:inherit}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}
.topbar{
  padding:18px 0;
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background:rgba(252,250,246,.88);
  border-bottom:1px solid rgba(231,222,208,.75);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.brand{
  display:flex; align-items:center; gap:14px; text-decoration:none;
}
.logo-bars{display:flex; align-items:flex-end; gap:8px}
.logo-bars span{
  display:block; width:18px; border-radius:12px;
}
.bar1{height:42px;background:var(--navy)}
.bar2{height:72px;background:var(--teal)}
.bar3{height:92px;background:var(--coral)}
.brand-text{display:flex; flex-direction:column; line-height:.95}
.brand-text strong{
  font-family:Poppins, Inter, sans-serif;
  font-size:36px; font-weight:700; color:var(--navy); letter-spacing:-.04em;
}
.brand-text small{
  font-family:Poppins, Inter, sans-serif;
  font-size:15px; letter-spacing:.14em; text-transform:uppercase; color:var(--teal-dark); margin-top:6px;
}
.nav-link{
  color:var(--teal-dark);
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  border:1px solid #D5E7E5;
  border-radius:999px;
  padding:11px 16px;
  background:#FFFFFF;
}
.hero{
  padding:42px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns:0.86fr 1.14fr;
  gap:28px;
  align-items:start;
}
.intro-card{
  background:linear-gradient(180deg,#0F263A 0%,#143552 100%);
  color:#fff;
  border-radius:34px;
  padding:42px;
  box-shadow:var(--shadow);
  position:sticky;
  top:124px;
  overflow:hidden;
}
.intro-card:before{
  content:"";
  position:absolute; right:-110px; top:-110px;
  width:260px; height:260px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
}
.kicker{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--gold);
  font-weight:900;
  margin-bottom:18px;
}
h1{
  margin:0 0 18px;
  font-family:Poppins, Inter, sans-serif;
  font-size:clamp(44px,4.8vw,70px);
  line-height:.94;
  letter-spacing:-.055em;
}
h1 .accent{color:#66D2D0}
.lead{
  font-size:20px;
  line-height:1.55;
  color:rgba(255,255,255,.86);
  margin:0 0 26px;
}
.warning{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-left:5px solid var(--gold);
  border-radius:18px;
  padding:18px;
  color:rgba(255,255,255,.92);
  line-height:1.55;
  margin:0 0 26px;
}
.sidebar-list{
  display:grid;
  gap:12px;
  margin:26px 0 0;
}
.sidebar-item{
  display:flex; align-items:flex-start; gap:12px;
  color:rgba(255,255,255,.88);
  font-size:15px;
  line-height:1.4;
}
.sidebar-item:before{
  content:"";
  width:9px; height:9px; border-radius:50%; background:var(--teal); margin-top:6px; flex:0 0 9px;
}
.form-shell{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:34px;
}
.form-title{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  border-bottom:1px solid var(--line);
  padding-bottom:22px;
  margin-bottom:26px;
}
.form-title h2{
  margin:0;
  font-family:Poppins, Inter, sans-serif;
  font-size:42px;
  line-height:1.02;
  letter-spacing:-.05em;
  color:var(--navy);
}
.form-title p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.secure-chip{
  white-space:nowrap;
  background:var(--soft-teal);
  color:var(--teal-dark);
  border:1px solid #D5E7E5;
  border-radius:999px;
  padding:10px 13px;
  font-size:13px;
  font-weight:900;
}
fieldset{
  border:0;
  padding:0;
  margin:0 0 34px;
}
legend{
  font-family:Poppins, Inter, sans-serif;
  font-size:25px;
  line-height:1.05;
  letter-spacing:-.035em;
  color:var(--navy);
  font-weight:700;
  margin-bottom:16px;
  width:100%;
}
.section-note{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  color:#46515B;
  font-size:14px;
  line-height:1.5;
  margin:0 0 18px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 20px;
}
.field{min-width:0}
label{
  display:block;
  font-weight:850;
  color:var(--navy);
  margin:0 0 8px;
  font-size:15px;
}
.helper{
  margin:-2px 0 8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
input[type=text],
input[type=email],
input[type=tel],
select,
textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid #D7CCB8;
  border-radius:15px;
  font-size:16px;
  background:#FFFDF8;
  color:var(--ink);
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
textarea{min-height:118px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(29,139,143,.12);
  background:#fff;
}
.required{color:var(--coral)}
.check-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.check-card{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:#FFFDF8;
  border:1px solid #E4DAC8;
  border-radius:15px;
  padding:12px 12px;
  color:#2C3742;
  font-weight:650;
  font-size:14px;
  line-height:1.35;
}
.check-card input{
  margin-top:2px;
  accent-color:var(--teal);
}
.ack{
  display:grid;
  gap:12px;
}
.ack label{
  margin:0;
}
.ack-card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--soft-gold);
  border:1px solid #EBD49A;
  border-radius:16px;
  padding:14px;
  color:#393229;
  font-weight:650;
  line-height:1.45;
}
.ack-card input{
  margin-top:3px;
  accent-color:var(--teal);
}
.button-row{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:24px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:17px 26px;
  background:linear-gradient(135deg,var(--teal),#33A8AA);
  color:white;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 26px rgba(29,139,143,.22);
}
.button:hover{filter:brightness(.96)}
.submit-note{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  max-width:430px;
}
.footer{
  padding:28px 0 44px;
  color:#6D655D;
  font-size:13px;
}
.footer p{margin:0; max-width:960px; line-height:1.55}
.thankyou-panel{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:44px;
  margin:42px auto;
  max-width:880px;
}
.thankyou-panel h1{
  color:var(--navy);
  font-size:clamp(46px,5vw,72px);
}
.thankyou-panel p{
  color:#394653;
  font-size:19px;
  line-height:1.65;
}
.back-button{
  display:inline-flex;
  text-decoration:none;
  margin-top:14px;
  background:var(--navy);
  color:white;
  border-radius:999px;
  padding:14px 20px;
  font-weight:900;
}
@media (max-width:1050px){
  .hero-grid{grid-template-columns:1fr}
  .intro-card{position:relative; top:auto}
}
@media (max-width:760px){
  .container{width:min(100% - 24px,1180px)}
  .intro-card,.form-shell,.thankyou-panel{padding:24px; border-radius:26px}
  .grid,.check-grid{grid-template-columns:1fr}
  .form-title{flex-direction:column}
  .secure-chip{white-space:normal}
  .brand-text strong{font-size:30px}
  .nav-link{display:none}
  h1{font-size:43px}
  .form-title h2{font-size:34px}
}
