/*
Theme Name: ScaleCloudX Pro
Theme URI: https://scalecloudx.com
Author: ScaleCloudX
Description: Premium Enterprise Cloud Transformation WordPress Theme — v2.0. Professional dark theme with clean typography, smooth animations, and comprehensive cloud services layout.
Version: 2.0.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
Text Domain: scalecloudx-pro
Tags: enterprise, cloud, dark, business, technology, managed-services, responsive, full-width-template
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --c-ink:       #060B18;   /* deepest background */
  --c-void:      #09101F;   /* main bg */
  --c-deep:      #0D1526;   /* section bg alt */
  --c-surface:   #111C32;   /* card bg */
  --c-raised:    #152040;   /* elevated card */
  --c-border:    rgba(255,255,255,0.07);
  --c-border-hi: rgba(99,179,255,0.25);

  /* Brand Accent */
  --c-blue:      #2563EB;   /* primary — Reflex Blue */
  --c-blue-hi:   #3B82F6;
  --c-blue-glow: rgba(37,99,235,0.18);
  --c-cyan:      #06B6D4;   /* secondary accent */
  --c-cyan-dim:  rgba(6,182,212,0.12);
  --c-gold:      #F59E0B;   /* CTA / highlight */
  --c-gold-dim:  rgba(245,158,11,0.12);
  --c-emerald:   #10B981;   /* success */
  --c-rose:      #F43F5E;   /* danger */

  /* Text */
  --c-text:      #E8EEF8;   /* primary text */
  --c-text-2:    #93A4C0;   /* secondary text */
  --c-text-3:    #5A6E8A;   /* muted text */
  --c-text-inv:  #060B18;   /* text on light */

  /* Typography */
  --font-head:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;

  /* Radii */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;
  --r-xl: 24px; --r-2xl: 32px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.6);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.25);
  --shadow-glow: 0 0 80px rgba(37,99,235,0.15);

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;
}

/* ═══════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-void);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-cyan); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--c-text); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.0625rem; }
h6 { font-size: 0.9375rem; }
p { color: var(--c-text-2); line-height: 1.75; }

.text-display {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.text-gradient {
  background: linear-gradient(135deg, #60A5FA 0%, #06B6D4 50%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-lead { font-size: clamp(1.0625rem, 2vw, 1.25rem); color: var(--c-text-2); line-height: 1.7; }
.text-mono { font-family: var(--font-mono); }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--wide  { max-width: 1440px; }
.container--tight { max-width: 860px; }

.section        { padding-block: var(--sp-24); }
.section--lg    { padding-block: var(--sp-24) calc(var(--sp-24) * 1.5); }
.section--sm    { padding-block: var(--sp-16); }
.section--xs    { padding-block: var(--sp-12); }

.bg-void    { background: var(--c-void); }
.bg-deep    { background: var(--c-deep); }
.bg-ink     { background: var(--c-ink); }
.bg-surface { background: var(--c-surface); }

/* ═══════════════════════════════════════════════════════════════
   EYEBROW / LABEL
   ═══════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-cyan);
  padding: var(--sp-2) var(--sp-3);
  background: var(--c-cyan-dim);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--c-cyan);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn svg, .btn i { flex-shrink: 0; transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg, .btn:hover i { transform: translateX(2px); }

/* Primary */
.btn-primary {
  background: var(--c-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-blue-hi);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: #fff;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn-primary:hover::after { opacity: 1; }

/* Gold CTA */
.btn-gold {
  background: var(--c-gold);
  color: var(--c-text-inv);
  font-weight: 700;
}
.btn-gold:hover {
  background: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.35);
  color: var(--c-text-inv);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-hi);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(99,179,255,0.5);
  transform: translateY(-2px);
  color: var(--c-text);
}

/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--c-text-2);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--c-text);
}

/* Sizes */
.btn-sm  { padding: 0.5rem 1.125rem; font-size: 0.8125rem; border-radius: var(--r-sm); }
.btn-lg  { padding: 1rem 2.25rem;    font-size: 1.0625rem; }
.btn-xl  { padding: 1.125rem 2.75rem; font-size: 1.125rem; border-radius: var(--r-lg); }

