:root {
  --bg: #09111f;
  --panel: rgba(10, 19, 35, 0.78);
  --panel-strong: rgba(8, 15, 28, 0.92);
  --line: rgba(158, 181, 214, 0.17);
  --text: #f4f7fb;
  --muted: #96a6be;
  --accent: #86f0c7;
  --accent-strong: #39c1af;
  --accent-warm: #ffc978;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --glow: 0 0 0 1px rgba(143, 245, 212, 0.15), 0 0 40px rgba(57, 193, 175, 0.18), 0 0 90px rgba(255, 201, 120, 0.08);
  --glow-strong: 0 0 0 1px rgba(143, 245, 212, 0.24), 0 0 34px rgba(57, 193, 175, 0.24), 0 0 110px rgba(255, 201, 120, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(57, 193, 175, 0.2), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 201, 120, 0.14), transparent 24%),
    linear-gradient(180deg, #09111f 0%, #0f1728 48%, #0b1322 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  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: 34px 34px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 86%);
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(134, 240, 199, 0.12), transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(255, 201, 120, 0.12), transparent 16%);
  filter: blur(46px);
  animation: ambientShift 18s ease-in-out infinite alternate;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: var(--content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #05101c;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 14px 35px rgba(134, 240, 199, 0.25);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small,
.hero-text,
.section-copy,
.service-card p,
.showcase-copy p,
.benefit-card p,
.contact-copy p,
.contact-note,
.footer {
  color: var(--muted);
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #d6e0ef;
}

.nav a:hover,
.button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav-toggle,
.button {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.button-primary {
  color: #06101d;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 18px 40px rgba(134, 240, 199, 0.18);
}

.button-primary:hover {
  box-shadow: 0 0 24px rgba(134, 240, 199, 0.35), 0 0 54px rgba(255, 201, 120, 0.16);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
}

.hero,
.services-section,
.visuals-section,
.benefits-section,
.live-contact,
.contact-section {
  margin-top: 26px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.terminal-card,
.stats-strip article,
.service-card,
.showcase-card,
.benefit-card,
.live-contact-panel,
.contact-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-copy,
.terminal-card,
.stats-strip article,
.service-card,
.showcase-card,
.benefit-card,
.live-contact-panel,
.contact-card,
.terminal-stats article,
.contact-item {
  isolation: isolate;
}

.hero-copy::before,
.terminal-card::before,
.stats-strip article::before,
.service-card::before,
.showcase-card::before,
.benefit-card::before,
.live-contact-panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(143, 245, 212, 0.12), transparent 26%, transparent 72%, rgba(255, 201, 120, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
  opacity: 0.75;
  padding: 1px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(134, 240, 199, 0.22), transparent 26%),
    radial-gradient(circle at calc(var(--glow-x, 50%) + 10%) calc(var(--glow-y, 50%) + 2%), rgba(255, 201, 120, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(134, 240, 199, 0.08), transparent 42%, rgba(255, 201, 120, 0.08));
  transition: opacity 0.28s ease;
}

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

.glow-card.is-hovered::after {
  opacity: 1;
}

.hero-copy,
.terminal-card,
.live-contact-panel,
.contact-card {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.hero-badge,
.project-tag,
.service-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.live-contact-copy h2,
.contact-copy h2 {
  margin: 12px 0 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 10.5ch;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 58ch;
  line-height: 1.72;
}

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

.terminal-card {
  display: grid;
  gap: 18px;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce6f5;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff8a7a; }
.dot-yellow { background: #f4c266; }
.dot-green { background: #76e0be; }

.terminal-body {
  padding: 18px;
  border-radius: 22px;
  background: rgba(4, 9, 18, 0.72);
  border: 1px solid rgba(158, 181, 214, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.terminal-body p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: #dce6f5;
}

.terminal-body p:last-child {
  margin-bottom: 0;
}

.prompt {
  color: var(--accent);
  font-weight: 700;
}

.terminal-response {
  color: #b7c6da;
}

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

.terminal-stats article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.terminal-stats strong {
  display: block;
  margin-bottom: 6px;
}

.terminal-stats span {
  color: var(--muted);
  line-height: 1.5;
}

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

.stats-strip article {
  border-radius: 22px;
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
}

.stats-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading h2,
.live-contact-copy h2,
.contact-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.section-copy {
  margin: 0;
  max-width: 62ch;
  line-height: 1.72;
}

.services-grid,
.showcase-grid,
.benefits-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.benefit-card {
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.showcase-card:hover,
.benefit-card:hover,
.stats-strip article:hover,
.terminal-stats article:hover,
.contact-item:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 245, 212, 0.28);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(143, 245, 212, 0.18),
    0 0 30px rgba(57, 193, 175, 0.18);
}

.service-card:hover h3,
.showcase-card:hover h3,
.benefit-card:hover h3,
.stats-strip article:hover strong,
.terminal-stats article:hover strong,
.contact-item:hover strong {
  text-shadow:
    0 0 12px rgba(134, 240, 199, 0.35),
    0 0 28px rgba(255, 201, 120, 0.12);
}

.service-card h3,
.showcase-copy h3,
.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}

.service-card p,
.benefit-card p {
  margin: 0;
  line-height: 1.65;
}

.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #dce6f5;
  line-height: 1.7;
}

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

.showcase-card {
  display: grid;
  gap: 0;
  border-radius: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.showcase-card-featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.showcase-media {
  position: relative;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.showcase-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(143, 245, 212, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 24px rgba(57, 193, 175, 0.14);
  pointer-events: none;
  z-index: 2;
}

.showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.showcase-copy p {
  margin: 0;
  line-height: 1.65;
}

.showcase-meta,
.showcase-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.live-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 22px;
  align-items: start;
}

.live-contact-copy {
  padding: 24px 0;
}

.live-contact-copy p {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.72;
}

.live-contact-form,
.chat-thread {
  display: grid;
  gap: 16px;
}

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

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

.live-contact-form span,
.chat-thread-head small {
  color: var(--muted);
}

.live-contact-form input,
.live-contact-form textarea,
.chat-thread-send input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.live-contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.live-contact-form input:focus,
.live-contact-form textarea:focus,
.chat-thread-send input:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(57, 193, 175, 0.12);
}

.live-contact-actions,
.chat-thread-send,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

.chat-thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-thread-head strong {
  display: block;
}

.chat-thread-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding: 6px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(4, 9, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
  border: 1px solid var(--line);
}

.chat-bubble.client {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(134, 240, 199, 0.18), rgba(255, 201, 120, 0.12));
}

.chat-bubble.admin {
  background: rgba(255, 255, 255, 0.05);
}

.chat-bubble.system {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}

.support-bubble {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: #06101d;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(134, 240, 199, 0.22);
  display: grid;
  gap: 2px;
  cursor: pointer;
  font-weight: 800;
}

.support-bubble small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 24px));
  padding: 16px;
  border-radius: 28px;
  background: rgba(10, 19, 35, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--glow-strong);
  backdrop-filter: blur(20px);
  display: none;
  gap: 14px;
}

