:root {
  --bg: #0a0f1a;
  --bg-soft: #121b2d;
  --surface: rgba(16, 24, 40, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --text: #e9f2ff;
  --muted: #9db0ca;
  --accent: #5ef7d8;
  --accent-2: #ffc56d;
  --danger: #ff7070;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(3, 8, 19, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(94, 247, 216, 0.15), transparent 45%),
    radial-gradient(circle at 88% 7%, rgba(255, 197, 109, 0.16), transparent 42%),
    linear-gradient(160deg, #090d17 0%, #0e1729 52%, #070b14 100%);
  min-height: 100vh;
}

body.intro-lock {
  overflow: hidden;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #04070f;
  display: grid;
  place-items: center;
  isolation: isolate;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.intro-welcome {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.88), rgba(3, 7, 14, 0.58));
  transition: opacity 0.35s ease;
}

.intro-kicker {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
  animation: introPulse 1.7s ease-in-out infinite;
}

.intro-welcome h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  text-wrap: balance;
}

.intro-welcome p {
  margin: 0;
  color: #bed0ea;
  font-size: 0.92rem;
  animation: introDots 1.25s steps(3, end) infinite;
}

.intro-loader.is-video-playing .intro-welcome {
  opacity: 0;
}

.intro-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0), rgba(2, 5, 11, 0.55));
}

.intro-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  width: min(100vw, 760px);
  height: min(100vh, 100dvh);
  object-fit: cover;
}

.intro-skip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.72);
  color: #e9f2ff;
  font: inherit;
  font-size: 0.84rem;
  padding: 8px 14px;
  cursor: pointer;
}

.intro-skip:hover {
  border-color: rgba(94, 247, 216, 0.7);
}

@keyframes introPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes introDots {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 1;
  }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='4' cy='5' r='1'/%3E%3Ccircle cx='35' cy='20' r='1'/%3E%3Ccircle cx='70' cy='15' r='1'/%3E%3Ccircle cx='130' cy='25' r='1'/%3E%3Ccircle cx='20' cy='70' r='1'/%3E%3Ccircle cx='80' cy='60' r='1'/%3E%3Ccircle cx='120' cy='80' r='1'/%3E%3Ccircle cx='10' cy='120' r='1'/%3E%3Ccircle cx='60' cy='120' r='1'/%3E%3Ccircle cx='100' cy='130' r='1'/%3E%3Ccircle cx='150' cy='140' r='1'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(94, 247, 216, 0.18), rgba(255, 197, 109, 0.05) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.site-header,
.section,
.site-footer,
.marquee-wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 4;
}

.site-header {
  position: sticky;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  padding: 14px 22px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 19, 33, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 50;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 14, 26, 0.9);
  border-color: rgba(94, 247, 216, 0.24);
  box-shadow: 0 10px 26px rgba(3, 8, 19, 0.34);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  display: block;
  width: 160px;
  height: 56px;
  object-fit: cover;
  object-position: center 48%;
}

.main-nav {
  display: flex;
  gap: 24px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a,
.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.site-header .btn-outline {
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(193,53,132,0.15), rgba(253,29,29,0.1), rgba(252,176,69,0.1));
  border-color: rgba(193,53,132,0.45) !important;
  color: #f7a8d0 !important;
}

.nav-instagram:hover {
  background: linear-gradient(135deg, rgba(193,53,132,0.28), rgba(253,29,29,0.18), rgba(252,176,69,0.16));
  border-color: rgba(193,53,132,0.7) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(94, 247, 216, 0.66);
  background: rgba(94, 247, 216, 0.12);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e9f2ff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(3, 7, 14, 0.58);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(86vw, 390px);
  height: 100dvh;
  background:
    radial-gradient(circle at 18% 14%, rgba(94, 247, 216, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(14, 22, 38, 0.97), rgba(7, 13, 24, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: -18px 0 42px rgba(2, 6, 12, 0.45);
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateX(102%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.mobile-menu-head span {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-nav {
  display: grid;
  gap: 8px;
}

.mobile-menu-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  transform: translateX(10px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease, border-color 0.2s ease;
}

.mobile-menu-nav a:hover {
  border-color: rgba(94, 247, 216, 0.5);
}

.mobile-menu-cta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.mobile-menu-cta .btn {
  text-align: center;
  justify-content: center;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
  pointer-events: auto;
}

body.menu-open .mobile-menu-nav a {
  transform: translateX(0);
  opacity: 1;
}

body.menu-open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.06s; }
body.menu-open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.09s; }
body.menu-open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.12s; }
body.menu-open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.15s; }
body.menu-open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.18s; }
body.menu-open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.21s; }
body.menu-open .mobile-menu-nav a:nth-child(7) { transition-delay: 0.24s; }
body.menu-open .mobile-menu-nav a:nth-child(8) { transition-delay: 0.27s; }

