﻿:root {
  --bg: #050c1f;
  --bg-soft: #0b1430;
  --panel: rgba(11, 20, 48, 0.72);
  --panel-strong: rgba(13, 23, 52, 0.94);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #b8c7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 22px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(132, 164, 255, 0.03) 0,
      rgba(132, 164, 255, 0.03) 1px,
      transparent 1px,
      transparent 22px
    );
  background-position: 0 0, 12px 12px;
  opacity: 0.58;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 56vh, rgba(0, 0, 0, 0.5) 66vh, black 100%);
  animation: driftPattern 22s linear infinite;
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(78, 132, 255, 0.09), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(83, 214, 255, 0.07), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 26%);
  opacity: 0.72;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 54vh, rgba(0, 0, 0, 0.38) 66vh, black 100%);
}

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

.page-frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
  isolation: isolate;
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 199, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(9, 18, 42, 0.9);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.scroll-top-button span {
  font-size: 22px;
  line-height: 1;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  border-color: rgba(184, 199, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(13, 25, 56, 0.94);
}

.scroll-top-button:focus-visible {
  outline: 2px solid rgba(132, 215, 255, 0.88);
  outline-offset: 3px;
}

.page-frame::before,
.page-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.page-frame::before {
  display: none;
}

.page-frame::after {
  display: none;
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 17, 40, 0.34) 0%, rgba(5, 12, 31, 0.78) 100%),
    radial-gradient(circle at 50% 0%, rgba(30, 79, 190, 0.24), transparent 40%),
    linear-gradient(180deg, #071128 0%, #050c1f 100%);
  mask-image: linear-gradient(180deg, black 0%, black 70%, rgba(0, 0, 0, 0.34) 86%, transparent 100%);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.012) 18%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(4, 10, 24, 0.06) 0%, rgba(4, 10, 24, 0.18) 30%, rgba(4, 10, 24, 0.46) 62%, rgba(5, 12, 31, 0.88) 100%),
    url("../images/backgrounds/main-background.png") center top / cover no-repeat;
  mask-image: linear-gradient(180deg, black 0%, black 68%, rgba(0, 0, 0, 0.36) 84%, transparent 100%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 14%, rgba(62, 126, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(3, 8, 22, 0.12) 0%, rgba(3, 8, 22, 0.42) 52%, rgba(3, 8, 22, 0.76) 100%);
  mask-image: linear-gradient(180deg, black 0%, black 70%, rgba(0, 0, 0, 0.36) 86%, transparent 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mask-image: linear-gradient(180deg, black 0%, black 66%, rgba(0, 0, 0, 0.32) 82%, transparent 100%);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 25px 60px;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(30vw, 168px);
  opacity: 0.96;
  transition: opacity 180ms ease, transform 180ms ease;
}

.logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(7, 16, 38, 0.78);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.8;
}

.links a {
  padding: 10px 0;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 14px;
}

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

.nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  min-width: 250px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(7, 16, 38, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(184, 199, 255, 0.12);
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

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

.nav-btn,
.primary {
  background: white;
  color: black;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 120px 60px 110px;
}

.content {
  width: min(100%, 980px);
}

.tag,
.eyebrow,
.card-tag,
.plan-name {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title,
h1,
h2,
h3 {
  font-weight: 700;
}

.hero-title,
h1 {
  margin-top: 10px;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero-title span,
h1 span {
  color: var(--accent);
}

.hero p {
  margin-top: 20px;
  opacity: 0.6;
  max-width: 520px;
  line-height: 1.6;
  font-size: 18px;
}

.actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.lead-section {
  padding-top: 26px;
}

.lead-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(92, 137, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(79, 209, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(16, 27, 58, 0.94), rgba(9, 17, 38, 0.9));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.lead-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
  opacity: 0.72;
}

.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 14px 8px 14px 2px;
}

.lead-copy h2 {
  max-width: 11ch;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.lead-copy-text {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.lead-copy::after {
  content: "K5";
  position: absolute;
  right: 4%;
  bottom: -2%;
  font-size: clamp(72px, 10vw, 132px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.lead-form {
  display: grid;
  gap: 16px;
  align-content: start;
  align-self: center;
  justify-self: stretch;
  width: min(100%, 480px);
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.055), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(86, 136, 255, 0.1), transparent 36%),
    rgba(8, 16, 38, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

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

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

.lead-field span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-field input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.lead-field input:focus {
  border-color: rgba(184, 199, 255, 0.46);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(184, 199, 255, 0.08);
  transform: translateY(-1px);
}

.lead-field input.is-invalid {
  border-color: rgba(255, 143, 143, 0.72);
  background: rgba(255, 92, 92, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 92, 92, 0.08);
}

.lead-submit {
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 231, 255, 0.94));
  color: #081121;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 20px 38px rgba(189, 204, 255, 0.15);
}

.lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(189, 204, 255, 0.2);
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.lead-form-legal {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.55;
}

.lead-form-legal a {
  color: rgba(205, 219, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(205, 219, 255, 0.42);
  text-underline-offset: 0.16em;
}

.lead-form-legal a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.68);
}

.lead-form-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.lead-form-status.is-success {
  color: rgba(133, 229, 191, 0.92);
}

.lead-form-status.is-error {
  color: rgba(255, 163, 163, 0.95);
}

.subpage-hero-shell {
  min-height: 100vh;
  mask-image: linear-gradient(180deg, black 0%, black 66%, rgba(0, 0, 0, 0.38) 84%, transparent 100%);
}

.subpage-hero-shell::before,
.subpage-hero-shell::after,
.subpage-hero-shell #hero-canvas {
  mask-image: linear-gradient(180deg, black 0%, black 66%, rgba(0, 0, 0, 0.34) 84%, transparent 100%);
}

.subpage-hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 110px;
}

.subpage-content {
  width: min(100%, 1040px);
}

.subpage-content p {
  margin-top: 20px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  font-size: 18px;
}

.subpage-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.subpage-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.subpage-stats li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.04), transparent 34%),
    rgba(8, 16, 38, 0.48);
  backdrop-filter: blur(14px);
}

.subpage-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.subpage-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.section-copy {
  max-width: 720px;
  color: rgba(184, 199, 255, 0.74);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

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

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 220px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(184, 199, 255, 0.24);
  color: rgba(184, 199, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.step-card h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

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

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-card a {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(184, 199, 255, 0.9);
}

.contact-card a:hover {
  color: #ffffff;
}

.simple-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.simple-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  line-height: 1.65;
}

.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(132, 215, 255, 0.9);
  box-shadow: 0 0 12px rgba(132, 215, 255, 0.5);
}

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

.seo-text-section {
  padding-top: 28px;
}

.seo-text-section .section-heading h2 {
  max-width: 980px;
}

.seo-accordion {
  display: grid;
  gap: 14px;
}

.seo-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(184, 199, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 38, 0.64);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.seo-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.seo-accordion-item summary h1,
.seo-accordion-item summary h2 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.seo-accordion-item summary::-webkit-details-marker {
  display: none;
}

.seo-accordion-item summary:hover {
  color: rgba(184, 199, 255, 0.98);
}

.seo-accordion-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(132, 215, 255, 0.24);
  border-radius: 999px;
  position: relative;
  background: rgba(132, 215, 255, 0.08);
}

.seo-accordion-icon::before,
.seo-accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transform: translate(-50%, -50%);
}

.seo-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.seo-accordion-item[open] .seo-accordion-icon::after {
  opacity: 0;
}

.seo-accordion-body {
  display: grid;
  gap: 14px;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.seo-accordion-body p {
  margin: 0;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
}

.page-cta-copy h3 {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1.12;
}

.page-cta-copy p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.site-footer {
  width: 100%;
  margin: 18px 0 0;
  padding: 10px 0px 40px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.8fr));
  gap: 28px;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 42ch;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: min(168px, 100%);
  opacity: 0.95;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p {
  line-height: 1.65;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  margin-bottom: 2px;
  color: rgba(184, 199, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-group a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 40px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 72px;
}

.hero-stats strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-stats span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.main-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: -34px auto 0;
  padding: 72px 0 80px;
}

.main-content::before {
  display: none;
}

.main-content::after {
  display: none;
}

.section {
  position: relative;
  padding-top: 34px;
  padding-bottom: 20px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: min(100%, 760px);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}

.intro,
.info-card,
.price-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.032), transparent 32%),
    radial-gradient(circle at 50% 118%, rgba(90, 136, 255, 0.07), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-section {
  padding-top: 0;
}

.intro-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
}

