/* ---------- Tokens ---------- */
:root {
  --surface-page: #080f1c;
  --text-primary: #f8f9fb;
  --text-secondary: #babcc3;
  --divider: #1a2035;
  --button-secondary-bg: #252c40;
  --button-primary-bg: #6592fd;
  --accent-violet: #9c42f5;
  --accent-blue: #4579f5;
  --accent-mint: #00ffaa;
  --font-heading: 'Onest', sans-serif;
  --font-body: 'Onest', sans-serif;
}

* { box-sizing: border-box; }
p { margin: 0; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-anchor: none;
}

img, video { max-width: 100%; display: block; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 8px 64px;
  background: rgba(28, 27, 27, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #1c1b1b;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-icon {
  width: 37px;
  height: 37px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 19px;
  color: var(--text-primary);
  line-height: normal;
}

.nav__logo-subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: normal;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s cubic-bezier(0,0,0.2,1),
              box-shadow 0.2s cubic-bezier(0,0,0.2,1),
              transform 0.2s cubic-bezier(0,0,0.2,1);
}

.btn--secondary {
  background: var(--button-secondary-bg);
  color: var(--text-primary);
}

.btn--secondary:hover { background: #2f3750; }
.btn--secondary:active { background: #1c2233; transform: scale(0.98); }

.btn--primary {
  position: relative;
  background: var(--button-primary-bg);
  color: var(--text-primary);
  box-shadow:
    inset 0 -4px 16px 0 var(--accent-violet),
    inset 0 4px 16px 0 var(--accent-mint),
    0 4px 20px 0 rgba(156, 66, 245, 0.55);
}

.btn--primary:hover {
  background: #3365dd;
  box-shadow:
    inset 0 -4px 16px 0 var(--accent-violet),
    inset 0 4px 16px 0 var(--accent-mint);
}

.btn--primary:active {
  background: #164fd8;
  transform: scale(0.98);
  box-shadow:
    inset 0 -2px 16px 0 var(--accent-violet),
    inset 0 2px 16px 0 var(--accent-mint);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 64px;
  overflow: hidden;
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* dark fade top & bottom so the video blends into --surface-page at the edges */
.hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--surface-page) 0%,
    transparent 20%,
    transparent 80%,
    var(--surface-page) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  width: 100%;
}

.hero__title {
  margin: 0;
  max-width: 582px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-primary);
}

.hero__title-gradient {
  background: linear-gradient(90deg, var(--accent-violet) 0%, var(--accent-blue) 23.077%, var(--accent-mint) 49.519%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--text-secondary);
}

/* ---------- Stats bar ---------- */
.hero__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.hero__stats-label {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-primary);
  text-align: center;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  text-align: center;
}

.stat__value {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-primary);
}

.stat__label {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-secondary);
}

.stats-bar__divider {
  width: 1px;
  align-self: stretch;
  background: var(--divider);
}

/* ---------- Hero buttons ---------- */
.hero__buttons {
  display: flex;
  gap: 16px;
}

/* ---------- Features ---------- */
.features {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 64px;
  overflow: hidden;
}

.features__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      var(--surface-page) 0%,
      rgba(8, 15, 28, 0.6) 20%,
      rgba(8, 15, 28, 0.6) 80%,
      var(--surface-page) 100%
    ),
    url("assets/features-bg.png") center / cover no-repeat;
  z-index: 0;
}

.features__title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1280px;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-primary);
}

.features__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  max-width: 1280px;
  width: 100%;
}

.feature-card {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 40px;
  border: none;
  background: var(--surface-page);
  box-shadow: 0 4px 24px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.feature-card:hover {
  transform: scale(1.02);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #c7c7c7 0%, #171616 30%, #171616 70%, #c7c7c7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card__glow {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 50%;
  height: 241px;
  transform: translateY(-50%);
  background: url("assets/card-glow.png") center / 100% 143% no-repeat;
  pointer-events: none;
}

.feature-card__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.feature-card__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 4px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(to right, rgba(85, 88, 92, 0.6), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.feature-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #c7c7c7 0%, #171616 30%, #171616 70%, #c7c7c7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 44px;
  border-radius: 24px;
  border: none;
  background: linear-gradient(to bottom, rgba(28, 31, 36, 0.6), rgba(9, 14, 25, 0.6));
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-primary);
  white-space: nowrap;
}