.main-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.section {
  margin-top: 78px;
}

.hero {
  --hero-x: 0;
  --hero-y: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 170px);
  padding-top: 30px;
  isolation: isolate;
}

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

.hero::before {
  inset: -10% -5% -10%;
  border-radius: 28px;
  background:
    radial-gradient(circle at calc(50% + (var(--hero-x) * 10%)) calc(40% + (var(--hero-y) * 12%)), rgba(94, 247, 216, 0.28), transparent 45%),
    radial-gradient(circle at calc(30% - (var(--hero-x) * 15%)) calc(70% - (var(--hero-y) * 10%)), rgba(255, 197, 109, 0.24), transparent 50%),
    radial-gradient(circle at calc(80% + (var(--hero-x) * 8%)) calc(50% + (var(--hero-y) * 10%)), rgba(157, 176, 202, 0.18), transparent 40%);
  filter: blur(40px);
  opacity: 0.85;
}

.hero::after {
  inset: 14% 12% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.35;
  transform: translate3d(calc(var(--hero-x) * -18px), calc(var(--hero-y) * -12px), 0);
}

.hero-content,
.hero-panel {
  transition: transform 0.35s ease;
}

.hero-content {
  transform: translate3d(calc(var(--hero-x) * -8px), calc(var(--hero-y) * -6px), 0);
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 1.1rem + 3.4vw, 4.5rem);
  line-height: 1.04;
  margin: 0;
  text-shadow: 0 4px 24px rgba(94, 247, 216, 0.24);
}

.highlight {
  color: var(--accent-2);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.18em;
  background: rgba(255, 197, 109, 0.32);
  z-index: -1;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.hero-checks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}

.hero-checks li {
  position: relative;
  padding-left: 34px;
  color: #dce9fb;
  line-height: 1.58;
}

.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(94, 247, 216, 0.14);
  border: 1px solid rgba(94, 247, 216, 0.36);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-contact-note {
  margin: 16px 0 0;
  color: rgba(233, 242, 255, 0.74);
  font-size: 0.94rem;
}

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.hero-cta .btn {
  position: relative;
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-cta .btn.is-magnetized {
  box-shadow: 0 10px 26px rgba(3, 8, 19, 0.36);
}

.btn-solid {
  background: linear-gradient(96deg, var(--accent) 0%, #6de6ff 100%);
  color: #062226;
}

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

.hero-panel,
.service-card,
.project,
.cta-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}

.hero-panel {
  padding: 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
  transform: translate3d(calc(var(--hero-x) * 10px), calc(var(--hero-y) * 8px), 0);
}

.trust-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 22% 18%, rgba(94, 247, 216, 0.2), transparent 44%),
    radial-gradient(circle at 82% 14%, rgba(255, 197, 109, 0.18), transparent 38%),
    rgba(12, 19, 33, 0.82);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.hero-panel-visual {
  padding: 18px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(11, 18, 31, 0.84), rgba(8, 14, 25, 0.72));
}

.hero-panel-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.34));
}

.hero-proof-card {
  padding: 18px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 12, 22, 0.72);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  z-index: -1;
}

.orb-a {
  width: 200px;
  height: 200px;
  right: -40px;
  top: -40px;
  background: rgba(94, 247, 216, 0.23);
}