.intro-side-note,
.pricing-intro,
.reviews-intro {
  color: rgba(184, 199, 255, 0.74);
  line-height: 1.6;
}

.intro-note-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(184, 199, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.intro-story,
.intro-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.035), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(86, 136, 255, 0.065), transparent 36%),
    rgba(11, 20, 48, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-story {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.intro-story::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 128, 255, 0.16), transparent 64%);
}

.intro-story p + p {
  margin-top: 18px;
}

.intro-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.intro-panel-orbit {
  position: absolute;
  inset: auto auto -18% 52%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(84, 143, 255, 0.18), transparent 58%);
  filter: blur(18px);
}

.intro-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-signal-card {
  min-height: 128px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.mini-signal-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.mini-signal-card span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  font-size: 14px;
}

.mini-signal-card.accent {
  background:
    linear-gradient(180deg, rgba(184, 199, 255, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(14, 26, 58, 0.9);
}

.intro-grid p,
.info-card p,
.quote-card p,
.plan-summary,
.price-card li {
  color: var(--muted);
  line-height: 1.65;
}

.card-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.price-card,
.quote-card {
  padding: 26px;
}

.info-card h3,
.price-card h3 {
  margin: 14px 0;
  font-size: 28px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.info-card strong {
  display: block;
  margin-top: 18px;
  line-height: 1.55;
}

.accent-card {
  background:
    radial-gradient(circle at 50% -8%, rgba(184, 199, 255, 0.08), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(98, 144, 255, 0.08), transparent 34%),
    var(--panel);
}

.web-blueprint {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(184, 199, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(132, 215, 255, 0.12), transparent 28%),
    linear-gradient(140deg, rgba(13, 25, 56, 0.94), rgba(7, 15, 35, 0.78));
  box-shadow: var(--shadow);
}

.web-blueprint-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.web-blueprint-copy h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.web-blueprint-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.web-blueprint-pills,
.web-ready-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-blueprint-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(132, 215, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(226, 236, 255, 0.88);
  font-size: 13px;
}

.web-browser {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 12, 30, 0.88);
}

.web-browser-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.web-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(184, 199, 255, 0.44);
}

.web-browser-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.web-wire,
.web-wire-card,
.web-wire-button {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.web-wire-hero {
  grid-column: 1 / -1;
  height: 96px;
  background:
    linear-gradient(135deg, rgba(132, 215, 255, 0.2), rgba(184, 199, 255, 0.08));
}

.web-wire {
  grid-column: span 4;
  height: 20px;
}

.web-wire.short {
  grid-column: span 2;
}

.web-wire.wide {
  grid-column: span 5;
}

.web-wire-card {
  grid-column: span 2;
  min-height: 94px;
}

.web-wire-card.accent {
  background: linear-gradient(180deg, rgba(132, 215, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.web-wire-button {
  grid-column: span 2;
  height: 42px;
  background: rgba(255, 255, 255, 0.86);
}

.web-service-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.web-service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  color: var(--text);
  background: rgba(10, 20, 48, 0.76);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.web-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 16%, rgba(132, 215, 255, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(4, 10, 25, 0.56) 100%);
  pointer-events: none;
}

.web-service-card.product {
  min-height: 360px;
}

.web-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 199, 255, 0.34);
}

.web-service-card span,
.web-service-card h3,
.web-service-card p,
.web-service-card strong {
  position: relative;
  z-index: 1;
}

.web-service-card span {
  margin-bottom: auto;
  color: rgba(184, 199, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.web-service-card h3 {
  margin: 90px 0 12px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
}

.web-service-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.web-service-card strong {
  margin-top: 18px;
  color: rgba(132, 215, 255, 0.9);
}

.web-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.web-process-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid rgba(184, 199, 255, 0.16);
  border-radius: 26px;
  background: rgba(9, 18, 42, 0.72);
}

.web-process-aside h2 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.web-process-aside p,
.web-process-list p,
.web-ready-strip span,
.web-cta p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.web-process-list {
  display: grid;
  gap: 14px;
}

.web-process-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 38, 0.58);
}

.web-process-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(132, 215, 255, 0.24);
  color: rgba(132, 215, 255, 0.92);
  font-size: 12px;
}

.web-process-list h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.web-ready-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  border: 1px solid rgba(184, 199, 255, 0.14);
  border-radius: 24px;
  background: rgba(8, 16, 38, 0.58);
}

