/* ═══════════════════════════════════════════════════════════════════
   FEXUS GROUP — Complete Stylesheet
   Architecture: css/styles.css · js/main.js · index.html
═══════════════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN SYSTEM ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:     #0a1628;
  --bg-surface:  #0f1f3d;
  --bg-raised:   #162040;
  --bg-glass:    rgba(15, 31, 61, 0.55);
  --bg-footer:   #060f1e;

  /* Brand */
  --teal:        #0d9488;
  --teal-light:  #14b8a6;
  --teal-dark:   #0a7a70;
  --teal-dim:    rgba(13, 148, 136, 0.15);
  --teal-glow:   rgba(13, 148, 136, 0.25);
  --gold:        #f59e0b;
  --gold-dim:    rgba(245, 158, 11, 0.12);
  --success:     #10b981;
  --danger:      #ef4444;
  --danger-dim:  rgba(239, 68, 68, 0.12);

  /* Text */
  --text-primary: #f1f5f9;
  --text-muted:   #94a3b8;
  --text-subtle:  #64748b;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.11);
  --border-accent: rgba(13, 148, 136, 0.3);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg:  0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl:  0 16px 64px rgba(0, 0, 0, 0.6);
  --glow-sm:    0 0 30px rgba(13, 148, 136, 0.15);
  --glow-md:    0 0 60px rgba(13, 148, 136, 0.2);
  --glow-lg:    0 0 100px rgba(13, 148, 136, 0.28);
  --glow-card:  0 8px 40px rgba(13, 148, 136, 0.2), 0 0 0 1px rgba(13, 148, 136, 0.15);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.18s;
  --t-base: 0.3s;
  --t-slow: 0.5s;

  /* Layout */
  --max-w:     1280px;
  --pad-y:     110px;
  --angle-h:   76px;
}

/* ─── 2. RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--bg-surface);
  -webkit-text-size-adjust: 100%;
}
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-light); }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a               { color: inherit; text-decoration: none; }
button          { cursor: pointer; font-family: var(--font-body); }
ul, ol          { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* ─── 3. FOCUS / ACCESSIBILITY ─────────────────────────────────────── */
:focus                   { outline: none; }
:focus-visible           { outline: 2px solid var(--teal-light); outline-offset: 3px; border-radius: var(--r-sm); }
a:focus-visible,
button:focus-visible     { outline: 2px solid var(--teal-light); outline-offset: 3px; border-radius: var(--r-sm); }
input:focus-visible,
select:focus-visible,
textarea:focus-visible   { outline: none; /* handled by border rules below */ }

/* ─── 4. LAYOUT ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; overflow: hidden; }

/* ─── 5. SHARED UTILITIES ───────────────────────────────────────────── */
.teal   { color: var(--teal-light); }
.gold   { color: var(--gold); }
.muted  { color: var(--text-muted); }

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

/* Section angle dividers — absolutely positioned bottom of each section */
.section-angle {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: var(--angle-h);
  z-index: 2;
  pointer-events: none;
}
.ang-surface   { background: var(--bg-surface); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.ang-surface-l { background: var(--bg-surface); clip-path: polygon(0 0, 100% 100%, 0 100%); }
.ang-base      { background: var(--bg-base);    clip-path: polygon(0 0, 100% 100%, 0 100%); }
.ang-base-r    { background: var(--bg-base);    clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.ang-footer    { background: var(--bg-footer);  clip-path: polygon(0 100%, 100% 0, 100% 100%); }

/* ─── 6. SECTION LABELS, TITLES ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: var(--teal-dim);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 560px;
}

/* ─── 7. BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  transition:
    transform  var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    background var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    color var(--t-base) var(--ease);
  white-space: nowrap;
}

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--teal-glow);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* ─── 8. SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity   0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.40s; }

/* ─── 9. NAVIGATION ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    padding    var(--t-base) var(--ease),
    background var(--t-slow) var(--ease),
    box-shadow var(--t-slow) var(--ease);
}
#navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.logo-link:hover { opacity: 0.85; }

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: height var(--t-base) var(--ease);
}
#navbar.scrolled .nav-logo-img {
  height: 52px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  opacity: 0.95;
}

/* Legacy text logo — kept for graceful fallback if SVG fails to load */
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  box-shadow: var(--glow-sm);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--teal-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav     { padding: 9px 20px; font-size: 0.85rem; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity var(--t-fast);
  white-space: nowrap;
}
.nav-phone:hover { opacity: 0.8; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
  transition: border-color var(--t-fast);
}
.hamburger:hover { border-color: var(--teal); }
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 999; }
.mobile-drawer.open { display: block; }

.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  padding: 90px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-panel a {
  display: block;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.drawer-panel a:hover { color: var(--text-primary); background: var(--bg-raised); border-color: var(--border); }

.drawer-cta { margin-top: 16px; }
.drawer-cta .btn { width: 100%; justify-content: center; }

/* ─── 10. HERO ───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 calc(120px + var(--angle-h));
  background: var(--bg-base);
}

#hero-canvas {
  position: absolute; inset: 0;
  z-index: 0;
}

/* Noise texture */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
}

.orb-hero-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(13,148,136,0.22) 0%, transparent 70%);
  top: -200px; right: -140px;
}
.orb-hero-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,158,11,0.09) 0%, transparent 70%);
  bottom: -80px; left: -100px;
}
.orb-hero-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(13,148,136,0.14) 0%, transparent 70%);
  top: 45%; left: 38%;
  transform: translate(-50%, -50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(13,148,136,0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-pill);
  padding: 7px 16px 7px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -2.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-headline .hl {
  position: relative;
  color: var(--teal-light);
  display: inline-block;
}
.hero-headline .hl::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 490px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-contact-line {
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--white-dim);
}
.hero-contact-line a {
  color: var(--teal-light);
  text-decoration: none;
  font-weight: 500;
}
.hero-contact-line a:hover { text-decoration: underline; }

