:root {
  --navy: #0b1f3a;
  --blue: #155eef;
  --blue-dark: #0d47c9;
  --sky: #eaf2ff;
  --gold: #f5b82e;
  --ink: #172033;
  --muted: #5d687b;
  --line: #dde4ee;
  --surface: #fff;
  --soft: #f6f8fc;
  --success: #087a55;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(17, 39, 78, .12);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 2px; background: currentColor; content: ""; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.section-heading { display: grid; gap: 18px; max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-self: center; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: #cbd7e8; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px; color: #fff; background: var(--navy); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(221,228,238,.8); background: rgba(255,255,255,.92); backdrop-filter: blur(16px); }
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 150px; height: auto; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer; place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 21px; height: 2px; background: var(--navy); transition: .25s ease; content: ""; }
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(1px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-1px) rotate(-45deg); }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-link, .dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 11px 10px; border: 0; color: #39445a; background: transparent; font-size: .91rem; font-weight: 700; cursor: pointer; }
.nav-link:hover, .nav-link[aria-current="page"], .dropdown-toggle:hover { color: var(--blue); }
.nav-cta { margin-left: 6px; padding: 11px 18px; color: #fff; background: var(--blue); border-radius: 999px; }
.nav-cta:hover { color: #fff; background: var(--blue-dark); }
.dropdown { position: relative; }
.dropdown-toggle::after { width: 7px; height: 7px; border-right: 2px solid; border-bottom: 2px solid; transform: translateY(-2px) rotate(45deg); content: ""; }
.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 235px; margin: 0; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); list-style: none; opacity: 0; visibility: hidden; transform: translateY(-7px); transition: .2s ease; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: block; padding: 10px 12px; color: #465168; border-radius: 9px; font-size: .92rem; font-weight: 650; }
.dropdown-menu a:hover { color: var(--blue); background: var(--sky); }

.hero { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 130px) 0; background: linear-gradient(145deg, #f7faff 0%, #edf4ff 60%, #fff7e2 100%); }
.hero::before { position: absolute; inset: auto -8% -45% auto; width: 520px; aspect-ratio: 1; border: 1px solid rgba(21,94,239,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(21,94,239,.035), 0 0 0 140px rgba(21,94,239,.025); content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(44px, 7vw, 90px); }
.hero-copy { display: grid; gap: 24px; }
.hero-copy h1 span { color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 4px 0 0; padding: 0; color: #465168; list-style: none; font-size: .92rem; font-weight: 700; }
.trust-list li::before { margin-right: 7px; color: var(--success); content: "✓"; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 32px 32px 90px 32px; box-shadow: var(--shadow); }
.floating-card { position: absolute; left: -28px; bottom: 28px; max-width: 220px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 14px 35px rgba(17,39,78,.17); font-size: .88rem; font-weight: 750; }
.floating-card strong { display: block; color: var(--blue); font-size: 1.25rem; }
.page-hero { padding: clamp(64px, 9vw, 105px) 0; background: linear-gradient(135deg, #f7faff, #edf4ff); text-align: center; }
.page-hero .container { display: grid; justify-items: center; gap: 20px; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 5vw, 4.4rem); }

.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 11px 25px rgba(21,94,239,.24); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { color: var(--navy); border-color: var(--line); background: #fff; }
.btn-secondary:hover { border-color: #b7c5d9; box-shadow: 0 8px 22px rgba(17,39,78,.08); }
.btn-light { color: var(--navy); background: #fff; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 35px rgba(17,39,78,.055); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }
.card-link { display: inline-flex; margin-top: 20px; color: var(--blue); font-weight: 800; }
.icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 22px; color: var(--blue); background: var(--sky); border-radius: 14px; font-size: 1.3rem; font-weight: 900; }
.number { color: rgba(21,94,239,.18); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.feature-list { display: grid; gap: 13px; margin: 22px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 27px; color: #465168; }
.feature-list li::before { position: absolute; left: 0; color: var(--success); font-weight: 900; content: "✓"; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.split-copy { display: grid; gap: 20px; }
.subject-card { padding: 28px; border-left: 4px solid var(--blue); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { padding: 7px 11px; color: #445169; background: var(--soft); border-radius: 999px; font-size: .82rem; font-weight: 700; }
.price-card { display: flex; flex-direction: column; padding: 34px; }
.price-card.featured { border: 2px solid var(--blue); transform: translateY(-8px); }
.price-card.featured:hover { transform: translateY(-12px); }
.badge { position: absolute; top: 16px; right: 16px; padding: 6px 10px; color: #fff; background: var(--blue); border-radius: 99px; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price { margin: 16px 0 5px; color: var(--navy); font-size: 2.35rem; font-weight: 900; line-height: 1; }
.price small { color: var(--muted); font-size: .9rem; font-weight: 600; }
.price-card .feature-list { flex: 1; margin-bottom: 26px; }
.review-card blockquote { margin: 0; color: #39455b; font-size: 1.03rem; }
.stars { margin-bottom: 16px; color: #d89400; letter-spacing: .12em; }
.review-author { margin-top: 20px; color: var(--navy); font-weight: 850; }
.review-author span { display: block; color: var(--muted); font-size: .85rem; font-weight: 500; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(36px, 6vw, 68px); color: #fff; background: linear-gradient(120deg, var(--blue), #0b3da5); border-radius: 30px; overflow: hidden; }
.cta-panel h2 { max-width: 670px; color: #fff; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 40px; align-items: start; }
.contact-details { display: grid; gap: 16px; }
.contact-item { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.contact-item span { display: block; color: var(--muted); font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.contact-item a { color: var(--navy); font-weight: 850; }
.form-card { padding: clamp(26px, 5vw, 46px); border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label, legend { color: var(--navy); font-size: .9rem; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); border: 1px solid #cdd6e3; border-radius: 11px; background: #fff; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: 3px solid rgba(21,94,239,.13); }
fieldset { grid-column: 1/-1; margin: 0; padding: 0; border: 0; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.check { display: flex; align-items: center; gap: 9px; font-weight: 600; }
.check input { width: 18px; min-height: 18px; }
.form-note { color: var(--muted); font-size: .85rem; }
.form-status { display: none; padding: 14px; color: #075a40; background: #e5f7ef; border-radius: 10px; }
.form-status.show { display: block; }

.site-footer { padding: 70px 0 26px; color: #c5d0df; background: #07162c; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr .8fr; gap: 42px; padding-bottom: 45px; }
.footer-brand img { width: 140px; height: auto; margin: 0; object-fit: contain; }
.footer-brand p { max-width: 340px; margin-top: 12px; }
.site-footer h2 { margin-bottom: 18px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a:hover { color: #fff; }
.socials { display: flex; gap: 9px; }
.socials a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid #344158; border-radius: 50%; font-size: .75rem; font-weight: 850; }
.socials a:hover { color: var(--navy); background: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid #26344a; font-size: .82rem; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-toggle { display: grid; }
  .nav-list { position: fixed; inset: 83px 0 auto; max-height: calc(100vh - 83px); padding: 20px; background: #fff; box-shadow: 0 25px 50px rgba(17,39,78,.15); flex-direction: column; align-items: stretch; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .nav-list.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link, .dropdown-toggle { width: 100%; justify-content: space-between; padding: 13px 12px; }
  .nav-cta { margin: 8px 0 0; justify-content: center; }
  .dropdown-menu { position: static; display: none; min-width: 0; margin: 3px 0 8px; padding: 5px 10px; border: 0; border-left: 2px solid var(--line); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 74px; }
  .brand img { width: 135px; }
  .nav-list { inset-block-start: 75px; max-height: calc(100vh - 75px); }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; justify-items: center; }
  .trust-list { justify-content: center; }
  .hero-media { max-width: 560px; margin-inline: auto; }
  .floating-card { left: 12px; bottom: 12px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full, fieldset { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}
@media (max-width: 500px) {
  .section { padding: 64px 0; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 25px; }
  .checks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { width: 110px; margin-inline: auto; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
