:root {
  --bg: #040a14;
  --bg-deep: #02050c;
  --surface: rgba(8, 18, 32, 0.84);
  --surface-strong: rgba(12, 27, 48, 0.96);
  --surface-soft: rgba(13, 33, 58, 0.68);
  --text: #f5f9ff;
  --muted: #98acc3;
  --muted-strong: #bfd0e2;
  --accent: #18d7ff;
  --accent-strong: #2a8cff;
  --accent-soft: rgba(24, 215, 255, 0.14);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(24, 215, 255, 0.22);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
  background: #050914;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #050914;
  background:
    radial-gradient(circle at 15% 15%, rgba(42, 140, 255, 0.22), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(24, 215, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 48%, rgba(7, 18, 34, 0.72), transparent 45%),
    linear-gradient(180deg, #07111f 0%, var(--bg-deep) 50%, #050914 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
}

body::after {
  background:
    radial-gradient(circle, rgba(24, 215, 255, 0.18), transparent 48%),
    radial-gradient(circle, rgba(42, 140, 255, 0.2), transparent 50%);
  background-position: -10% 30%, 110% 20%;
  background-repeat: no-repeat;
  filter: blur(50px);
  opacity: 0.65;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

.page-shell {
  width: 100%;
  padding: 18px 0 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: var(--container);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(4, 10, 20, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #8af1ff, var(--accent) 48%, rgba(42, 140, 255, 0.8) 75%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.75);
}

.brand-text {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

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

.site-nav a {
  color: var(--muted-strong);
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(24, 215, 255, 0.14), rgba(42, 140, 255, 0.28));
  border: 1px solid var(--border-strong);
}

.nav-toggle {
  display: none;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--border-strong);
  background: rgba(24, 215, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 220ms ease, top 220ms ease, width 220ms ease;
}

.nav-toggle-icon span:first-child {
  top: 3px;
}

.nav-toggle-icon span:last-child {
  top: 9px;
  width: 14px;
  right: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
  top: 6px;
  width: 18px;
  transform: rotate(-45deg);
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  padding: 48px 0 52px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  justify-self: start;
  align-self: start;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(24, 215, 255, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
  color: var(--muted-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, #8cf4ff 0%, var(--accent) 36%, #5ab1ff 100%);
  box-shadow: 0 14px 40px rgba(24, 215, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 48px rgba(24, 215, 255, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--border-strong);
  background: rgba(24, 215, 255, 0.06);
}

.hero-points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ba9ff);
  box-shadow: 0 0 14px rgba(24, 215, 255, 0.5);
}

.case-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.hero-panel {
  position: relative;
}

.hero-contact-form {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.94), rgba(7, 14, 27, 0.98)),
    linear-gradient(135deg, rgba(24, 215, 255, 0.08), transparent 55%);
  box-shadow: var(--shadow);
}

.hero-contact-form::before,
.hero-contact-form::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-contact-form::before {
  width: 180px;
  height: 180px;
  top: -90px;
  right: -30px;
  background: rgba(24, 215, 255, 0.14);
}

.hero-contact-form::after {
  width: 120px;
  height: 120px;
  bottom: -50px;
  left: -30px;
  background: rgba(42, 140, 255, 0.18);
}

.hero-form-head {
  position: relative;
  z-index: 1;
}

.hero-form-head .eyebrow {
  margin-bottom: 14px;
}

.hero-form-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted-strong);
}

.hero-contact-form .form-grid,
.hero-contact-form label,
.hero-contact-form .full-width,
.hero-contact-form .submit-btn,
.hero-contact-form .form-footnote,
.hero-contact-form .form-status {
  position: relative;
  z-index: 1;
}

.hero-contact-form .form-grid {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.assistant {
  display: block;
}

.assistant-shell {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  padding: 1px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.28), rgba(255, 255, 255, 0.06), rgba(90, 177, 255, 0.22));
  box-shadow: var(--shadow);
}

.assistant-window {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 31px;
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(9, 18, 32, 0.96), rgba(5, 11, 22, 0.98));
}