/* Hero facility pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-pills-label {
  font-size: 0.68rem;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  flex-basis: 100%;
  margin-bottom: 2px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--t-fast);
  cursor: default;
}
.hero-pill:hover { background: var(--teal-dim); border-color: var(--border-accent); color: var(--teal-light); }
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); opacity: 0.7; flex-shrink: 0; }

/* Hero visual — float animation */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: float 3.5s ease-in-out infinite;
  will-change: transform;
}

/* Tracking card */
.tracking-card {
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl), var(--glow-md);
}
.tracking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.tracking-id { font-size: 0.7rem; color: var(--text-subtle); letter-spacing: 0.1em; font-weight: 500; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 4px 11px;
  border-radius: var(--r-pill);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.6s ease infinite;
}

.tracking-route {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.route-point { flex: 1; }
.route-label { font-size: 0.65rem; color: var(--text-subtle); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.route-name  { font-size: 0.87rem; font-weight: 700; color: var(--text-primary); }
.route-arrow { color: var(--teal); flex-shrink: 0; }

.tracking-progress { margin-bottom: 20px; }
.progress-bg { height: 5px; background: var(--bg-raised); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.progress-fill {
  height: 100%; width: 73%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 3px;
  animation: progress-grow 1.8s var(--ease) 0.6s both;
}
.progress-meta { display: flex; justify-content: space-between; font-size: 0.69rem; color: var(--text-subtle); }

.tracking-steps { display: flex; justify-content: space-between; }
.t-step { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; }
.t-ring  { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.t-ring.done    { background: rgba(13,148,136,0.2); color: var(--teal-light); }
.t-ring.active  { background: var(--teal); color: #fff; box-shadow: 0 0 16px rgba(13,148,136,0.5); }
.t-ring.pending { background: var(--bg-raised); color: var(--text-subtle); }
.t-lbl { font-size: 0.6rem; color: var(--text-subtle); font-weight: 600; text-align: center; }

/* Mini cards below tracking widget */
.hero-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-mini-card { border-radius: var(--r-lg); padding: 16px 18px; box-shadow: var(--shadow-md); }
.mini-lbl { font-size: 0.66rem; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.mini-val { font-size: 1.15rem; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.mini-sub { font-size: 0.66rem; color: var(--text-subtle); }

/* Hero load animations */
.hero-content > * { animation: fade-up 0.75s var(--ease) both; }
.anim-d0  { animation-delay: 0.00s; }
.anim-d1  { animation-delay: 0.10s; }
.anim-d2  { animation-delay: 0.20s; }
.anim-d3  { animation-delay: 0.30s; }
.anim-d4  { animation-delay: 0.40s; }
.hero-visual { animation-delay: 0.15s; }

/* ─── 11. TRUST BAR / MARQUEE ────────────────────────────────────────── */
#trust-bar {
  padding: 30px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
#trust-bar::before, #trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
#trust-bar::before { left: 0;  background: linear-gradient(to right, var(--bg-surface), transparent); }
#trust-bar::after  { right: 0; background: linear-gradient(to left,  var(--bg-surface), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.marquee-item:hover { color: var(--text-muted); }
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-accent); flex-shrink: 0; }

/* ─── 12. SERVICES ──────────────────────────────────────────────────── */
#services {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-base);
}
.orb-services {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(13,148,136,0.11) 0%, transparent 70%);
  bottom: -120px; right: -120px;
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.service-card {
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform    var(--t-base) var(--ease),
    box-shadow   var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
  border-radius: 2px 2px 0 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-card);
  border-color: var(--border-accent);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--teal-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  margin-bottom: 20px;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), box-shadow var(--t-base);
}
.service-card:hover .service-icon-wrap {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 0 28px rgba(13,148,136,0.45);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.73;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  transition: gap var(--t-base) var(--ease), color var(--t-fast);
}
.service-card:hover .service-link { gap: 10px; color: var(--teal-light); }

/* ─── 13. HOW IT WORKS ───────────────────────────────────────────────── */
#how-it-works {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-surface);
}
.hiw-header { text-align: center; margin-bottom: 72px; }
.hiw-header .section-subtitle { margin: 0 auto; }

.hiw-steps-wrap { position: relative; }

.hiw-connector {
  position: absolute;
  top: 37px;
  left: calc(12.5% + 38px);
  right: calc(12.5% + 38px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.6s var(--ease) 0.25s;
  will-change: transform;
  box-shadow: 0 0 12px rgba(13,148,136,0.4);
}
.hiw-connector.animate { transform: scaleX(1); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.hiw-icon-wrap { position: relative; margin-bottom: 26px; }
.hiw-icon-ring {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  position: relative;
  z-index: 1;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), box-shadow var(--t-base);
}
.hiw-step:hover .hiw-icon-ring {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 0 36px rgba(13,148,136,0.5);
}
.hiw-step-num {
  position: absolute;
  top: -3px; right: -3px;
  width: 22px; height: 22px;
  background: var(--teal);
  border: 2.5px solid var(--bg-surface);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hiw-step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.hiw-step-desc  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.68; }

/* ─── 14. STATS ──────────────────────────────────────────────────────── */
#stats {
  padding: calc(var(--pad-y) * 0.8 + var(--angle-h)) 0 calc(var(--pad-y) * 0.8 + var(--angle-h));
  background: linear-gradient(140deg, #060e1b 0%, var(--bg-base) 100%);
  border-top: 1px solid var(--border);
}
.orb-stats {
  width: 900px; height: 340px;
  background: radial-gradient(ellipse, rgba(13,148,136,0.13) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.stat-item {
  background: linear-gradient(140deg, #060e1b 0%, var(--bg-base) 100%);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  transition: background var(--t-base);
}
.stat-item:hover { background: rgba(13,148,136,0.05); }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  border-radius: 2px;
  transition: width 0.9s var(--ease) 1.4s;
}
.stat-item.counted::after { width: 56px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.stat-number .ac  { color: var(--teal-light); }
.stat-number .gac { color: var(--gold); }
.stat-label {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ─── 15. WHY FEXUS ──────────────────────────────────────────────────── */
#why-fexus {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-base);
}
.orb-why {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  top: 0; left: -100px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-eyebrow-line { width: 56px; height: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); border-radius: 2px; margin-bottom: 26px; }
.why-left .section-subtitle { margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--t-base) var(--ease);
}
.why-feature:first-child { padding-top: 0; }
.why-feature:last-child  { border-bottom: none; padding-bottom: 0; }
.why-feature:hover       { padding-left: 6px; }

.why-feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--teal-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.why-feature:hover .why-feat-icon { background: rgba(13,148,136,0.25); box-shadow: var(--glow-sm); }
.why-feat-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.why-feat-text p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* Why visual */
.why-visual { position: relative; height: 500px; }
.why-box { position: absolute; border-radius: var(--r-xl); border: 1px solid var(--border); }
.why-box-back  { inset: 48px 0 0 48px; background: linear-gradient(135deg, var(--bg-surface), var(--bg-raised)); }
.why-box-front {
  top: 0; left: 0; right: 72px; bottom: 72px;
  background: linear-gradient(135deg, var(--bg-raised), var(--bg-surface));
  border-color: var(--border-accent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.why-box-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,0.18);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 0.74rem; font-weight: 700; color: var(--teal-light);
  margin-bottom: 14px; width: fit-content;
}
.why-big-stat { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.why-big-sub  { font-size: 0.84rem; color: var(--text-muted); }
.why-corner-card {
  position: absolute;
  bottom: 16px; right: -14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 172px;
  z-index: 2;
}
.corner-label { font-size: 0.66rem; color: var(--text-subtle); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 5px; }
.corner-val   { font-weight: 800; color: var(--gold); font-size: 0.94rem; }

/* ─── 16. COMPLIANCE ─────────────────────────────────────────────────── */
#compliance {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-surface);
}
.orb-compliance {
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(13,148,136,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.compliance-header { text-align: center; margin-bottom: 60px; }
.compliance-header .section-subtitle { margin: 0 auto; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.compliance-card {
  border-radius: var(--r-xl);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.compliance-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(13,148,136,0.13) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.compliance-card:hover { transform: translateY(-6px); box-shadow: var(--glow-card); }
.compliance-card:hover::before { opacity: 1; }

.compliance-icon-wrap {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  margin: 0 auto 20px;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base), color var(--t-base);
}
.compliance-card:hover .compliance-icon-wrap {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 0 32px rgba(13,148,136,0.5);
}
.compliance-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.compliance-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.compliance-desc  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.74; }

/* ─── 17. TESTIMONIALS ───────────────────────────────────────────────── */
#testimonials {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-surface);
}
.orb-testimonials {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(13,148,136,0.09) 0%, transparent 70%);
  top: -60px; right: -100px;
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  border-radius: var(--r-xl);
  padding: 36px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg), var(--glow-sm); }

.t-quote-mark { font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--teal); opacity: 0.22; display: block; margin-bottom: -20px; }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.t-text  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.78; font-style: italic; margin-bottom: 26px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,148,136,0.2), rgba(13,148,136,0.05));
  border: 1.5px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: var(--teal-light);
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }
.t-role { font-size: 0.76rem; color: var(--text-subtle); margin-top: 2px; line-height: 1.4; }

