:root{
  --bg:#08111f;
  --bg-2:#0f1b30;
  --surface:#ffffff;
  --surface-2:#f5f8fc;
  --text:#102033;
  --muted:#64748b;
  --line:#d9e2ee;
  --primary:#c61f26;
  --primary-2:#9f171d;
  --dark:#0d1829;
  --soft-red:#fff1f2;
  --shadow:0 18px 45px rgba(9,18,32,.10);
  --shadow-strong:0 22px 60px rgba(9,18,32,.16);
  --radius:20px;
  --radius-sm:14px;
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--surface-2);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,226,238,.9);
  box-shadow:0 8px 30px rgba(9,18,32,.05);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:168px;
  height:auto;
  object-fit:contain;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.brand-title{
  font-size:18px;
  font-weight:800;
  letter-spacing:.02em;
}

.brand-subtitle{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
}

.menu{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:15px;
  color:#334155;
}

.menu a{
  position:relative;
  font-weight:600;
  transition:.2s ease;
}

.menu a:hover,
.menu a.active{
  color:var(--primary);
}

.menu a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-12px;
  width:100%;
  height:2px;
  background:var(--primary);
  border-radius:999px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  font-size:15px;
  transition:.2s ease;
  cursor:pointer;
  white-space:nowrap;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary) 0%, #e0343b 100%);
  color:#fff;
  box-shadow:0 14px 32px rgba(198,31,38,.22);
}
.btn-primary:hover{
  transform:translateY(-1px);
  background:linear-gradient(135deg,var(--primary-2) 0%, #cf252c 100%);
}

.btn-secondary{
  background:#fff;
  border-color:var(--line);
  color:var(--dark);
}
.btn-secondary:hover{
  border-color:#c2cedd;
  background:#fafcff;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(198,31,38,.18), transparent 28%),
    linear-gradient(135deg, #091221 0%, #10213b 48%, #0d1729 100%);
  color:#fff;
  padding:88px 0 64px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:40px 40px;
  opacity:.12;
  pointer-events:none;
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#ffb4b7;
}

.hero h1{
  margin:0 0 18px;
  font-size:58px;
  line-height:1.01;
  letter-spacing:-1.8px;
  max-width:820px;
}

.hero p{
  margin:0 0 28px;
  font-size:19px;
  color:rgba(255,255,255,.86);
  max-width:760px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero .btn-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
  color:#fff;
}

.hero-side{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-strong);
}

.hero-panel{
  background:#fff;
  color:var(--text);
  border-radius:22px;
  padding:24px;
}

.hero-panel h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.08;
}

.hero-panel p{
  margin:0 0 18px;
  font-size:15px;
  color:var(--muted);
}

.hero-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.hero-points li{
  padding:14px 16px;
  border:1px solid var(--line);
  background:var(--surface-2);
  border-radius:16px;
  font-size:14px;
  color:#334155;
}

.section{
  padding:82px 0;
}

.section-head{
  max-width:760px;
  margin-bottom:30px;
}

.section-head h2{
  margin:0 0 10px;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-1px;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}

.card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.3px;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.tag{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:#f1f5fb;
  color:#42546c;
}

.offer-card{
  position:relative;
  overflow:hidden;
  min-height:220px;
}
.offer-card::after{
  content:"";
  position:absolute;
  right:-38px;
  bottom:-38px;
  width:130px;
  height:130px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(198,31,38,.10), transparent 70%);
  pointer-events:none;
}

.feature-band{
  background:linear-gradient(135deg,#0e1829 0%, #172b4d 100%);
  color:#fff;
  border-radius:30px;
  padding:36px;
  box-shadow:0 26px 54px rgba(9,18,32,.18);
}

.feature-band h2{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.02;
  letter-spacing:-1px;
}

.feature-band p{
  margin:0 0 20px;
  color:rgba(255,255,255,.86);
  font-size:17px;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.feature-list li{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.contact-section{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:26px;
  align-items:start;
}

.contact-panel{
  background:linear-gradient(135deg,#0f1b30 0%, #162c4d 100%);
  color:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-strong);
}

.contact-panel h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.06;
  letter-spacing:-.8px;
}

.contact-panel p{
  margin:0 0 20px;
  color:rgba(255,255,255,.85);
}

.contact-stack{
  display:grid;
  gap:16px;
}

.contact-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
}

.contact-card strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
}

.contact-card span,
.contact-card a{
  color:rgba(255,255,255,.92);
}

.form-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
}

.form-box h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.8px;
}

.form-box p{
  margin:0 0 22px;
  color:var(--muted);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field.full{grid-column:1/-1}

label{
  font-size:14px;
  font-weight:700;
  color:#314156;
}

.field-hint{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
}

input,select,textarea{
  width:100%;
  border:1px solid #cfd8e6;
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  background:#fff;
  outline:none;
  transition:.2s ease;
}

textarea{
  min-height:140px;
  resize:vertical;
}

input:focus,select:focus,textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(198,31,38,.10);
}

.note{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
}

.cta-band{
  background:linear-gradient(135deg,var(--primary) 0%, var(--primary-2) 100%);
  color:#fff;
  border-radius:28px;
  padding:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 24px 42px rgba(198,31,38,.24);
}

.cta-band h2{
  margin:0 0 8px;
  font-size:36px;
  line-height:1.04;
  letter-spacing:-.8px;
}

.cta-band p{
  margin:0;
  color:rgba(255,255,255,.9);
}

.cta-band .btn-secondary{
  background:#fff;
  border-color:#fff;
  color:var(--primary-2);
}

footer{
  background:#08111f;
  color:#d7dce7;
  padding:52px 0 28px;
  margin-top:0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .85fr .85fr 1fr;
  gap:24px;
  margin-bottom:28px;
}

.footer-title{
  margin:0 0 14px;
  font-size:16px;
  font-weight:800;
  color:#fff;
}

.footer-col a{
  display:block;
  margin-bottom:10px;
  color:#c6cfdb;
}

.footer-col a:hover{color:#fff}

.footer-note{
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#95a3b8;
  font-size:14px;
}

@media (max-width:1100px){
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .footer-grid,
  .form-grid{
    grid-template-columns:1fr 1fr;
  }

  .menu{display:none}
}

@media (max-width:760px){
  .hero h1{font-size:40px}
  .section-head h2,
  .feature-band h2,
  .cta-band h2,
  .contact-panel h2,
  .form-box h2{
    font-size:30px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .footer-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .brand-logo{width:138px}
  .nav{min-height:74px}
  .hero{padding:70px 0 52px}
  .section{padding:62px 0}
}
.cf-turnstile{
  margin-top: 16px;
}