/*
Theme Name: Techsynq Digital Services
Theme URI: https://techsynq.com
Author: Techsynq Digital Services
Author URI: https://techsynq.com
Description: Official theme for Techsynq Digital Services — Managed IT, Web Design, Domain Sales.
Version: 1.0.0
License: Proprietary
Text Domain: techsynq
*/

/* ══════════════════════════════════════════════════════════
   GOOGLE FONTS — loaded via functions.php wp_enqueue_style
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   RESET + BASE
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #05050A;
  color: #EEEEFF;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
input, textarea, select {
  cursor: auto;
  background-color: #111218;
  color: #EEEEFF;
  border-color: #1C1E2E;
  font-family: 'DM Sans', sans-serif;
}
input::placeholder, textarea::placeholder { color: #50546A; }
a, button, [role="button"] { cursor: none; }
@media (pointer: coarse) {
  body, a, button, input, textarea, select, [role="button"] { cursor: auto; }
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* WordPress admin bar offset */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* ══════════════════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #05050A; }
::-webkit-scrollbar-thumb { background: #1C1E2E; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #22D3EE; }

/* ══════════════════════════════════════════════════════════
   FOCUS
   ══════════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid rgba(34,211,238,0.6); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ══════════════════════════════════════════════════════════ */
.font-display { font-family: 'Syne', sans-serif; }
.font-body    { font-family: 'DM Sans', sans-serif; }

/* ══════════════════════════════════════════════════════════
   COLOUR UTILITIES
   ══════════════════════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, #22D3EE 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-cyan   { color: #22D3EE; }
.text-violet { color: #7C3AED; }
.text-primary   { color: #EEEEFF; }
.text-secondary { color: #8B8FA8; }
.text-tertiary  { color: #50546A; }

/* ══════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════ */
.max-content { max-width: 1200px; margin-left: auto; margin-right: auto; }
.px-site     { padding-left: 40px; padding-right: 40px; }
@media (max-width: 640px) {
  .px-site   { padding-left: 20px; padding-right: 20px; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #22D3EE 0%, #7C3AED 50%, #22D3EE 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: none;
}
.btn-gradient:hover { opacity: 0.9; color: #fff; }
.btn-gradient:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8B8FA8;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #252840;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-outline:hover { border-color: #22D3EE; color: #22D3EE; }

.btn-quote {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  background: linear-gradient(#0D0E16, #0D0E16) padding-box,
              linear-gradient(135deg, #22D3EE, #7C3AED) border-box;
  border: 1px solid transparent;
  cursor: none;
}
.btn-quote .gradient-text { -webkit-text-fill-color: transparent; }

/* ══════════════════════════════════════════════════════════
   SECTION LABEL (cyan overline)
   ══════════════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22D3EE;
  margin-bottom: 20px;
}
.section-label .label-line {
  width: 24px;
  height: 1px;
  background: #22D3EE;
  display: block;
  flex-shrink: 0;
}
.section-label.centered { justify-content: center; }
.section-label.centered .label-line-r {
  width: 24px;
  height: 1px;
  background: #22D3EE;
  display: block;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   BACKGROUNDS
   ══════════════════════════════════════════════════════════ */
.bg-base    { background: #05050A; }
.bg-surface { background: #0D0E16; }
.bg-card    { background: #111218; }

.bg-hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 5% 50%, rgba(34,211,238,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 95% 25%, rgba(124,58,237,0.07) 0%, transparent 60%),
    #05050A;
}
.dot-grid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='0.5' cy='0.5' r='0.8' fill='%23EEEEFF' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* ══════════════════════════════════════════════════════════
   BORDER
   ══════════════════════════════════════════════════════════ */
.border-dim   { border-color: #1C1E2E; }
.border-top   { border-top:    1px solid #1C1E2E; }
.border-bottom{ border-bottom: 1px solid #1C1E2E; }

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(5,5,10,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid #1C1E2E;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.site-header.scrolled .nav-glow-line {
  display: block;
}
.nav-glow-line {
  display: none;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(34,211,238,0.4), transparent);
  pointer-events: none;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { flex-shrink: 0; color: #EEEEFF; }
.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  color: #8B8FA8;
  transition: color 0.2s, background 0.2s;
  cursor: none;
}
.nav-links a:hover { color: #22D3EE; background: rgba(34,211,238,0.05); }
.nav-links a.active { color: #EEEEFF; font-weight: 500; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 1px;
  border-radius: 100px;
  background: linear-gradient(to right, #22D3EE, #7C3AED);
  box-shadow: 0 0 6px rgba(34,211,238,0.7);
}
.nav-cta { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }

/* Nav WhatsApp icon button */
.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.30);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  position: relative;
}
.nav-wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.22);
  animation: wa-nav-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-nav-pulse {
  0%   { transform: scale(1);    opacity: 0.75; }
  65%  { transform: scale(1.65); opacity: 0;    }
  100% { transform: scale(1.65); opacity: 0;    }
}
.nav-wa-btn:hover {
  background: rgba(37,211,102,0.22);
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(37,211,102,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: #EEEEFF;
  padding: 8px;
  cursor: pointer;
  cursor: auto;
}
.nav-hamburger svg { display: block; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(5,5,10,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid #1C1E2E;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #1C1E2E;
  color: #8B8FA8;
  transition: color 0.15s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.active { color: #22D3EE; font-weight: 500; }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, #22D3EE 0%, #7C3AED 50%, #22D3EE 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .nav-inner { padding: 0 20px; }
}

/* ══════════════════════════════════════════════════════════
   MOUSE FOLLOWER
   ══════════════════════════════════════════════════════════ */
#mf-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, transparent 65%);
  transform: translate(-50%,-50%);
  transition: opacity 0.3s;
}
#mf-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
#mf-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(34,211,238,0.35);
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
@media (pointer: coarse) {
  #mf-glow, #mf-dot, #mf-ring { display: none; }
}

/* ══════════════════════════════════════════════════════════
   ROBOT MASCOT
   ══════════════════════════════════════════════════════════ */
#robot-mascot-wrap {
  position: fixed;
  bottom: 16px; right: 0;
  z-index: 9990;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(-3px 0 14px rgba(34,211,238,0.18)) drop-shadow(0 4px 10px rgba(0,0,0,0.55));
}

/* Speech bubble */
#rm-bubble {
  position: fixed;
  bottom: 92px;
  right: 14px;
  background: #0E1120;
  border: 1px solid rgba(34,211,238,0.22);
  color: #EEEEFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  padding: 9px 13px;
  border-radius: 12px 12px 4px 12px;
  max-width: 200px;
  pointer-events: none;
  z-index: 9989;
  box-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 0 0 0.5px rgba(34,211,238,0.08);
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: normal;
}
#rm-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Tail pointing down-right toward robot */
#rm-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 11px;
  height: 11px;
  background: #0E1120;
  border-right: 1px solid rgba(34,211,238,0.22);
  border-bottom: 1px solid rgba(34,211,238,0.22);
  transform: rotate(45deg);
}
.rm-float   { animation: rm-float  5s    ease-in-out infinite; }
.rm-woozy   { animation: rm-woozy 0.55s ease-in-out 4; }
.rm-giggle  { animation: rm-giggle 0.45s ease-in-out 3 !important; }
.rm-star {
  position: absolute;
  font-size: 11px;
  animation: rm-star 2380ms ease-out forwards;
}

/* ══════════════════════════════════════════════════════════
   FADE-UP SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.2,0,0,1), transform 0.6s cubic-bezier(0.2,0,0,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section .bg-hero-mesh {
  position: absolute; inset: 0;
}
.hero-orb-1 {
  position: absolute;
  top: 25%; left: 5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, transparent 65%);
  animation: orb-drift 22s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute;
  top: 20%; right: 3%;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 65%);
  animation: orb-drift 28s ease-in-out infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 96px 40px 80px;
}
@media (max-width: 640px) { .hero-content { padding: 96px 20px 80px; } }

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #EEEEFF;
  font-size: clamp(42px, 5.5vw, 76px);
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #8B8FA8;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Particle canvas */
/* Wave background wrapper — opacity set inline on the div */
#wave-bg svg { display: block; }


/* ══════════════════════════════════════════════════════════
   SERVICES GRID (homepage)
   ══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  background: #111218;
  border: 1px solid #1C1E2E;
  transition: border-color 0.3s, transform 0.2s;
}
.service-card:hover { border-color: rgba(34,211,238,0.2); }
.service-card-hover-bg {
  position: absolute; inset: 0;
  opacity: 0;
  border-radius: 16px;
  pointer-events: none;
  transition: opacity 0.3s;
}
.service-card:hover .service-card-hover-bg { opacity: 1; }
.service-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.service-card:hover .service-card-icon { transform: scale(1.1); }
.service-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.2px;
  color: #EEEEFF;
  margin-bottom: 8px;
}
.service-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #8B8FA8;
  flex: 1;
}
.service-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   PROCESS STEPS (homepage)
   ══════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  position: relative;
}
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; gap: 40px; } }

.process-connector {
  position: absolute;
  top: 28px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(to right, #22D3EE, #7C3AED);
}
@media (max-width: 768px) { .process-connector { display: none; } }

.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
@media (max-width: 768px) { .process-step { align-items: flex-start; text-align: left; } }

.process-num {
  position: relative;
  z-index: 10;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #22D3EE, #7C3AED);
  box-shadow: 0 0 30px rgba(34,211,238,0.25);
}
.process-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: #EEEEFF;
  margin-bottom: 8px;
}
.process-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #8B8FA8;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 768px) { .process-desc { max-width: 100%; margin: 0; } }

/* ══════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 112px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 640px) { .cta-band { padding: 80px 20px; } }
.cta-band-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cta-band-bg-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(34,211,238,0.08) 0%, rgba(124,58,237,0.06) 50%, transparent 70%);
}
.cta-content { position: relative; max-width: 580px; margin: 0 auto; }
.cta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22D3EE;
  margin-bottom: 16px;
}
.cta-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #EEEEFF;
  margin-bottom: 20px;
}
.cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #8B8FA8;
  max-width: 420px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 72px 0;
  border-bottom: 1px solid #1C1E2E;
  background: #05050A;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .page-hero-inner { padding: 0 20px; } }
.page-hero-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 768px) { .page-hero-inner.two-col { grid-template-columns: 1fr; gap: 32px; } }

.page-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #EEEEFF;
  font-size: clamp(36px, 4.5vw, 58px);
}
.page-h1.smaller { font-size: clamp(32px, 4vw, 48px); }
.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #8B8FA8;
}
.page-hero-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #50546A;
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.about-body { padding-top: 64px; }

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 640px) { .what-we-do-grid { grid-template-columns: 1fr; } }

.service-row {
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #111218;
  border: 1px solid #1C1E2E;
  transition: border-color 0.2s;
}
.service-row:hover { border-color: rgba(34,211,238,0.2); }
.service-row-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-row-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #EEEEFF;
}

.approach-list { display: flex; flex-direction: column; }
.approach-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 36px 0;
  border-bottom: 1px solid #1C1E2E;
}
.approach-item:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .approach-item { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
}
.approach-num-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22D3EE;
  margin-bottom: 8px;
}
.approach-num-line { width: 16px; height: 1px; background: #22D3EE; display: block; }
.approach-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: #EEEEFF;
}
.approach-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #8B8FA8;
  align-self: center;
}

.two-col-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .two-col-check { grid-template-columns: 1fr; gap: 40px; } }
.check-list { display: flex; flex-direction: column; gap: 20px; padding-top: 4px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #8B8FA8;
}
.check-icon { flex-shrink: 0; margin-top: 2px; color: #22D3EE; }

.mission-section {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.mission-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: #EEEEFF;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════════ */
.services-body { padding-top: 64px; }

.service-row-section {
  border-bottom: 1px solid #1C1E2E;
}
.service-row-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 96px 1fr 1fr;
  min-height: 320px;
}
@media (max-width: 1024px) {
  .service-row-inner {
    grid-template-columns: 1fr 1fr;
  }
  .service-num-col { display: none; }
}
@media (max-width: 640px) {
  .service-row-inner { grid-template-columns: 1fr; }
}

.service-num-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 56px;
  border-right: 1px solid #1C1E2E;
}
.service-big-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
  background: linear-gradient(135deg, #22D3EE 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-desc-col {
  padding: 48px;
  border-right: 1px solid #1C1E2E;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) { .service-desc-col { padding: 32px 24px; border-right: none; border-bottom: 1px solid #1C1E2E; } }
.service-desc-col h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #EEEEFF;
  margin-bottom: 16px;
}
.service-desc-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #8B8FA8;
  margin-bottom: 28px;
}
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #22D3EE;
  transition: gap 0.2s;
  cursor: none;
}
.service-cta-link:hover { gap: 10px; color: #22D3EE; }

.service-includes-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) { .service-includes-col { padding: 32px 24px; } }
.includes-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #50546A;
  margin-bottom: 16px;
}
.includes-list { display: flex; flex-direction: column; }
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #EEEEFF;
  padding: 11px 0;
  border-bottom: 1px solid #1C1E2E;
}
.includes-item:last-child { border-bottom: none; }
.includes-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #22D3EE;
  flex-shrink: 0;
  margin-top: 8px;
}
.service-badge {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg,rgba(34,211,238,0.1),rgba(124,58,237,0.1));
  color: #22D3EE;
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) { .how-it-works-grid { grid-template-columns: 1fr; gap: 40px; } }

