
:root {
  --navy: #0a2140;
  --navy-2: #12355b;
  --blue: #1c72e8;
  --blue-dark: #0e5bc7;
  --cyan: #13b7c8;
  --sky: #eaf4ff;
  --cream: #f8fbff;
  --white: #ffffff;
  --ink: #102033;
  --muted: #607086;
  --line: #dbe5f0;
  --success: #168a5b;
  --danger: #b5313a;
  --shadow: 0 20px 50px rgba(15, 46, 80, 0.12);
  --shadow-sm: 0 10px 30px rgba(15, 46, 80, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { 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(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--cream); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(19, 183, 200, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), #07182e);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; color: var(--blue);
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: currentColor; }
.section-dark .eyebrow { color: #72e1eb; }

h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { color: var(--navy); line-height: 1.15; letter-spacing: -.025em; }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(2.7rem, 6vw, 5.6rem); font-weight: 850; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin-bottom: 12px; font-size: 1.3rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.23rem); }
.section-dark .lead,.section-dark p { color: #cfdaea; }
.text-center { text-align: center; }
.text-center .lead,.text-center h1,.text-center h2 { margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }

.topbar { color: #d9e4f0; background: #06162a; font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #8fe7ef; font-weight: 700; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,229,240,.86);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 180px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a { padding: 10px 13px; color: #33465c; font-weight: 700; font-size: .94rem; border-radius: 10px; }
.nav-links a:hover,.nav-links a.active { color: var(--blue); background: var(--sky); }
.nav-links .nav-cta { color: var(--white); background: var(--blue); padding-inline: 18px; }
.nav-links .nav-cta:hover,.nav-links .nav-cta.active { color: var(--white); background: var(--blue-dark); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--sky); }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--navy); transition: .2s ease; }

.hero { position: relative; overflow: hidden; padding: 84px 0 96px; background:
  radial-gradient(circle at 92% 10%, rgba(19,183,200,.15), transparent 25%),
  radial-gradient(circle at 3% 70%, rgba(28,114,232,.1), transparent 24%),
  linear-gradient(180deg, #fff, #f7fbff); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 58px; align-items: center; }
.hero h1 { font-size: clamp(3rem, 6.2vw, 5.5rem); }
.hero h1 span { color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 13px;
  font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 12px 28px rgba(28,114,232,.23); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(28,114,232,.3); }
.button-secondary { color: var(--navy); background: #fff; border-color: var(--line); }
.button-light { color: var(--navy); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.35); }
.button-outline-light:hover { background: rgba(255,255,255,.08); }
.hero-art { position: relative; }
.hero-art::after { content: ""; position: absolute; inset: 12% 8% -4% 12%; z-index: -1; background: rgba(28,114,232,.18); filter: blur(45px); border-radius: 50%; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: #45576b; font-size: .92rem; font-weight: 700; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; color: var(--success); background: #e6f7ef; border-radius: 50%; font-size: .78rem; }

.stats { margin-top: -44px; position: relative; z-index: 3; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.stat { padding: 26px 28px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--navy); font-size: 1.35rem; }
.stat span { color: var(--muted); font-size: .9rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards { margin-top: 42px; }
.card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card p:last-child { margin-bottom: 0; }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 16px; color: var(--blue); background: var(--sky); font-size: 1.35rem; font-weight: 900; }
.card:hover .card-icon { color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); }

.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { position: relative; padding: 0 0 13px 32px; color: #43566b; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: #fff; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--success); font-size: .75rem; font-weight: 900; }

.process { counter-reset: step; }
.process-card { position: relative; padding: 34px 28px 28px; }
.process-card::before {
  counter-increment: step; content: "0" counter(step);
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px;
  color: #fff; background: var(--navy); border-radius: 14px; font-weight: 900;
}
.process-card::after { content: ""; position: absolute; left: calc(100% + 5px); top: 57px; width: 14px; height: 2px; background: var(--line); }
.process-card:last-child::after { display: none; }

.split-panel { padding: 44px; border-radius: 30px; background: var(--sky); }
.quote { padding: 34px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quote p { font-size: 1.08rem; }
.quote strong { color: var(--navy); }

.page-hero { padding: 90px 0 76px; background:
  radial-gradient(circle at 90% 15%, rgba(19,183,200,.15), transparent 25%),
  linear-gradient(180deg,#f5faff,#fff); }
.page-hero h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
.breadcrumb { display: flex; gap: 8px; color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.breadcrumb a { color: var(--blue); font-weight: 700; }

.feature-band { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 48px; border-radius: 30px; background: linear-gradient(135deg,#0a2140,#12355b); color: #fff; }
.feature-band h2,.feature-band h3 { color: #fff; }
.feature-band p { color: #d5dfeb; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #e7f4ff; background: rgba(255,255,255,.07); font-size: .88rem; font-weight: 700; }

.service-detail { display: grid; grid-template-columns: 80px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.service-number { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; color: var(--blue); background: var(--sky); font-size: 1.2rem; font-weight: 900; }
.service-detail ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }

.audience-card { min-height: 100%; }
.audience-card .tag { display: inline-block; margin-bottom: 18px; padding: 6px 10px; border-radius: 999px; color: var(--blue); background: var(--sky); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.cta { padding: 56px; border-radius: 30px; background:
  radial-gradient(circle at 85% 20%, rgba(19,183,200,.28), transparent 27%),
  linear-gradient(135deg,var(--navy),#07182e); color: #fff; }
.cta h2 { color: #fff; max-width: 720px; }
.cta p { max-width: 720px; color: #d2deeb; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item small { display: block; margin-bottom: 4px; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 750; font-size: .92rem; }
input,textarea,select {
  width: 100%; border: 1px solid #cedae7; border-radius: 12px; padding: 13px 14px; color: var(--ink); background: #fff; outline: none;
}
input:focus,textarea:focus,select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(28,114,232,.1); }
textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .86rem; }
.form-message { display: none; margin-top: 16px; padding: 13px 15px; border-radius: 11px; font-weight: 700; }
.form-message.success { display: block; color: #0f6844; background: #e6f7ef; }
.form-message.error { display: block; color: var(--danger); background: #fff0f1; }

.faq { max-width: 900px; margin: 38px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border: 0; color: var(--navy); background: transparent; text-align: left; font-weight: 800; }
.faq-button span:last-child { color: var(--blue); font-size: 1.3rem; }
.faq-answer { display: none; padding: 0 0 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }

.site-footer { color: #c7d3e2; background: #06162a; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1fr; gap: 38px; padding: 72px 0 50px; }
.footer-brand img { width: 185px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 20px; }
.footer-brand p { max-width: 410px; }
.footer-title { margin-bottom: 17px; color: #fff; font-size: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: #75e0e9; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.footer-bottom p { margin: 0; }
.registered { max-width: 300px; }

.reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 120px 20px auto; display: none; flex-direction: column; align-items: stretch;
    padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 15px; }
  .hero-grid,.grid-2,.feature-band,.contact-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 680px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.4fr 1fr; }
  .process-card::after { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .nav { min-height: 72px; }
  .nav-links { inset-top: 82px; top: 82px; }
  .hero { padding: 58px 0 78px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .page-hero { padding: 62px 0; }
  .grid-3,.grid-4,.stats-grid,.form-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .feature-band,.cta,.split-panel { padding: 30px 24px; }
  .service-detail { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