/* ─── 18. ABOUT ──────────────────────────────────────────────────────── */
#about {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-base);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 18px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.about-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--t-fast);
}
.about-chip:hover { border-color: var(--border-accent); color: var(--teal-light); }
.about-chip i { color: var(--teal); }

.about-visual { position: relative; height: 520px; }
.about-box-a {
  position: absolute;
  top: 0; right: 0;
  width: 76%; height: 72%;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-raised));
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 40px;
}
.about-box-b {
  position: absolute;
  bottom: 0; left: 0;
  width: 62%; height: 54%;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg-raised), var(--bg-surface));
  border: 1px solid var(--border-accent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.about-box-icon {
  width: 62px; height: 62px;
  border-radius: var(--r-lg);
  background: var(--teal-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
}
.about-box-label { font-size: 0.72rem; color: var(--text-subtle); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.about-box-hl    { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.about-box-sub   { font-size: 0.77rem; color: var(--text-muted); }
.about-float-badge {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-base);
  border: 1.5px solid var(--teal);
  border-radius: var(--r-md);
  padding: 14px 22px;
  box-shadow: var(--shadow-lg), var(--glow-md);
  z-index: 3;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.float-badge-lbl { font-size: 0.63rem; color: var(--text-subtle); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.float-badge-val { font-weight: 800; font-size: 1.1rem; color: var(--teal-light); }

/* ─── 19. CONTACT / FORM ─────────────────────────────────────────────── */
#contact {
  padding: calc(var(--pad-y) + var(--angle-h)) 0 calc(var(--pad-y) + var(--angle-h));
  background: var(--bg-surface);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 64px; align-items: start; }

.contact-info-head { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--text-primary); margin-bottom: 16px; line-height: 1.22; }
.contact-info-sub  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-items     { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item      { display: flex; align-items: center; gap: 14px; }
.c-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--teal-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}
.c-item-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-subtle); margin-bottom: 2px; }
.c-item-value { font-size: 0.87rem; font-weight: 600; color: var(--text-primary); }
.c-item-value a { color: var(--teal-light); transition: color var(--t-fast); }
.c-item-value a:hover { color: var(--text-primary); }
.c-item-sub { font-size: 0.72rem; color: var(--text-subtle); margin-top: 3px; line-height: 1.4; }

.contact-assurance { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; display: flex; align-items: flex-start; gap: 12px; }
.assurance-icon { color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.assurance-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.62; }

/* Form */
.form-wrap { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px; }
.form-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--text-primary); margin-bottom: 28px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.73rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-label .req { color: var(--teal); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 0.9rem; color: var(--text-primary);
  outline: none; appearance: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-subtle); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-input.invalid, .form-select.invalid, .form-textarea.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-dim);
}
.form-error { display: none; font-size: 0.74rem; color: #f87171; margin-top: 5px; }
.form-error.show { display: block; }

.btn-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; border-radius: var(--r-md); }
.spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
.btn-submit.loading .btn-label { display: none; }
.btn-submit.loading .spinner   { display: block; }
.btn-submit.loading { pointer-events: none; opacity: 0.82; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 52px 24px; gap: 16px; }
.form-success.show { display: flex; }
.success-ring { width: 72px; height: 72px; border-radius: 50%; background: rgba(16,185,129,0.12); border: 2px solid var(--success); display: flex; align-items: center; justify-content: center; color: var(--success); }
.success-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.success-sub   { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; max-width: 340px; }