.assistant-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.assistant-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assistant-window-head h3 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.assistant-presence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 215, 255, 0.14);
  background: rgba(24, 215, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.assistant-presence-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5ef0a0;
  box-shadow: 0 0 16px rgba(94, 240, 160, 0.62);
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistant-chip {
  appearance: none;
  border: 1px solid rgba(24, 215, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.assistant-chip:hover,
.assistant-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(24, 215, 255, 0.28);
  background: rgba(24, 215, 255, 0.08);
  color: var(--text);
}

.assistant-messages {
  display: grid;
  gap: 14px;
  max-height: 320px;
  min-height: 140px;
  padding-right: 6px;
  overflow-y: auto;
}

.assistant-messages:empty {
  display: none;
  min-height: 0;
  max-height: none;
  padding-right: 0;
}

.assistant-message {
  max-width: min(88%, 31rem);
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.assistant-message p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
  white-space: pre-line;
}

.assistant-message-bot {
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(14, 25, 43, 0.95), rgba(8, 16, 30, 0.92));
}

.assistant-message-user {
  margin-left: auto;
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.16), rgba(90, 177, 255, 0.18)),
    rgba(8, 17, 30, 0.94);
}

.assistant-form {
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-form textarea {
  width: 100%;
  min-height: 88px;
  resize: vertical;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 9, 18, 0.9);
  color: var(--text);
  padding: 18px 20px;
  font: inherit;
}

.assistant-form textarea::placeholder {
  color: var(--muted);
}

.assistant-form textarea:focus {
  outline: none;
  border-color: rgba(24, 215, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(24, 215, 255, 0.08);
}

.assistant-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.assistant-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.assistant-submit {
  min-width: 140px;
}

.assistant-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
}

.starter-offer {
  padding-top: 44px;
}

