:root {
  --navy: #082b61;
  --blue: #0b57b7;
  --cyan: #079ed1;
  --ink: #13233a;
  --muted: #607089;
  --surface: #ffffff;
  --soft: #f3f8fd;
  --border: #dce6f1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
html { scroll-padding-top: 86px; }
body { margin: 0; min-width: 320px; background: #fff; line-height: 1.6; }
a { color: inherit; }
.site-header {
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(14, 43, 80, .06);
  backdrop-filter: blur(12px);
}
.site-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.site-brand img { width: 54px !important; height: 54px !important; max-width: 54px !important; object-fit: contain; display: block; flex: 0 0 54px; }
.site-brand span { display: flex; flex-direction: column; line-height: 1.2; }
.site-brand strong { color: var(--navy); font-size: 1.08rem; }
.site-brand small { color: var(--muted); font-size: .76rem; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { text-decoration: none; padding: 10px 13px; border-radius: 9px; font-weight: 650; color: #2c4667; }
.site-nav a:hover { background: var(--soft); color: var(--blue); }
.site-nav .nav-login { color: #fff; background: linear-gradient(120deg, var(--blue), var(--cyan)); padding-inline: 20px; }
.menu-toggle { display: none; border: 1px solid var(--border); background: #fff; color: var(--navy); border-radius: 9px; padding: 9px 13px; font: inherit; font-weight: 700; }
.hero-section {
  min-height: calc(100vh - 78px);
  padding: clamp(64px, 8vw, 110px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  background:
    radial-gradient(circle at 90% 14%, rgba(7,158,209,.16), transparent 30%),
    linear-gradient(135deg, #eef7ff 0%, #ffffff 58%, #f4fbff 100%);
}
.hero-copy { max-width: 760px; }
.eyebrow { display: inline-block; color: var(--cyan); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: 18px 0 22px; max-width: 850px; color: var(--navy); font-size: clamp(2.65rem, 5.5vw, 5.2rem); line-height: 1.02; letter-spacing: -.04em; }
.hero-copy > p { margin: 0; max-width: 700px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 12px 22px; border-radius: 10px; text-decoration: none; font-weight: 750; }
.primary-button { color: #fff; background: linear-gradient(120deg, var(--blue), var(--cyan)); box-shadow: 0 12px 28px rgba(11,87,183,.22); }
.secondary-button { color: var(--navy); background: #fff; border: 1px solid #cbdbea; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-points span { padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.8); border: 1px solid var(--border); color: #49617e; font-size: .85rem; font-weight: 650; }
.hero-panel { background: rgba(255,255,255,.92); border: 1px solid var(--border); border-radius: 28px; padding: clamp(28px, 4vw, 46px); box-shadow: 0 28px 70px rgba(20,55,95,.14); }
.hero-logo-wrap { width: 92px; height: 92px; display: grid; place-items: center; border-radius: 22px; background: #f2f8fe; border: 1px solid var(--border); }
.hero-logo-wrap img { width: 72px !important; height: 72px !important; max-width: 72px !important; object-fit: contain; }
.hero-panel h2 { margin: 22px 0 8px; color: var(--navy); font-size: 1.65rem; }
.hero-panel > p { color: var(--muted); margin-top: 0; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.summary-grid div { padding: 16px; border-radius: 14px; background: var(--soft); border: 1px solid #e2edf7; }
.summary-grid strong, .summary-grid span { display: block; }
.summary-grid strong { color: var(--navy); }
.summary-grid span { margin-top: 4px; color: var(--muted); font-size: .85rem; }
.page-section { padding: clamp(72px, 8vw, 112px) clamp(22px, 7vw, 110px); }
.section-soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2, .contact-section h2 { margin: 10px 0 12px; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.12; letter-spacing: -.025em; }
.section-heading p, .contact-section p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.feature-grid, .pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-grid article, .price-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px; box-shadow: 0 12px 34px rgba(25,62,103,.07); }
.feature-grid article > span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #e7f5fc; color: var(--blue); font-weight: 800; }
.feature-grid h3, .price-card h3 { color: var(--navy); margin: 18px 0 8px; font-size: 1.18rem; }
.feature-grid p, .price-card p { color: var(--muted); margin: 0; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--cyan); transform: translateY(-8px); }
.plan-label { align-self: flex-start; color: var(--blue); background: #eaf5ff; border-radius: 999px; padding: 5px 10px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-card ul { margin: 22px 0; padding-left: 20px; color: #425a76; }
.price-card a { margin-top: auto; display: inline-flex; justify-content: center; padding: 11px 16px; border: 1px solid #bfd4e8; border-radius: 9px; color: var(--blue); text-decoration: none; font-weight: 750; }
.contact-section { background: linear-gradient(125deg, var(--navy), #0b4f99); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-section .eyebrow { color: #73dbf3; }
.contact-section h2, .contact-section p { color: #fff; }
.contact-section p { opacity: .8; max-width: 720px; }
.contact-actions { margin-top: 0; flex: 0 0 auto; }
.secondary-button.light { color: #fff; background: transparent; border-color: rgba(255,255,255,.45); }
.site-footer { padding: 28px clamp(22px, 7vw, 110px); display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #061f45; color: #fff; }
.site-footer div { display: flex; flex-direction: column; }
.site-footer span, .site-footer p { color: #aebfd4; font-size: .88rem; margin: 0; }
@media (max-width: 1020px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { max-width: 760px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { min-height: 70px; padding: 9px 18px; }
  .site-brand small { display: none; }
  .site-brand img { width: 46px !important; height: 46px !important; max-width: 46px !important; flex-basis: 46px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 69px; left: 14px; right: 14px; padding: 12px; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 18px 45px rgba(8,43,97,.18); }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-section { padding-top: 64px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .summary-grid, .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-section, .site-footer { flex-direction: column; align-items: flex-start; }
}