/* ═══════════════════════════════════════════════════════════════
   BADGES / CHIPS
   ═══════════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-blue   { background: rgba(37,99,235,0.15);  color: #93C5FD; border: 1px solid rgba(37,99,235,0.3); }
.badge-cyan   { background: var(--c-cyan-dim);      color: #67E8F9; border: 1px solid rgba(6,182,212,0.25); }
.badge-gold   { background: var(--c-gold-dim);      color: #FCD34D; border: 1px solid rgba(245,158,11,0.3); }
.badge-green  { background: rgba(16,185,129,0.12);  color: #6EE7B7; border: 1px solid rgba(16,185,129,0.25); }
.badge-muted  { background: rgba(255,255,255,0.05); color: var(--c-text-3); border: 1px solid var(--c-border); }

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,179,255,0.35) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.card:hover {
  border-color: var(--c-border-hi);
  background: var(--c-raised);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(99,179,255,0.08);
}
.card:hover::before { opacity: 1; }

.card--flat   { transform: none !important; }
.card--glow:hover { box-shadow: var(--shadow-md), var(--shadow-glow); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--dur-base) var(--ease);
  padding: 0 var(--sp-6);
}
#site-header.scrolled {
  background: rgba(6,11,24,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  gap: var(--sp-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-cyan) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900; font-size: 0.875rem;
  color: #fff;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
}
.nav-logo-name span { color: var(--c-cyan); }

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-2);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-text); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--c-text); }

/* Mega Menu */
.nav-item { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9,16,31,0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,0,0,0.7);
  z-index: 100;
  min-width: 640px;
  animation: dropIn 0.2s var(--ease-out) both;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-item:hover .nav-dropdown { display: block; }

.nav-dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.nav-dd-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease);
}
.nav-dd-item:hover { background: rgba(255,255,255,0.04); }
.nav-dd-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--c-cyan-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-dd-title { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--c-text); margin-bottom: 2px; }
.nav-dd-desc  { font-size: 0.7375rem; color: var(--c-text-3); line-height: 1.4; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-cta { padding: 0.5625rem 1.25rem; font-size: 0.875rem; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
}
.nav-hamburger span { width: 18px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all var(--dur-fast); }

/* Mobile Nav */
.nav-mobile {
  display: none; position: fixed;
  inset: 0; top: 72px;
  background: rgba(6,11,24,0.98);
  backdrop-filter: blur(24px);
  overflow-y: auto; padding: var(--sp-6);
  z-index: 999;
}
.nav-mobile.open { display: block; }

@media (max-width: 1100px) { .nav-menu { display: none; } .nav-hamburger { display: flex; } }
@media (max-width: 640px)  { .nav-actions .btn-outline { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--c-void);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}
.hero-radial {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.hero-radial-1 {
  width: 700px; height: 700px;
  background: rgba(37,99,235,0.14);
  top: -150px; right: -150px;
}
.hero-radial-2 {
  width: 500px; height: 500px;
  background: rgba(6,182,212,0.08);
  bottom: -100px; left: 5%;
}
.hero-radial-3 {
  width: 300px; height: 300px;
  background: rgba(99,102,241,0.1);
  top: 30%; right: 25%;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding-block: 140px var(--sp-20);
}
@media (max-width: 1024px) { .hero-inner { grid-template-columns: 1fr; } .hero-visual { display: none; } }

.hero-content { max-width: 640px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-cyan);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
.hero-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.7); } }