.support-panel.active {
  display: grid;
}

.support-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.support-head strong {
  display: block;
  margin-bottom: 4px;
}

.support-head small {
  color: var(--muted);
  line-height: 1.45;
}

.support-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.support-form,
.support-chat {
  display: grid;
  gap: 12px;
}

.support-form input,
.support-form textarea,
.support-send input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.support-form textarea {
  min-height: 110px;
  resize: vertical;
}

.support-form input:focus,
.support-form textarea:focus,
.support-send input:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(57, 193, 175, 0.12);
}

.support-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding: 6px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(4, 9, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
  border: 1px solid var(--line);
}

.support-message.client {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(134, 240, 199, 0.18), rgba(255, 201, 120, 0.12));
}

.support-message.admin {
  background: rgba(255, 255, 255, 0.05);
}

.support-message.system {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.support-send {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  padding-bottom: 54px;
}

.contact-copy {
  padding: 24px 0;
}

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

.contact-item {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  color: var(--accent-warm);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover,
.nav a:hover,
.contact-item a:hover {
  color: var(--accent);
}

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

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

@keyframes ambientShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -1.5%, 0) scale(1.05);
  }
}

@media (max-width: 1040px) {
  .hero,
  .live-contact,
  .contact-section,
  .services-grid,
  .showcase-grid,
  .benefits-grid,
  .showcase-card-featured {
    grid-template-columns: 1fr;
  }

  .stats-strip,
  .terminal-stats,
  .live-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1,
  .section-heading h2,
  .live-contact-copy h2,
  .contact-copy h2 {
    max-width: none;
  }

  .showcase-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    position: sticky;
    top: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0 12px;
    background: rgba(7, 14, 25, 0.72);
    border-bottom: 1px solid rgba(158, 181, 214, 0.1);
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 48px;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(7, 14, 25, 0.94);
  }

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

  .nav a,
  .button,
  .live-contact-actions .button,
  .chat-thread-send .button,
  .chat-thread-send input {
    width: 100%;
  }

  .hero-copy,
  .terminal-card,
  .service-card,
  .showcase-card,
  .benefit-card,
  .live-contact-panel,
  .contact-card,
  .stats-strip article {
    border-radius: 24px;
    padding: 20px;
  }

  .brand {
    max-width: calc(100% - 92px);
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.84rem;
  }

  .hero-badge,
  .project-tag,
  .service-kicker {
    white-space: normal;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
    max-width: none;
  }

  .stats-strip,
  .terminal-stats,
  .live-contact-grid {
    grid-template-columns: 1fr;
  }

  .terminal-body {
    padding: 16px;
  }

  .terminal-body p {
    font-size: 0.95rem;
  }

  .showcase-media {
    min-height: 180px;
    aspect-ratio: 16 / 11;
  }

  .showcase-copy,
  .live-contact-copy,
  .contact-copy {
    gap: 10px;
  }

  .live-contact-form textarea {
    min-height: 140px;
  }

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

  .contact-item strong {
    line-height: 1.45;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-widget {
    right: 12px;
    bottom: 12px;
  }

  .support-panel {
    right: 0;
    bottom: 64px;
    width: min(340px, calc(100vw - 24px));
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 14px, 1180px);
  }

  .topbar {
    padding: 12px 0 10px;
  }

  .hero,
  .services-section,
  .visuals-section,
  .benefits-section,
  .live-contact,
  .contact-section {
    margin-top: 18px;
  }

  .hero-copy,
  .terminal-card,
  .service-card,
  .showcase-card,
  .benefit-card,
  .live-contact-panel,
  .contact-card,
  .stats-strip article {
    border-radius: 20px;
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.2rem);
    line-height: 1;
  }

  .hero-text,
  .section-copy,
  .live-contact-copy p,
  .contact-copy p,
  .service-card p,
  .benefit-card p,
  .showcase-copy p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .section-heading h2,
  .live-contact-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .button,
  .nav a,
  .chat-thread-send input {
    min-height: 50px;
  }

  .service-card ul {
    padding-left: 16px;
    font-size: 0.95rem;
  }

  .showcase-media {
    min-height: 160px;
    aspect-ratio: 4 / 3;
  }

  .chat-bubble {
    max-width: 100%;
    padding: 12px 14px;
  }

  .support-bubble {
    padding: 12px 14px;
  }

  .support-bubble span {
    font-size: 0.95rem;
  }

  .support-bubble small {
    font-size: 0.68rem;
  }

  .support-panel {
    width: min(100vw - 12px, 340px);
    padding: 14px;
    border-radius: 22px;
  }

  .support-send {
    grid-template-columns: 1fr;
  }

  .support-message {
    max-width: 100%;
    padding: 12px 14px;
  }
}