.orb-b {
  width: 150px;
  height: 150px;
  left: -30px;
  bottom: -60px;
  background: rgba(255, 112, 112, 0.2);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  margin-bottom: 14px;
  gap: 12px;
}

.panel-head span:first-child {
  color: #dce9fb;
  font-weight: 600;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(94, 247, 216, 0.55);
  animation: pulse 2s infinite;
}

.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stats-grid li {
  padding: 14px;
  border-radius: 14px;
  background: rgba(8, 14, 26, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  color: var(--accent);
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-panel .stats-grid strong {
  font-size: clamp(1rem, 0.7rem + 0.9vw, 1.35rem);
  line-height: 1.18;
}

.trust-panel .stats-grid span {
  line-height: 1.52;
}

.marquee-wrap {
  margin-top: 26px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 13px;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-family: "Syne", sans-serif;
  color: #cbe0ff;
  letter-spacing: 0.03em;
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.6rem);
}

.confidence-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.confidence-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.confidence-card:hover {
  border-color: rgba(94, 247, 216, 0.4);
  box-shadow: 0 16px 40px rgba(94, 247, 216, 0.15), 0 0 20px rgba(94, 247, 216, 0.1);
  transform: translateY(-4px);
}

.confidence-step {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(94, 247, 216, 0.34);
  background: rgba(94, 247, 216, 0.12);
  color: var(--accent);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.confidence-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
}

.confidence-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.cards,
.project-grid,
.reference-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.reference-panorama {
  --rotation: 0deg;
  --radius: clamp(410px, 47vw, 590px);
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 8%, rgba(94, 247, 216, 0.17), transparent 40%),
    radial-gradient(circle at 52% 92%, rgba(255, 197, 109, 0.16), transparent 48%),
    rgba(9, 15, 27, 0.72);
  box-shadow: var(--shadow);
}

.reference-panorama-mask {
  position: relative;
  height: clamp(320px, 40vw, 460px);
  border-radius: 16px;
  overflow: hidden;
  cursor: grab;
  perspective: 1400px;
  touch-action: pan-y;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.07), transparent 58%),
    linear-gradient(180deg, rgba(18, 29, 51, 0.35), rgba(6, 11, 20, 0.85));
}

.reference-panorama-mask::before,
.reference-panorama-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reference-panorama-mask::before {
  background: linear-gradient(90deg, rgba(5, 9, 16, 0.95) 0%, rgba(5, 9, 16, 0) 14%, rgba(5, 9, 16, 0) 86%, rgba(5, 9, 16, 0.95) 100%);
}

.reference-panorama-mask::after {
  background: radial-gradient(ellipse at 50% 50%, rgba(7, 14, 25, 0) 52%, rgba(7, 14, 25, 0.44) 100%);
}

.reference-panorama::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 18px;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 6px
  );
  mix-blend-mode: soft-light;
  opacity: 0.22;
}

.reference-panorama.is-dragging .reference-panorama-mask {
  cursor: grabbing;
}

.reference-ring {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(var(--rotation));
}

