/* ══════════════════════════════════════════════════
   ADM — Automatic Data Management
   style.css — All visual styles & animations
══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:       #04080F;
  --surface:  #080E1A;
  --card:     #0C1525;
  --card2:    #0F1B2D;
  --accent:   #00C8FF;
  --accent2:  #7B5CFF;
  --accent3:  #00FFB2;
  --warn:     #FF9966;
  --text:     #E8F2FF;
  --muted:    #6A8099;
  --border:   rgba(0,200,255,0.10);
  --border2:  rgba(123,92,255,0.12);
  --glow:     0 0 40px rgba(0,200,255,0.18);
  --glow2:    0 0 40px rgba(123,92,255,0.2);
  --ease:     cubic-bezier(0.23,1,0.32,1);
  --font-head:'Syne', sans-serif;
  --font-body:'DM Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,200,255,0.22); border-radius: 3px; }

/* ─── SELECTION ────────────────────────────────── */
::selection { background: rgba(0,200,255,0.25); color: var(--text); }

/* ─── PARTICLE CANVAS ──────────────────────────── */
#particleCanvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}

/* ─── CUSTOM CURSOR ────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: screen;
  will-change: transform;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(0,200,255,0.55);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.4s var(--ease),
              width 0.35s var(--ease), height 0.35s var(--ease),
              border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
.cursor-ring.expand { width: 58px; height: 58px; border-color: var(--accent2); opacity: 0.7; }
.cursor-ring.click { transform: translate(-50%,-50%) scale(0.75); }

/* ─── GRID BACKGROUND ──────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none; z-index: 0;
}

/* ─── UTILITY ──────────────────────────────────── */
.grad-text {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight {
  color: var(--accent);
  font-style: italic;
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 560px; }
.section-head { margin-bottom: 60px; }
h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 14px;
}

/* ─── REVEAL ANIMATION ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease),
              transform 0.75s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ─── BUTTONS ──────────────────────────────────── */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(115deg, var(--accent), var(--accent2));
  color: #fff;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--accent2), var(--accent));
  opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,200,255,0.38); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(0,200,255,0.35);
  background: rgba(0,200,255,0.06);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: transform 0.25s, box-shadow 0.3s;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.4); }

/* ─── NAVBAR ───────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%;
  background: rgba(4,8,15,0.72);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  animation: navSlide 0.9s var(--ease) both;
}
@keyframes navSlide {
  from { transform: translateY(-110%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
#navbar.scrolled { padding: 12px 6%; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px; color: #fff;
  box-shadow: 0 0 24px rgba(0,200,255,0.35);
  animation: logoPulse 3s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  from { box-shadow: 0 0 20px rgba(0,200,255,0.35); }
  to   { box-shadow: 0 0 36px rgba(123,92,255,0.5); }
}
.logo-text {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  line-height: 1.25; color: var(--text);
}
.logo-text span {
  display: block; font-size: 10.5px; font-weight: 400;
  color: var(--muted); letter-spacing: 0.06em; margin-top: 2px;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 13.5px; font-weight: 400; letter-spacing: 0.04em;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(115deg, var(--accent), var(--accent2));
  color: #fff; padding: 9px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s, transform 0.25s;
}
.nav-cta:hover { box-shadow: 0 6px 24px rgba(0,200,255,0.4); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; display: block; }

/* ─── MOBILE OVERLAY ───────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(4,8,15,0.97);
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity 0.35s;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay.visible { opacity: 1; }
.mobile-close {
  position: absolute; top: 22px; right: 6%;
  font-size: 26px; color: var(--muted);
  background: none; border: none; line-height: 1;
}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mobile-nav-links a {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--text); text-decoration: none; line-height: 1.5;
  transition: color 0.25s;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-contact-strip {
  margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.mobile-contact-strip a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.25s; }
.mobile-contact-strip a:hover { color: var(--accent); }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding: 130px 6% 90px;
  position: relative; overflow: hidden;
}
@media(max-width:1100px){ .hero { grid-template-columns: 1fr; } }

.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,200,255,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(123,92,255,0.06) 0%, transparent 60%);
}

/* Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); will-change: transform;
}
.orb1 {
  width: 480px; height: 480px;
  background: rgba(0,200,255,0.09);
  top: -140px; right: -80px;
  animation: orbFloat1 10s ease-in-out infinite alternate;
}
.orb2 {
  width: 360px; height: 360px;
  background: rgba(123,92,255,0.1);
  bottom: -60px; left: 15%;
  animation: orbFloat2 12s ease-in-out infinite alternate;
}
.orb3 {
  width: 240px; height: 240px;
  background: rgba(0,255,178,0.06);
  top: 40%; left: 5%;
  animation: orbFloat1 9s ease-in-out 2s infinite alternate;
}
@keyframes orbFloat1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(25px,35px) scale(1.08); }
}
@keyframes orbFloat2 {
  from { transform: translate(0,0) rotate(0deg); }
  to   { transform: translate(-20px,20px) rotate(8deg); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,255,0.07);
  border: 1px solid rgba(0,200,255,0.18);
  padding: 7px 18px; border-radius: 100px;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}
.badge-pulse {
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0;
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,200,255,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(0,200,255,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.ht-line {
  display: block;
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.8s var(--ease) both;
}
.ht-line:nth-child(1) { animation-delay: 0.4s; }
.ht-line:nth-child(2) { animation-delay: 0.56s; }
.ht-line:nth-child(3) { animation-delay: 0.72s; }

.hero-desc {
  color: var(--muted); font-size: 16.5px; line-height: 1.75;
  max-width: 500px; margin-bottom: 36px;
  animation: fadeUp 0.8s 0.88s var(--ease) both;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s 1.04s var(--ease) both;
}

.hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 52px; flex-wrap: wrap;
  animation: fadeUp 0.8s 1.2s var(--ease) both;
}
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.sn {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--accent); line-height: 1; display: inline-block;
}
.stat sup { font-family: var(--font-head); font-size: 18px; color: var(--accent2); vertical-align: super; }
.sl { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; }
.stat-div { width: 1px; height: 44px; background: var(--border); }

/* ─── HERO VISUAL CARD ─────────────────────────── */
.hero-visual {
  position: relative; z-index: 2;
  animation: fadeIn 1.2s 0.6s var(--ease) both;
}
@media(max-width:1100px){ .hero-visual { display: none; } }

