+:root {
  --ink: #182033;
  --muted: #657086;
  --navy: #07111f;
  --navy-soft: #101d33;
  --blue: #2563eb;
  --blue-bright: #4f7cff;
  --violet: #7257e8;
  --cyan: #64d8e5;
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --line: rgba(12, 25, 48, 0.1);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow-sm: 0 10px 30px rgba(21, 35, 62, 0.07);
  --shadow-md: 0 24px 70px rgba(17, 32, 61, 0.11);
  --shadow-glow: 0 20px 50px rgba(75, 98, 224, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, "SF Pro Text", "SF Pro Display", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(101, 134, 255, 0.09), transparent 28rem),
    linear-gradient(180deg, #fcfdff 0%, #f7f9fc 58%, #f3f6fb 100%);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: white;
  background: rgba(72, 92, 212, 0.88);
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 4px;
}

.container {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(12, 25, 48, 0.07);
  background: rgba(252, 253, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

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

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  display: block;
  width: clamp(168px, 13vw, 190px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.logo::before,
.logo::after { display: none; }

.menu {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.65vw, 24px);
}

.menu a:not(.button) {
  position: relative;
  padding: 12px 0;
  color: #3e485c;
  font-size: 13.5px;
  font-weight: 640;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.menu a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--navy);
}

.menu a:hover::after,
.menu a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5.5px);
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  opacity: 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.012em;
  line-height: 1.1;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(120deg, #1d55d6 0%, #4a63dc 52%, #6955df 100%);
  box-shadow: 0 12px 26px rgba(48, 74, 187, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  box-shadow: 0 17px 35px rgba(48, 74, 187, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-secondary {
  border-color: rgba(15, 31, 57, 0.11);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(18, 34, 61, 0.07);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(46, 83, 203, 0.25);
  box-shadow: 0 13px 28px rgba(18, 34, 61, 0.11);
}

.page {
  position: relative;
  display: grid;
  min-height: calc(100vh - 84px);
  align-items: center;
  overflow: hidden;
  padding: clamp(74px, 9vw, 132px) 0 clamp(92px, 10vw, 146px);
}

.page::before,
.page::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.page::before {
  top: -12rem;
  right: -9rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(102, 86, 226, 0.13), transparent 67%);
  animation: ambient-float 13s ease-in-out infinite alternate;
}

.page::after {
  bottom: -17rem;
  left: -13rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(67, 192, 210, 0.1), transparent 67%);
  animation: ambient-float 16s ease-in-out 1s infinite alternate-reverse;
}

.page-stack {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0 clamp(100px, 10vw, 148px);
}

.page-stack::before {
  position: absolute;
  z-index: -1;
  top: -17rem;
  right: -17rem;
  width: 43rem;
  height: 43rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 101, 225, 0.09), transparent 68%);
  content: "";
  pointer-events: none;
}

.page-stack > .container > section:first-child {
  max-width: 920px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: #345fc7;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  content: "";
}

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

h1 {
  max-width: 920px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(52px, 5.6vw, 76px);
  font-weight: 730;
  letter-spacing: -0.062em;
  line-height: 0.99;
  text-wrap: balance;
}

.page-stack h1 {
  font-size: clamp(46px, 5vw, 68px);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 710;
  letter-spacing: -0.048em;
  line-height: 1.06;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 21px);
  letter-spacing: -0.016em;
  line-height: 1.65;
}

.actions,
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.pills {
  margin-top: 29px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(31, 69, 169, 0.12);
  border-radius: 999px;
  color: #43506a;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 620;
  backdrop-filter: blur(10px);
}

.check {
  display: inline-grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border-radius: 50%;
  color: #2854c4;
  background: rgba(48, 92, 207, 0.1);
  font-size: 11px;
  font-weight: 900;
}

.hero-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(243, 246, 255, 0.6)),
    radial-gradient(circle at 84% 6%, rgba(101, 83, 229, 0.26), transparent 38%);
  box-shadow: 0 38px 90px rgba(27, 42, 75, 0.17), inset 0 1px 0 white;
  backdrop-filter: blur(18px);
}