.web-ready-strip div {
  padding: 14px;
}

.web-ready-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 18px;
}

.web-ready-strip span {
  display: block;
  font-size: 14px;
}

.web-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(184, 199, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(132, 215, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(18, 32, 70, 0.94), rgba(8, 16, 38, 0.88));
  box-shadow: var(--shadow);
}

.web-cta h3 {
  margin: 10px 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.cases-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  align-items: start;
}

.cases-heading h2 span {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}

.cases-intro {
  max-width: 360px;
  justify-self: end;
  color: rgba(184, 199, 255, 0.74);
  line-height: 1.55;
  padding-top: 12px;
}

.cases-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.case-hero-card,
.case-mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-hero-card:hover,
.case-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 199, 255, 0.32);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.case-hero-card {
  --case-display-image: url("../images/case-framehouse.png");
  min-height: 425px;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(3, 9, 26, 0.08) 0%, rgba(3, 8, 22, 0.84) 72%, rgba(3, 8, 22, 0.94) 100%),
    var(--case-display-image) center center / cover no-repeat;
}

.case-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(35, 185, 255, 0.22), transparent 24%),
    linear-gradient(125deg, rgba(18, 114, 174, 0.18), transparent 42%);
}

.case-pill-row,
.case-hero-content {
  position: relative;
  z-index: 1;
}

.case-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.case-pill-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.case-hero-content strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
}

.case-hero-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.case-hero-content p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.case-display-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.case-display-note {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.case-display-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #07101f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.case-stack {
  display: grid;
  gap: 14px;
}

.case-mini-card {
  min-height: 94px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  background:
    linear-gradient(180deg, rgba(2, 6, 18, 0.44), rgba(2, 6, 18, 0.82)),
    linear-gradient(130deg, rgba(39, 72, 124, 0.32), transparent 45%),
    var(--panel-strong);
}

.case-mini-card:focus-visible {
  outline: 2px solid rgba(184, 199, 255, 0.7);
  outline-offset: 2px;
}

.case-mini-card strong,
.case-mini-card em {
  position: relative;
  z-index: 1;
}

.case-mini-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.case-mini-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.case-mini-card em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 15px;
}

.case-mini-card.construction {
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.34), rgba(6, 10, 22, 0.86)),
    radial-gradient(circle at 78% 18%, rgba(112, 178, 255, 0.18), transparent 18%),
    url("../images/case-framehouse.png") center center / cover no-repeat;
}

.case-mini-card.autoparts {
  background:
    linear-gradient(180deg, rgba(2, 6, 18, 0.28), rgba(2, 6, 18, 0.84)),
    radial-gradient(circle at 80% 20%, rgba(111, 193, 255, 0.16), transparent 18%),
    url("../images/case-autoparts.png") center center / cover no-repeat;
}

.case-mini-card.seo {
  background:
    linear-gradient(180deg, rgba(15, 2, 28, 0.34), rgba(7, 6, 20, 0.86)),
    radial-gradient(circle at 70% 40%, rgba(183, 64, 255, 0.18), transparent 22%),
    url("../images/case-seo.png") center center / cover no-repeat;
}

.case-mini-card.detailing {
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.34), rgba(6, 13, 24, 0.88)),
    radial-gradient(circle at 26% 42%, rgba(108, 217, 255, 0.12), transparent 20%),
    url("../images/case-detailing.png") center center / cover no-repeat;
}

.case-mini-card.spa {
  background:
    linear-gradient(180deg, rgba(8, 19, 29, 0.34), rgba(8, 16, 27, 0.9)),
    radial-gradient(circle at 26% 42%, rgba(108, 217, 255, 0.12), transparent 20%),
    url("../images/case-spa.png") center center / cover no-repeat;
}

.case-mini-card.active {
  min-height: 98px;
  border-color: rgba(184, 199, 255, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(184, 199, 255, 0.08);
}

.case-hero-card.is-switching {
  transform: scale(0.985);
  opacity: 0.78;
}

.price-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.pricing-section::before,
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto 0;
  height: 220px;
  pointer-events: none;
}

.pricing-heading,
.reviews-heading {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
}

.price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(76, 132, 255, 0.18), transparent 64%);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 199, 255, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(184, 199, 255, 0.08);
}

.price-card:hover::before {
  background: radial-gradient(circle, rgba(98, 154, 255, 0.24), transparent 64%);
}

