:root {
  --brand-blue: #0e8fb8;
  --brand-blue-dark: #075da1;
  --brand-teal: #00a2ac;
  --brand-red: #c1181c;
  --text: #17324d;
  --text-soft: #586b7d;
  --surface: #ffffff;
  --surface-alt: #f5fafc;
  --line: #dfeaf0;
  --success: #15825b;
  --shadow: 0 18px 55px rgba(18, 79, 105, .12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
  color: #fff; font-size: 14px; text-align: center; padding: 8px 16px;
}
.header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(223,234,240,.8);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { width: 230px; height: auto; border-radius: 8px; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav a { text-decoration: none; font-weight: 650; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; text-decoration: none;
  font-weight: 750; border: 0; cursor: pointer; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff; background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-teal));
  box-shadow: 0 9px 24px rgba(0, 151, 176, .22);
}
.btn-secondary { background: #eef8fb; color: var(--brand-blue-dark); }
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(0,162,172,.10), transparent 33%),
    radial-gradient(circle at 12% 92%, rgba(14,143,184,.10), transparent 32%),
    #fff;
  padding: 72px 0 60px;
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: #ecf8fb; color: var(--brand-blue-dark); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .03em;
}
.hero h1 { font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.045em; margin: 20px 0 20px; }
.hero h1 span {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: 19px; color: var(--text-soft); max-width: 700px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px;
}
.trust-item { font-size: 13px; color: var(--text-soft); padding: 12px 14px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.7); }
.hero-card { position: relative; border-radius: 32px; background: #fff; box-shadow: var(--shadow); padding: 16px; border: 1px solid var(--line); }
.hero-card img { border-radius: 24px; width: 100%; }
.hero-badge {
  position: absolute; left: -18px; bottom: 30px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 13px 16px; box-shadow: 0 12px 30px rgba(23,50,77,.12);
  font-size: 13px; font-weight: 800; color: var(--brand-blue-dark);
}
.section { padding: 78px 0; }
.section-alt { background: var(--surface-alt); }
.section-head { max-width: 770px; margin: 0 auto 42px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; margin: 0 0 12px; }
.section-head p { color: var(--text-soft); font-size: 17px; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 8px 30px rgba(31, 87, 109, .06);
}
.icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(14,143,184,.12), rgba(0,162,172,.16)); color: var(--brand-blue-dark);
  font-size: 22px; font-weight: 900;
}
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--text-soft); font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-teal)); margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--text-soft); font-size: 14px; }
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.checklist { display: grid; gap: 12px; }
.check {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
.check i { font-style: normal; color: var(--success); font-weight: 900; }
.notice {
  background: linear-gradient(135deg, #eaf8fb, #f7fbfc); border: 1px solid #cfe9ef;
  border-radius: 22px; padding: 24px; color: #315268;
}
.notice strong { color: var(--brand-blue-dark); }
.form-wrap {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start;
}
.form-intro {
  background: linear-gradient(145deg, var(--brand-blue-dark), var(--brand-teal)); color: #fff;
  border-radius: 28px; padding: 34px; box-shadow: var(--shadow);
}
.form-intro h2 { font-size: 37px; line-height: 1.05; margin: 0 0 14px; }
.form-intro p { opacity: .9; }
.form-intro ul { padding-left: 20px; margin: 22px 0 0; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 30px; box-shadow: var(--shadow); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 7px; }
input, select, textarea {
  width: 100%; border: 1px solid #cfdce4; background: #fff; border-radius: 13px; min-height: 48px;
  padding: 11px 13px; font: inherit; color: var(--text); outline: none;
}
textarea { min-height: 92px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(14,143,184,.11); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--text-soft); margin: 8px 0 18px; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; flex: 0 0 18px; }
.form-card .btn { width: 100%; }
.small-note { font-size: 12px; color: var(--text-soft); margin-top: 10px; text-align: center; }
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; border: 0; background: #fff; text-align: left; padding: 18px 20px; cursor: pointer;
  font-weight: 800; font-size: 16px; color: var(--text); display: flex; justify-content: space-between; gap: 16px;
}
.faq-question span:last-child { color: var(--brand-blue-dark); }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--text-soft); font-size: 14px; }
.faq-item.open .faq-answer { display: block; }
.cta-band {
  margin-top: 40px; background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-teal));
  color: #fff; border-radius: 26px; padding: 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.cta-band h3 { margin: 0; font-size: 28px; }
.footer { background: #0c2f49; color: #dbe7ee; padding: 46px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.footer img { width: 260px; border-radius: 10px; margin-bottom: 14px; }
.footer a { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 18px; font-size: 12px; color: #9fb5c4; }
.floating-wa {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25D366; color: #fff; text-decoration: none;
  font-size: 26px; box-shadow: 0 12px 30px rgba(0,0,0,.18); z-index: 30;
}
.privacy-body { background: #f7fafc; }
.privacy-card { max-width: 900px; margin: 50px auto; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 34px; }
.privacy-card h1 { margin-top: 0; }
.privacy-card h2 { margin-top: 30px; }
.privacy-card p, .privacy-card li { color: var(--text-soft); }
.thanks {
  min-height: 100vh; display: grid; place-items: center; padding: 30px;
  background: radial-gradient(circle at 50% 0%, #e8f8fb, #fff 45%);
}
.thanks-card { max-width: 660px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 44px; box-shadow: var(--shadow); }
.thanks-card img { width: 260px; margin: 0 auto 25px; border-radius: 10px; }
@media (max-width: 920px) {
  .nav a:not(.btn) { display: none; }
  .hero-grid, .form-wrap, .analysis-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; margin: 0 auto; }
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 48px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1140px); }
  .header-inner { min-height: 66px; }
  .brand img { width: 180px; }
  .header .btn { min-height: 42px; padding: 0 14px; font-size: 13px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .trust, .cards, .steps, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .hero-badge { left: 10px; bottom: 18px; }
  .form-card, .form-intro { padding: 23px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
