:root {
  --primary: #082b5f;
  --primary-2: #0b4a8f;
  --primary-light: #eaf3ff;
  --accent: #ff4fa3;
  --accent-dark: #e93f91;
  --text-main: #10233d;
  --text-soft: #5d6f86;
  --bg-body: #f4f8fd;
  --card-bg: #ffffff;
  --border: rgba(8, 43, 95, 0.12);
  --border-radius-lg: 22px;
  --shadow-soft: 0 18px 45px rgba(8, 43, 95, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #d9ecff 0, #f4f8fd 34%, #ffffff 100%);
  color: var(--text-main);
}
a { color: inherit; }

.top-strip {
  background: var(--primary);
  color: #eaf3ff;
  padding: 8px 6vw;
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-strip a { color: #ffffff; text-decoration: none; font-weight: 700; }

header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--primary); text-decoration: none; }
.logo-mark { width: 38px; height: 38px; }
.logo-title { display:block; font-size:24px; font-weight:800; letter-spacing:-0.03em; }
.logo-sub { display:block; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:#6a7a90; margin-top:-4px; }
nav { display:flex; align-items:center; gap:22px; font-size:15px; font-weight:600; }
nav a { text-decoration:none; color:#42546b; padding-bottom:4px; border-bottom:2px solid transparent; }
nav a:hover, nav a.active { border-bottom-color:var(--accent); color:var(--primary); }
.nav-email { color: var(--primary); font-weight: 800; }

.btn-pill {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 79, 163, 0.35);
}
.btn-pill.secondary { background:#ffffff; color: var(--primary); box-shadow: 0 8px 18px rgba(3, 27, 78, 0.08); border:1px solid var(--border); }

.hero-modern {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 680px;
  background: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-photo {
  min-height: 680px;
  overflow: hidden;
  background: #f7fbff;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.hero-panel {
  padding: 76px 58px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f9fcff 62%, #eef7ff 100%);
}
.hero-eyebrow { text-transform:uppercase; letter-spacing:0.20em; font-size:12px; font-weight:900; color:var(--primary); opacity:0.9; margin-bottom:16px; }
.hero-panel h1 { font-size:54px; line-height:1.06; margin:0 0 20px; font-weight:900; letter-spacing:-0.055em; color:var(--primary); }
.hero-panel h1 span { color: var(--accent); }
.hero-panel p { font-size:19px; line-height:1.65; margin:0 0 30px; color:var(--text-main); }
.hero-actions { display:flex; flex-wrap:wrap; gap:18px; }
.hero-feature-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin:42px 0 28px; }
.hero-feature-row div { text-align:center; padding:0 14px; border-right:1px solid var(--border); }
.hero-feature-row div:last-child { border-right:none; }
.hero-feature-row strong { width:54px; height:54px; margin:0 auto 10px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--accent); background:#fff; box-shadow:0 8px 20px rgba(8,43,95,.08); font-size:24px; }
.hero-feature-row span { display:block; font-size:15px; line-height:1.25; font-weight:700; color:var(--text-main); }
.hero-contact-line { display:flex; flex-wrap:wrap; gap:24px; align-items:center; margin-top:4px; font-size:18px; font-weight:900; color:var(--primary); }
.hero-contact-line a { color:var(--primary); text-decoration:none; }
.hero-contact-line a:hover { color:var(--accent); }

main { padding: 66px 6vw 76px; max-width: 1160px; margin: 0 auto; }
.section-intro { text-align:center; margin-bottom:38px; }
.section-intro h1 { font-size:34px; margin:0 0 12px; letter-spacing:-0.03em; }
.section-intro p { font-size:17px; max-width:720px; margin:0 auto; color:var(--text-soft); line-height:1.65; }
.grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:22px; }
.grid-2, .two-column { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:24px; }
.card { background:var(--card-bg); border-radius:var(--border-radius-lg); padding:28px 26px; box-shadow:var(--shadow-soft); border:1px solid var(--border); }
.card h2, .card h3 { margin-top:0; margin-bottom:10px; }
.card h3 { font-size:20px; }
.card p { margin:0; font-size:15px; line-height:1.7; color:var(--text-soft); }
.pill-tag { display:inline-block; padding:6px 11px; border-radius:999px; font-size:11px; text-transform:uppercase; letter-spacing:0.12em; background:var(--primary-light); color:var(--primary-2); margin-bottom:10px; font-weight:800; }
.trust-row { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:26px; }
.trust-badge { background:#fff; border:1px solid var(--border); border-radius:16px; padding:16px; text-align:center; font-size:13px; font-weight:800; color:var(--primary); box-shadow:0 8px 22px rgba(8,43,95,.06); }
.cta-panel { margin-top:42px; background:linear-gradient(135deg, var(--primary), #0e5dad); color:#fff; border-radius:28px; padding:34px; display:flex; align-items:center; justify-content:space-between; gap:24px; box-shadow:var(--shadow-soft); }
.cta-panel p { color:#eaf3ff; margin:8px 0 0; line-height:1.7; }
.cta-panel a { color:#fff; font-weight:800; }
.list-check { list-style:none; padding-left:0; margin:0; }
.list-check li { padding-left:24px; position:relative; margin-bottom:10px; font-size:15px; color:#55647b; line-height:1.55; }
.list-check li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--accent); font-weight:900; }
.stat-row { display:flex; gap:18px; margin-top:18px; }
.stat { flex:1; padding:14px; background:var(--primary-light); border-radius:16px; }
.stat strong { display:block; font-size:24px; margin-bottom:4px; color:var(--primary); }
form { display:grid; gap:16px; }
.field-row { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
label { font-size:13px; font-weight:800; color:#35465a; display:block; margin-bottom:5px; }
input, select, textarea { width:100%; padding:12px 12px; border-radius:12px; border:1px solid #c9d3e5; font-size:14px; font-family:inherit; background:#ffffff; }
textarea { resize:vertical; min-height:130px; }
input:focus, select:focus, textarea:focus { outline:none; border-color:var(--primary-2); box-shadow:0 0 0 3px rgba(11,74,143,0.10); }
.form-help { font-size:13px; color:#7a8899; }
footer { text-align:center; padding:24px; background:#0b1630; color:#c8d0e5; margin-top:20px; font-size:13px; }
footer a { color:#e4ecff; text-decoration:none; font-weight:800; }
footer a:hover { text-decoration:underline; }

@media (max-width: 960px) {
  nav { gap:14px; flex-wrap:wrap; }
  .grid-3, .trust-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .two-column, .grid-2, .cta-panel { grid-template-columns: minmax(0,1fr); display:grid; }
  .hero-copy h1 { font-size:40px; }
}
@media (max-width: 720px) {
  .top-strip { justify-content:flex-start; }
  header { flex-direction:column; align-items:flex-start; gap:12px; }
  nav { font-size:14px; }
  .nav-email { width:100%; }
  .hero-content { padding-top:70px; padding-bottom:80px; }
  .hero-copy h1 { font-size:34px; }
  .grid-3, .grid-2, .trust-row, .field-row { grid-template-columns: minmax(0,1fr); }
  .cta-panel { padding:26px; }
}

.nav-phone{font-weight:700;color:var(--primary);text-decoration:none;padding:8px 12px;border-radius:999px;background:var(--primary-light)}
.top-strip a{font-weight:700}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
@media(max-width:720px){.cta-actions{justify-content:flex-start}.nav-phone{padding:4px 0;background:transparent}}