.reference-node {
  --step: calc(360deg / var(--total, 11));
  position: absolute;
  left: 50%;
  top: 53%;
  width: clamp(186px, 22vw, 246px);
  min-height: 204px;
  padding: 18px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateY(calc(var(--step) * var(--i))) translateZ(var(--radius));
  opacity: 0.34;
  filter: saturate(0.72) brightness(0.72) blur(0.2px);
  transition: opacity 0.26s ease, filter 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.reference-node.is-front {
  opacity: 1;
  filter: saturate(1.12) brightness(1.05);
  border-color: rgba(94, 247, 216, 0.45);
  box-shadow:
    0 22px 64px rgba(3, 8, 19, 0.64),
    0 0 0 1px rgba(94, 247, 216, 0.34),
    0 0 42px rgba(94, 247, 216, 0.24);
}

.reference-node.is-front .reference-logo {
  border-color: rgba(94, 247, 216, 0.44);
  box-shadow: inset 0 0 0 1px rgba(94, 247, 216, 0.18);
}

.panorama-help {
  margin: 14px 0 2px;
  color: #d7e6ff;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.service-card,
.project,
.reference-card {
  padding: 24px;
  transform-style: preserve-3d;
  will-change: transform;
}

.services-focus {
  position: relative;
}

.service-card {
  transition: border-color 0.26s ease, background-color 0.26s ease, box-shadow 0.26s ease, opacity 0.26s ease, filter 0.26s ease;
}

.services-focus.is-active .service-card {
  opacity: 0.66;
  filter: saturate(0.82);
}

.services-focus.is-active .service-card.is-focus {
  opacity: 1;
  filter: saturate(1.08);
  border-color: rgba(94, 247, 216, 0.42);
  background: rgba(15, 26, 46, 0.88);
  box-shadow:
    0 20px 50px rgba(3, 8, 19, 0.52),
    0 0 0 1px rgba(94, 247, 216, 0.24),
    0 0 34px rgba(94, 247, 216, 0.18);
}

.services-focus.is-active .service-card.is-focus .tag {
  border-color: rgba(94, 247, 216, 0.5);
}

.project {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease !important;
}

.project:hover {
  border-color: rgba(255, 197, 109, 0.45);
  box-shadow: 0 16px 40px rgba(255, 197, 109, 0.15), 0 0 20px rgba(255, 197, 109, 0.1);
  transform: scale(1.02) translateY(-4px);
  background: rgba(18, 28, 48, 0.85);
}

.project-metrics {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.project-metrics span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(8, 14, 26, 0.58);
  color: #d7e6ff;
  font-size: 0.82rem;
}

.project-metrics strong {
  color: var(--accent);
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
}

.project.is-open,
.project:hover,
.project:focus-within {
  border-color: rgba(255, 197, 109, 0.4);
  background: rgba(16, 27, 46, 0.86);
}

.project.is-open .project-metrics,
.project:hover .project-metrics,
.project:focus-within .project-metrics {
  max-height: 132px;
  opacity: 1;
  transform: translateY(0);
}

.reference-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.reference-card span {
  color: #d8e7fd;
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: break-word;
  text-wrap: balance;
}

.reference-logo {
  min-height: 92px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(7, 12, 22, 0.56);
}

.reference-logo.has-logo {
  display: grid;
  place-items: center;
  padding: 12px;
  border-style: solid;
}

.reference-logo img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.02);
}

.reference-card.is-empty {
  opacity: 0.78;
}

.service-card h3,
.project h3 {
  margin-top: 0;
  font-family: "Syne", sans-serif;
}

.service-card p,
.project p,
.timeline li {
  color: var(--muted);
}

.tag,
.badge {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.78rem;
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c3d8f6;
}

.timeline {
  --process-progress: 0;
  margin: 28px 0 0;
  padding: 0 0 0 14px;
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
}

.timeline::before {
  background: rgba(255, 255, 255, 0.14);
}

.timeline::after {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  transform-origin: top;
  transform: scaleY(var(--process-progress));
  transition: transform 0.2s linear;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(9, 15, 28, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(7, 13, 22, 1);
  transform: translateY(-50%);
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.timeline li.is-active {
  border-color: rgba(94, 247, 216, 0.4);
  background: rgba(13, 24, 43, 0.78);
  transform: translateX(4px);
  box-shadow: 0 14px 36px rgba(3, 8, 19, 0.4);
}

.timeline li.is-active::before {
  border-color: rgba(94, 247, 216, 0.8);
  background: rgba(94, 247, 216, 0.9);
  box-shadow: 0 0 0 5px rgba(94, 247, 216, 0.18);
}

.timeline span {
  color: var(--accent-2);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.cta-inner {
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  text-align: left;
  overflow: hidden;
}

/* ── Testimonials ── */

.testimonial-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  border-color: rgba(94, 247, 216, 0.4);
  transform: translateY(-3px);
}

.testimonial-card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
}

.testimonial-card footer strong {
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-card footer span {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ── FAQ ── */

.faq-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 18px 20px;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(94, 247, 216, 0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  font-size: 1.04rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.98rem;
}

.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.8rem);
  margin: 0;
  max-width: 14ch;
}

.cta-copy,
.lead-form-shell {
  display: grid;
  align-content: start;
  gap: 0;
}

.cta-copy > p:not(.kicker) {
  color: var(--muted);
  max-width: 62ch;
  margin: 16px 0 0;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-proof-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cta-proof-list li {
  position: relative;
  padding-left: 34px;
  color: #dce9fb;
  line-height: 1.6;
}

.cta-proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.06em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(94, 247, 216, 0.14);
  border: 1px solid rgba(94, 247, 216, 0.36);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-direct {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 247, 216, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.contact-card strong {
  font-size: 1rem;
}

.contact-card span {
  color: var(--muted);
  line-height: 1.5;
}

.lead-form-intro {
  display: grid;
  gap: 10px;
}

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

.lead-form-intro h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.8rem);
}

.lead-form-intro p,
.cta-note {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.lead-form {
  width: 100%;
  margin: 24px 0 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.82), rgba(8, 14, 27, 0.88));
  text-align: left;
}

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

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