.hv-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.55);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.hv-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 19px;
  background: linear-gradient(140deg, rgba(0,200,255,0.18), transparent 50%, rgba(123,92,255,0.14));
  z-index: -1;
}
.hv-card:hover { transform: translateY(-6px); box-shadow: 0 48px 120px rgba(0,0,0,0.65); }

.hv-topbar { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hv-dots { display: flex; gap: 6px; }
.hd { width: 11px; height: 11px; border-radius: 50%; display: block; }
.hd.r { background: #FF5F57; }
.hd.y { background: #FEBC2E; }
.hd.g { background: #28C840; }
.hv-file { font-family: monospace; font-size: 12px; color: var(--muted); margin-left: 8px; flex: 1; }
.hv-lang { font-size: 10px; background: rgba(0,200,255,0.1); color: var(--accent); padding: 3px 8px; border-radius: 4px; }

.hv-code {
  font-family: 'Courier New', monospace; font-size: 13px; line-height: 2;
  min-height: 160px;
}
.c-kw { color: var(--accent2); }
.c-fn { color: var(--accent); }
.c-str { color: var(--accent3); }
.c-cm { color: #3A5A78; }
.c-num { color: var(--warn); }
.c-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--accent); vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hv-modules {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 18px;
}
.hv-mod {
  background: rgba(0,200,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 10px; font-size: 11.5px;
  color: var(--muted); display: flex; align-items: center; gap: 6px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.hv-mod:hover {
  background: rgba(0,200,255,0.1); border-color: rgba(0,200,255,0.3);
  color: var(--text); transform: scale(1.03);
}
.hv-mod span { font-size: 16px; }
.hv-glow {
  position: absolute; bottom: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(123,92,255,0.12); filter: blur(60px);
  pointer-events: none; animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.2); }
}

/* ─── SCROLL HINT ──────────────────────────────── */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--muted); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeIn 1s 1.6s var(--ease) both;
  z-index: 2;
}
.sh-mouse {
  width: 22px; height: 36px; border: 1.5px solid rgba(0,200,255,0.35);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 6px;
}
.sh-wheel {
  width: 3px; height: 7px; background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── MARQUEE ──────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(0,200,255,0.025);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 32px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 13px; color: var(--muted); white-space: nowrap; letter-spacing: 0.06em; }
.marquee-track i { color: var(--accent); font-style: normal; font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES ─────────────────────────────────── */
.services { padding: 110px 6%; position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
  opacity: 0; transform: translateY(36px);
  cursor: default;
}
.svc-card.in { opacity: 1; transform: none; }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(0,0,0,0.45); border-color: rgba(0,200,255,0.22); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.featured { border-color: rgba(0,200,255,0.2); }
.svc-card.featured::after {
  content: 'Popular';
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(0,200,255,0.3);
  padding: 3px 10px; border-radius: 100px;
}

.svc-icon {
  font-size: 30px; margin-bottom: 18px; display: block;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.15) rotate(-5deg); }
.svc-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 14px; line-height: 1.72; }
.svc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.svc-tag {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent2); border: 1px solid rgba(123,92,255,0.25);
  padding: 4px 12px; border-radius: 100px;
}
.svc-tag.web { color: var(--accent); border-color: rgba(0,200,255,0.25); }
.svc-tag.custom { color: var(--accent3); border-color: rgba(0,255,178,0.25); }
.svc-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,200,255,0.08); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background 0.3s, transform 0.3s;
}
.svc-card:hover .svc-arrow { background: rgba(0,200,255,0.18); transform: translate(2px,-2px); }