.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-5);
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--c-text-2); line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}
.hero-actions {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-wrap: wrap; margin-bottom: var(--sp-12);
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}
.hero-stats {
  display: flex; align-items: center; gap: var(--sp-8);
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--c-text); letter-spacing: -0.04em; line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--c-text-3); margin-top: 4px; }
.hero-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* Hero Dashboard Panel */
.hero-visual { position: relative; animation: fadeLeft 1s var(--ease-out) 0.3s both; }
.hero-panel {
  background: linear-gradient(145deg, rgba(21,32,64,0.9), rgba(17,28,50,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-panel::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--r-2xl) + 1px);
  background: linear-gradient(135deg, rgba(37,99,235,0.4), rgba(6,182,212,0.15), transparent 60%);
  z-index: -1;
}
.panel-topbar {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.panel-dot { width: 9px; height: 9px; border-radius: 50%; }
.panel-dot-r { background: #FF5F57; } .panel-dot-a { background: #FEBC2E; } .panel-dot-g { background: #28C840; }
.panel-title { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--c-text-3); margin-left: auto; }
.panel-status { display: flex; align-items: center; gap: var(--sp-2); font-family: var(--font-mono); font-size: 0.6875rem; color: #34D399; }
.panel-pulse { width: 6px; height: 6px; border-radius: 50%; background: #34D399; animation: pulse 2s infinite; }

.panel-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-bottom: var(--sp-4); }
.panel-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  text-align: center;
}
.panel-metric-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--c-text); letter-spacing: -0.03em; }
.panel-metric-lbl { font-size: 0.6875rem; color: var(--c-text-3); margin-top: 3px; }
.panel-metric-val.green  { color: #34D399; }
.panel-metric-val.blue   { color: #60A5FA; }
.panel-metric-val.amber  { color: #FBBF24; }

.panel-bars { margin-bottom: var(--sp-4); }
.panel-bar-row { margin-bottom: var(--sp-3); }
.panel-bar-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-1); }
.panel-bar-name { font-size: 0.75rem; color: var(--c-text-2); }
.panel-bar-pct  { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--c-text-3); }
.panel-bar-track { height: 5px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.panel-bar-fill  { height: 100%; border-radius: 99px; }

.panel-clouds { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.panel-cloud-chip {
  padding: var(--sp-1) var(--sp-3);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--r-full);
  font-family: var(--font-mono); font-size: 0.65rem;
  color: #93C5FD;
}

/* ═══════════════════════════════════════════════════════════════
   PARTNERS TICKER
   ═══════════════════════════════════════════════════════════════ */
.partners-bar {
  background: var(--c-ink);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-5);
  overflow: hidden;
  position: relative;
}
.partners-bar::before, .partners-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.partners-bar::before { left: 0; background: linear-gradient(90deg, var(--c-ink), transparent); }
.partners-bar::after  { right: 0; background: linear-gradient(-90deg, var(--c-ink), transparent); }
.partners-track {
  display: flex; align-items: center; gap: var(--sp-12);
  animation: ticker 32s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-item {
  display: flex; align-items: center; gap: var(--sp-3);
  opacity: 0.4; transition: opacity var(--dur-base) var(--ease);
  white-space: nowrap;
}
.partner-item:hover { opacity: 1; }
.partner-badge {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 0.6875rem;
  color: #fff; flex-shrink: 0;
}
.partner-name { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--c-text-2); letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES TABS
   ═══════════════════════════════════════════════════════════════ */
.service-tabs-nav {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2); flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-2);
  margin-bottom: var(--sp-10);
}
.service-tab-btn {
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-lg);
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 600;
  color: var(--c-text-3); transition: all var(--dur-fast) var(--ease);
  cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.service-tab-btn:hover { color: var(--c-text); background: rgba(255,255,255,0.05); }
.service-tab-btn.active {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.service-panel { display: none; animation: fadeIn 0.3s var(--ease-out) both; }
.service-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
@media (max-width: 900px)  { .service-panel.active { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .service-panel.active { grid-template-columns: 1fr; } }

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--dur-base) var(--ease);
  display: flex; flex-direction: column; gap: var(--sp-3);
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--c-border-hi);
  background: var(--c-raised);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.service-card-icon-blue  { background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.2); }
.service-card-icon-cyan  { background: var(--c-cyan-dim);    border: 1px solid rgba(6,182,212,0.2); }
.service-card-icon-gold  { background: var(--c-gold-dim);    border: 1px solid rgba(245,158,11,0.2); }
.service-card-icon-green { background: rgba(16,185,129,0.12);border: 1px solid rgba(16,185,129,0.2); }
.service-card h4 { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--c-text); }
.service-card p  { font-size: 0.8125rem; color: var(--c-text-3); line-height: 1.6; flex: 1; }
.service-card-arrow { font-size: 0.8125rem; color: var(--c-blue-hi); font-weight: 600; transition: transform var(--dur-fast); }
.service-card:hover .service-card-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   CLOUDCARE TIERS
   ═══════════════════════════════════════════════════════════════ */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  border: 1px solid;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease);
}
.tier-card:hover { transform: translateY(-6px); }
.tier-card--starter  { background: rgba(17,28,50,0.8);  border-color: rgba(255,255,255,0.08); }
.tier-card--pro      { background: linear-gradient(145deg, rgba(37,99,235,0.12), rgba(17,28,50,0.9)); border-color: rgba(37,99,235,0.4); }
.tier-card--enterprise{ background: rgba(17,28,50,0.8); border-color: rgba(245,158,11,0.3); }

