:root {
  --navy-950: #050f1f;
  --navy-900: #081a33;
  --navy-800: #0a2540;
  --navy-700: #12305a;
  --navy-600: #1b4070;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --green-500: #10b981;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --border: #e5eaf3;
  --border-dark: #d3dbeb;
  --text: #17233d;
  --text-soft: #38486b;
  --muted: #64748f;
  --faint: #94a3b8;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 10px 28px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --grad-accent: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  --grad-navy: linear-gradient(135deg, #0a2540 0%, #12305a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-500);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  color: var(--text-soft);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tight {
  padding: 56px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head-left {
  text-align: left;
  margin: 0 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  display: inline-block;
}

.section-head .eyebrow::before {
  margin-inline: auto;
}

.h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 16px;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto;
}

.section-head-left .lede {
  margin-inline: 0;
}

.text-center {
  text-align: center;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn .ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16.5px;
  border-radius: 14px;
}

.btn-primary {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25);
}

.btn-primary:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.32);
}

.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.32);
}

.btn-accent:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.42);
  filter: brightness(1.05);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-navy {
  border: 2px solid var(--border-dark);
  color: var(--navy-800);
}

.btn-outline-navy:hover {
  border-color: var(--navy-800);
  background: rgba(10, 37, 64, 0.04);
  color: var(--navy-800);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy-800);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn-light:hover {
  color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.btn-block {
  width: 100%;
}

.ic {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

.ic svg {
  width: 100%;
  height: 100%;
}

.ic-fill svg {
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(10, 37, 64, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--navy-800);
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-navy);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  position: relative;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.3);
}

.brand-logo::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad-accent);
  border: 2.5px solid #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-soft);
}

.nav-link:hover {
  color: var(--teal-600);
  background: var(--teal-50);
}

.nav-link.active {
  color: var(--teal-600);
  font-weight: 600;
}

.nav-cta {
  margin-left: 10px;
  padding: 11px 22px;
  font-size: 14.5px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy-800);
  place-items: center;
}

.nav-toggle .ic {
  width: 22px;
  height: 22px;
}

.nav-toggle .ic-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-close {
  display: inline-block;
}

.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(20, 184, 166, 0.28), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(16, 185, 129, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #0e2f58 100%);
  color: #fff;
  padding: 96px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 85%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 72px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-400);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-eyebrow .ic {
  width: 15px;
  height: 15px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--teal-400), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  color: rgba(226, 236, 255, 0.85);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(226, 236, 255, 0.7);
  font-size: 13.5px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note .ic {
  width: 15px;
  height: 15px;
  color: var(--teal-400);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 236, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.trust-item .ic {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 8px;
  color: var(--teal-400);
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.vc-card {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--text);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 40px 80px rgba(3, 12, 28, 0.5);
}

.vc-inner {
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 26px 26px 22px;
}

.vc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.vc-head h3 {
  font-size: 16px;
  color: var(--navy-800);
}

.vc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-600);
  font-size: 12.5px;
  font-weight: 700;
}

.vc-pill .ic {
  width: 13px;
  height: 13px;
}

.vc-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.vc-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--bg);
}

.vc-row span:first-child {
  color: var(--muted);
}

.vc-row span:last-child {
  font-weight: 600;
  color: var(--text);
}

.vc-refund {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: var(--grad-navy);
  margin-bottom: 18px;
}

.vc-refund-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.vc-amount {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.vc-growth {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.18);
  color: var(--teal-400);
  font-size: 13px;
  font-weight: 700;
}

.vc-growth .ic {
  width: 14px;
  height: 14px;
}

.vc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.vc-bar-track {
  height: 9px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.vc-bar {
  height: 100%;
  width: 92%;
  border-radius: 999px;
  background: var(--grad-accent);
  animation: growbar 1.6s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: left;
}

@keyframes growbar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.vc-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
}

.vc-badge .ic {
  width: 15px;
  height: 15px;
  color: var(--teal-600);
}

.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 44px rgba(3, 12, 28, 0.35);
  animation: floaty 5.5s ease-in-out infinite alternate;
}

.chip .chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teal-50);
  color: var(--teal-600);
  flex-shrink: 0;
}

.chip .chip-icon .ic {
  width: 20px;
  height: 20px;
}

.chip b {
  display: block;
  font-size: 13.5px;
  color: var(--navy-800);
}

.chip small {
  font-size: 12px;
  color: var(--muted);
}