.field span {
  color: #dce9fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(189, 206, 229, 0.64);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(94, 247, 216, 0.7);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(94, 247, 216, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field-full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-form-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-form [data-form-submit] {
  cursor: pointer;
}

.lead-form [data-form-submit]:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  margin: 0;
  min-height: 1.5em;
  color: #d5e4fb;
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #ff9a9a;
}

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

.cta-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
}

.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.7);
  background: rgba(37, 211, 102, 0.2);
}

.btn-whatsapp svg {
  flex: 0 0 auto;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(255, 120, 73, 0.42);
  background:
    linear-gradient(135deg, rgba(131, 58, 180, 0.16), rgba(253, 29, 29, 0.12), rgba(252, 176, 69, 0.16)),
    rgba(255, 255, 255, 0.03);
}

.btn-instagram:hover {
  border-color: rgba(255, 120, 73, 0.68);
  background:
    linear-gradient(135deg, rgba(131, 58, 180, 0.22), rgba(253, 29, 29, 0.16), rgba(252, 176, 69, 0.2)),
    rgba(255, 255, 255, 0.05);
}

.btn-instagram svg {
  flex: 0 0 auto;
}

/* ── Soobot Widget ── */
.soobot-widget {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.soobot-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(94, 247, 216, 0.45);
  background: rgba(10, 18, 34, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(94, 247, 216, 0);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: soobotFloat 3.2s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}

.soobot-btn:hover {
  border-color: rgba(94, 247, 216, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 18px 4px rgba(94, 247, 216, 0.22);
  transform: scale(1.06);
  animation-play-state: paused;
}

.soobot-btn img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

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

.soobot-bubble {
  background: rgba(10, 18, 34, 0.92);
  border: 1px solid rgba(94, 247, 216, 0.38);
  border-radius: 14px 14px 4px 14px;
  color: #e9f2ff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 13px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  animation: soobotBubblePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transition: opacity 0.3s, transform 0.3s;
}

.soobot-bubble.is-hidden {
  opacity: 0;
  transform: scale(0.85) translateY(6px);
  pointer-events: none;
}

@keyframes soobotBubblePop {
  from { opacity: 0; transform: scale(0.7) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.soobot-chat {
  width: min(320px, calc(100vw - 44px));
  border-radius: 18px;
  border: 1px solid rgba(94, 247, 216, 0.28);
  background: rgba(10, 18, 34, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform-origin: bottom right;
  animation: soobotChatOpen 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.soobot-chat[hidden] {
  display: none;
}

@keyframes soobotChatOpen {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.soobot-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(94, 247, 216, 0.07);
  flex-shrink: 0;
}

.soobot-chat-head img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(94, 247, 216, 0.1);
  flex-shrink: 0;
}

.soobot-chat-head-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.soobot-chat-head-info span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #5ef7d8;
  letter-spacing: 0.04em;
}

.soobot-chat-head-info small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.soobot-chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.soobot-chat-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.soobot-chat {
  display: flex;
  flex-direction: column;
}

.soobot-chat-body {
  padding: 14px 14px 10px;
  min-height: 160px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 247, 216, 0.2) transparent;
  flex: 1;
}

.soobot-chat-body::-webkit-scrollbar {
  width: 4px;
}

.soobot-chat-body::-webkit-scrollbar-thumb {
  background: rgba(94, 247, 216, 0.2);
  border-radius: 4px;
}

.soobot-message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.soobot-message img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(94, 247, 216, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
}

.soobot-message p {
  margin: 0;
  background: rgba(94, 247, 216, 0.1);
  border: 1px solid rgba(94, 247, 216, 0.2);
  border-radius: 4px 14px 14px 14px;
  padding: 9px 13px;
  font-size: 0.85rem;
  color: #e9f2ff;
  line-height: 1.55;
}

.soobot-user-message {
  display: flex;
  justify-content: flex-end;
}

.soobot-user-message p {
  margin: 0;
  background: rgba(255, 197, 109, 0.13);
  border: 1px solid rgba(255, 197, 109, 0.25);
  border-radius: 14px 4px 14px 14px;
  padding: 9px 13px;
  font-size: 0.85rem;
  color: #e9f2ff;
  line-height: 1.55;
  max-width: 85%;
}

.soobot-typing {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.soobot-typing img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(94, 247, 216, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
}

.soobot-typing-dots {
  background: rgba(94, 247, 216, 0.1);
  border: 1px solid rgba(94, 247, 216, 0.2);
  border-radius: 4px 14px 14px 14px;
  padding: 11px 14px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.soobot-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(94, 247, 216, 0.7);
  animation: soobotTyping 1.2s ease-in-out infinite;
}

.soobot-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.soobot-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes soobotTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.soobot-chat-input {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 34, 0.6);
  flex-shrink: 0;
}

.soobot-chat-input textarea {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #e9f2ff;
  font-family: inherit;
  font-size: 0.84rem;
  line-height: 1.4;
  padding: 8px 11px;
  resize: none;
  max-height: 80px;
  overflow-y: auto;
  transition: border-color 0.15s;
}

.soobot-chat-input textarea:focus {
  outline: none;
  border-color: rgba(94, 247, 216, 0.45);
}

.soobot-chat-input textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.soobot-chat-input button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: #5ef7d8;
  color: #0a0f1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}

.soobot-chat-input button:hover {
  background: #7dfce0;
}

.soobot-chat-input button:active {
  transform: scale(0.93);
}

.soobot-chat-input button:disabled {
  background: rgba(94, 247, 216, 0.3);
  cursor: not-allowed;
}

.soobot-powered {
  margin: 0;
  padding: 4px 12px 6px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  flex-shrink: 0;
}
.soobot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 12px 10px 44px;
}
.soobot-quick-btn {
  background: transparent;
  border: 1px solid rgba(94,247,216,0.35);
  color: #5ef7d8;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  font-family: inherit;
  line-height: 1.4;
}
.soobot-quick-btn:hover {
  background: rgba(94,247,216,0.12);
  color: #fff;
}
.soobot-message a {
  color: #5ef7d8;
  text-decoration: underline;
}

/* ── Site Footer ── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 76px;
  padding: 20px 4px 30px;
}

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 247, 216, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(94, 247, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 247, 216, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .site-header {
    top: 8px;
    margin-top: 8px;
    padding: 12px 14px;
    background: rgba(12, 19, 33, 0.92);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cards,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .reference-card {
    min-height: 176px;
    padding: 20px;
  }

  .reference-panorama {
    --radius: clamp(300px, 56vw, 460px);
  }

  .reference-panorama-mask {
    height: clamp(290px, 48vw, 396px);
  }

  .reference-node {
    width: clamp(165px, 30vw, 214px);
    min-height: 184px;
    padding: 14px;
  }

  .services-focus.is-active .service-card {
    opacity: 1;
    filter: none;
  }

  .services-focus.is-active .service-card.is-focus {
    box-shadow: var(--shadow);
  }

  .hero::before {
    inset: 10% 2% 10%;
  }

  .hero::after {
    inset: 16% 10% 18%;
  }

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

  .cta-inner h2 {
    max-width: none;
  }

  .main-nav {
    display: none;
  }

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

  .site-header .btn-outline {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 6px;
    gap: 10px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    width: min(92vw, 380px);
  }

  .logo img {
    width: 138px;
    height: 48px;
  }

  .site-header .btn-outline {
    padding: 9px 13px;
    font-size: 0.84rem;
  }

  .btn {
    padding: 10px 16px;
  }

  .cards,
  .project-grid,
  .stats-grid,
  .confidence-grid,
  .cta-direct {
    grid-template-columns: 1fr;
  }

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

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

  .reference-card {
    min-height: 158px;
    padding: 16px;
    gap: 14px;
  }

  /* ── Mobile snap carousel for references ── */
  .reference-panorama {
    padding: 12px;
    --radius: 0px;
  }

  .reference-panorama-mask {
    height: auto;
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: default;
    perspective: none;
    touch-action: pan-x;
    background: none;
  }

  .reference-panorama-mask::-webkit-scrollbar {
    display: none;
  }

  .reference-panorama-mask::before {
    background: linear-gradient(
      90deg,
      rgba(5, 9, 16, 0.92) 0%,
      transparent 22%,
      transparent 78%,
      rgba(5, 9, 16, 0.92) 100%
    );
    z-index: 2;
  }

  .reference-panorama-mask::after {
    background: none;
  }

  .reference-ring {
    display: flex;
    flex-direction: row;
    position: static;
    transform: none !important;
    height: auto;
    transform-style: flat;
    align-items: center;
    gap: 12px;
    padding: 14px calc(50vw - 110px - 12px);
    width: max-content;
  }

  .reference-node {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 210px;
    width: 210px !important;
    min-height: 198px;
    padding: 16px;
    opacity: 0.45;
    filter: saturate(0.55) brightness(0.65);
    transform: scale(0.85) !important;
    transform-origin: center center;
    scroll-snap-align: center;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease,
      border-color 0.4s ease, box-shadow 0.4s ease;
  }

  .reference-node.is-front {
    opacity: 1;
    filter: saturate(1.1) brightness(1.04);
    transform: scale(1) !important;
    border-color: rgba(94, 247, 216, 0.44);
    box-shadow:
      0 14px 44px rgba(3, 8, 19, 0.64),
      0 0 0 1px rgba(94, 247, 216, 0.28),
      0 0 32px rgba(94, 247, 216, 0.18);
  }

  .panorama-help {
    display: none;
  }

  .reference-logo {
    min-height: 72px;
  }

  .reference-logo.has-logo {
    padding: 10px;
  }

  .reference-logo img {
    max-height: 56px;
  }

  .reference-card span {
    font-size: 0.8rem;
  }

  .hero-checks li,
  .cta-proof-list li {
    padding-left: 30px;
  }

  .project-metrics span {
    font-size: 0.78rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .timeline {
    padding-left: 12px;
  }

  .lead-form {
    padding: 18px;
  }

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

  .lead-form-actions {
    align-items: flex-start;
  }

  .trust-panel,
  .contact-card {
    padding: 16px;
  }

  .timeline li::before {
    left: -18px;
  }

  .cursor-glow {
    display: none;
  }

  .intro-video {
    width: 100vw;
    height: 100dvh;
  }

  .soobot-widget {
    bottom: 16px;
    right: 14px;
  }

  .soobot-btn {
    width: 76px;
    height: 76px;
  }

  .soobot-btn img {
    width: 58px;
    height: 58px;
  }

  .soobot-bubble {
    font-size: 0.75rem;
    padding: 7px 11px;
  }
}

@media (max-width: 480px) {
  .cards,
  .project-grid,
  .stats-grid,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .reference-panorama {
    --radius: 190px;
    padding: 12px;
  }

  .reference-panorama-mask {
    height: 292px;
    perspective: 1080px;
  }

  .reference-node {
    width: min(80vw, 210px);
    min-height: 182px;
    padding: 14px;
    opacity: 0.64;
  }

  .reference-card {
    min-height: auto;
    padding: 15px;
  }

  .reference-logo {
    min-height: 72px;
  }
}

/* ══════════════════════════════════════════
   NEW PREMIUM SECTIONS
══════════════════════════════════════════ */

/* ── Hero Cycler (typewriter) ── */
.hero-cycler {
  display: inline;
}

#heroCycleText::after {
  content: '|';
  color: var(--accent);
  animation: cursorBlink 0.8s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}

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

/* ── Stats Strip ── */
.stats-strip {
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 50%, rgba(94, 247, 216, 0.13) 0%, transparent 52%),
    radial-gradient(circle at 85% 50%, rgba(255, 197, 109, 0.1) 0%, transparent 52%),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}