/* Shine sweep */
.svc-shine {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  transition: left 0.7s var(--ease);
}
.svc-card:hover .svc-shine { left: 140%; }

/* ─── PORTFOLIO ────────────────────────────────── */
.portfolio {
  padding: 110px 6%;
  background: linear-gradient(180deg, transparent, rgba(8,14,26,0.6), transparent);
  position: relative; z-index: 1;
}

.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}

.port-card {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.38s var(--ease), box-shadow 0.38s;
}
.port-card:hover { transform: translateY(-8px); box-shadow: 0 32px 90px rgba(0,0,0,0.55); }

.port-thumb {
  height: 190px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pt1 { background: linear-gradient(135deg, #0A1E3C 0%, #163A60 100%); }
.pt2 { background: linear-gradient(135deg, #18082E 0%, #2E135A 100%); }
.pt3 { background: linear-gradient(135deg, #082218 0%, #0F3C28 100%); }
.pt-icon { font-size: 56px; transition: transform 0.4s var(--ease); z-index: 1; }
.port-card:hover .pt-icon { transform: scale(1.15) rotate(-6deg); }
.pt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45));
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 14px 16px;
}
.pt-type {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,200,255,0.15); color: var(--accent);
  border: 1px solid rgba(0,200,255,0.3); padding: 4px 10px; border-radius: 6px;
}
.port-body { padding: 24px; }
.port-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.port-body p { color: var(--muted); font-size: 14px; line-height: 1.68; margin-bottom: 16px; }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.port-tags span {
  font-size: 11.5px; padding: 4px 11px; border-radius: 6px;
  background: rgba(255,255,255,0.045); color: var(--muted);
}

/* ─── WHY US ───────────────────────────────────── */
.whyus { padding: 110px 6%; position: relative; z-index: 1; }
.whyus-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media(max-width:900px){ .whyus-inner { grid-template-columns: 1fr; } }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.wi-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(0,200,255,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: background 0.3s, transform 0.3s;
}
.why-item:hover .wi-icon { background: rgba(0,200,255,0.16); transform: scale(1.08); }
.why-item h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 14px; line-height: 1.68; }

.whyus-right { position: relative; }

.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.sg-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 24px; text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.sg-card:hover { transform: scale(1.04); box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.c1:hover { border-color: rgba(0,200,255,0.3); }
.c2:hover { border-color: rgba(123,92,255,0.3); }
.c3:hover { border-color: rgba(0,255,178,0.3); }
.c4:hover { border-color: rgba(255,153,102,0.3); }
.sgn {
  font-family: var(--font-head);
  font-size: 44px; font-weight: 800; line-height: 1;
}
.c1 .sgn { color: var(--accent); }
.c2 .sgn { color: var(--accent2); }
.c3 .sgn { color: var(--accent3); }
.c4 .sgn { color: var(--warn); }
.sgn sup { font-size: 20px; vertical-align: super; }
.sg-card p { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: 0.08em; }

.floating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  padding: 9px 18px; border-radius: 100px; font-size: 13px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  position: absolute;
}
.fb1 { bottom: -18px; left: -16px; animation: floatBadge 4s ease-in-out infinite alternate; }
.fb2 { top: -18px; right: -16px; animation: floatBadge 5s ease-in-out 1s infinite alternate; }
@keyframes floatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* ─── PROCESS ──────────────────────────────────── */
.process { padding: 110px 6%; position: relative; z-index: 1; }
.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-sub { margin: 0 auto; }

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; margin-top: 24px;
}
@media(max-width:900px){ .process-track { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:560px){ .process-track { grid-template-columns: 1fr; } }

.process-line {
  position: absolute; top: 42px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  opacity: 0.25;
}
@media(max-width:900px){ .process-line { display: none; } }

.proc-step { text-align: center; padding: 0 16px 48px; }
.ps-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.12em; margin-bottom: 10px;
}
.ps-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
  position: relative; z-index: 1;
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s var(--ease);
}
.proc-step:hover .ps-icon {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(0,200,255,0.28);
  transform: scale(1.1);
}
.proc-step h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.proc-step p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