.how-step { padding-right: 32px; }
.how-step:last-child { padding-right: 0; }
@media (max-width: 768px) { .how-step { padding-right: 0; } }
.how-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #22D3EE, #7C3AED);
  box-shadow: 0 0 0 6px rgba(34,211,238,0.14);
  margin-bottom: 28px;
}
.how-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: #EEEEFF;
  margin-bottom: 12px;
}
.how-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #8B8FA8;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-body { padding-top: 64px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: #111218;
  border: 1px solid #1C1E2E;
  border-radius: 16px;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, #22D3EE, #7C3AED);
}
@media (max-width: 640px) { .contact-form-card { padding: 24px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #EEEEFF;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0D0E16;
  color: #EEEEFF;
  border: 1px solid #1C1E2E;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #22D3EE; }
.form-group .field-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #22D3EE;
}
.form-group select option { background: #111218; color: #EEEEFF; }
/* Autofill dark fix */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px #0D0E16 inset; -webkit-text-fill-color: #EEEEFF; }

.form-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #50546A;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  text-align: center;
}
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,211,238,0.1);
  color: #22D3EE;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-success h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #EEEEFF;
  margin-bottom: 12px;
}
.form-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #8B8FA8;
  max-width: 320px;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #111218;
  border: 1px solid #1C1E2E;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(34,211,238,0.2); }
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(34,211,238,0.08);
  color: #22D3EE;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #50546A;
  margin-bottom: 4px;
}
.contact-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #EEEEFF;
  transition: color 0.2s;
}
.contact-card:hover .contact-card-value { color: #22D3EE; }

.promise-box {
  border-radius: 12px;
  padding: 24px;
  background: #0D0E16;
  border: 1px solid #1C1E2E;
}
.promise-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: #EEEEFF;
  margin-bottom: 12px;
}
.promise-list { display: flex; flex-direction: column; gap: 10px; }
.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8B8FA8;
}
.promise-check { color: #22D3EE; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy / Terms / AI Policy)
   ══════════════════════════════════════════════════════════ */
.legal-body { padding-top: 64px; }
.legal-content-wrap {
  max-width: 760px;
}
.legal-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #8B8FA8;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #1C1E2E;
}
.legal-sections { display: flex; flex-direction: column; gap: 56px; }
.legal-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px 48px;
}
@media (max-width: 768px) { .legal-section { grid-template-columns: 1fr; gap: 16px; } }
.legal-section-divider { margin-top: 56px; border-bottom: 1px solid #1C1E2E; }
.legal-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #EEEEFF;
  padding-top: 2px;
}
.legal-section-content { display: flex; flex-direction: column; gap: 16px; }
.legal-section-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #8B8FA8;
}
.legal-section-content .legal-subheading {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.1px;
  color: #EEEEFF;
}
.legal-ul { display: flex; flex-direction: column; gap: 8px; }
.legal-li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #8B8FA8;
}
.legal-dot {
  margin-top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #22D3EE;
  flex-shrink: 0;
}
.legal-back-link {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #1C1E2E;
}
.legal-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8B8FA8;
  transition: color 0.15s;
  cursor: none;
}
.legal-back-link a:hover { color: #22D3EE; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid #1C1E2E;
  padding: 64px 40px 40px;
  background: #05050A;
}
@media (max-width: 640px) { .site-footer { padding: 48px 20px 32px; } }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #EEEEFF;
  margin-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo { margin-bottom: 24px; color: #EEEEFF; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: #111218;
  border: 1px solid #1C1E2E;
  transition: border-color 0.2s;
  cursor: none;
}
.footer-social:hover { border-color: #252840; }
.footer-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #50546A;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #50546A;
  margin-bottom: 11px;
  transition: color 0.15s;
  cursor: none;
}
.footer-col a:hover { color: #EEEEFF; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1C1E2E;
}
.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #50546A;
}