/* === AVAILABILITY BADGE === */
.availability-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(134, 240, 199, 0.3);
  background: rgba(134, 240, 199, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

.availability-badge.unavailable {
  border-color: rgba(255, 100, 100, 0.3);
  background: rgba(255, 100, 100, 0.08);
  color: #ff8080;
}

.availability-badge.unavailable .availability-dot {
  background: #ff8080;
  animation: none;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* === PROCESS SECTION === */
.process-section,
.testimonials-section,
.faq-section {
  margin-top: 26px;
}

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

.process-step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 245, 212, 0.28);
  box-shadow: 0 24px 56px rgba(0,0,0,0.34), 0 0 0 1px rgba(143,245,212,0.18), 0 0 30px rgba(57,193,175,0.18);
}

.process-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: "Instrument Serif", serif;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 18px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 245, 212, 0.28);
  box-shadow: 0 24px 56px rgba(0,0,0,0.34), 0 0 0 1px rgba(143,245,212,0.18), 0 0 30px rgba(57,193,175,0.18);
}

.stars {
  color: var(--accent-warm);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-style: italic;
  font-size: 0.97rem;
}

.testimonial-author {
  display: grid;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* === FAQ === */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(134, 240, 199, 0.28);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.72;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(160px);
  z-index: 50;
  width: min(660px, calc(100vw - 32px));
  background: rgba(8, 16, 30, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow), var(--glow-strong);
  backdrop-filter: blur(24px);
  transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .button {
  padding: 10px 16px;
  font-size: 0.87rem;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .process-steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-steps,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 12px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .button {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .process-steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