.starter-offer-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 119, 68, 0.3), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(24, 215, 255, 0.32), transparent 26%),
    radial-gradient(circle at 72% 86%, rgba(255, 210, 76, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(8, 18, 35, 0.94), rgba(17, 39, 72, 0.96) 48%, rgba(8, 16, 29, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.starter-offer-shell::before,
.starter-offer-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.starter-offer-shell::before {
  top: -56px;
  left: -42px;
  width: 180px;
  height: 180px;
  background: rgba(255, 119, 68, 0.18);
}

.starter-offer-shell::after {
  right: -34px;
  bottom: -46px;
  width: 220px;
  height: 220px;
  background: rgba(24, 215, 255, 0.16);
}

.starter-offer-copy,
.starter-offer-card {
  position: relative;
  z-index: 1;
}

.starter-offer-copy {
  padding: 4px 0;
}

.starter-offer-copy h2 {
  margin: 0;
  max-width: 10ch;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.starter-offer-copy h2 span {
  color: #ffd24c;
  text-shadow: 0 0 28px rgba(255, 210, 76, 0.22);
}

.starter-offer-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 52ch;
  color: var(--muted-strong);
  font-size: 1.03rem;
}

.starter-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.starter-offer-card {
  align-self: stretch;
  display: grid;
  gap: 16px;
  padding: 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(6, 14, 28, 0.88), rgba(7, 15, 29, 0.8)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.starter-offer-card-label {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-offer-price {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(3.6rem, 8vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  color: var(--text);
}

.starter-offer-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.starter-offer-points li {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-weight: 600;
}

.service-card,
.reason-card,
.process-card,
.result-card,
.testimonial-card,
.faq-item,
.about-panel article,
.contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-intro {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.about,
.assistant,
.services,
.reasons,
.process,
.results,
.testimonials,
.faq,
.contact {
  padding: 82px 0 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 56px;
  align-items: start;
  padding: 36px 38px;
  border-radius: 32px;
  border: 1px solid rgba(24, 215, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(24, 215, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(5, 12, 22, 0.68);
  background-size: 180% 180%, auto;
  background-position: 0% 50%, 0 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  animation: about-gradient-shift 12s ease-in-out infinite;
}

.about-intro-copy {
  display: grid;
  gap: 18px;
}

.about-intro-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-intro-lead {
  margin: 0;
  color: var(--muted-strong);
  max-width: none;
  font-size: 1.06rem;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 0;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  padding: 8px 0;
}

.about-copy p {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(24, 215, 255, 0.14);
  max-width: none;
  width: 100%;
  color: var(--muted-strong);
  font-size: 1.04rem;
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(24, 215, 255, 0.1), rgba(255, 255, 255, 0.03) 52%, rgba(42, 140, 255, 0.12)),
    rgba(5, 12, 22, 0.78);
  background-size: 160% 160%, 200% 200%, auto;
  background-position: 100% 0%, 0% 50%, 0 0;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  animation: about-copy-card-shift 15s ease-in-out infinite;
}

.about-panel {
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
}

.about-panel article {
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(24, 215, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 20, 0.68);
  background-size: 180% 180%, auto;
  background-position: 100% 50%, 0 0;
  animation: about-gradient-shift 14s ease-in-out infinite;
}

@keyframes about-gradient-shift {
  0% {
    background-position: 0% 50%, 0 0;
  }

  50% {
    background-position: 100% 50%, 0 0;
  }

  100% {
    background-position: 0% 50%, 0 0;
  }
}

@keyframes about-copy-card-shift {
  0% {
    background-position: 100% 0%, 0% 50%, 0 0;
  }

  50% {
    background-position: 0% 100%, 100% 50%, 0 0;
  }

  100% {
    background-position: 100% 0%, 0% 50%, 0 0;
  }
}


.about-panel h3,
.service-card h3,
.reason-card h3,
.process-card h3,
.result-card h3,
.testimonial-card h3,
.footer-links h3 {
  margin: 0;
  font-size: 1.08rem;
}

.about-panel p,
.reason-card p,
.process-card p,
.result-card p,
.testimonial-card p,
.footer-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.service-card,
.reason-card,
.process-card,
.result-card,
.testimonial-card,
.faq-item {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card::before,
.reason-card::before,
.result-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 215, 255, 0.85), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-card:hover,
.reason-card:hover,
.result-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.service-card,
.reason-card,
.result-card,
.testimonial-card {
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover::before,
.reason-card:hover::before,
.result-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.clients-served {
  padding-top: 34px;
}

.clients-served-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.clients-served-copy {
  padding: 20px 10px 10px 2px;
}

.clients-served-copy .eyebrow {
  margin-bottom: 18px;
}

.clients-served-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.clients-served-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--muted-strong);
}

.clients-served-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.clients-served-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  background: rgba(10, 24, 43, 0.78);
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 700;
}

.clients-served-proof {
  display: grid;
  gap: 16px;
}

.clients-served-primary {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 24px;
  min-height: 244px;
  border-radius: 32px;
  border: 1px solid rgba(24, 215, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.98), rgba(5, 12, 23, 0.96));
  box-shadow: var(--shadow);
}

.clients-served-primary::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 215, 255, 0.18), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

.clients-served-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(9, 24, 43, 0.9);
  border: 1px solid rgba(24, 215, 255, 0.16);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-served-number {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(4.4rem, 9vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
  color: var(--text);
  text-shadow: 0 0 28px rgba(24, 215, 255, 0.14);
}

.clients-served-note {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  max-width: 28ch;
  color: var(--muted-strong);
}

.clients-served-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.clients-served-secondary article {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.88), rgba(5, 12, 23, 0.82)),
    linear-gradient(135deg, rgba(24, 215, 255, 0.08), transparent 55%);
}

.clients-served-secondary span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-served-secondary strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
  font-size: 1rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(24, 215, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(24, 215, 255, 0.16);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.service-card .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: #8ef0ff;
}

.reasons-grid,
.results-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

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

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
}

.process-card {
  min-height: 100%;
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -0.06em;
}

.results-carousel {
  margin-top: 36px;
}

.results-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.results-viewport::-webkit-scrollbar {
  display: none;
}

.results-grid {
  display: flex;
  gap: 18px;
  margin-top: 0;
}

.result-card {
  flex: 0 0 calc((100% - 36px) / 3);
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px 24px;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.result-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.result-business,
.result-period,
.result-tags span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 215, 255, 0.14);
  background: rgba(24, 215, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(24, 215, 255, 0.08);
}

.result-period {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.result-metric {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--accent);
}

.result-copy {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.62;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.result-tags span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.testimonials-carousel {
  margin-top: 36px;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-control {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(24, 215, 255, 0.4);
  background: rgba(24, 215, 255, 0.08);
}

.testimonial-control:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.testimonials-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-grid {
  display: flex;
  gap: 18px;
  margin-top: 0;
}

.testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 100%;
  scroll-snap-align: start;
}

.testimonial-card h3 {
  margin-top: 22px;
}

.rating {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 215, 255, 0.08);
  border: 1px solid rgba(24, 215, 255, 0.18);
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.testimonial-card span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.faq-item.active {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-weight: 700;
  font-size: 1.04rem;
}

.faq-symbol {
  position: relative;
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.faq-symbol::before,
.faq-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-answer {
  margin-top: 16px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.contact {
  padding-bottom: 82px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  padding: 26px;
  border-radius: 32px;
  margin-top: 18px;
  background:
    linear-gradient(180deg, rgba(7, 15, 28, 0.95), rgba(6, 11, 21, 0.92)),
    linear-gradient(135deg, rgba(24, 215, 255, 0.08), transparent 45%);
}

.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted-strong);
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-points div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-points span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-points a,
.contact-points strong {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.contact-form {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(4, 10, 20, 0.74);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f8197;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(24, 215, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(24, 215, 255, 0.08);
  background: rgba(4, 10, 20, 0.9);
}

.full-width {
  margin-top: 16px;
}

.submit-btn {
  margin-top: 22px;
  width: 100%;
}

.form-footnote,
.form-status {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.form-footnote {
  color: var(--muted);
}

.form-status {
  color: var(--accent);
  min-height: 24px;
}

.legal-page {
  padding: 56px 0 72px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.legal-intro {
  margin: 0;
  max-width: 68ch;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 215, 255, 0.14);
  background: rgba(24, 215, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.legal-grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.legal-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(24, 215, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(9, 18, 33, 0.92), rgba(5, 11, 21, 0.9));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.legal-card h2 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-card li {
  color: var(--muted-strong);
}

.legal-card p {
  margin: 14px 0 0;
}

.legal-card a {
  color: var(--accent);
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: #8ef0ff;
}

.policy-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.policy-list li + li {
  margin-top: 10px;
}

.legal-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(24, 215, 255, 0.12);
  background: rgba(24, 215, 255, 0.05);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

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

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

@media (max-width: 1140px) {
  .about-intro {
    margin-bottom: 44px;
    padding: 30px;
  }

  .about-intro-copy h2 {
    max-width: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

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

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

  .result-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 920px) {
  .page-shell {
    padding-top: 12px;
  }

  .site-header {
    width: calc(100vw - 24px);
    border-radius: 26px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(4, 10, 20, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .starter-offer-shell {
    grid-template-columns: 1fr;
  }

  .starter-offer-copy h2 {
    max-width: none;
  }

  .hero {
    padding-top: 28px;
  }

  .legal-page {
    padding-top: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .hero h1 {
    max-width: none;
  }

  .services-grid,
  .reasons-grid,
  .form-grid,
  .footer-links,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    min-height: 284px;
  }

  .service-card h3 {
    min-height: 3.5rem;
  }

  .service-card p {
    min-height: 4.8rem;
  }

  .about-intro {
    margin-bottom: 32px;
    padding: 22px;
  }

  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-meta {
    display: grid;
  }

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

  .assistant-window {
    padding: 22px;
    border-radius: 28px;
  }

  .assistant-window-head,
  .assistant-form-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .starter-offer-shell {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 28px;
  }

  .starter-offer-copy h2 {
    max-width: none;
  }

  .starter-offer-actions {
    display: grid;
  }

  .clients-served-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients-served-copy {
    padding: 0;
  }

  .clients-served-copy h2 {
    max-width: none;
  }

  .clients-served-primary {
    min-height: 0;
    padding: 22px;
    border-radius: 28px;
  }

  .clients-served-secondary {
    grid-template-columns: 1fr;
  }

  .assistant-message {
    max-width: 100%;
  }

  .assistant-submit {
    width: 100%;
  }

  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .result-card {
    flex-basis: 100%;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .about,
  .assistant,
  .starter-offer,
  .services,
  .clients-served,
  .reasons,
  .process,
  .results,
  .results-lead,
  .testimonials,
  .faq,
  .contact {
    padding-top: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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