.stats-strip-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-block {
  text-align: center;
  padding: 10px 16px;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-suffix {
  color: var(--accent-2);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── About / Story Section ── */
.about-section {
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.about-lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
  margin: 18px 0 0;
  max-width: 56ch;
}

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

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(94, 247, 216, 0.3);
  background: rgba(94, 247, 216, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.22s ease, border-color 0.22s ease;
}

.pillar:hover .pillar-icon {
  background: rgba(94, 247, 216, 0.18);
  border-color: rgba(94, 247, 216, 0.55);
}

.pillar div strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pillar div p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* About visual / showcase */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-showcase {
  position: relative;
  width: clamp(260px, 32vw, 400px);
  aspect-ratio: 1;
}

.showcase-main {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(94, 247, 216, 0.2);
  background:
    radial-gradient(circle at 40% 35%, rgba(94, 247, 216, 0.18), transparent 52%),
    radial-gradient(circle at 70% 72%, rgba(255, 197, 109, 0.14), transparent 48%),
    rgba(10, 17, 30, 0.82);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.showcase-main img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
}

.showcase-badge {
  position: absolute;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 14, 26, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  text-align: center;
  min-width: 80px;
}

.showcase-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

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

.badge-tr {
  top: -18px;
  right: -18px;
  animation: badgeFloat 3.5s ease-in-out infinite;
}

.badge-bl {
  bottom: -18px;
  left: -18px;
  animation: badgeFloat 3.5s ease-in-out infinite 0.8s;
}

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

.about-decoration {
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  border: 1px dashed rgba(94, 247, 216, 0.18);
  pointer-events: none;
  z-index: -1;
}

/* ── Service Card Icons ── */
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(94, 247, 216, 0.28);
  background: rgba(94, 247, 216, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(94, 247, 216, 0.18);
  border-color: rgba(94, 247, 216, 0.5);
  transform: translateY(-2px);
}

/* ── Feature Banner ── */
.feature-banner {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 60px);
  background:
    radial-gradient(ellipse at 15% 50%, rgba(94, 247, 216, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(255, 197, 109, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(8, 19, 38, 0.98), rgba(10, 22, 44, 0.98));
  border: 1px solid rgba(94, 247, 216, 0.22);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 32px
  );
  pointer-events: none;
}

.feature-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-banner-text p.kicker {
  margin-bottom: 10px;
}

.feature-banner-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.6rem);
  margin: 0 0 12px;
  line-height: 1.18;
}

.feature-banner-text p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-banner-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.feature-banner-cta .btn {
  white-space: nowrap;
  justify-content: center;
}

/* ── Testimonial Stars ── */
.testimonial-stars {
  color: var(--accent-2);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: -4px;
}

/* ── Footer Upgrade ── */
.site-footer {
  margin-top: 78px;
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  display: block;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 56px 0 40px;
  align-items: start;
}

.footer-brand p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 36ch;
}

.footer-brand img {
  display: block;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: rgba(94, 247, 216, 0.5);
  background: rgba(94, 247, 216, 0.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ══════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════════════════ */

@media (max-width: 900px) {
  .stats-strip-grid {
    gap: 14px;
  }

  .stat-sep {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-showcase {
    width: min(300px, 80vw);
  }

  .feature-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-banner-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .stats-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    text-align: center;
    gap: 20px;
  }

  .stat-sep { display: none; }

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

  .feature-banner-cta .btn {
    flex: 1 1 auto;
  }
}
