:root {
  --bg: #f6f9fd;
  --surface: #ffffff;
  --ink: #162539;
  --muted: #5b6b7e;
  --line: #d8e3f0;
  --teal: #185fa5;
  --teal-dark: #378add;
  --shadow: 0 18px 55px rgba(24, 95, 165, 0.18);
  --muted:#5b6b7e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

small {
  font-weight: 500;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(246, 249, 253, 0.9);
  border-bottom: 1px solid rgba(216, 227, 240, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.top-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
}

.brand-logo {
  width: 30px;
  height: 22px;
  object-fit: contain;
}

.brand-wordmark {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.top-nav {
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: var(--ink);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
}

.header-action,
.button.primary {
  color: #ffffff;
  background: var(--teal);
}

.header-action:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 54px 5vw 34px;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-media {
  min-height: 360px;
}

.hero-media img {
  display: block;
  width: 100%;
  border: 1px solid rgba(216, 227, 240, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 5vw 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band div {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: var(--surface);
}

.trust-band span,
.price-card p,
.security p,
.site-footer {
  color: var(--muted);
}

.section {
  padding: 72px 5vw;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.billing-option {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.billing-option:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.billing-option.active {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(24, 95, 165, 0.22);
}

.billing-option:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.billing-save {
  padding: 0 10px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card,
.security-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
}

.price-card.featured {
  transform: translateY(-6px);
  border-color: rgba(24, 95, 165, 0.52);
  box-shadow: 0 24px 60px rgba(24, 95, 165, 0.22);
}

.recommended-pill {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.price-head > div:last-child {
  flex: 0 0 188px;
  min-width: 188px;
  text-align: right;
}

.price-head h3,
.security h3 {
  margin: 0;
}

.price-head strong {
  display: block;
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1.1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.price-sub {
  display: block;
  max-width: 188px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: normal;
  text-wrap: balance;
  transition: opacity 180ms ease, transform 180ms ease;
}

.pricing-grid.is-switching .price-head strong,
.pricing-grid.is-switching .price-sub {
  opacity: 0.6;
  transform: translateY(2px);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.price-cta {
  width: 100%;
  margin-top: 22px;
}

.security {
  background: #eef4fb;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.security-grid article {
  padding: 22px;
}

.cta-section {
  background: #eef4fb;
}

.cta-inner {
  max-width: 680px;
}

.site-footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px 5vw 42px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--ink);
}

.site-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pricing-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 5vw;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  .billing-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }

  .trust-band,
  .pricing-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    gap: 10px;
  }
}