.price-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .badge {
  background: rgba(255, 255, 255, 0.92);
  color: #0b1228;
  border-color: rgba(255, 255, 255, 0.92);
}

.price {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.title {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.45;
}

.section-title {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  margin-bottom: 18px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "+";
  color: #84d7ff;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tag-chip {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.info {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 13px;
}

.spacer {
  flex: 1;
}

.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #081121;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

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

.featured .pricing-button {
  background: linear-gradient(135deg, #ffffff, #dfe8ff);
}

.featured {
  background:
    radial-gradient(circle at 50% -6%, rgba(184, 199, 255, 0.11), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(90, 136, 255, 0.11), transparent 34%),
    var(--panel-strong);
  border-color: rgba(184, 199, 255, 0.28);
  transform: translateY(-8px);
}

.featured:hover {
  border-color: rgba(220, 229, 255, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(220, 229, 255, 0.12);
}

.reviews-intro {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.reviews-intro span {
  max-width: 320px;
}

.quote-card {
  position: relative;
  min-height: 260px;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -20% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(103, 143, 255, 0.14), transparent 64%);
  pointer-events: none;
}

.quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(184, 199, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(184, 199, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.quote-card p {
  margin-bottom: 18px;
  font-size: 17px;
}

.quote-card span {
  color: var(--accent);
  font-size: 14px;
}

.blog-heading {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
}

.blog-heading h1 {
  max-width: 16ch;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.blog-heading-note {
  max-width: 420px;
  justify-self: end;
  color: rgba(184, 199, 255, 0.74);
  line-height: 1.6;
}

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

.blog-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.032), transparent 32%),
    radial-gradient(circle at 50% 118%, rgba(90, 136, 255, 0.07), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 199, 255, 0.28);
  background:
    radial-gradient(circle at 50% -8%, rgba(184, 199, 255, 0.08), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(98, 144, 255, 0.08), transparent 34%),
    var(--panel);
}

.blog-card time,
.blog-post-date {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(184, 199, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(184, 199, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.blog-card h2 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.14;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--accent);
  font-weight: 700;
}

.blog-post-hero-shell {
  min-height: 100vh;
}

.blog-post-hero {
  min-height: 100vh;
}

.blog-post-section {
  padding-top: 0;
}

.blog-post-body {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.032), transparent 32%),
    radial-gradient(circle at 50% 118%, rgba(90, 136, 255, 0.07), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.blog-post-body h2,
.blog-post-body h3 {
  margin: 34px 0 14px;
  line-height: 1.16;
}

.blog-post-body h2 {
  font-size: 32px;
}

.blog-post-body h3 {
  font-size: 24px;
}

.blog-post-body p,
.blog-post-body li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.blog-post-body p + p,
.blog-post-body ul + p,
.blog-post-body ol + p {
  margin-top: 18px;
}

.blog-post-body ul,
.blog-post-body ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px 24px;
}

.blog-post-body a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftPattern {
  0% {
    background-position: 0 0, 12px 12px;
  }
  100% {
    background-position: 56px 0, 68px 12px;
  }
}

@media (max-width: 1080px) {
  .nav {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .intro-heading,
  .cases-heading,
  .blog-heading,
  .pricing-heading,
  .reviews-heading,
  .cases-showcase,
  .reviews-grid,
  .blog-grid,
  .pricing-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .cases-intro {
    justify-self: start;
    max-width: 560px;
  }

  .intro-panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-intro,
  .blog-heading-note,
  .reviews-intro {
    justify-self: start;
    max-width: 560px;
  }

  .cases-showcase {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    grid-template-columns: 1fr;
  }

  .lead-form {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .split-section,
  .step-grid,
  .metric-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-cta {
    grid-template-columns: 1fr;
  }

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

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

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

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

  body::before,
  body::after {
    opacity: 0.36;
  }

}

@media (max-width: 860px) {
  .nav {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .links {
    flex: 1 1 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: translateY(8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateY(0);
  }

  .nav-btn {
    margin-left: auto;
  }

  .hero,
  .subpage-hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .content,
  .subpage-content {
    width: min(100%, 760px);
  }

  .hero p,
  .subpage-content p {
    max-width: 100%;
  }

  .cases-showcase,
  .blog-grid,
  .pricing-grid,
  .reviews-grid,
  .content-grid,
  .faq-grid,
  .metric-grid,
  .contact-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .case-stack {
    grid-template-columns: 1fr;
  }

  .case-hero-card {
    min-height: 380px;
  }

  .lead-panel {
    padding: 24px;
  }

  .seo-accordion-item summary {
    padding: 20px 22px;
    font-size: 18px;
  }

  .seo-accordion-body {
    padding: 0 22px 22px;
  }

  .page-cta-copy h3 {
    font-size: 28px;
  }

  .footer-shell,
  .footer-bottom {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .logo {
    max-width: 152px;
  }

  .links {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .links a {
    padding: 10px 0;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-toggle::after {
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    gap: 2px;
    margin-top: 2px;
    padding: 4px 0 4px 14px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.68);
    white-space: normal;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: transparent;
    color: #ffffff;
  }

  .nav-btn {
    display: none;
    width: 100%;
    order: 4;
  }

  .nav.is-open .links {
    display: grid;
  }

  .nav.is-open .nav-btn {
    display: inline-flex;
  }

  .nav.is-open {
    background:
      radial-gradient(circle at 16% 12%, rgba(92, 137, 255, 0.16), transparent 24%),
      linear-gradient(180deg, rgba(10, 18, 42, 0.98), rgba(7, 14, 34, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding-top: 16px;
    padding-bottom: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .nav.is-open .links,
  .nav.is-open .nav-btn {
    position: relative;
    z-index: 1;
  }

  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 84px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .section-heading h2,
  .blog-heading h1,
  .lead-copy h2,
  .page-cta-copy h3 {
    max-width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .subpage-hero {
    padding-top: 150px;
    padding-bottom: 84px;
  }

  .subpage-actions,
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .subpage-actions .btn,
  .actions .btn {
    width: 100%;
  }

  .subpage-stats,
  .content-grid,
  .step-grid,
  .metric-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .main-content {
    width: min(100% - 24px, 1200px);
    margin-top: 0;
    padding-top: 52px;
    padding-bottom: 60px;
  }

  body::before {
    opacity: 0.24;
  }

  body::after {
    opacity: 0.3;
  }

  .intro,
  .intro-story,
  .intro-panel,
  .info-card,
  .price-card,
  .quote-card {
    padding: 22px;
    border-radius: 22px;
  }

  .intro-panel-grid {
    grid-template-columns: 1fr;
  }

  .case-hero-card,
  .case-mini-card,
  .price-card,
  .quote-card,
  .info-card,
  .intro-story,
  .intro-panel {
    border-radius: 22px;
  }

  .case-hero-card {
    min-height: 320px;
    padding: 22px;
  }

  .case-mini-card {
    min-height: 108px;
    padding: 18px;
  }

  .case-pill-row {
    gap: 8px;
  }

  .case-pill-row span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .lead-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .lead-copy {
    padding: 4px 0 0;
  }

  .lead-copy::after {
    display: none;
  }

  .lead-form {
    width: 100%;
    margin-left: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .seo-accordion-item {
    border-radius: 22px;
  }

  .seo-accordion-item summary {
    align-items: flex-start;
    padding: 18px;
    font-size: 17px;
  }

  .seo-accordion-icon {
    width: 30px;
    height: 30px;
  }

  .seo-accordion-body {
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .page-cta {
    padding: 22px;
  }

  .site-footer {
    padding: 10px 12px 28px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 520px) {
  .hero,
  .subpage-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 144px;
    padding-bottom: 72px;
  }

  .subpage-hero {
    padding-top: 144px;
    padding-bottom: 72px;
    min-height: 100vh;
  }

  .content,
  .subpage-content {
    width: 100%;
  }

  .tag,
  .eyebrow,
  .card-tag,
  .plan-name {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero p,
  .subpage-content p {
    font-size: 16px;
  }

  .hero-stats strong,
  .subpage-stats strong {
    font-size: 20px;
  }

  .section {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .price,
  .metric-card strong {
    font-size: 28px;
  }

  .lead-panel,
  .lead-form,
  .intro-story,
  .intro-panel,
  .info-card,
  .price-card,
  .quote-card,
  .blog-card,
  .blog-post-body,
  .case-hero-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .blog-post-body p,
  .blog-post-body li {
    font-size: 16px;
  }

  .footer-shell,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }
}