.hero-card::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: -20%;
  width: 115%;
  height: 84%;
  border: 1px solid rgba(87, 99, 204, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 35%, rgba(90, 75, 216, 0.19), transparent 27%),
    radial-gradient(circle at 45% 68%, rgba(69, 191, 210, 0.17), transparent 32%);
  content: "";
  transform: rotate(-15deg);
}

.hero-card::after {
  position: absolute;
  right: 12%;
  bottom: 7%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(51, 89, 200, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(83, 109, 209, 0.035), 0 0 0 54px rgba(83, 109, 209, 0.025);
  content: "";
  animation: pulse-ring 5s ease-in-out infinite;
}

.product-card {
  position: absolute;
  z-index: 3;
  top: 74px;
  left: 35px;
  width: min(84%, 356px);
  min-height: 218px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 25px;
  color: white;
  background:
    linear-gradient(128deg, rgba(8, 18, 35, 0.98), rgba(21, 34, 70, 0.96) 51%, rgba(63, 51, 139, 0.94));
  box-shadow: 0 31px 62px rgba(18, 27, 52, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(-7deg);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.hero-card:hover .product-card {
  transform: translateY(-7px) rotate(-5deg);
}

.product-card::after {
  position: absolute;
  top: -60%;
  left: -20%;
  width: 55%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  content: "";
  transform: rotate(24deg);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-brand {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.card-headline {
  max-width: 230px;
  margin: 44px 0 26px;
  font-size: 29px;
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.qr {
  display: grid;
  width: 58px;
  height: 58px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 6px;
  border-radius: 7px;
  background: white;
}

.qr i {
  border-radius: 1px;
  background: #0b1629;
}

.phone {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: -34px;
  width: 244px;
  height: 454px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 38px;
  background: #07101d;
  box-shadow: 0 36px 80px rgba(17, 31, 60, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  transform: rotate(5deg);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.hero-card:hover .phone {
  transform: translateY(-8px) rotate(3deg);
}

.screen {
  height: 100%;
  padding: 27px 16px 18px;
  overflow: hidden;
  border-radius: 29px;
  background:
    radial-gradient(circle at 50% -5%, rgba(109, 94, 231, 0.19), transparent 30%),
    #f8faff;
}

.phone-bar {
  width: 78px;
  height: 6px;
  margin: 0 auto 44px;
  border-radius: 99px;
  background: #0b1423;
}

.chip {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(45, 78, 178, 0.11);
  border-radius: 999px;
  color: #405277;
  background: white;
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 690;
}

.review {
  margin-top: 14px;
  padding: 19px;
  border: 1px solid rgba(16, 35, 68, 0.08);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 35px rgba(25, 42, 75, 0.08);
}

.review h3 {
  font-size: 16px;
}

.review .button {
  width: 100%;
  min-height: 39px;
  margin-top: 14px;
  padding: 10px;
  font-size: 11px;
}

.stars {
  color: #edb328;
  font-size: 19px;
  letter-spacing: 2px;
}

.line {
  display: block;
  height: 7px;
  margin: 10px 0;
  border-radius: 99px;
  background: #e8edf7;
}

.line.short {
  width: 72%;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.plan,
.faq-item,
.form-box,
.panel {
  border: 1px solid rgba(15, 32, 61, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 251, 255, 0.88));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card,
.plan {
  position: relative;
  padding: 32px;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}

.card::after,
.plan::after {
  position: absolute;
  top: -1px;
  right: 14%;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 99, 211, 0.34), transparent);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.card:hover,
.plan:hover {
  border-color: rgba(73, 91, 191, 0.19);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.card:hover::after,
.plan:hover::after {
  opacity: 1;
}

.card p,
.plan p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.icon {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(54, 83, 182, 0.13);
  border-radius: 16px;
  color: #2e56bd;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(233, 238, 255, 0.92));
  box-shadow: 0 10px 24px rgba(49, 73, 160, 0.12), inset 0 1px 0 white;
  font-size: 14px;
  font-weight: 800;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card:hover .icon {
  box-shadow: 0 14px 28px rgba(59, 78, 175, 0.17), 0 0 0 5px rgba(80, 100, 210, 0.045);
  transform: translateY(-2px) rotate(-2deg);
}

.icon-shield {
  border-radius: 17px 17px 21px 21px;
  clip-path: polygon(50% 0, 92% 16%, 85% 72%, 50% 100%, 15% 72%, 8% 16%);
  color: white;
  background: linear-gradient(145deg, #2c61d9, #6557da);
  font-size: 19px;
}

.security-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: clamp(34px, 5vw, 54px);
  border-color: rgba(69, 88, 189, 0.14);
  background:
    radial-gradient(circle at 96% 5%, rgba(102, 83, 220, 0.12), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  margin-top: 22px;
}

.security-card .icon {
  margin-bottom: 0;
}

.security-card h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.6vw, 44px);
}

.security-card p {
  max-width: 880px;
  font-size: 16px;
}

.security-card p + p {
  margin-top: 7px;
}

.list {
  display: grid;
  gap: 13px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #354056;
  font-size: 14px;
  font-weight: 610;
  line-height: 1.55;
}

.panel {
  margin-top: clamp(42px, 6vw, 74px);
  padding: clamp(34px, 5vw, 58px);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  margin: 0 0 clamp(54px, 7vw, 82px);
}

.plan {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px;
}

.plan.featured {
  border-color: rgba(89, 72, 203, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(105, 83, 220, 0.12), transparent 31%),
    linear-gradient(145deg, #fff, #f7f6ff);
  box-shadow: 0 27px 75px rgba(63, 53, 153, 0.15);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 21px;
  padding: 7px 11px;
  border: 1px solid rgba(91, 72, 201, 0.12);
  border-radius: 999px;
  color: #5d46c4;
  background: rgba(105, 80, 218, 0.08);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price {
  margin-top: 20px;
  color: var(--navy) !important;
  font-size: 15px !important;
  font-weight: 720;
}

.plan .button {
  width: 100%;
  margin-top: auto;
}

.compare {
  overflow: hidden;
  border: 1px solid rgba(15, 32, 61, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(15, 32, 61, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

thead th {
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
  background: #0c1729;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr {
  transition: background 180ms ease;
}

tbody tr:hover {
  background: rgba(240, 244, 255, 0.58);
}

.yes {
  color: #2855c2;
  font-weight: 750;
}

.faq-list {
  display: grid;
  max-width: 940px;
  gap: 14px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(61, 84, 184, 0.18);
  box-shadow: 0 18px 45px rgba(24, 42, 76, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 28px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 690;
  letter-spacing: -0.015em;
}

.faq-question span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 10px;
  color: #5263bb;
  background: rgba(77, 97, 194, 0.08);
  font-size: 21px;
  font-weight: 450;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-item.open .faq-question span:last-child {
  background: rgba(77, 97, 194, 0.13);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-item.open .faq-answer {
  max-height: 260px;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 27px;
  color: var(--muted);
}

.form-box {
  padding: clamp(30px, 4vw, 44px);
  background:
    radial-gradient(circle at 100% 0, rgba(96, 79, 216, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #2e394e;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(15, 32, 61, 0.12);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(55, 87, 206, 0.48);
  background: white;
  box-shadow: 0 0 0 4px rgba(54, 86, 204, 0.08);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.error {
  min-height: 17px;
  margin: 0;
  color: #b62949;
  font-size: 12px;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #c5445d;
}

.form-box > .button {
  margin-top: 10px;
}

.status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(40, 92, 200, 0.16);
  border-radius: 13px;
  color: #1f438f;
  background: rgba(49, 95, 200, 0.07);
  font-size: 14px;
  font-weight: 650;
}

.status.visible {
  display: block;
}

.legal-page {
  position: relative;
  padding: clamp(70px, 8vw, 112px) 0 clamp(92px, 10vw, 140px);
}

.legal-layout {
  display: grid;
  gap: clamp(38px, 5vw, 64px);
}

.legal-intro {
  max-width: 900px;
}

.legal-intro h1 {
  font-size: clamp(44px, 5vw, 68px);
}

.legal-updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-card {
  width: min(100%, 920px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.legal-card section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.legal-card p,
.legal-card li {
  color: #4d596f;
}

.legal-card ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-card a {
  color: #2457c5;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 0.92em;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #aeb9cc;
  background:
    radial-gradient(circle at 18% 0, rgba(62, 86, 194, 0.24), transparent 31rem),
    radial-gradient(circle at 92% 110%, rgba(80, 66, 165, 0.24), transparent 28rem),
    #07111f;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 137, 236, 0.55), transparent);
  content: "";
}

.footer-shell {
  display: grid;
  gap: 58px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(36px, 5vw, 72px);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  width: 218px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  margin: 0;
  color: #8f9db3;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 7px 0 20px;
  color: #f5f7fb;
  font-size: 12px;
  font-weight: 730;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column address {
  display: grid;
  gap: 11px;
  color: #9da9bd;
  font-size: 13.5px;
  font-style: normal;
}

.footer-column a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-contact-row {
  display: grid;
  gap: 2px;
}

.footer-contact-row small {
  color: #6f7f98;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #73829a;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-social span {
  color: #8896ab;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes ambient-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-25px, 30px, 0) scale(1.06); }
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.65; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 1080px) {
  .menu {
    gap: 14px;
  }

  .menu a:not(.button) {
    font-size: 12.5px;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 46px;
  }

  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .footer-main .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 1060px) {
  .nav {
    min-height: 78px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    width: 176px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .menu {
    position: fixed;
    top: 88px;
    right: 24px;
    left: 24px;
    display: none;
    max-height: calc(100vh - 112px);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(15, 32, 61, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 80px rgba(15, 29, 55, 0.22);
    backdrop-filter: blur(24px);
  }

  body.nav-open .menu {
    display: flex;
  }

  .menu a:not(.button) {
    padding: 12px 8px;
    font-size: 15px;
  }

  .menu a:not(.button)::after {
    display: none;
  }

  .menu .button {
    width: 100%;
    margin-top: 8px;
  }

  .page,
  .page-stack {
    min-height: auto;
  }

  .split,
  .grid.two,
  .grid.three,
  .plans {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 58px;
  }

  .hero-card {
    width: min(100%, 620px);
    min-height: 590px;
    margin-inline: auto;
  }

  .security-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .plan {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 32px);
    max-width: 1200px;
  }

  .page {
    padding: 62px 0 92px;
  }

  .page-stack {
    padding: 64px 0 96px;
  }

  .page-stack > .container > section:first-child {
    margin-bottom: 38px;
  }

  h1,
  .page-stack h1 {
    font-size: clamp(40px, 12.6vw, 54px);
    line-height: 1.01;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .actions {
    display: grid;
  }

  .actions .button {
    width: 100%;
  }

  .pills {
    gap: 8px;
  }

  .pill {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero-card {
    min-height: 520px;
    border-radius: 28px;
  }

  .product-card {
    top: 42px;
    right: 20px;
    left: 20px;
    width: auto;
    min-height: 190px;
    padding: 23px;
    transform: rotate(-3deg);
  }

  .card-headline {
    margin: 35px 0 21px;
    font-size: 25px;
  }

  .phone {
    right: 50%;
    bottom: -88px;
    width: 210px;
    height: 405px;
    transform: translateX(50%) rotate(2deg);
  }

  .hero-card:hover .phone {
    transform: translateX(50%) translateY(-5px) rotate(1deg);
  }

  .grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .plan {
    padding: 27px;
  }

  .security-card {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 30px 27px;
  }

  .compare {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 14px;
  }

  tbody tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-sm);
  }

  tbody th {
    padding: 18px;
    color: var(--navy);
    background: #f0f4fd;
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
  }

  tbody td::before {
    color: #6f7a8d;
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 460px) {
  .site-header .container {
    width: calc(100% - 24px);
  }

  .nav {
    min-height: 72px;
  }

  .logo {
    min-width: 0;
    height: auto;
  }

  .logo img {
    width: 158px;
  }

  .menu {
    top: 80px;
    right: 12px;
    left: 12px;
  }

  h1,
  .page-stack h1 {
    font-size: 40px;
  }

  .hero-card {
    min-height: 488px;
  }

  .product-card {
    min-height: 178px;
  }

  .card-headline {
    margin-top: 29px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-main .footer-column:last-child {
    grid-column: auto;
  }
}

@media (hover: none) {
  .card:hover,
  .plan:hover,
  .faq-item:hover,
  .button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