.chip-a {
  top: -26px;
  left: -34px;
  animation-delay: 0s;
}

.chip-b {
  bottom: -30px;
  right: -26px;
  animation-delay: 2.4s;
}

@keyframes floaty {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .vc-bar,
  .chip {
    animation: none;
  }
  .vc-bar {
    transform: scaleX(1);
  }
}

.stats {
  position: relative;
  z-index: 2;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  color: var(--teal-400);
  letter-spacing: -0.02em;
}

.stat-label {
  color: rgba(226, 236, 255, 0.75);
  font-size: 14px;
  margin-top: 4px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 184, 166, 0.45);
}

.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid rgba(20, 184, 166, 0.25);
  margin-bottom: 20px;
}

.icon-tile .ic {
  width: 26px;
  height: 26px;
}

.icon-tile-navy {
  background: var(--navy-800);
  color: var(--teal-400);
  border: none;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.3);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--teal-600);
}

.card-link .ic {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.card-link:hover .ic {
  transform: translateX(4px);
}

.mini-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  color: var(--text-soft);
}

.mini-list .ic {
  width: 17px;
  height: 17px;
  color: var(--green-500);
  margin-top: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: left;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--grad-navy);
  color: var(--teal-400);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.28);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 9px;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -22px;
  left: calc(100% - 2px);
  width: 44px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-dark) 0 6px, transparent 6px 11px);
}

.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: #f59e0b;
}

.stars .ic {
  width: 17px;
  height: 17px;
}

.t-text {
  font-size: 15.5px;
  color: var(--text-soft);
  font-style: italic;
  flex-grow: 1;
}