/* ══════════════════════════════════════════════════════════
   404
   ══════════════════════════════════════════════════════════ */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.error-404-inner { max-width: 480px; }
.error-404-code {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 100px;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #22D3EE 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-404-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #EEEEFF;
  margin-bottom: 12px;
}
.error-404-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8B8FA8;
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════
   SECTION SPACING HELPERS
   ══════════════════════════════════════════════════════════ */
.section-py { padding-top: 80px; padding-bottom: 80px; }
.section-py-lg { padding-top: 96px; padding-bottom: 96px; }
.section-border-b { border-bottom: 1px solid #1C1E2E; }
.section-border-t { border-top: 1px solid #1C1E2E; }
.mb-3  { margin-bottom: 12px; }
.mb-4  { margin-bottom: 16px; }
.mb-5  { margin-bottom: 20px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-14 { margin-bottom: 56px; }
.mb-16 { margin-bottom: 64px; }
.mt-5  { margin-top: 20px; }
.mt-20 { margin-top: 80px; }
.pt-10 { padding-top: 40px; }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-20px) scale(1.05); }
  66%  { transform: translate(-20px,15px) scale(0.97); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(34,211,238,0.3); }
  50%      { box-shadow: 0 0 40px rgba(34,211,238,0.6); }
}
@keyframes rm-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes rm-woozy {
  0%   { transform: rotate(0deg)   translateY(0); }
  15%  { transform: rotate(-14deg) translateY(-3px); }
  35%  { transform: rotate(12deg)  translateY(-5px); }
  55%  { transform: rotate(-10deg) translateY(-2px); }
  75%  { transform: rotate(7deg)   translateY(-4px); }
  90%  { transform: rotate(-4deg)  translateY(-1px); }
  100% { transform: rotate(0deg)   translateY(0); }
}
@keyframes rm-giggle {
  0%,100% { transform: rotate(0deg)  translateX(0); }
  20%     { transform: rotate(-6deg) translateX(-4px); }
  40%     { transform: rotate(6deg)  translateX(4px); }
  60%     { transform: rotate(-5deg) translateX(-3px); }
  80%     { transform: rotate(5deg)  translateX(3px); }
}
@keyframes screen-shake {
  0%,100% { transform: translate(0,0); }
  12%  { transform: translate(-7px,-4px); }
  25%  { transform: translate(7px, 5px); }
  37%  { transform: translate(-6px, 4px); }
  50%  { transform: translate(6px,-5px); }
  62%  { transform: translate(-5px, 3px); }
  75%  { transform: translate(5px,-3px); }
  87%  { transform: translate(-3px, 1px); }
}
@keyframes rm-star {
  0%   { opacity:0; transform: scale(0) rotate(0deg); }
  40%  { opacity:1; transform: scale(1) rotate(180deg); }
  100% { opacity:0; transform: scale(0.5) rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */

/* ── Unified button transitions ─────────────────────────── */
.btn-gradient,
.btn-outline,
.btn-quote {
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.22s ease,
              opacity 0.22s ease,
              background 0.22s ease,
              border-color 0.22s ease;
}

/* ── btn-gradient lift + glow ────────────────────────────── */
.btn-gradient:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,211,238,0.28), 0 2px 10px rgba(0,0,0,0.4);
  color: #fff;
}
.btn-gradient:active  { transform: translateY(0); }
/* Arrow slides right on hover */
.btn-gradient svg:last-child {
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.btn-gradient:hover svg:last-child { transform: translateX(4px); }

/* ── btn-outline glass effect ────────────────────────────── */
.btn-outline:hover {
  border-color: rgba(34,211,238,0.45);
  background: rgba(34,211,238,0.04);
  color: #22D3EE;
  transform: translateY(-1px);
}

/* ── btn-quote lift ──────────────────────────────────────── */
.btn-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(34,211,238,0.15);
}

