:root {
  --navy: #0e2746;
  --blue: #1767d1;
  --cyan: #20c7d9;
  --mint: #eafcff;
  --ink: #142033;
  --muted: #66758a;
  --line: #dce7f2;
  --bg: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(14, 39, 70, .13);
  --radius: 26px;
}
* { 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(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,231,242,.8);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { width: auto; height: 48px; display: block; }
.nav-menu { display: flex; align-items: center; gap: 24px; font-weight: 700; font-size: 14px; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; color: var(--navy); }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 800; transition: .2s ease; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 16px 36px rgba(23,103,209,.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(23,103,209,.32); }
.btn-outline { border: 1px solid var(--line); color: var(--blue); }
.btn-login { color: var(--navy); background: #fff; border: 1.5px solid var(--navy); }
.btn-login:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--blue); border: 1px solid var(--line); }
.hero { padding: 86px 0 70px; background: radial-gradient(circle at 15% 20%, #dbfbff 0, transparent 26%), linear-gradient(135deg, #f9fcff, #edf8ff); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 56px; }
.eyebrow { margin: 0 0 12px; color: var(--blue); text-transform: uppercase; letter-spacing: .15em; font-weight: 900; font-size: 12px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 72px); line-height: .97; letter-spacing: -.055em; color: var(--navy); margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; color: var(--navy); margin-bottom: 16px; }
h3 { color: var(--navy); font-size: 22px; margin-bottom: 8px; }
.hero-text { font-size: 19px; color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--navy); font-weight: 800; font-size: 13px; }
.trust-row span { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid var(--line); }
.hero-card { position: relative; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); min-height: 540px; }
.hero-card img { height: 540px; object-fit: cover; }
.floating-panel { position: absolute; left: 26px; right: 26px; bottom: 26px; display: grid; gap: 4px; padding: 20px; border-radius: 22px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 18px 44px rgba(0,0,0,.13); }
.floating-panel strong { color: var(--blue); font-size: 24px; }
.section { padding: 86px 0; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-heading p:last-child { color: var(--muted); font-size: 18px; }
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(12, 1fr);
  gap: 18px;
}
.price-card.featured { grid-column: 1; grid-row: 1 / 3; background: var(--navy); color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.pricing-grid > .price-card:nth-child(2) { grid-column: 2 / 5; grid-row: 1; }
.pricing-grid > .price-card:nth-child(3) { grid-column: 5 / 8; grid-row: 1; }
.pricing-grid > .price-card:nth-child(4) { grid-column: 8 / 11; grid-row: 1; }
.pricing-grid > .price-card:nth-child(5) { grid-column: 11 / 14; grid-row: 1; }
.pricing-grid > .price-card:nth-child(6) { grid-column: 2 / 6; grid-row: 2; }
.pricing-grid > .price-card:nth-child(7) { grid-column: 6 / 10; grid-row: 2; }
.pricing-grid > .price-card:nth-child(8) { grid-column: 10 / 14; grid-row: 2; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 30px rgba(14,39,70,.06); }
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.badge { width: fit-content; background: rgba(32,199,217,.18); color: #87f3ff; border: 1px solid rgba(255,255,255,.25); padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.price { font-size: 36px; line-height: 1; font-weight: 950; color: var(--blue); margin-bottom: 12px; }
.price-card p:not(.price) { color: var(--muted); }
.price-card.featured p:not(.price) { color: rgba(255,255,255,.78); }
.benefits { background: #fff; }
.benefits-grid, .checklist-grid, .cta-box { display: grid; grid-template-columns: .9fr 1fr; gap: 58px; align-items: center; }
.image-stack { position: relative; min-height: 520px; }
.image-stack img { position: absolute; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.image-stack img:first-child { top: 0; left: 0; width: 78%; height: 380px; }
.image-stack img:last-child { bottom: 0; right: 0; width: 66%; height: 300px; border: 8px solid #fff; }
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fbfdff; }
.feature-list span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--blue); font-weight: 950; }
.feature-list p { margin: 0; color: var(--muted); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.solution-grid article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 34px rgba(14,39,70,.07); }
.solution-grid img { height: 230px; object-fit: cover; }
.solution-grid h3, .solution-grid p { padding: 0 24px; }
.solution-grid h3 { margin-top: 22px; }
.solution-grid p { padding-bottom: 24px; color: var(--muted); }
.checklist { background: var(--navy); color: #fff; }
.checklist h2 { color: #fff; }
.checklist p { color: rgba(255,255,255,.72); }
.checklist ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.checklist li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 16px; }
.cta { padding: 86px 0; background: linear-gradient(135deg, #f9fcff, #e7fbff); }
.cta-box { background: #fff; border-radius: 34px; padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-card { background: var(--navy); border-radius: 28px; padding: 28px; display: grid; gap: 16px; }
.contact-card a:not(.btn) { color: #fff; font-size: 20px; font-weight: 900; }
.footer { padding: 28px 0; background: #07182b; color: rgba(255,255,255,.72); }
.footer-grid { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer p { margin: 0; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; left: 20px; right: 20px; top: 76px; display: none; flex-direction: column; align-items: stretch; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .hero-grid, .benefits-grid, .checklist-grid, .cta-box { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid > .price-card { grid-column: auto; grid-row: auto; }
  .solution-grid { grid-template-columns: 1fr; }
  .hero-card, .hero-card img { min-height: 380px; height: 420px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-logo { height: 38px; }
  .hero { padding-top: 54px; }
  .pricing-grid, .checklist ul { grid-template-columns: 1fr; }
  .price-card.featured { grid-row: auto; }
  .image-stack { min-height: 420px; }
  .image-stack img:first-child { height: 300px; width: 88%; }
  .image-stack img:last-child { height: 220px; width: 76%; }
  .cta-box { padding: 28px; }
}