.feature-card__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #c7c7c7 0%, #171616 30%, #171616 70%, #c7c7c7 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.feature-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-primary);
}

.feature-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ---------- Security ---------- */
.security {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 64px;
  scroll-margin-top: 72px;
}

.security__title {
  margin: 0;
  max-width: 1280px;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-primary);
}

.security__grid {
  display: flex;
  gap: 16px;
  max-width: 1280px;
  width: 100%;
}

.security__grid .feature-card__row {
  justify-content: flex-start;
}

/* taller cards than the features grid: stretch the glow across the whole card
   so its fade ends at the bottom edge instead of cutting off mid-card */
.security__grid .feature-card__glow {
  top: 0;
  bottom: 0;
  height: auto;
  transform: none;
  background-position: center top;
  background-size: 100% 100%;
}

.security-card__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.security__footnote {
  max-width: 1280px;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.security__footnote a {
  color: var(--text-primary);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.security__footnote a:hover {
  background-size: 100% 1px;
}

/* ---------- Pricing ---------- */
.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 64px;
  scroll-margin-top: 72px;
}

.pricing__title {
  margin: 0;
  max-width: 1280px;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-primary);
}

.pricing__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1280px;
  width: 100%;
}

.price-card {
  flex: 1 0 0;
  min-width: 0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(to bottom, #1c1f24, #090e19) padding-box,
    linear-gradient(135deg, rgba(199, 199, 199, 0.5), rgba(199, 199, 199, 0.05)) border-box;
}

.price-card:hover {
  transform: scale(1.02);
}

.price-card--featured {
  background:
    linear-gradient(to bottom, #1c1f24, #090e19) padding-box,
    linear-gradient(135deg, var(--accent-violet), var(--accent-blue)) border-box;
}

.price-card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.price-card__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-card__name {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-primary);
}

.price-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.price-card__amount-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.price-card__amount {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-primary);
}

.price-card__amount--text {
  margin: 0;
  height: 48px;
  display: flex;
  align-items: center;
}

.price-card__unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.price-card__divider {
  height: 1px;
  width: 100%;
  background: #c7c7c7;
  opacity: 0.3;
}

.price-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card__feature-label {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.price-card__feature-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-primary);
  white-space: nowrap;
}

.price-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0,0,0.2,1),
              box-shadow 0.2s cubic-bezier(0,0,0.2,1),
              transform 0.2s cubic-bezier(0,0,0.2,1);
}

.price-card__cta--secondary {
  background: var(--button-secondary-bg);
  color: var(--text-primary);
}

.price-card__cta--secondary:hover { background: #2f3750; }
.price-card__cta--secondary:active { background: #1c2233; transform: scale(0.98); }

.price-card__cta--primary {
  position: relative;
  background: var(--button-primary-bg);
  color: var(--text-primary);
  box-shadow:
    inset 0 -4px 16px 0 var(--accent-violet),
    inset 0 4px 16px 0 var(--accent-mint);
}

.price-card__cta--primary:hover { background: #3365dd; }
.price-card__cta--primary:active { background: #164fd8; transform: scale(0.98); }

.pricing__footnote {
  margin: 0;
  max-width: 1280px;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.pricing__custom {
  margin: -12px 0 0;
  max-width: 1280px;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  opacity: 0.75;
}

.pricing__custom a {
  color: var(--text-secondary);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease, color 0.2s ease;
}

.pricing__custom a:hover {
  color: var(--text-primary);
  background-size: 100% 1px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 22%, rgba(20, 40, 75, 0.85) 75%, rgba(15, 38, 58, 0.75) 100%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer__row {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  padding: 24px 64px;
  border-top: 1px solid #282c34;
}

.footer__brand {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-primary);
  white-space: nowrap;
}

.footer__contact {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.footer__legal {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col-label {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.footer__contact-email a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.footer__contact-email a:hover { background-size: 100% 1px; }

.footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__legal a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
  width: fit-content;
}

.footer__legal a:hover { background-size: 100% 1px; }

.footer__bottom {
  padding: 0 64px;
}

.footer__bottom p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ---------- Legal pages ---------- */
.nav__logo {
  text-decoration: none;
  color: inherit;
}

.legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 64px;
}

.legal__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
  width: 100%;
}

.legal__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}

.legal__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-primary);
}

.legal__meta {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
}

.legal__updated {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.legal__intro {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
}

.legal__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal__section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--text-primary);
}

.legal__section p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
}

