:root {
  --bg: #07111e;
  --bg-elevated: #0c1726;
  --surface: rgba(13, 28, 48, 0.72);
  --surface-strong: rgba(16, 35, 59, 0.9);
  --border: rgba(155, 194, 255, 0.18);
  --border-strong: rgba(39, 224, 255, 0.36);
  --text: #f4f8ff;
  --text-muted: #b7c4d9;
  --text-soft: #8ea2bd;
  --cyan: #27e0ff;
  --blue: #3584ff;
  --violet: #a78bfa;
  --success: #6ee7b7;
  --danger: #ff7a9a;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 17, 30, 0.94), rgba(7, 17, 30, 1)),
    linear-gradient(135deg, rgba(39, 224, 255, 0.13), transparent 34%),
    linear-gradient(225deg, rgba(167, 139, 250, 0.12), transparent 36%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--cyan);
  color: #04101d;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 30, 0.76);
  border-color: rgba(155, 194, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(39, 224, 255, 0.22), rgba(167, 139, 250, 0.2)),
    rgba(255, 255, 255, 0.04);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(39, 224, 255, 0.18);
}

.brand-name {
  font-size: 0.98rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu .mobile-menu-cta {
  display: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 54%, var(--violet));
  color: #04101d;
  box-shadow: 0 16px 34px rgba(39, 224, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(39, 224, 255, 0.3);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--border-strong);
  background: rgba(39, 224, 255, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.section {
  padding: 104px 0;
}

.section-pattern {
  position: relative;
  overflow: hidden;
}

.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(39, 224, 255, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(167, 139, 250, 0.08), transparent 38%);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 74px 0 92px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.8);
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 3.55rem;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

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

.hero-subtitle {
  max-width: 730px;
  margin-bottom: 30px;
  font-size: 1.12rem;
}

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

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-list span,
.tech-cloud span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-weight: 700;
}

.badge-list span {
  padding: 9px 12px;
  font-size: 0.88rem;
}

.hero-visual {
  min-height: 520px;
}