.t-who {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.avatar-g1 {
  background: linear-gradient(135deg, #0d9488, #10b981);
}

.avatar-g2 {
  background: linear-gradient(135deg, #12305a, #1b4070);
}

.avatar-g3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.avatar-g4 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.t-who b {
  display: block;
  font-size: 14.5px;
  color: var(--navy-800);
}

.t-who small {
  font-size: 13px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(20, 184, 166, 0.3), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(226, 236, 255, 0.85);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 34px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-mini-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(226, 236, 255, 0.6);
}

.page-hero {
  position: relative;
  background:
    radial-gradient(800px 420px at 90% -10%, rgba(20, 184, 166, 0.26), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 84px 0 76px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(226, 236, 255, 0.65);
  margin-bottom: 18px;
}

.crumbs a {
  color: rgba(226, 236, 255, 0.75);
}

.crumbs a:hover {
  color: var(--teal-400);
}

.page-hero .eyebrow {
  color: var(--teal-400);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.8vw, 52px);
  margin-bottom: 16px;
}

.page-hero .lede {
  color: rgba(226, 236, 255, 0.82);
  margin-inline: 0;
  font-size: 17.5px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0;
}

.service-row + .service-row {
  border-top: 1px solid var(--border);
}

.service-row.flip .service-media {
  order: 2;
}

.service-media {
  position: relative;
  border-radius: var(--radius-xl);
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.media-navy {
  background:
    radial-gradient(420px 300px at 20% 0%, rgba(20, 184, 166, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-800), var(--navy-600));
}

.media-teal {
  background:
    radial-gradient(420px 300px at 80% 0%, rgba(255, 255, 255, 0.25), transparent 55%),
    linear-gradient(150deg, #0d9488, #059669);
}

.media-soft {
  background:
    radial-gradient(420px 300px at 20% 20%, rgba(20, 184, 166, 0.16), transparent 55%),
    var(--surface);
  border: 1px solid var(--border);
}

.service-media .big-icon {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.service-media .big-icon .ic {
  width: 48px;
  height: 48px;
}

.media-soft .big-icon {
  background: var(--grad-accent);
  color: #fff;
  border: none;
  box-shadow: 0 20px 44px rgba(13, 148, 136, 0.35);
}

.service-media .media-dots {
  position: absolute;
  width: 148px;
  height: 148px;
  right: 8%;
  top: 12%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.5;
}

.service-media .media-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  bottom: -90px;
  left: -80px;
}

.media-soft .media-ring {
  border-color: rgba(13, 148, 136, 0.3);
}

.media-soft .media-dots {
  background-image: radial-gradient(rgba(13, 148, 136, 0.4) 2px, transparent 2.5px);
}

.service-info h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 14px;
}

.service-info > p {
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--text-soft);
}

.feature-list .ic {
  width: 19px;
  height: 19px;
  color: var(--green-500);
  margin-top: 2.5px;
  flex-shrink: 0;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 14.5px;
  min-width: 640px;
}

.table th {
  background: var(--navy-800);
  color: #fff;
  text-align: left;
  padding: 15px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.table td {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}

.table tbody tr:nth-child(even) {
  background: var(--bg);
}

.table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.table .ic {
  width: 17px;
  height: 17px;
  color: var(--green-500);
}

.pricing-toggle {
  display: inline-flex;
  padding: 6px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 0 auto 48px;
}

.pricing-toggle button {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.pricing-toggle button.active {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 6px 16px rgba(10, 37, 64, 0.3);
}

.pricing-toggle small {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--teal-400);
  letter-spacing: 0;
}

.pricing-toggle .active small {
  color: var(--teal-400);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.plan.featured {
  border: 2px solid var(--teal-500);
  box-shadow: 0 24px 60px rgba(13, 148, 136, 0.2);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
  white-space: nowrap;
}

.plan h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.plan .plan-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.price .amount {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price .per {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.price-note {
  font-size: 12.5px;
  color: var(--faint);
  margin-bottom: 26px;
}

.feature-list.price-list li {
  font-size: 14.5px;
}

.feature-list li.off {
  color: var(--faint);
}

.feature-list li.off .ic {
  color: var(--faint);
}

.plan .btn {
  margin-top: auto;
}

.guarantee-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  background: var(--teal-50);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: var(--teal-600);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 36px;
}

.guarantee-band .ic {
  width: 22px;
  height: 22px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.addon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.addon .icon-tile {
  margin-inline: auto;
}

.addon h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.addon p {
  font-size: 13.5px;
  color: var(--muted);
}

.addon .addon-price {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-800);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  text-align: center;
  padding: 30px 22px;
}

.value-item .icon-tile {
  margin-inline: auto;
}

.value-item h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
}

.team-card .avatar {
  width: 84px;
  height: 84px;
  font-size: 27px;
  border-radius: 26px;
  margin: 0 auto 18px;
}

.team-card h3 {
  font-size: 17.5px;
}

.team-card .role {
  font-size: 13.5px;
  color: var(--teal-600);
  font-weight: 600;
  margin: 4px 0 12px;
}

.team-card p {
  font-size: 13.5px;
  color: var(--muted);
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
}

.cred-pill .ic {
  width: 17px;
  height: 17px;
  color: var(--teal-600);
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--teal-500), var(--border));
}

.tl-item {
  position: relative;
  padding: 0 0 36px 62px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2.5px solid var(--teal-500);
  display: grid;
  place-items: center;
  color: var(--teal-600);
}

.tl-dot .ic {
  width: 13px;
  height: 13px;
}

.tl-year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--teal-600);
  letter-spacing: 0.04em;
}

.tl-item h3 {
  font-size: 18px;
  margin: 4px 0 8px;
}

.tl-item p {
  font-size: 14.5px;
  color: var(--muted);
}

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

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.post-media {
  position: relative;
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.post-media .big-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  position: relative;
  z-index: 1;
}

.post-media .big-icon .ic {
  width: 28px;
  height: 28px;
}

.post-media .media-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -20px;
  top: -20px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 2px, transparent 2.5px);
  background-size: 17px 17px;
  opacity: 0.5;
}

.post-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(5, 15, 31, 0.55);
  backdrop-filter: blur(3px);
}

.post-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--faint);
  font-weight: 600;
  margin-bottom: 10px;
}

.post-card h3 {
  font-size: 18.5px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.post-card h3 a {
  color: var(--navy-800);
}

.post-card h3 a:hover {
  color: var(--teal-600);
}

.post-card .post-body > p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.post-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.post-featured .post-media {
  height: auto;
  min-height: 320px;
}

.post-featured .post-body {
  padding: 44px 44px;
}

.post-featured .post-body h3 {
  font-size: 27px;
  line-height: 1.25;
}

.acc-group h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 22px;
}

.acc-group + .acc-group {
  margin-top: 56px;
}

.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.acc-item.open {
  border-color: rgba(20, 184, 166, 0.5);
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy-800);
  transition: color 0.2s ease;
}

.acc-btn:hover {
  color: var(--teal-600);
}

.acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-50);
  display: grid;
  place-items: center;
  color: var(--teal-600);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.acc-icon .ic {
  width: 16px;
  height: 16px;
}

