:root {
  --bg-0: #05070f;
  --bg-1: #0a1120;
  --text-0: #eaf2ff;
  --text-1: #95a4c6;
  --line: rgba(150, 180, 255, 0.2);
  --glass: rgba(13, 22, 45, 0.45);
  --glass-border: rgba(140, 172, 255, 0.28);
  --neu-light: rgba(140, 178, 255, 0.09);
  --neu-dark: rgba(0, 0, 0, 0.35);
  --neon-blue: #59c3ff;
  --neon-cyan: #4ef4ff;
  --neon-purple: #915dff;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --space: clamp(1rem, 2.2vw, 1.6rem);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-0);
  background:
    radial-gradient(120% 80% at 20% -10%, rgba(78, 244, 255, 0.18), transparent 60%),
    radial-gradient(90% 70% at 100% 0%, rgba(145, 93, 255, 0.22), transparent 55%),
    linear-gradient(170deg, var(--bg-0), var(--bg-1) 60%, #050a16 100%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

#network-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.42;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-gradient {
  position: fixed;
  inset: -20% -10%;
  z-index: -3;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.7;
  background:
    radial-gradient(circle at 20% 20%, rgba(89, 195, 255, 0.2), transparent 35%),
    radial-gradient(circle at 70% 30%, rgba(145, 93, 255, 0.24), transparent 33%),
    radial-gradient(circle at 50% 80%, rgba(78, 244, 255, 0.2), transparent 35%);
}

.glass-surface {
  background: linear-gradient(135deg, rgba(19, 32, 62, 0.6), rgba(11, 19, 39, 0.35));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow:
    8px 8px 28px var(--neu-dark),
    -8px -8px 20px var(--neu-light),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(calc(100% - 1.5rem), 900px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 0.55rem;
  object-fit: cover;
  box-shadow: 0 0 14px rgba(78, 244, 255, 0.28);
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.2rem, 5.8vw, 4.6rem) 0;
  position: relative;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(89, 195, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 195, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 40%, black 25%, transparent 85%);
}

.hero-content {
  text-align: center;
  max-width: 780px;
  padding-top: 1rem;
}

.hero-brand {
  display: grid;
  justify-items: center;
  margin-bottom: 1.25rem;
}

.hero-logo {
  width: clamp(92px, 13vw, 138px);
  aspect-ratio: 1 / 1;
  border-radius: 0.9rem;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(159, 210, 255, 0.24),
    0 16px 40px rgba(6, 12, 32, 0.56);
}

.hero-brand-name {
  margin-top: 0.7rem;
  color: #e8f1ff;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.84rem;
}

.hero-brand-tagline {
  margin-top: 0.45rem;
  max-width: 56ch;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  color: #a8b6d4;
  position: relative;
  overflow: hidden;
  animation:
    taglineFadeUp 1s ease-out both,
    taglineGlow 4.8s ease-in-out infinite;
  animation-delay: 0.25s, 1s;
}

.hero-brand-tagline::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 58%;
  background: linear-gradient(110deg, transparent 0%, rgba(125, 239, 255, 0.34) 50%, transparent 100%);
  filter: blur(1px);
  animation: taglineSweep 6.2s ease-in-out infinite;
}