/* ─── TECH STACK ───────────────────────────────── */
.techstack { padding: 60px 0; overflow: hidden; position: relative; z-index: 1; }
.ts-label {
  text-align: center; margin-bottom: 32px; padding: 0 6%;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.ts-row { overflow: hidden; padding: 8px 0; }
.ts-track {
  display: flex; gap: 14px; width: max-content; padding: 0 7px;
}
.ts-fwd { animation: tsFwd 26s linear infinite; }
.ts-rev { animation: tsRev 30s linear infinite; margin-top: 12px; }
.ts-track:hover { animation-play-state: paused; }
@keyframes tsFwd { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes tsRev { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.ts-track span {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 20px;
  font-size: 13px; white-space: nowrap; color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  display: inline-block;
}
.ts-track span:hover {
  border-color: rgba(0,200,255,0.3);
  color: var(--text); background: rgba(0,200,255,0.06);
}

/* ─── CTA BANNER ───────────────────────────────── */
.cta-banner { padding: 80px 6%; position: relative; z-index: 1; }
.cta-inner {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: -1px; border-radius: 25px;
  background: linear-gradient(140deg, rgba(0,200,255,0.14), transparent 50%, rgba(123,92,255,0.14));
  z-index: 0; pointer-events: none;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 50px); margin-bottom: 14px; }
.cta-inner p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.ca1 { width: 300px; height: 300px; background: rgba(0,200,255,0.09); top: -80px; right: -60px; animation: orbFloat1 8s ease-in-out infinite alternate; }
.ca2 { width: 260px; height: 260px; background: rgba(123,92,255,0.1); bottom: -60px; left: -40px; animation: orbFloat2 10s ease-in-out infinite alternate; }

/* ─── CONTACT ──────────────────────────────────── */
.contact { padding: 110px 6% 80px; position: relative; z-index: 1; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 52px;
}
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.ci-items { display: flex; flex-direction: column; gap: 18px; }
.ci-item {
  display: flex; gap: 14px; align-items: flex-start;
  text-decoration: none; color: inherit;
  transition: transform 0.25s;
}
.ci-item:hover { transform: translateX(5px); }
.ci-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(0,200,255,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: background 0.3s;
}
.ci-item:hover .ci-icon { background: rgba(0,200,255,0.16); }
.ci-item h4 { font-size: 12px; color: var(--muted); font-weight: 400; margin-bottom: 3px; letter-spacing: 0.06em; }
.ci-item p { font-size: 15px; color: var(--text); line-height: 1.5; }
.wa-btn { margin-top: 28px; }

.contact-form-wrap { }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){ .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; color: var(--muted);
  margin-bottom: 8px; letter-spacing: 0.06em; font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(0,200,255,0.45);
  background: rgba(0,200,255,0.035);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.09);
}
.form-group textarea { height: 120px; resize: none; }
.form-group select option { background: var(--card); color: var(--text); }

.btn-submit {
  width: 100%; padding: 14px; border-radius: 10px; border: none;
  background: linear-gradient(115deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { box-shadow: 0 10px 36px rgba(0,200,255,0.42); transform: translateY(-2px); }
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--accent2), var(--accent));
  opacity: 0; transition: opacity 0.4s;
}
.btn-submit:hover::before { opacity: 1; }
#btnText { position: relative; z-index: 1; }
.btn-loader {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: none; position: relative; z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none; text-align: center; padding: 14px;
  background: rgba(0,255,178,0.08); border: 1px solid rgba(0,255,178,0.25);
  border-radius: 10px; color: var(--accent3); font-size: 14px;
  margin-top: 14px; animation: fadeUp 0.5s var(--ease) both;
}

/* ─── FOOTER ───────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 60px 6% 48px;
}
@media(max-width:900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-top { grid-template-columns: 1fr; } }

.footer-brand p {
  color: var(--muted); font-size: 13.5px; line-height: 1.7; margin-top: 16px; max-width: 260px;
}
.footer-col h5 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text);
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 13.5px; margin-bottom: 10px; line-height: 1.5;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6%; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-bottom p span { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(0,200,255,0.07); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-social a:hover { background: rgba(0,200,255,0.15); color: var(--accent); border-color: rgba(0,200,255,0.3); }

/* ─── KEYFRAMES ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 100px; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .cta-inner { padding: 40px 24px; }
  .contact-form { padding: 28px 20px; }
  .section-head { margin-bottom: 44px; }
}