.legal__section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal__section ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__section li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
}

.legal__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal__contact p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
}

.legal__contact a {
  color: var(--text-primary);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
}

.legal__contact a:hover {
  background-size: 100% 1px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1279px) {
  .nav {
    padding: 8px 24px;
  }

  .hero {
    padding: 120px 24px;
  }

  .features {
    padding: 80px 24px;
  }

  .features__title {
    text-align: left;
  }

  .features__grid {
    flex-direction: column;
  }

  .feature-card {
    flex: none;
    width: 100%;
  }

  .security {
    padding: 80px 24px;
  }

  .security__title {
    text-align: left;
  }

  .security__grid {
    flex-direction: column;
  }

  .security__footnote {
    text-align: left;
  }

  .pricing {
    padding: 64px 24px;
  }

  .pricing__title {
    text-align: left;
  }

  .price-card {
    flex: 0 0 calc(50% - 6px);
  }

  .pricing__footnote {
    text-align: left;
  }

  .pricing__custom {
    text-align: left;
  }

  .footer__row {
    gap: 32px;
    padding: 24px 40px;
  }

  .footer__bottom {
    padding: 0 40px;
  }

  .legal {
    padding: 64px 24px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  .nav {
    padding: 8px 16px;
  }

  .hero {
    padding: 96px 16px;
    text-align: left;
  }

  .hero__content {
    align-items: flex-start;
    gap: 24px;
  }

  .hero__title {
    max-width: none;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
  }

  .hero__subtitle {
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }

  .hero__stats {
    align-items: flex-start;
  }

  .hero__stats-label {
    text-align: left;
  }

  .stats-bar {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .hero__buttons .btn--primary {
    order: -1;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .features {
    gap: 24px;
    padding: 40px 16px;
  }

  .features__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
  }

  .feature-card {
    padding: 16px 24px;
    border-radius: 24px;
  }

  .feature-card__icon {
    width: 56px;
    height: 56px;
  }

  .feature-card__icon img {
    width: 32px;
    height: 32px;
  }

  .feature-card__badge {
    width: auto;
    height: auto;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .feature-card__title {
    font-size: 20px;
    line-height: 28px;
  }

  .feature-card__desc {
    font-size: 14px;
    line-height: 20px;
  }

  .security {
    gap: 24px;
    padding: 40px 16px;
  }

  .security__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
  }

  .security-card__title {
    font-size: 16px;
    line-height: 24px;
  }

  .security__footnote {
    text-align: left;
  }

  .pricing {
    gap: 24px;
    padding: 40px 16px;
  }

  .pricing__title {
    text-align: left;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
  }

  .price-card {
    flex: none;
    width: 100%;
    height: auto;
  }

  .pricing__footnote {
    text-align: left;
  }

  .pricing__custom {
    text-align: left;
  }

  .footer__row {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
  }

  .footer__contact {
    justify-content: flex-start;
    order: 3;
  }

  .footer__legal {
    order: 2;
  }

  .footer__bottom {
    padding: 8px 16px 0;
  }

  .legal {
    padding: 40px 16px;
  }

  .legal__container {
    gap: 32px;
  }

  .legal__header {
    padding-bottom: 24px;
  }

  .legal__title {
    font-size: 28px;
    line-height: 36px;
  }

  .legal__section h2 {
    font-size: 19px;
    line-height: 26px;
  }

  .legal__section p,
  .legal__section li,
  .legal__intro,
  .legal__contact p {
    font-size: 15px;
    line-height: 24px;
  }
}