@keyframes taglineFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes taglineSweep {
  0% {
    left: -70%;
    opacity: 0;
  }
  18% {
    opacity: 0.72;
  }
  48% {
    left: 118%;
    opacity: 0;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes taglineGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(78, 244, 255, 0);
    color: #a8b6d4;
  }
  35% {
    text-shadow:
      0 0 12px rgba(78, 244, 255, 0.2),
      0 0 24px rgba(145, 93, 255, 0.14);
    color: #cfe0ff;
  }
  55% {
    opacity: 0.8;
    text-shadow:
      0 0 14px rgba(78, 244, 255, 0.24),
      0 0 28px rgba(145, 93, 255, 0.16);
    color: #dce9ff;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin: 0 0 1rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 7vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.55rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
}

p {
  color: var(--text-1);
  line-height: 1.55;
}

.hero-subtitle {
  margin: 1.2rem auto 0;
  max-width: 54ch;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
}

.button-primary,
.button-ghost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-primary {
  margin-top: 1.8rem;
  color: #051022;
  font-weight: 700;
  background: linear-gradient(100deg, var(--neon-cyan), var(--neon-blue), #7f8cff);
  box-shadow: 0 0 24px rgba(89, 195, 255, 0.35);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 34px rgba(89, 195, 255, 0.5);
}

.button-ghost {
  border: 1px solid rgba(157, 183, 255, 0.4);
  color: #eaf2ff;
  /* Override UA light `button` face + light text (invisible on Windows/Chrome). */
  background: rgba(9, 15, 35, 0.72);
  font: inherit;
  cursor: pointer;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(89, 195, 255, 0.22);
  color: #ffffff;
}

.section-head {
  max-width: 760px;
}

.section-head p {
  margin-top: 0.85rem;
}

.about .timeline {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.timeline-item p {
  margin-top: 0.4rem;
}

.solutions-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.solutions-parallax {
  margin-top: 1rem;
  min-height: 600vh;
  position: relative;
}

.service-progress {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: #c3d8ff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

#service-progress-current {
  color: var(--neon-cyan);
  min-width: 2ch;
}

.solutions-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.service-panel {
  position: absolute;
  inset: 10vh 0 6vh;
  min-height: auto;
  border-radius: 0;
  padding: clamp(0.6rem, 2vw, 1.2rem) clamp(0.4rem, 1.8vw, 1rem);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border: none;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(80px) scale(0.92);
  pointer-events: none;
}

.service-panel::before {
  display: none;
}

.service-copy,
.service-visual {
  position: relative;
  z-index: 1;
}

.service-copy {
  padding: clamp(0.9rem, 2.2vw, 1.6rem);
  border-radius: 1rem;
  background: transparent;
  backdrop-filter: none;
}

.service-copy h3 {
  font-size: clamp(1.6rem, 4.5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.service-copy p {
  margin-top: 0.7rem;
  max-width: 54ch;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

.service-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.service-actions .button-primary,
.service-actions .button-ghost {
  min-width: 118px;
}

.service-actions .button-primary {
  margin-top: 0;
}

.service-actions .button-ghost {
  border-radius: 999px;
  color: #dcecff;
  border-color: rgba(159, 204, 255, 0.45);
  background: rgba(9, 15, 35, 0.48);
}

.service-visual {
  position: relative;
  min-width: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: clamp(380px, 58vh, 680px);
  max-height: min(88vh, 900px);
  border: none;
  box-shadow:
    0 28px 74px rgba(4, 8, 24, 0.68),
    inset 0 1px 0 rgba(152, 205, 255, 0.1);
  background:
    radial-gradient(circle at 20% 20%, rgba(78, 244, 255, 0.16), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(145, 93, 255, 0.18), transparent 36%),
    rgba(7, 12, 28, 0.88);
  align-self: center;
  box-sizing: border-box;
}

.service-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Full artwork visible; cover was cropping the sides */
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  opacity: 0.98;
  transform: scale(1);
  transition: transform 0.4s ease;
  filter: saturate(1.08) contrast(1.04);
}

.service-panel:hover .service-image,
.service-panel:focus-within .service-image {
  transform: scale(1.03);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 22, 0.02) 10%, rgba(7, 11, 22, 0.36) 100%),
    linear-gradient(100deg, rgba(78, 244, 255, 0.06), rgba(145, 93, 255, 0.08));
}

.demo-btn {
  color: #051022;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.72);
  backdrop-filter: blur(3px);
}

.service-modal-card {
  position: relative;
  width: min(92vw, 620px);
  margin: 12vh auto 0;
  border-radius: 1rem;
  padding: 1rem;
}

.service-modal-close {
  margin-left: auto;
  display: inline-flex;
}

.service-modal-card h3 {
  margin-top: 0.6rem;
}

.service-modal-card p {
  margin-top: 0.6rem;
}

/* Contact form result (AJAX): modal + bloom success */
.contact-result-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.contact-result-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-result-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  margin: 14vh auto 0;
  border-radius: 1.1rem;
  padding: 1.25rem 1.1rem 1.35rem;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(120, 200, 255, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-result-modal[data-variant="success"] .contact-result-card {
  border-color: rgba(120, 255, 200, 0.35);
  box-shadow:
    0 0 0 1px rgba(100, 255, 200, 0.12),
    0 24px 64px rgba(2, 18, 24, 0.55);
}

.contact-result-modal[data-variant="error"] .contact-result-card {
  border-color: rgba(255, 130, 150, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 120, 140, 0.12),
    0 24px 64px rgba(20, 4, 10, 0.45);
}

.contact-bloom {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-bloom-petal {
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  line-height: 1;
  opacity: 0;
  will-change: transform, opacity;
  animation: contact-bloom-burst 1.15s ease-out forwards;
  animation-delay: var(--bloom-delay, 0s);
}

@keyframes contact-bloom-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  }
  28% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform:
      translate(
        calc(-50% + var(--bloom-tx, 0px)),
        calc(-50% + var(--bloom-ty, 0px))
      )
      scale(1) rotate(var(--bloom-rot, 0deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-bloom-petal {
    animation: contact-bloom-fade 0.4s ease-out forwards;
  }

  @keyframes contact-bloom-fade {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.85;
    }
  }
}

.contact-modal-icon {
  position: relative;
  z-index: 1;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0.35rem auto 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.contact-result-modal[data-variant="success"] .contact-modal-icon {
  color: #0a2d24;
  background: linear-gradient(145deg, #8effd4, #5ee0b3);
  box-shadow: 0 0 24px rgba(100, 255, 200, 0.35);
}

.contact-result-modal[data-variant="error"] .contact-modal-icon {
  color: #2a0a0e;
  background: linear-gradient(145deg, #ffb3c0, #ff7a8a);
  box-shadow: 0 0 22px rgba(255, 100, 120, 0.3);
}

.contact-result-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.2rem 0 0.45rem;
  font-size: 1.15rem;
}

.contact-modal-text {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  color: #c6d4ef;
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-result-card .service-modal-close {
  position: relative;
  z-index: 2;
  margin: 0 0 0.15rem;
}

.solution-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid rgba(159, 186, 255, 0.24);
  background: linear-gradient(150deg, rgba(17, 33, 68, 0.65), rgba(10, 18, 36, 0.48));
  box-shadow:
    10px 10px 26px var(--neu-dark),
    -8px -8px 20px rgba(124, 154, 219, 0.07);
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  border-color: rgba(78, 244, 255, 0.6);
  transform: translateY(-6px);
  box-shadow:
    0 16px 45px rgba(53, 78, 133, 0.45),
    0 0 0 1px rgba(78, 244, 255, 0.16);
}

.solution-visual {
  position: relative;
  width: 100%;
  height: 170px;
  margin-bottom: 0.8rem;
  border-radius: 0.9rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(90, 196, 255, 0.25), rgba(13, 23, 42, 0.15) 70%);
  border: 1px solid rgba(117, 203, 255, 0.3);
  box-shadow: inset 0 0 24px rgba(79, 176, 255, 0.22), 0 0 30px rgba(64, 119, 196, 0.2);
}

.solution-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.solution-card:hover .solution-thumb,
.solution-card:focus-visible .solution-thumb {
  transform: scale(1.08);
  opacity: 0.96;
}

.solution-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 22, 0.04) 10%, rgba(7, 11, 22, 0.52) 100%);
}

.solution-orbit {
  width: 90%;
  height: 90%;
  animation: orbitSpin 9s linear infinite;
}

.solution-orbit circle {
  fill: none;
  stroke: rgba(120, 206, 255, 0.75);
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
}

.solution-core-dot {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #cfffff, var(--neon-cyan));
  box-shadow: 0 0 16px rgba(78, 244, 255, 0.9);
  animation: corePulse 1.6s ease-in-out infinite;
}

.solution-card p {
  margin-top: 0.45rem;
}

.solution-link {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d2eeff;
  font-size: 0.88rem;
  border: 1px solid rgba(98, 192, 255, 0.35);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.solution-link::after {
  content: "->";
  font-weight: 700;
  color: var(--neon-cyan);
}

.solution-link:hover,
.solution-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(78, 244, 255, 0.7);
  box-shadow: 0 0 15px rgba(78, 244, 255, 0.3);
}

.ecosystem-map {
  margin-top: 1.2rem;
  border-radius: clamp(1rem, 3vw, 2rem);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ecosystem-lines line {
  stroke: rgba(105, 206, 255, 0.55);
  stroke-width: 0.35;
  stroke-dasharray: 2 2;
}

.node {
  position: absolute;
  border-radius: 0.85rem;
  border: 1px solid rgba(150, 188, 255, 0.45);
  background: rgba(10, 23, 44, 0.75);
  padding: 0.45rem 0.75rem 0.5rem;
  font-size: 0.82rem;
  color: var(--text-0);
  box-shadow: 0 0 20px rgba(89, 195, 255, 0.16);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  min-width: 88px;
  text-align: center;
}

.node-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.45rem;
  background-image: url("../img/icon.png");
  background-repeat: no-repeat;
  background-size: 500% 200%;
  box-shadow:
    0 0 18px rgba(78, 244, 255, 0.2),
    0 0 28px rgba(145, 93, 255, 0.14);
  filter: saturate(1.18) brightness(1.12);
}

.icon-waba { background-position: 0% 0%; }
.icon-crm { background-position: 25% 0%; }
.icon-ai { background-position: 50% 0%; }
.icon-chatbot { background-position: 75% 0%; }
.icon-social { background-position: 100% 0%; }
.icon-saas { background-position: 0% 100%; }
.icon-core {
  background-image: url("../img/logo.png");
  background-size: cover;
  background-position: center;
}

.node-core .node-icon {
  width: 54px;
  height: 54px;
  border-radius: 0.7rem;
  box-shadow:
    0 0 22px rgba(78, 244, 255, 0.28),
    0 0 36px rgba(145, 93, 255, 0.2);
}

.node-core { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.node-crm { left: 13%; top: 22%; }
.node-ai { left: 28%; top: 72%; }
.node-chat { left: 77%; top: 18%; }
.node-api { left: 80%; top: 54%; }
.node-social { left: 70%; top: 80%; }
.node-saas { left: 13%; top: 50%; }

.process-steps {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.step {
  border-radius: var(--radius);
  padding: 1.1rem;
}

.step-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  color: var(--bg-0);
  font-weight: 700;
  background: linear-gradient(120deg, var(--neon-cyan), var(--neon-blue));
}

.step p {
  margin-top: 0.45rem;
}

.stats-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  border-radius: var(--radius);
  padding: 1.2rem;
}

.counter {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #dff7ff;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cta {
  padding-bottom: 1rem;
}

.cta-panel {
  border-radius: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 4vw, 2.8rem);
  text-align: center;
}

.cta-panel h2 {
  margin: 0.5rem 0 0.8rem;
}

.quick-contact {
  padding-top: clamp(3.25rem, 7.5vw, 5.25rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  justify-items: center;
  gap: clamp(2.25rem, 5vw, 3.5rem);
}

.quick-contact-card {
  width: min(100%, 560px);
  border-radius: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(1.35rem, 3.4vw, 2.1rem) clamp(1rem, 3vw, 1.8rem);
  background: linear-gradient(138deg, rgba(14, 29, 63, 0.78), rgba(8, 17, 39, 0.58));
  box-shadow:
    0 24px 64px rgba(3, 8, 24, 0.62),
    inset 0 1px 0 rgba(176, 214, 255, 0.11);
}

.quick-contact-card h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.12;
}

.quick-contact-head {
  text-align: center;
}

.quick-contact-head .eyebrow {
  margin-bottom: 0.75rem;
}

.quick-contact-subtitle {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  color: #9db0d2;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-field span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9b7d8;
}

.contact-field input {
  width: 100%;
  border: 1px solid rgba(150, 188, 255, 0.28);
  border-radius: 0.82rem;
  background: rgba(7, 14, 32, 0.76);
  color: #eaf2ff;
  padding: 0.82rem 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input::placeholder {
  color: #8898bb;
}

.contact-field input:focus {
  border-color: rgba(78, 244, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(78, 244, 255, 0.16);
}

.contact-submit-wrap {
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
}

.contact-submit-btn {
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  color: #041124;
  background: linear-gradient(100deg, #7ff0ff, #59c3ff, #83a1ff);
  box-shadow: 0 0 22px rgba(89, 195, 255, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(89, 195, 255, 0.44);
}

.contact-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.contact-status {
  min-height: 1.2em;
  margin-top: 0.4rem;
  text-align: center;
  font-size: 0.88rem;
  color: #9db0d2;
}

.contact-status.is-success {
  color: #98ffd1;
}

.contact-status.is-error {
  color: #ff8f9f;
}

.contact-whatsapp-wrap {
  margin-top: clamp(0.75rem, 2vw, 1.35rem);
  padding-top: clamp(0.35rem, 1.2vw, 0.65rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
}

.whatsapp-heading {
  color: #e7f0ff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.whatsapp-subheading {
  margin-bottom: 0.2rem;
  color: #9ab0d7;
  text-align: center;
  font-size: 0.9rem;
}

.whatsapp-standalone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 300px;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  color: #d5ffe8;
  border: 1px solid rgba(74, 255, 164, 0.42);
  background: linear-gradient(130deg, rgba(16, 50, 37, 0.78), rgba(7, 27, 21, 0.72));
  box-shadow:
    0 0 26px rgba(74, 255, 164, 0.2),
    inset 0 1px 0 rgba(133, 255, 197, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.whatsapp-standalone-btn .whatsapp-btn-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #25d366;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.45));
}

.whatsapp-standalone-btn:hover,
.whatsapp-standalone-btn:focus-visible {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(74, 255, 164, 0.72);
  box-shadow:
    0 0 44px rgba(74, 255, 164, 0.32),
    inset 0 1px 0 rgba(133, 255, 197, 0.15);
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-1);
}

.site-footer nav {
  display: flex;
  gap: 0.8rem;
}

.site-footer a {
  border: 1px solid rgba(162, 190, 255, 0.32);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.interactive-card,
.magnetic {
  will-change: transform;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--neon-cyan);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(84, 221, 255, 0.75);
  box-shadow: 0 0 16px rgba(78, 244, 255, 0.3);
}

.cursor-active .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(145, 93, 255, 0.9);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes corePulse {
  0%, 100% { transform: scale(0.9); opacity: 0.9; }
  50% { transform: scale(1.4); opacity: 1; }
}

@media (min-width: 720px) {
  .about .timeline,
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .solutions-parallax {
    min-height: auto;
  }

  .solutions-stage {
    position: relative;
    top: auto;
    height: auto;
    display: grid;
    gap: 2.4rem;
    overflow: visible;
  }

  .service-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .service-copy {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .service-visual {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  .solution-orbit,
  .solution-core-dot {
    animation: none !important;
  }
  .hero-brand-tagline,
  .hero-brand-tagline::after {
    animation: none !important;
  }
  body {
    cursor: auto;
  }
}