.visual-shell {
  position: relative;
  height: 520px;
  border: 1px solid rgba(39, 224, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(39, 224, 255, 0.1), rgba(167, 139, 250, 0.09)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(39, 224, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 224, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.dashboard-card,
.floating-card,
.service-card,
.benefit-card,
.why-card,
.case-card,
.timeline-step,
.faq-item,
.contact-form,
.cta-panel,
.tab-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.dashboard-card {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 58px;
  z-index: 2;
  padding: 22px;
}

.card-header,
.metric-grid,
.form-actions,
.footer-bottom {
  display: flex;
  align-items: center;
}

.card-header {
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-header span {
  color: var(--text-muted);
  font-weight: 700;
}

.card-header strong {
  padding: 4px 8px;
  border-radius: var(--radius);
  background: rgba(110, 231, 183, 0.12);
  color: var(--success);
  font-size: 0.78rem;
}

.metric-grid {
  gap: 12px;
  margin-bottom: 20px;
}

.metric-grid div {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.metric-grid span {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.metric-grid strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  height: 110px;
}

.signal-bars span {
  min-height: 20px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 0 18px rgba(39, 224, 255, 0.2);
  animation: pulseBar 2.8s ease-in-out infinite;
}

.signal-bars span:nth-child(even) {
  animation-delay: 500ms;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 214px;
  padding: 14px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--text-muted);
}

.float-top {
  top: 58px;
  left: 42px;
  animation: floatPanel 6s ease-in-out infinite;
}

.float-bottom {
  right: 40px;
  bottom: 32px;
  animation: floatPanel 6s ease-in-out infinite reverse;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(39, 224, 255, 0.18), rgba(167, 139, 250, 0.2));
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

.network-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.network-lines path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 2;
  stroke-dasharray: 7 10;
  opacity: 0.7;
  animation: lineFlow 9s linear infinite;
}

.network-lines circle {
  fill: #07111e;
  stroke: var(--cyan);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(39, 224, 255, 0.62));
}

.metrics-strip {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

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

.metrics-grid span {
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 108px;
}

.section-copy p,
.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.benefit-grid,
.cards-grid,
.cases-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card,
.service-card,
.why-card,
.case-card,
.timeline-step {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-card,
.service-card {
  padding: 22px;
}

.benefit-card:hover,
.service-card:hover,
.why-card:hover,
.case-card:hover,
.timeline-step:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(39, 224, 255, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(39, 224, 255, 0.12), rgba(167, 139, 250, 0.14));
  color: var(--cyan);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.icon-box path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.service-card p,
.benefit-card p,
.why-card p,
.timeline-step p {
  margin-bottom: 0;
}

.service-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: stretch;
}

.tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tab-button {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-muted);
  text-align: left;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.is-active {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(39, 224, 255, 0.09);
  outline: none;
}

.tab-button.is-active {
  transform: translateX(4px);
}

.tab-panel {
  min-height: 100%;
  padding: 30px;
}

.tab-panel h3 {
  font-size: 1.45rem;
}

.tab-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.why-grid {
  grid-template-columns: repeat(5, 1fr);
}

.why-card {
  padding: 20px;
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  opacity: 0.6;
}

.timeline-step {
  position: relative;
  padding: 18px;
}

.timeline-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #04101d;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.case-card {
  padding: 22px;
}

.case-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.case-card dt {
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 800;
}

.case-card dd {
  margin: 0;
  color: var(--text-muted);
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-cloud span {
  padding: 12px 14px;
}

.cta-section {
  padding: 70px 0;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(39, 224, 255, 0.14), rgba(167, 139, 250, 0.13)),
    var(--surface);
}

.cta-panel h2 {
  margin-bottom: 10px;
}

.cta-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  min-height: 58px;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  color: var(--cyan);
}

.contact-form {
  padding: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(155, 194, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(3, 10, 20, 0.46);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 136px;
  padding: 12px 14px;
}

input::placeholder,
textarea::placeholder {
  color: #7185a0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(39, 224, 255, 0.12);
  background: rgba(3, 10, 20, 0.68);
}

.field-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 122, 154, 0.11);
}

.form-status {
  min-height: 24px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.form-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(3, 9, 18, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
  gap: 34px;
}

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

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.96rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--text-muted);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.footer-bottom {
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(155, 194, 255, 0.12);
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

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

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes lineFlow {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes pulseBar {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

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

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

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

@media (max-width: 1080px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-layout,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .contact-copy {
    position: static;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-shell {
    height: 440px;
  }

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

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

  .timeline::before {
    display: none;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

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

  .tab-button.is-active {
    transform: none;
  }

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

@media (max-width: 840px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - var(--header-height) - 24px);
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(7, 17, 30, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-menu .mobile-menu-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    color: #04101d;
    background: linear-gradient(135deg, var(--cyan), var(--blue) 54%, var(--violet));
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 54px;
  }

  .hero-layout {
    gap: 34px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .metrics-grid,
  .benefit-grid,
  .services-grid,
  .cases-grid,
  .footer-grid,
  .form-grid,
  .why-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .tab-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .tab-button {
    min-width: 210px;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-name {
    max-width: 188px;
    white-space: normal;
    line-height: 1.1;
    font-size: 0.9rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-subtitle {
    margin-bottom: 20px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .badge-list span {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 230px;
  }

  .visual-shell {
    height: 230px;
  }

  .dashboard-card {
    left: 18px;
    right: 18px;
    bottom: 16px;
    padding: 14px;
  }

  .signal-bars {
    height: 42px;
  }

  .floating-card {
    width: 184px;
    padding: 12px;
  }

  .float-top {
    display: none;
  }

  .float-bottom {
    right: 18px;
    bottom: 12px;
    display: none;
  }
}