/* ── Service card — lift + shadow + icon spin ────────────── */
.service-card {
  will-change: transform;
  transition: border-color 0.35s ease,
              transform 0.35s cubic-bezier(0.2,0,0,1),
              box-shadow 0.35s ease;
}
.service-card:hover {
  border-color: rgba(34,211,238,0.22);
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(34,211,238,0.08);
}
.service-card-icon {
  transition: transform 0.3s cubic-bezier(0.2,0,0,1);
}
.service-card:hover .service-card-icon { transform: scale(1.12) rotate(6deg); }

/* ── Contact card — lift + icon pop ─────────────────────── */
.contact-card {
  transition: border-color 0.25s,
              transform 0.28s cubic-bezier(0.2,0,0,1),
              box-shadow 0.28s ease;
}
.contact-card:hover {
  border-color: rgba(34,211,238,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.contact-card-icon { transition: transform 0.25s cubic-bezier(0.2,0,0,1); }
.contact-card:hover .contact-card-icon { transform: scale(1.12) rotate(-8deg); }

/* ── Process steps — lift + num glow ─────────────────────── */
.process-step { transition: transform 0.3s cubic-bezier(0.2,0,0,1); }
.process-step:hover { transform: translateY(-5px); }
.process-num { transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.2,0,0,1); }
.process-step:hover .process-num {
  box-shadow: 0 0 44px rgba(34,211,238,0.5);
  transform: scale(1.07);
}

/* ── Process connector — pulsing glow ────────────────────── */
.process-connector {
  background: linear-gradient(
    to right,
    transparent,
    rgba(34,211,238,0.65),
    rgba(124,58,237,0.65),
    transparent
  );
  animation: connector-glow 3.5s ease-in-out infinite;
}
@keyframes connector-glow {
  0%,100% { opacity: 0.45; }
  50%      { opacity: 1.0;  }
}

/* ── About/Services page service-row slide ───────────────── */
.service-row {
  transition: border-color 0.25s, transform 0.25s cubic-bezier(0.2,0,0,1);
}
.service-row:hover { border-color: rgba(34,211,238,0.25); transform: translateX(4px); }

/* ── Footer social lift ──────────────────────────────────── */
.footer-social {
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.footer-social:hover {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.06);
  transform: translateY(-3px);
}
/* Footer links subtle slide */
.footer-col a { transition: color 0.15s, transform 0.2s; }
.footer-col a:hover { color: #EEEEFF; transform: translateX(3px); }

/* ── Nav compact on scroll ───────────────────────────────── */
.site-header {
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.3s,
              border-color 0.3s,
              box-shadow 0.3s;
}
.site-header.scrolled { height: 56px; }
/* Richer glass on scroll */
.site-header.scrolled {
  background: rgba(5,5,10,0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 1px 0 rgba(34,211,238,0.06), 0 8px 40px rgba(0,0,0,0.6);
}

/* ── Nav link hover glow ─────────────────────────────────── */
.nav-links a { transition: color 0.2s, background 0.2s, text-shadow 0.2s; }
.nav-links a:hover {
  color: #22D3EE;
  background: rgba(34,211,238,0.05);
  text-shadow: 0 0 18px rgba(34,211,238,0.35);
}

/* ── Scrollbar gradient ──────────────────────────────────── */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #22D3EE, #7C3AED);
}

/* ── Fade-up — spring easing ─────────────────────────────── */
.fade-up {
  transform: translateY(34px);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-duration: 0.78s;
}

/* ── Hero bottom gradient fade ───────────────────────────── */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, #05050A 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* ── Hero trust strip ────────────────────────────────────── */
.hero-trust-strip { margin-top: 4px; }
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #2A2D42;
  flex-shrink: 0;
  white-space: nowrap;
}
.trust-strip-sep {
  width: 1px;
  height: 14px;
  background: #1C1E2E;
  flex-shrink: 0;
}
.trust-strip-items {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: #2A2D42;
  transition: color 0.2s;
  white-space: nowrap;
  cursor: default;
}
.trust-strip-item:hover { color: #50546A; }
.trust-strip-item svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .trust-strip-sep,
  .trust-strip-label { display: none; }
  .trust-strip-items { gap: 14px; }
  .trust-strip-item { font-size: 11px; }
}

/* ── CTA band orb — subtle animation ────────────────────── */
.cta-band-bg-orb { animation: orb-drift 18s ease-in-out infinite; }

/* ── Promise box hover ───────────────────────────────────── */
.promise-box {
  transition: border-color 0.25s, box-shadow 0.25s;
}
.promise-box:hover {
  border-color: rgba(34,211,238,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Section divider gradient ────────────────────────────── */
.section-border-b { border-bottom: 1px solid rgba(255,255,255,0.05); }
.section-border-t { border-top:    1px solid rgba(255,255,255,0.05); }

/* ══════════════════════════════════════════════════════════
   CINEMATIC CLOUD SYSTEM
   ══════════════════════════════════════════════════════════ */

/* ── Cloud keyframes ─────────────────────────────────────── */
@keyframes cld-a {
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(22px, -14px) scale(1.03); }
  50%  { transform: translate(40px, 8px) scale(0.97); }
  75%  { transform: translate(18px, 22px) scale(1.02); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes cld-b {
  0%   { transform: translate(0px, 0px) scale(1); }
  30%  { transform: translate(-28px, 16px) scale(1.04); }
  60%  { transform: translate(-12px, -20px) scale(0.96); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes cld-c {
  0%   { transform: translate(0px, 0px) scaleX(1); }
  40%  { transform: translate(35px, -6px) scaleX(1.05); }
  70%  { transform: translate(-10px, 10px) scaleX(0.96); }
  100% { transform: translate(0px, 0px) scaleX(1); }
}
@keyframes cld-d {
  0%   { transform: translate(0px, 0px) scale(1); opacity: 1; }
  50%  { transform: translate(16px, -18px) scale(1.08); opacity: 0.7; }
  100% { transform: translate(0px, 0px) scale(1); opacity: 1; }
}
@keyframes cld-e {
  0%   { transform: translate(0px, 0px) scale(1); }
  35%  { transform: translate(-40px, -10px) scale(1.03); }
  65%  { transform: translate(20px, 14px) scale(0.98); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes cld-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ── Hero cloud container ─────────────────────────────────── */
.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.hero-clouds > div {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Layer 1 — vast dark base, cyan-edged */
.cld-h1 {
  width: 1050px; height: 460px;
  top: -8%; left: -14%;
  background: radial-gradient(ellipse at 38% 42%,
    rgba(22,38,90,0.72) 0%,
    rgba(12,18,52,0.70) 45%,
    rgba(34,211,238,0.045) 70%,
    transparent 100%);
  filter: blur(72px);
  animation: cld-a 44s ease-in-out infinite;
}
/* Layer 2 — violet rear mass */
.cld-h2 {
  width: 760px; height: 390px;
  top: 8%; right: -10%;
  background: radial-gradient(ellipse at 55% 50%,
    rgba(15,8,50,0.65) 0%,
    rgba(60,20,100,0.30) 55%,
    rgba(124,58,237,0.055) 75%,
    transparent 100%);
  filter: blur(82px);
  animation: cld-b 38s ease-in-out infinite;
}
/* Layer 3 — wide cyan wisp streak */
.cld-h3 {
  width: 1100px; height: 190px;
  top: 42%; left: -5%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(34,211,238,0.065) 0%,
    rgba(34,211,238,0.028) 55%,
    transparent 100%);
  filter: blur(52px);
  animation: cld-c 26s ease-in-out infinite;
}
/* Layer 4 — luminous cyan accent */
.cld-h4 {
  width: 420px; height: 230px;
  top: 10%; left: 22%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(34,211,238,0.095) 0%,
    rgba(34,211,238,0.038) 55%,
    transparent 100%);
  filter: blur(58px);
  animation: cld-float 22s ease-in-out infinite, cld-d 28s ease-in-out infinite;
}
/* Layer 5 — vast dim background fill */
.cld-h5 {
  width: 1450px; height: 620px;
  top: -20%; left: -10%;
  background: radial-gradient(ellipse at 45% 48%,
    rgba(8,12,38,0.60) 0%,
    rgba(10,15,45,0.40) 60%,
    transparent 100%);
  filter: blur(125px);
  animation: cld-a 58s ease-in-out infinite reverse;
}
/* Layer 6 — ground-hug fog band */
.cld-h6 {
  width: 110%; height: 280px;
  bottom: 0; left: -5%;
  background: radial-gradient(ellipse at 50% 80%,
    rgba(8,10,28,0.72) 0%,
    rgba(12,15,35,0.45) 50%,
    transparent 100%);
  filter: blur(38px);
  animation: cld-b 40s ease-in-out infinite;
}
/* Layer 7 — right mid violet bloom */
.cld-h7 {
  width: 620px; height: 360px;
  top: 30%; right: 5%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(55,18,100,0.28) 0%,
    rgba(90,30,140,0.12) 55%,
    transparent 100%);
  filter: blur(88px);
  animation: cld-c 34s ease-in-out infinite reverse;
}
/* Layer 8 — small bright accent blink */
.cld-h8 {
  width: 260px; height: 130px;
  top: 18%; left: 52%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(34,211,238,0.115) 0%,
    rgba(34,211,238,0.042) 60%,
    transparent 100%);
  filter: blur(38px);
  animation: cld-d 19s ease-in-out infinite;
}

/* ── Global atmospheric layer (fixed, behind everything) ── */
#atm-clouds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#atm-clouds > div {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Global sweep 1 — massive cyan haze */
.atm-c1 {
  width: 1700px; height: 750px;
  top: -15%; left: -20%;
  background: radial-gradient(ellipse at 40% 45%,
    rgba(34,211,238,0.030) 0%,
    rgba(34,211,238,0.012) 55%,
    transparent 100%);
  filter: blur(135px);
  animation: cld-a 65s ease-in-out infinite;
}
/* Global sweep 2 — violet depth field */
.atm-c2 {
  width: 1300px; height: 620px;
  top: 30%; right: -15%;
  background: radial-gradient(ellipse at 55% 50%,
    rgba(124,58,237,0.025) 0%,
    rgba(90,30,180,0.010) 60%,
    transparent 100%);
  filter: blur(120px);
  animation: cld-b 80s ease-in-out infinite;
}
/* Global sweep 3 — lower-page dark volume */
.atm-c3 {
  width: 1500px; height: 580px;
  bottom: -10%; left: -10%;
  background: radial-gradient(ellipse at 45% 60%,
    rgba(10,18,55,0.35) 0%,
    rgba(8,12,38,0.18) 55%,
    transparent 100%);
  filter: blur(145px);
  animation: cld-e 52s ease-in-out infinite;
}

/* ── Contact section ambient glow ─────────────────────────── */
.contact-body {
  position: relative;
}
.contact-body::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 420px;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(34,211,238,0.055) 0%,
    rgba(34,211,238,0.018) 50%,
    transparent 100%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Mobile optimisation ──────────────────────────────────── */
@media (max-width: 768px) {
  .cld-h1 { filter: blur(55px); opacity: 0.55; }
  .cld-h2 { filter: blur(65px); opacity: 0.50; }
  .cld-h3 { filter: blur(40px); opacity: 0.45; }
  .cld-h4 { display: none; }
  .cld-h5 { filter: blur(90px); opacity: 0.45; }
  .cld-h6 { filter: blur(28px); opacity: 0.55; }
  .cld-h7 { filter: blur(65px); opacity: 0.40; }
  .cld-h8 { display: none; }
  .atm-c1 { filter: blur(100px); opacity: 0.50; }
  .atm-c2 { display: none; }
  .atm-c3 { display: none; }
  .contact-body::before { width: 100%; filter: blur(55px); opacity: 0.55; }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