.acc-item.open .acc-icon {
  transform: rotate(180deg);
  background: var(--navy-800);
  color: var(--teal-400);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc-panel-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-soft);
  max-width: 860px;
}

.acc-panel-inner a {
  font-weight: 600;
}

.acc-panel-inner ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}

.acc-panel-inner ul li {
  color: var(--text-soft);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 42px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
}

.field label .req {
  color: var(--teal-600);
}

.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border-radius: 11px;
  border: 1.5px solid var(--border-dark);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.form-hint {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}

.form-ok {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: var(--teal-50);
  border: 1px solid rgba(13, 148, 136, 0.35);
  color: #0f766e;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 22px;
  font-size: 14.5px;
}

.form-ok.show {
  display: flex;
}

.form-ok .ic {
  width: 22px;
  height: 22px;
  color: var(--teal-600);
  flex-shrink: 0;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.contact-card .icon-tile {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.contact-card h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 14.5px;
  color: var(--muted);
}

.contact-card a:hover {
  color: var(--teal-600);
}

.booking-card {
  background: var(--grad-navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: #fff;
}

.booking-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.booking-card p {
  color: rgba(226, 236, 255, 0.8);
  font-size: 14.5px;
  margin-bottom: 22px;
}

.booking-card .btn {
  width: 100%;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy-800);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  background: var(--navy-800);
  color: var(--teal-400);
  transform: translateY(-2px);
}

.social-btn .ic {
  width: 19px;
  height: 19px;
}

.site-footer {
  background: var(--navy-950);
  color: #8fa2c2;
  padding-top: 76px;
  margin-top: 0;
}

.footer-news {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 56px;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-news h2 {
  color: #fff;
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 8px;
}

.footer-news p {
  color: #8fa2c2;
  font-size: 14.5px;
}

.news-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: min(420px, 100%);
}

.news-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.news-form input::placeholder {
  color: #6d81a3;
}

.news-form input:focus {
  outline: none;
  border-color: var(--teal-500);
  background: rgba(255, 255, 255, 0.1);
}

.news-form .btn {
  padding: 13px 24px;
}

.news-ok {
  display: none;
  color: var(--teal-400);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 10px;
  width: 100%;
}

.news-ok.show {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand p {
  color: #8fa2c2;
  font-size: 14.5px;
  margin: 18px 0 22px;
  max-width: 320px;
}

.brand-light {
  color: #fff;
}

.brand-light:hover {
  color: #fff;
}

.brand-light .brand-logo {
  background: var(--grad-accent);
}

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

.footer-social .social-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #b9c7e0;
}

.footer-social .social-btn:hover {
  background: var(--teal-500);
  color: #fff;
}

.footer-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #8fa2c2;
  font-size: 14.5px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6d81a3;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 600;
  color: #b9c7e0;
}

.footer-badge .ic {
  width: 14px;
  height: 14px;
  color: var(--teal-400);
}

.footer-disclaimer {
  padding: 20px 0 30px;
  font-size: 12px;
  line-height: 1.7;
  color: #5d7194;
  max-width: 900px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--navy-800);
  color: var(--teal-400);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.35);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--navy-700);
  color: var(--teal-400);
}

.back-top .ic {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
  .cols-4,
  .value-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }
  .step:nth-child(2)::after {
    display: none;
  }
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-row.flip .service-media {
    order: 0;
  }
  .service-media {
    min-height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 50px rgba(10, 37, 64, 0.14);
    padding: 14px 4%;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 13px 14px;
    font-size: 16px;
  }
  .nav-cta {
    margin: 8px 0 4px;
    justify-content: center;
    padding: 14px;
  }
  .nav-toggle {
    display: grid;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .cols-3,
  .cols-2 {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 52px 28px;
  }
  .table th,
  .table td {
    padding: 12px 14px;
  }
  .post-featured {
    grid-template-columns: 1fr;
  }
  .post-featured .post-media {
    min-height: 220px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 30px 24px;
  }
  .chip-a {
    left: 0;
  }
  .chip-b {
    right: 0;
  }
}

@media (max-width: 560px) {
  .stats-grid,
  .value-grid,
  .team-grid,
  .steps,
  .addon-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 64px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .step::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-news {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-form {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .vc-amount {
    font-size: 32px;
  }
  .page-hero {
    padding: 60px 0;
  }
}