.tier-popular-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--c-blue); color: #fff;
  font-family: var(--font-mono); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
  text-transform: uppercase;
}
.tier-name { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-3); margin-bottom: var(--sp-2); }
.tier-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--c-text); letter-spacing: -0.04em; line-height: 1; margin-bottom: var(--sp-2); }
.tier-price-sub { font-size: 0.8125rem; color: var(--c-text-3); margin-bottom: var(--sp-6); }
.tier-divider { height: 1px; background: var(--c-border); margin-bottom: var(--sp-5); }
.tier-features { flex: 1; margin-bottom: var(--sp-6); }
.tier-feature {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: 0.875rem; color: var(--c-text-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tier-feature:last-child { border-bottom: none; }
.tier-feature-check { color: var(--c-cyan); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: 8.5%; right: 8.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-border-hi) 20%, var(--c-border-hi) 80%, transparent 100%);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 var(--sp-3); position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border-hi);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--c-cyan);
  margin-bottom: var(--sp-4);
  transition: all var(--dur-base) var(--ease);
}
.process-step:hover .process-num {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.1);
}
.process-label { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-1); }
.process-desc  { font-size: 0.75rem; color: var(--c-text-3); line-height: 1.5; }
@media (max-width: 900px)  { .process-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } .process-grid::before { display: none; } }
@media (max-width: 560px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════════════════════════ */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.industry-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-6);
  transition: all var(--dur-base) var(--ease);
  position: relative; overflow: hidden; cursor: default;
}
.industry-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--c-blue), var(--c-cyan));
  transform: scaleX(0); transition: transform var(--dur-base) var(--ease);
}
.industry-card:hover { border-color: var(--c-border-hi); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon { font-size: 2rem; margin-bottom: var(--sp-4); }
.industry-name { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-2); }
.industry-desc { font-size: 0.8rem; color: var(--c-text-3); line-height: 1.55; }
@media (max-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════ */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  border-right: 1px solid var(--c-border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(135deg, #60A5FA, #06B6D4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.875rem; color: var(--c-text-3); margin-top: var(--sp-2); }
@media (max-width: 760px)  { .stats-strip { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(2) { border-right: none; } }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.testimonial-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.testimonial-stars { color: var(--c-gold); font-size: 0.8125rem; letter-spacing: 3px; }
.testimonial-text { font-size: 0.9375rem; color: var(--c-text-2); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); padding-top: var(--sp-4); border-top: 1px solid var(--c-border); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 800; color: #fff; flex-shrink: 0;
  border: 2px solid rgba(6,182,212,0.3);
}
.testimonial-name { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--c-text); }
.testimonial-role { font-size: 0.75rem; color: var(--c-text-3); margin-top: 2px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.blog-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  display: flex; flex-direction: column;
  text-decoration: none;
}
.blog-card:hover { border-color: var(--c-border-hi); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-thumb {
  height: 188px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.blog-card-body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.blog-card-cat { display: inline-flex; }
.blog-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--c-text); line-height: 1.35; transition: color var(--dur-fast); }
.blog-card:hover h3 { color: var(--c-cyan); }
.blog-card p { font-size: 0.8125rem; color: var(--c-text-3); line-height: 1.6; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: var(--sp-3); font-size: 0.75rem; color: var(--c-text-3); margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--c-border); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, var(--c-deep) 50%, rgba(6,182,212,0.05) 100%);
  border-top: 1px solid rgba(37,99,235,0.15);
  border-bottom: 1px solid rgba(37,99,235,0.15);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-8); }
.cta-certs { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-6); }
.cta-cert { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; color: var(--c-text-3); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: var(--sp-1) var(--sp-3); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-ink);
  border-top: 1px solid var(--c-border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-block: var(--sp-16);
}
.footer-brand-desc { font-size: 0.875rem; color: var(--c-text-3); line-height: 1.7; margin-block: var(--sp-4); max-width: 280px; }
.footer-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer-social {
  width: 34px; height: 34px; border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--c-text-3); text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}
.footer-social:hover { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.footer-col-title { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-4); }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link { font-size: 0.8125rem; color: var(--c-text-3); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
.footer-link:hover { color: var(--c-text); }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--c-text-3); }
.footer-certs { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.footer-cert { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.06em; color: var(--c-text-3); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: 3px 8px; }
@media (max-width: 1100px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 720px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .footer-top { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   PAGE TEMPLATES
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--c-void);
  padding-top: 140px; padding-bottom: var(--sp-20);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37,99,235,0.12), transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: var(--sp-4); }
.page-hero-sub   { font-size: 1.125rem; color: var(--c-text-2); max-width: 620px; }

/* Content layout */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: var(--sp-12); align-items: start; }
@media (max-width: 1024px) { .content-with-sidebar { grid-template-columns: 1fr; } .content-sidebar { display: none; } }

