:root {
  --blue: #1488e0;
  --blue-deep: #0e6fbf;
  --blue-soft: #e8f3fd;
  --ink: #0c1c2a;
  --text: #33485a;
  --muted: #52647c;
  --soft: #f6f9fc;
  --line: #eaeff4;
  --white: #fff;
  --dark: #0b1a28;
  --dark-2: #11283d;
  --shadow: 0 24px 56px -38px rgba(12, 28, 42, 0.38);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", system-ui, sans-serif;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

.topbar {
  background: var(--blue);
  color: #fff;
  padding: 9px 18px;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.container,
.nav {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand > span:last-child span {
  color: #46596a;
  font-weight: 600;
}

.brand-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}

.brand-bars i {
  display: block;
  width: 5px;
  border: 1.6px solid var(--blue);
  border-radius: 1px;
}

.brand-bars i:nth-child(1) { height: 11px; }
.brand-bars i:nth-child(2) { height: 16px; background: var(--blue); }
.brand-bars i:nth-child(3) { height: 21px; }
.brand-bars i:nth-child(4) { height: 26px; background: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 13px 21px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px -14px var(--blue);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px var(--blue);
}

.button.secondary {
  border: 1px solid #dce5ed;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 540px at 78% -8%, var(--blue-soft), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #fcfdfe, #fff);
}

.hero-inner {
  min-height: 620px;
  padding: 82px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  margin-top: 22px;
  color: #46596a;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #52647c;
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
}

.photo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: #f3f7fb;
  box-shadow: 0 42px 90px -52px rgba(12, 28, 42, 0.58);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(12, 28, 42, 0.12)),
    radial-gradient(440px 240px at 90% 10%, rgba(20, 136, 224, 0.18), transparent 62%);
  z-index: 1;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 20px 46px -30px rgba(12, 28, 42, 0.55);
}

.floating-badge span {
  color: #75889a;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.badge-top {
  top: 22px;
  right: 22px;
}

.badge-bottom {
  left: 22px;
  bottom: 22px;
  background: #0b1a28;
  color: #fff;
}

.badge-bottom span {
  color: #9db2c6;
}

.hero-panel,
.toc,
.proof-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 18px;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  color: var(--muted);
  line-height: 1.55;
}

.quick-links {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.quick-links-inner {
  min-height: 66px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  color: #52647c;
  font-size: 14px;
  font-weight: 700;
}

.quick-links-inner span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.quick-links-inner a {
  transition: color 0.18s ease;
}

.quick-links-inner a:hover {
  color: var(--blue);
}

.main-grid {
  padding: 82px 0 96px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 94px;
  padding: 20px;
  box-shadow: none;
  min-width: 0;
}

.toc strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Sora", system-ui, sans-serif;
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.toc a:hover {
  color: var(--blue);
}

.content {
  display: grid;
  gap: 36px;
  min-width: 0;
}

.content-card {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.content-card:last-child {
  border-bottom: 0;
}

.content-card h2 {
  max-width: 850px;
  margin-top: 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

.content-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.content-card p {
  max-width: 850px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.content-card li {
  max-width: 850px;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.62;
}

.answer-box {
  max-width: 900px;
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  background: var(--blue-soft);
  color: #33485a;
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.proof-card {
  padding: 22px;
  box-shadow: none;
}

.proof-card strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 18px;
}

.proof-card p {
  margin-top: 8px;
}

.comparison-table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table tr:first-child th,
.comparison-table tr:first-child td {
  border-top: 0;
}

.comparison-table th {
  color: #75889a;
  background: #f9fbfd;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 22px;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 800;
}

.faq details p {
  margin-top: 12px;
}

.cta-section {
  margin-top: 10px;
  padding: 44px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(620px 320px at 74% -20%, rgba(20, 136, 224, 0.33), transparent 62%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}

.cta-section p {
  max-width: 760px;
  margin-top: 13px;
  color: #9db2c6;
  line-height: 1.65;
}

.cta-section .hero-actions {
  margin-top: 26px;
}

.site-footer {
  background: #081320;
  color: #9db2c6;
}

.footer-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font: 800 14px "Sora", system-ui, sans-serif;
}

.site-footer a {
  display: block;
  margin-top: 9px;
  color: #9db2c6;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  max-width: 330px;
  color: #9db2c6;
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    max-width: 640px;
  }
}

@media (max-width: 980px) {
  .main-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .nav,
  .footer-inner {
    width: min(100% - 36px, 1180px);
  }

  .topbar {
    font-size: 12px;
  }

  .nav {
    min-height: 68px;
  }

  .nav-cta {
    padding: 11px 16px;
  }

  .hero-inner {
    padding: 56px 0 62px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: 0;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .card-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .photo-card {
    min-height: 310px;
    border-radius: 20px;
  }

  .floating-badge {
    font-size: 15px;
  }

  .badge-top {
    top: 14px;
    right: 14px;
  }

  .badge-bottom {
    left: 14px;
    bottom: 14px;
  }

  .quick-links-inner {
    align-items: flex-start;
    padding: 18px 0;
    display: grid;
    gap: 10px;
  }

  .main-grid {
    padding: 54px 0 70px;
  }

  .content-card h2 {
    font-size: 30px;
  }

  .cta-section {
    padding: 30px;
  }
}
