
:root{
  --bg:#f7f8fb;
  --surface:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --brand:#2563eb;
  --brand-dark:#1d4ed8;
  --dark:#0b1220;
  --shadow:0 12px 30px rgba(15,23,42,.08);
  --radius:18px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(226,232,240,.9);
}
.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  font-size:1.9rem;
  font-weight:800;
  letter-spacing:-.03em;
  color:#0f172a;
}
.brand span{color:var(--brand)}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.main-nav a{
  color:#1e293b;
  font-weight:600;
  font-size:.98rem;
}
.main-nav a:hover{color:var(--brand)}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.call-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 24px rgba(37,99,235,.22);
}
.call-pill:hover{background:var(--brand-dark)}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#1e3a8a;
  margin:5px auto;
  border-radius:2px;
}
.mobile-menu{
  display:none;
  background:#fff;
  border-top:1px solid var(--line);
}
.mobile-menu.open{display:block}
.mobile-menu .container{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.mobile-menu a{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  font-weight:600;
}

.hero{
  position:relative;
  min-height:86vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(8,15,30,.74) 0%, rgba(8,15,30,.52) 38%, rgba(8,15,30,.16) 70%, rgba(8,15,30,.08) 100%),
    url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter:blur(2.4px);
}
.hero .container{
  position:relative;
  z-index:1;
  padding:84px 0;
}
.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
}
.hero-grid{
  max-width:680px;
}
.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:1.05;
  letter-spacing:-.04em;
  color:#fff;
}
.hero p{
  margin:0 0 28px;
  font-size:1.18rem;
  color:rgba(255,255,255,.92);
  max-width:620px;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:14px;
  font-weight:700;
  transition:.2s ease;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 16px 30px rgba(37,99,235,.26);
}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-1px)}
.btn-secondary{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
}
.btn-secondary:hover{background:rgba(255,255,255,.2)}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:#fff;
  font-weight:600;
}
.hero-points span{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 14px;
  border-radius:999px;
}

.section{padding:80px 0}
.section-tight{padding:64px 0}
.section-head{
  max-width:760px;
  margin-bottom:28px;
}
.section-head h2{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.15;
  letter-spacing:-.03em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 10px;font-size:1.2rem}
.card p{margin:0;color:var(--muted)}
.card ul{margin:12px 0 0 18px;padding:0;color:var(--muted)}

.band{
  background:linear-gradient(180deg,#0f172a,#111827);
  color:#fff;
}
.band .card{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
  box-shadow:none;
}
.band .section-head p,.band .card p,.band .card ul{color:rgba(255,255,255,.82)}

.cta-strip{
  background:#eef4ff;
  border:1px solid #dbe7ff;
  border-radius:24px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.cta-strip h3{margin:0 0 8px;font-size:1.6rem}
.cta-strip p{margin:0;color:var(--muted)}

.site-footer{
  background:#0b1220;
  color:#d7deea;
  padding-top:64px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr;
  gap:28px;
}
.footer-brand{
  font-size:2rem;
  font-weight:800;
  letter-spacing:-.03em;
  color:#fff;
  margin-bottom:12px;
}
.footer-brand span{color:#60a5fa}
.footer-title{
  color:#fff;
  font-size:1rem;
  font-weight:700;
  margin:0 0 14px;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{color:#d7deea}
.footer-links a:hover{color:#fff}
.footer-note{
  color:#aab6c8;
}
.footer-bottom{
  margin-top:38px;
  padding:20px 0 30px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#9db0c5;
  font-size:.95rem;
}
.floating-call{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1100;
  min-height:56px;
  padding:0 18px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  box-shadow:0 16px 34px rgba(37,99,235,.34);
}
.floating-call:hover{background:var(--brand-dark)}

.page-hero{
  padding:86px 0 44px;
  background:linear-gradient(180deg,#ffffff,#f7f8fb);
  border-bottom:1px solid var(--line);
}
.page-hero h1{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.25rem);
  letter-spacing:-.03em;
  line-height:1.1;
}
.page-hero p{margin:0;color:var(--muted);max-width:760px;font-size:1.08rem}
.content{
  padding:54px 0 80px;
}
.content h2{
  margin:28px 0 10px;
  font-size:1.35rem;
}
.content p,.content li{
  color:var(--muted);
}
.content ul{padding-left:20px}
.legal-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:30px;
  box-shadow:var(--shadow);
}

@media (max-width: 1080px){
  .main-nav{display:none}
  .menu-toggle{display:inline-block}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 780px){
  .header-inner{min-height:72px}
  .brand{font-size:1.7rem}
  .call-pill{display:none}
  .hero{
    min-height:auto;
  }
  .hero .container{
    padding:64px 0 72px;
  }
  .hero h1{
    font-size:clamp(2.2rem,10vw,3.2rem);
  }
  .hero p{
    font-size:1.02rem;
  }
  .hero-cta{
    flex-direction:column;
    align-items:stretch;
  }
  .btn{width:100%}
  .grid-3,.grid-2,.footer-grid{
    grid-template-columns:1fr;
  }
  .cta-strip{
    flex-direction:column;
    align-items:flex-start;
  }
  .floating-call{
    left:16px;
    right:16px;
    justify-content:center;
  }
}