/* ─── 20. FOOTER ─────────────────────────────────────────────────────── */
#footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-tagline { font-size: 0.86rem; color: var(--text-muted); line-height: 1.72; margin: 16px 0 24px; max-width: 272px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.social-btn:hover { background: var(--teal-dim); border-color: var(--border-accent); color: var(--teal-light); transform: translateY(-2px); }
.footer-col-title { font-size: 0.74rem; font-weight: 700; color: var(--text-primary); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.79rem; color: var(--text-subtle); }
.footer-copy span { color: var(--teal); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.77rem; color: var(--text-subtle); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--text-muted); }

/* ─── 21. SCROLL-TO-TOP ──────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 997;
  box-shadow: 0 4px 20px rgba(13,148,136,0.45);
  transition: opacity var(--t-base), transform var(--t-base) var(--ease), background var(--t-fast), box-shadow var(--t-base);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover   { background: var(--teal-light); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,148,136,0.55); }

/* ─── 22. COOKIE BANNER ──────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow-xl), var(--glow-md);
  animation: slide-up-banner 0.5s var(--ease) 1.5s both;
}
#cookie-banner.hidden { display: none; }
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.cookie-text { flex: 1; font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.cookie-text a { color: var(--teal-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text strong { color: var(--text-primary); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 9px 18px; border-radius: var(--r-pill); font-size: 0.82rem; font-weight: 600; border: none; cursor: pointer; font-family: var(--font-body); transition: all var(--t-fast); }
.cookie-btn-accept  { background: var(--teal); color: #fff; }
.cookie-btn-accept:hover  { background: var(--teal-light); }
.cookie-btn-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.cookie-btn-decline:hover { color: var(--text-primary); border-color: var(--border-strong); }

/* ─── 23. KEYFRAMES ──────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  40%       { transform: translateY(-13px); }
  70%       { transform: translateY(-7px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.72); }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes progress-grow {
  from { width: 0%; }
  to   { width: 73%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes slide-up-banner {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── 24. MOBILE CALL BAR ────────────────────────────────────────────── */
.mobile-call-bar {
  display: none; /* shown via @media (max-width: 768px) */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal);
  z-index: 200;
  padding: 16px;
  text-align: center;
  box-shadow: 0 -2px 16px rgba(13,148,136,0.3);
}
.mobile-call-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ─── 25. RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --pad-y: 90px; }
  .services-grid { gap: 16px; }
  .why-grid { gap: 60px; }
}

@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .footer-top         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .compliance-grid    { gap: 16px; }
}

@media (max-width: 768px) {
  :root { --pad-y: 70px; --angle-h: 50px; }

  .nav-links, .nav-actions, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-mini-cards { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hiw-connector { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-visual  { height: 320px; }
  .about-visual { height: 300px; }
  .why-corner-card { right: 0; }

  .compliance-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }

  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  #scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }

  .mobile-call-bar { display: block; }
  footer { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  :root { --pad-y: 56px; --angle-h: 36px; }

  .container { padding: 0 18px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-mini-cards { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .compliance-grid { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Logo: shrink slightly on small phones */
  .nav-logo-img { height: 50px; }
  #navbar.scrolled .nav-logo-img { height: 42px; }
}

@media (min-width: 1500px) {
  .hero-headline { font-size: 6.2rem; }
}
