:root{
  --bg:#ffffff;
  --fg:#0b1220;
  --muted:#475569;
  --line:#e2e8f0;
  --accent:#3b82f6;
  --accent2:#22c55e;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(59,130,246,0.12), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(34,197,94,0.10), transparent 55%),
              var(--bg);
  color:var(--fg);
}
a{ color:inherit; }
.wrap{ width:min(1100px, 92vw); margin:0 auto; }

.header{ display:flex; align-items:center; justify-content:space-between; padding:18px 0; }
.brand{ display:flex; align-items:center; text-decoration:none; }
.logo{ height:38px; width:auto; display:block; }
.nav{ display:flex; gap:18px; align-items:center; color:var(--muted); }
.nav a{ text-decoration:none; }
.nav a:hover{ color:var(--fg); }

.hero{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap:26px; padding:44px 0 10px; align-items:start; }
.kicker{ display:inline-flex; gap:10px; align-items:center; color:var(--muted); font-weight:900; letter-spacing:0.02em; }
.kicker:before{ content:""; width:10px; height:10px; border-radius:999px; background:linear-gradient(135deg,var(--accent),var(--accent2)); display:inline-block; }
h1{ font-size: clamp(30px, 4vw, 54px); margin:10px 0 12px; line-height:1.05; letter-spacing:-0.02em; }
.lead{ color:var(--muted); font-size:18px; line-height:1.7; margin:0 0 12px; }

.trustbar{ display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 10px; color:var(--muted); font-weight:800; }
.trustbar span{ border:1px solid var(--line); padding:8px 10px; border-radius:999px; background:rgba(255,255,255,0.7); }

.actions{ display:flex; gap:12px; margin:16px 0 18px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  padding:12px 16px;
  border:1px solid rgba(59,130,246,0.25);
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color:white;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 10px 25px rgba(2,6,23,0.08);
}
.btn.ghost{
  background:transparent;
  color:var(--fg);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn.small{ padding:9px 12px; border-radius:10px; font-weight:800; }

.chips{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; color:var(--muted); }
.chips span{ border:1px solid var(--line); padding:8px 10px; border-radius:999px; background:rgba(255,255,255,0.65); }

.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 60px rgba(2,6,23,0.08);
  backdrop-filter: blur(10px);
}
.card h3{ margin:0 0 10px; }
.card p, .card li{ color:var(--muted); line-height:1.7; }
.card ul{ margin:10px 0 0; padding-left:18px; }

.section{ padding:62px 0 10px; }
h2{ margin:0 0 14px; font-size:30px; letter-spacing:-0.01em; }
.muted{ color:var(--muted); }
.small{ font-size:14px; }

.grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.tile{
  background:rgba(255,255,255,0.85);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.06);
}
.tile h3{ margin:0 0 8px; }
.tile p{ margin:0; color:var(--muted); line-height:1.7; }

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.plan{
  background:rgba(255,255,255,0.9);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.06);
  position:relative;
}
.plan ul{ margin:12px 0 14px; padding-left:18px; color:var(--muted); line-height:1.8; }
.badge{
  position:absolute; top:14px; right:14px;
  padding:6px 10px; border-radius:999px;
  background:linear-gradient(135deg, rgba(59,130,246,0.18), rgba(34,197,94,0.14));
  border:1px solid rgba(59,130,246,0.25);
  color:var(--fg);
  font-weight:900;
  font-size:12px;
}

.cases{ display:grid; gap:14px; }
.case{
  background:rgba(255,255,255,0.88);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.06);
}
.caseTop{ display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }
.tag{ border:1px solid var(--line); padding:6px 10px; border-radius:999px; color:var(--muted); font-weight:800; background:rgba(255,255,255,0.75); }
.caseGrid{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px; margin-top:10px; }
.caseGrid h4{ margin:0 0 8px; }
.caseGrid p, .caseGrid li{ color:var(--muted); line-height:1.75; }
.caseGrid ul{ margin:0; padding-left:18px; }

.faq details{
  background:rgba(255,255,255,0.85);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.05);
  margin:10px 0;
}
.faq summary{ cursor:pointer; font-weight:900; }
.faq p{ margin:10px 0 0; color:var(--muted); line-height:1.8; }

.formwrap{ display:grid; grid-template-columns: 1.4fr 0.6fr; gap:14px; margin-top:14px; }
.form, .side{
  background:rgba(255,255,255,0.85);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 14px 40px rgba(2,6,23,0.06);
}
.form label{ display:block; font-weight:900; margin:10px 0 6px; }
.form input, .form textarea, .form select{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:white;
  font: inherit;
  margin-top:8px;
}
.form textarea{ resize:vertical; min-height:140px; }
.row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.consent{ display:flex; gap:10px; align-items:flex-start; font-weight:800; color:var(--muted); }
.consent input{ width:auto; margin-top:3px; }
.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.hint{ display:block; font-size:13px; color:var(--muted); margin-top:6px; }

.side h3{ margin:0 0 8px; }
.side .btn{ width:100%; text-align:center; }
.bullets{ margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.9; }

.footer{ display:flex; gap:18px; padding:30px 0 60px; color:var(--muted); }
.footer a{ text-decoration:none; }
.footer a:hover{ color:var(--fg); }

.legal{ padding:34px 0 60px; }
.legal h1{ font-size:36px; margin:0 0 14px; }
.legal p, .legal li{ color:var(--muted); line-height:1.85; }
.legal ul{ padding-left:18px; }

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .grid, .grid3{ grid-template-columns: 1fr; }
  .caseGrid{ grid-template-columns: 1fr; }
  .formwrap{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .logo{ height:34px; }
}


.caseMedia{
  margin:12px 0 0;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,0.9);
}
.caseMedia img{
  width:100%;
  height:auto;
  display:block;
}
.caseMedia figcaption{
  padding:10px 12px;
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}