/* Article content */
.prose { color: var(--c-text-2); font-size: 1.0625rem; line-height: 1.8; }
.prose h2 { font-family: var(--font-head); color: var(--c-text); font-size: 1.625rem; font-weight: 700; margin-top: var(--sp-10); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--c-border); }
.prose h3 { font-family: var(--font-head); color: var(--c-cyan); font-size: 1.1875rem; font-weight: 700; margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.prose p  { margin-bottom: var(--sp-5); }
.prose ul, .prose ol { padding-left: var(--sp-5); margin-bottom: var(--sp-5); }
.prose li { margin-bottom: var(--sp-2); }
.prose a  { color: var(--c-blue-hi); }
.prose strong { color: var(--c-text); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--c-blue); padding: var(--sp-4) var(--sp-5); background: rgba(37,99,235,0.06); border-radius: 0 var(--r-lg) var(--r-lg) 0; margin: var(--sp-8) 0; font-style: italic; }
.prose code { font-family: var(--font-mono); background: rgba(6,182,212,0.1); color: var(--c-cyan); padding: 2px 8px; border-radius: var(--r-sm); font-size: 0.875em; }
.prose pre { font-family: var(--font-mono); background: var(--c-ink); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-5); overflow-x: auto; margin: var(--sp-8) 0; font-size: 0.875rem; line-height: 1.7; }
.prose img { border-radius: var(--r-xl); margin: var(--sp-8) 0; }

/* Sidebar */
.sidebar-cta {
  background: linear-gradient(145deg, rgba(37,99,235,0.12), rgba(6,182,212,0.06));
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--r-xl); padding: var(--sp-6);
  text-align: center; margin-bottom: var(--sp-5);
}
.sidebar-cta h4 { font-family: var(--font-head); color: var(--c-text); font-size: 1.125rem; margin-bottom: var(--sp-3); }
.sidebar-cta p  { font-size: 0.875rem; margin-bottom: var(--sp-5); }
.sidebar-widget { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: var(--sp-5); margin-bottom: var(--sp-4); }
.sidebar-widget-title { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--c-text); padding-bottom: var(--sp-3); margin-bottom: var(--sp-4); border-bottom: 1px solid var(--c-border); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--sp-12); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--c-text-2); }
.form-input {
  background: rgba(255,255,255,0.04); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); color: var(--c-text);
  padding: var(--sp-3) var(--sp-4); font-size: 0.9375rem; font-family: var(--font-body);
  transition: border-color var(--dur-fast) var(--ease); outline: none; width: 100%;
}
.form-input:focus { border-color: var(--c-blue-hi); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.form-input::placeholder { color: var(--c-text-3); }
.form-select option { background: var(--c-deep); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: flex-start; gap: var(--sp-3); }
.form-check input { width: auto; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.96); } to { opacity:1; transform:scale(1); } }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-group > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal-group.visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:0s; }
.reveal-group.visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:.07s; }
.reveal-group.visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:.14s; }
.reveal-group.visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:.21s; }
.reveal-group.visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:.28s; }
.reveal-group.visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:.35s; }
.reveal-group.visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:.42s; }
.reveal-group.visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:.49s; }
.reveal-group.visible > *:nth-child(9)  { opacity:1; transform:none; transition-delay:.56s; }

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.8125rem; color: var(--c-text-3); margin-bottom: var(--sp-4); flex-wrap: wrap; }
.breadcrumb a { color: var(--c-text-3); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--c-cyan); }
.breadcrumb-sep { color: var(--c-text-3); opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.flex        { display: flex; }
.flex-wrap   { flex-wrap: wrap; }
.items-center{ align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-3  { gap: var(--sp-3); }  .gap-4 { gap: var(--sp-4); } .gap-6 { gap: var(--sp-6); }
.gap-8  { gap: var(--sp-8); }
.mt-4 { margin-top: var(--sp-4); } .mt-6 { margin-top: var(--sp-6); } .mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); } .mb-6 { margin-bottom: var(--sp-6); } .mb-8 { margin-bottom: var(--sp-8); } .mb-10 { margin-bottom: var(--sp-10); } .mb-12 { margin-bottom: var(--sp-12); }
.w-full { width: 100%; }
.sr-only { position:absolute; width:1px; height:1px; clip:rect(0,0,0,0); overflow:hidden; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); padding-top: var(--sp-10); }
.page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-md); font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: var(--c-text-2); border: 1px solid var(--c-border); transition: all var(--dur-fast); text-decoration: none; }
.page-numbers:hover, .page-numbers.current { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
