:root {
  --bg-dark: #070815;
  --bg-light: #0f1022;
  --bg-card: rgba(24, 26, 47, 0.82);
  --bg-soft: rgba(13, 16, 40, 0.55);
  --accent: #7468ff;
  --accent-alt: #45d6ff;
  --accent-gradient: linear-gradient(135deg, #6c5cff 0%, #41e0ff 100%);
  --text-primary: #f5f6ff;
  --text-secondary: rgba(243, 245, 255, 0.78);
  --text-muted: rgba(189, 194, 237, 0.65);
  --border: rgba(151, 155, 205, 0.22);
  --shadow-card: 0 24px 60px rgba(10, 12, 32, 0.48);
  --container: min(1180px, calc(92vw));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(72px, 12vw, 112px);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #070815;
  background-image: radial-gradient(
      circle at top right,
      rgba(108, 92, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(65, 224, 255, 0.14),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #0b0d28 0%,
      #080a21 38%,
      #06081a 72%,
      #040511 100%
    );
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n' x='0' y='0' width='1' height='1'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='4' type='fractalNoise' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: soft-light;
  opacity: 0.12;
  z-index: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-alt);
  outline-offset: 3px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 21, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.3s ease;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(7, 8, 21, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

nav.nav-open + .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .nav-backdrop {
    display: none;
  }
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.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;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 42, 0.78);
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(18, 20, 42, 0.92);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links > a,
.nav-links > div {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.dropdown:hover .dropdown-toggle::after,
.dropdown:focus-within .dropdown-toggle::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  cursor: pointer;
  background: transparent;
  border: none;
  font: inherit;
  padding: 0;
}

.dropdown-toggle svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-toggle svg,
.dropdown:focus-within .dropdown-toggle svg,
.dropdown.is-open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(14, 16, 35, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(6, 8, 20, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  pointer-events: auto;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(108, 92, 255, 0.18);
  color: #ffffff;
}

header.hero {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(78px, 12vw, 120px) 0 clamp(64px, 10vw, 110px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -10%;
  width: clamp(260px, 32vw, 420px);
  height: clamp(260px, 32vw, 420px);
  background: radial-gradient(
    circle,
    rgba(108, 92, 255, 0.56),
    transparent 70%
  );
  filter: blur(38px);
  z-index: -1;
}

@media (max-width: 1200px) {
  .hero::after {
    right: 0;
    width: clamp(200px, 48vw, 360px);
    height: clamp(200px, 48vw, 360px);
  }
}

@media (max-width: 768px) {
  .hero::after {
    top: -120px;
    width: clamp(180px, 70vw, 280px);
    height: clamp(180px, 70vw, 280px);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(108, 92, 255, 0.18);
  border: 1px solid rgba(108, 92, 255, 0.32);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  color: var(--text-primary);
  hyphens: manual;
  word-break: normal;
  text-wrap: balance;
}

.hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.lead {
  margin-bottom: 28px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid lightskyblue;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.btn-primary {
  position: relative;
  background: var(--accent-gradient);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #070815;
  box-shadow: 0 5px 40px rgba(80, 96, 255, 0.38),
    0 0 32px rgba(65, 214, 255, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 24px 54px rgba(80, 96, 255, 0.45),
    0 0 38px rgba(69, 214, 255, 0.42);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 40px rgba(8, 12, 30, 0.38);
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -50% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(108, 92, 255, 0.22),
    transparent 70%
  );
  filter: blur(25px);
  z-index: -1;
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.hero-card p {
  margin: 0 0 22px;
  color: var(--text-secondary);
}

.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 10px;
}

section {
  position: relative;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(108, 92, 255, 0.16);
  border: 1px solid rgba(108, 92, 255, 0.28);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 18px;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
}

.three-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.info-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(12, 14, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(6, 8, 20, 0.35);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.info-card p {
  margin: 0;
  color: var(--text-secondary);
}

.callout {
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: 22px;
  background: rgba(108, 92, 255, 0.16);
  border: 1px solid rgba(108, 92, 255, 0.32);
  font-size: 1.08rem;
  font-weight: 600;
  color: #ffffff;
  max-width: 720px;
}

.vertical-track {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 32px;
}

.vertical-track::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 12px;
  width: 2px;
  background: rgba(108, 92, 255, 0.4);
}

.track-item {
  position: relative;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(12, 14, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.track-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 6px rgba(108, 92, 255, 0.18);
}

.track-item strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.track-item span {
  color: var(--text-secondary);
}

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

blockquote {
  display: inline-block;
  margin: 36px 0 0;
  padding: 24px clamp(20px, 5vw, 32px);
  border-left: 3px solid rgba(108, 92, 255, 0.65);
  background: rgba(17, 29, 70, 0.78);
  border-radius: 0 18px 18px 0;
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  font-style: italic;
  color: var(--text-secondary);
  width: fit-content;
  max-width: 100%;
  text-wrap: balance;
  margin-right: auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cases-title-break {
  display: none;
}

.cases-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(12, 14, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(6, 8, 20, 0.32);
}

.cases-card h3 {
  font-size: 1.12rem;
  margin-bottom: 16px;
}

.cases-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 680px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(12, 14, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover,
.audience-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 255, 0.6);
  box-shadow: 0 22px 48px rgba(6, 8, 20, 0.4);
  outline: none;
}

.audience-card strong {
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  color: var(--text-secondary);
  flex: 1;
}

.audience-card span {
  color: var(--accent-alt);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.team-card {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 26px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(
      158deg,
      rgba(27, 33, 70, 0.95) 0%,
      rgba(16, 20, 46, 0.92) 48%,
      rgba(9, 12, 30, 0.9) 100%
    ),
    linear-gradient(185deg, rgba(66, 92, 166, 0.38), transparent 68%);
  border: 1px solid rgba(134, 196, 255, 0.22);
  box-shadow: 0 24px 62px rgba(5, 8, 26, 0.48);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.3s ease;
}

.team-card::before,
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.team-card::before {
  background: radial-gradient(circle at 18% 0%, rgba(120, 104, 255, 0.28), transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.team-card::after {
  background: radial-gradient(circle at 82% 115%, rgba(64, 218, 255, 0.16), transparent 58%);
  mix-blend-mode: soft-light;
}

.team-card:hover,
.team-card:focus-within,
.team-card.is-hovered {
  transform: translateY(-6px);
  border-color: rgba(148, 212, 255, 0.32);
  box-shadow: 0 32px 76px rgba(4, 7, 24, 0.56);
}

.team-card > * {
  position: relative;
  z-index: 1;
}

.avatar {
  width: 128px;
  height: 128px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(108, 92, 255, 0.48), rgba(69, 214, 255, 0.28));
  border: 1px solid rgba(156, 206, 255, 0.28);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: 0 22px 54px rgba(4, 6, 24, 0.5);
}

.avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.22), transparent 70%),
    radial-gradient(circle at 48% 120%, rgba(6, 8, 22, 0.35), transparent 72%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(118, 106, 255, 0.58), rgba(54, 196, 255, 0.42));
  mix-blend-mode: color;
  opacity: 0.72;
  pointer-events: none;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.08) brightness(1.04);
}

.team-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
}

.team-card p {
  margin: 0 auto;
  max-width: 24ch;
  color: rgba(223, 228, 255, 0.82);
}

.cta-final {
  width: var(--container);
  margin: 0 auto clamp(80px, 12vw, 120px);
  padding: clamp(44px, 7vw, 72px) clamp(20px, 7vw, 52px);
  border-radius: 28px;
  background: radial-gradient(
      circle at top right,
      rgba(108, 92, 255, 0.28),
      transparent 70%
    ),
    rgba(12, 14, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(6, 8, 20, 0.45);
}

.cta-final h2 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin: 0 auto 18px;
  max-width: min(26ch, 100%);
  text-align: center;
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.cta-final p {
  margin: 0 auto 26px;
  max-width: 640px;
  text-align: center;
  color: var(--text-secondary);
}

.cta-final .btn-group {
  justify-content: center;
}

.contact-line {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

footer {
  margin-top: auto;
  background: rgba(6, 8, 18, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 600px) {
  .cta-final {
    padding: clamp(32px, 11vw, 52px) clamp(16px, 9vw, 36px);
  }

  .cta-final h2 {
    font-size: clamp(1.25rem, 5.4vw, 2.1rem);
    hyphens: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  .cta-final {
    padding: clamp(28px, 12vw, 48px) clamp(14px, 10vw, 28px);
  }

  .cta-final h2 {
    font-size: clamp(1.18rem, 7vw, 1.8rem);
    max-width: 100%;
  }
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-secondary);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

footer small {
  color: var(--text-muted);
}

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

.faq-list details {
  padding: 18px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.faq-list details:hover {
  border-color: rgba(116, 104, 255, 0.6);
  transform: translateY(-2px);
}

.faq-list summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-inner {
    position: relative;
    gap: 16px;
  }

  header.hero {
    padding: clamp(64px, 12vw, 96px) 0 clamp(52px, 10vw, 80px);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .section {
    padding: clamp(56px, 12vw, 80px) 0;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(9, 11, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 46px rgba(6, 8, 20, 0.42);
  }

  nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links > a,
  .nav-links > div {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links > a:last-child,
  .nav-links > div:last-child {
    border-bottom: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

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

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 6px;
    display: none;
    width: 100%;
  }

  .dropdown.is-open .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dropdown-menu a {
    padding: 10px 0;
    border-radius: 10px;
    background: rgba(16, 18, 36, 0.65);
  }

  .dropdown-menu a:hover {
    background: rgba(108, 92, 255, 0.18);
  }

  nav.nav-open .nav-toggle-bar:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
  }

  nav.nav-open .nav-toggle-bar:nth-of-type(2) {
    opacity: 0;
  }

  nav.nav-open .nav-toggle-bar:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  body {
    line-height: 1.7;
  }

  .nav-inner {
    padding: 16px 0;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .lead {
    font-size: 1rem;
  }

  .vertical-track {
    padding-left: 24px;
  }

  .vertical-track::before {
    left: 12px;
  }

  .track-item {
    padding: 18px 20px;
  }

  .track-item::before {
    left: -18px;
  }

  .grid-3,
  .three-cards,
  .cases-grid,
  .audience-grid,
  .team-grid {
    gap: 18px;
  }

  blockquote {
    margin-top: 28px;
    border-radius: 0 12px 12px 0;
  }

  .cta-final {
    padding: clamp(40px, 10vw, 56px);
  }

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

  .footer-links,
  .footer-menu {
    align-items: center;
  }

  .faq-list {
    margin-top: 24px;
    gap: 14px;
  }

  .faq-list details {
    padding: 16px 18px;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .cases-title-break {
    display: block;
  }
}

@media (max-width: 540px) {
  header.hero {
    padding: 56px 0 48px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .section-header {
    margin-bottom: 28px;
  }

  blockquote {
    padding: 20px;
    font-size: 1rem;
  }

  .contact-line {
    flex-direction: column;
    gap: 10px;
  }
}

.status-page {
  width: var(--container);
  margin: clamp(36px, 8vw, 50px) auto;
  padding: clamp(32px, 6vw, 64px);
  background: rgba(18, 20, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.status-page::before {
  content: "";
  position: absolute;
  inset: -40% -30% 40% 30%;
  background: radial-gradient(circle at top, rgba(116, 104, 255, 0.22), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.status-page-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  color: var(--text-secondary);
}

.status-page h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-primary);
}

.status-page p {
  max-width: min(600px, 90%);
  margin: 0;
}

.status-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(116, 104, 255, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.status-page-actions .btn-primary,
.status-page-actions .btn-secondary {
  min-width: 180px;
}

@media (max-width: 600px) {
  .status-page {
    margin:clamp(30px, 6vw, 80px) auto;
    padding: clamp(28px, 8vw, 48px);
    border-radius: 24px;
  }

  .status-page-actions {
    flex-direction: column;
  }

  .status-page-actions .btn-primary,
  .status-page-actions .btn-secondary {
    width: 100%;
  }
}

