/* ============================================================
   SKI SOLUTIONS — Premium Dark Theme
   Pure CSS animations — no external libraries required
   ============================================================ */

:root {
  --bg: #04060f;
  --bg-2: #070b18;
  --bg-3: #0a0f22;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-2: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-2: rgba(255, 255, 255, 0.14);
  --text: #eef2ff;
  --muted: #98a2c3;
  --muted-2: #6b7494;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --purple: #a855f7;
  --pink: #ec4899;
  --grad: linear-gradient(90deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
  --grad-2: linear-gradient(135deg, #22d3ee, #a855f7);
  --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.35);
  --glow-purple: 0 0 40px rgba(168, 85, 247, 0.3);
  --font-head: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(99, 102, 241, 0.45); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #22d3ee, #6366f1, #a855f7);
  border-radius: 20px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
}
.preloader-logo span {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: letterIn 0.6s var(--ease) forwards;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.preloader-logo span:nth-child(1) { animation-delay: 0.05s; }
.preloader-logo span:nth-child(2) { animation-delay: 0.13s; }
.preloader-logo span:nth-child(3) { animation-delay: 0.21s; }
.preloader-logo span:nth-child(4) { animation-delay: 0.34s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(5) { animation-delay: 0.40s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(6) { animation-delay: 0.46s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(7) { animation-delay: 0.52s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(8) { animation-delay: 0.58s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(9) { animation-delay: 0.64s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(10) { animation-delay: 0.70s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(11) { animation-delay: 0.76s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(12) { animation-delay: 0.82s; -webkit-text-fill-color: var(--text); background: none; }
.preloader-logo span:nth-child(13) { animation-delay: 0.88s; -webkit-text-fill-color: var(--text); background: none; }

@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.preloader-bar {
  width: min(280px, 60vw);
  height: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.preloader-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: var(--grad);
  animation: loadbar 1.6s var(--ease) forwards;
  box-shadow: 0 0 18px rgba(99, 102, 241, 0.8);
}
@keyframes loadbar { to { width: 100%; } }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(34, 211, 238, 0.5);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
}
body.cursor-hover .cursor-ring {
  width: 62px; height: 62px;
  border-color: rgba(168, 85, 247, 0.8);
  background: rgba(168, 85, 247, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad);
  z-index: 9000;
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.7);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  padding: 22px 0;
  transition: all 0.45s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(5, 8, 18, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-2);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: var(--glow-cyan);
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Company logo image (navbar / footer / admin) */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 4px;
  border-radius: 11px;
  background: #f4f5f7; /* matches the logo's own light background */
  box-shadow: var(--glow-cyan);
  animation: pulseGlow 3s ease-in-out infinite;
}
.logo-img-sm { width: 34px; height: 34px; border-radius: 9px; padding: 3px; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 22px rgba(34, 211, 238, 0.4); }
  50% { box-shadow: 0 0 34px rgba(168, 85, 247, 0.55); }
}
.logo b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 26px !important;
  border-radius: 50px;
  background: var(--grad-2);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(168, 85, 247, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 42px; height: 42px;
  position: relative;
  z-index: 8600;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  margin: 6px auto;
  border-radius: 4px;
  transition: 0.4s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 7900;
  background: rgba(4, 6, 15, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--muted);
  padding: 10px;
  transform: translateY(24px);
  opacity: 0;
  transition: 0.5s var(--ease);
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu a:hover {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Global site-wide particle background */
#particles.bg-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: rgba(34, 211, 238, 0.16); top: -120px; left: -120px; }
.orb-2 { width: 520px; height: 520px; background: rgba(168, 85, 247, 0.15); bottom: -160px; right: -120px; animation-delay: -5s; }
.orb-3 { width: 320px; height: 320px; background: rgba(59, 130, 246, 0.14); top: 40%; left: 55%; animation-delay: -9s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(-35px, 35px) scale(0.94); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(980px, 92%);
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--stroke-2);
  background: var(--panel);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero h1 .grad-text {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift {
  to { background-position: 200% center; }
}

/* word reveal */
.word-reveal .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-reveal .w i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
  animation: wordUp 0.85s var(--ease) forwards;
}
@keyframes wordUp { to { transform: translateY(0); } }

.hero-typed-line {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-weight: 600;
  color: var(--muted);
  min-height: 2.2em;
  margin-bottom: 22px;
}
.hero-typed-line .typed {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.5);
}
.hero-typed-line .caret {
  display: inline-block;
  width: 3px;
  height: 1.05em;
  vertical-align: -0.15em;
  margin-left: 3px;
  background: var(--cyan);
  animation: blink 0.85s step-end infinite;
}

.hero p.sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.13rem);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-2);
  color: #fff;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(168, 85, 247, 0.55);
}
.btn-ghost {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--stroke-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 860px;
  margin-inline: auto;
}
.hero-stat {
  padding: 22px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.hero-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 14px 40px rgba(34, 211, 238, 0.12);
}
.hero-stat b {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat span { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 44px;
  border: 2px solid var(--stroke-2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-hint i {
  width: 4px; height: 9px;
  border-radius: 4px;
  background: var(--cyan);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--stroke);
  background: rgba(7, 11, 24, 0.6);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 54px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '✦';
  color: var(--indigo);
  font-size: 0.8rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section { position: relative; }
.section { padding: 110px 0; }
.section-dark { background: rgba(10, 15, 32, 0.55); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.sec-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.06);
  margin-bottom: 20px;
}
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sec-head h2 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-head p { color: var(--muted); font-size: 1.05rem; }

/* Reveal-on-scroll system (activated by JS adding .anim on <html>) */
[data-reveal] { will-change: transform, opacity; }
.anim [data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.anim [data-reveal="left"] { transform: translateX(-56px); }
.anim [data-reveal="right"] { transform: translateX(56px); }
.anim [data-reveal="zoom"] { transform: scale(0.86); }
.anim [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: 38px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  transform-style: preserve-3d;
}
.service-card::before {
  /* mouse-follow spotlight */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(99, 102, 241, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 24px 60px rgba(3, 6, 20, 0.7), 0 0 0 1px rgba(99, 102, 241, 0.25);
}
.service-card .top-line {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.service-card:hover .top-line { transform: scaleX(1); }

.service-media {
  margin: -38px -30px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}
.service-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.06); }

.svc-visual { overflow: hidden; padding: 0; }
.svc-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(168, 85, 247, 0.14));
  border: 1px solid var(--stroke-2);
  color: var(--cyan);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
  box-shadow: var(--glow-cyan);
  color: #fff;
  background: var(--grad-2);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card .tags li {
  font-size: 0.74rem;
  padding: 5px 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  color: var(--muted);
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 44px; } }

.split h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.split h2 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split p.lead { color: var(--muted); margin-bottom: 28px; }

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  color: var(--muted);
}
.check-list li b { color: var(--text); font-weight: 600; }
.check-list .check {
  flex: none;
  width: 26px; height: 26px;
  margin-top: 3px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(168, 85, 247, 0.18));
  border: 1px solid rgba(34, 211, 238, 0.45);
  color: var(--cyan);
  font-size: 0.75rem;
}

/* Visual panel — animated terminal / plc card */
.visual-stack { position: relative; }
.terminal {
  border-radius: var(--radius);
  border: 1px solid var(--stroke-2);
  background: rgba(7, 11, 26, 0.9);
  backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 4, 14, 0.8);
}
.terminal-head {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}
.terminal-head i {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.terminal-head i:nth-child(1) { background: #ff5f57; }
.terminal-head i:nth-child(2) { background: #febc2e; }
.terminal-head i:nth-child(3) { background: #28c840; }
.terminal-body {
  padding: 24px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.88rem;
  line-height: 2;
  color: var(--muted);
  min-height: 250px;
}
.terminal-body .ln { display: block; }
.terminal-body .c-p { color: var(--purple); }
.terminal-body .c-c { color: var(--cyan); }
.terminal-body .c-g { color: #34d399; }
.terminal-body .c-y { color: #fbbf24; }

.float-chip {
  position: absolute;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--stroke-2);
  background: rgba(10, 15, 34, 0.92);
  backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 50px rgba(2, 4, 14, 0.7);
  animation: chipFloat 5s ease-in-out infinite;
}
.float-chip.chip-1 { top: -22px; right: -14px; color: var(--cyan); }
.float-chip.chip-2 { bottom: -20px; left: -14px; color: var(--purple); animation-delay: -2.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
@media (max-width: 900px) {
  .float-chip.chip-1 { right: 4px; }
  .float-chip.chip-2 { left: 4px; }
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  counter-reset: step;
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 34px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.5);
}
.process-step .num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.06));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.process-step p { color: var(--muted); font-size: 0.92rem; }
.process-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.process-step:hover::after { transform: scaleX(1); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-card {
  padding: 30px 22px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  transition: 0.45s var(--ease);
}
.industry-card:hover {
  transform: translateY(-7px) scale(1.02);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(168, 85, 247, 0.08));
  border-color: rgba(34, 211, 238, 0.45);
}
.industry-card .ico { font-size: 2rem; margin-bottom: 14px; }
.industry-card .ico img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  transition: transform 0.45s var(--ease);
}
.industry-card:hover .ico img { transform: translateY(-4px) scale(1.1); }
.industry-card h3 { font-family: var(--font-head); font-size: 1.02rem; margin-bottom: 6px; }
.industry-card p { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-wrap {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.testi-track { position: relative; min-height: 300px; }
.testi {
  position: absolute;
  inset: 0;
  padding: 44px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  backdrop-filter: blur(10px);
  text-align: center;
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.testi.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.testi .stars { color: #fbbf24; letter-spacing: 4px; font-size: 1.05rem; }
.testi q {
  font-size: 1.12rem;
  color: var(--text);
  quotes: '\201C' '\201D';
  line-height: 1.8;
}
.testi .who { color: var(--muted); font-size: 0.9rem; }
.testi .who b {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
}
.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.testi-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--stroke-2);
  transition: 0.4s;
}
.testi-dots button.active {
  width: 30px;
  border-radius: 20px;
  background: var(--grad);
}
@media (max-width: 640px) {
  .testi { padding: 30px 22px; }
  .testi-track { min-height: 380px; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: 26px;
  padding: clamp(44px, 7vw, 80px);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--stroke-2);
  background:
    radial-gradient(600px circle at 15% 20%, rgba(34, 211, 238, 0.16), transparent 55%),
    radial-gradient(600px circle at 85% 80%, rgba(168, 85, 247, 0.18), transparent 55%),
    var(--bg-3);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  padding: 2px;
  background: conic-gradient(from var(--rot, 0deg), transparent 0%, rgba(34,211,238,.6) 12%, transparent 26%, transparent 50%, rgba(168,85,247,.6) 64%, transparent 78%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotBorder 6s linear infinite;
  pointer-events: none;
}
@property --rot {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotBorder { to { --rot: 360deg; } }

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  transition: 0.4s var(--ease);
}
.contact-info-card:hover {
  transform: translateX(8px);
  border-color: rgba(34, 211, 238, 0.5);
}
.contact-info-card .ic {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34,211,238,.14), rgba(168,85,247,.14));
  border: 1px solid var(--stroke-2);
  color: var(--cyan);
}
.contact-info-card h4 { font-family: var(--font-head); font-size: 0.98rem; }
.contact-info-card a, .contact-info-card p { color: var(--muted); font-size: 0.92rem; transition: color 0.3s; word-break: break-word; }
.contact-info-card a:hover { color: var(--cyan); }

.contact-form {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.field { position: relative; margin-bottom: 20px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--bg-3); color: var(--text); }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.field .err { color: #f87171; font-size: 0.8rem; margin-top: 6px; display: block; }

.alert-success {
  padding: 16px 20px;
  border-radius: 13px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.1);
  color: #6ee7b7;
  margin-bottom: 22px;
  font-size: 0.95rem;
  animation: popIn 0.6s var(--ease);
}
@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 7000;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease);
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.12) translateY(-3px); }
@keyframes waPulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to top */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 96px;
  z-index: 7000;
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1px solid var(--stroke-2);
  background: rgba(10, 15, 34, 0.9);
  color: var(--cyan);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  text-align: center;
  overflow: hidden;
  background: rgba(10, 15, 32, 0.45);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-hero h1 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--muted); max-width: 620px; margin-inline: auto; }

/* Service detail rows */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--stroke);
}
.svc-row:last-child { border-bottom: none; }
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; gap: 30px; }
  .svc-row .svc-visual { order: -1 !important; }
}
.svc-row h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.svc-row p { color: var(--muted); margin-bottom: 20px; }
.svc-visual {
  border-radius: 22px;
  border: 1px solid var(--stroke-2);
  min-height: 280px;
  display: grid;
  place-items: center;
  font-size: 4.4rem;
  background:
    radial-gradient(320px circle at 30% 25%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(320px circle at 75% 80%, rgba(168, 85, 247, 0.15), transparent 60%),
    var(--bg-3);
  transition: 0.5s var(--ease);
}
.svc-visual:hover { transform: scale(1.02); box-shadow: 0 26px 70px rgba(2, 4, 14, 0.75); }

/* ============================================================
   INBOX (admin)
   ============================================================ */
.inbox-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.inbox-table th, .inbox-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--stroke);
  vertical-align: top;
}
.inbox-table th { color: var(--cyan); font-family: var(--font-head); font-size: 0.85rem; }
.inbox-table td { color: var(--muted); }
.inbox-table td b { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--stroke);
  background: rgba(7, 11, 24, 0.72);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 280px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.14), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text);
}
.footer p { color: var(--muted); font-size: 0.92rem; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: 0.3s;
  position: relative;
}
.footer-links a:hover { color: var(--cyan); padding-left: 8px; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--stroke-2);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: 0.35s var(--ease);
}
.socials a:hover {
  color: #fff;
  background: var(--grad-2);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.86rem;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
