/* ========================================
   InnovateReach - Global Stylesheet
   Premium AI Digital Marketing Agency
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Root Variables ────────────────────── */
:root {
  --bg:       #FFFFFF;
  --bg2:      #F1F5F9;
  --bg3:      #E2E8F0;
  --cyan:     #0284C7;
  --cyan2:    #0369A1;
  --gold:     #D97706;
  --gold2:    #B45309;
  --text:     #0F172A;
  --text-inverse: #FFFFFF;
  --muted:    #64748B;
  --muted2:   #475569;
  --surface:  rgba(15,23,42,0.04);
  --border:   rgba(15,23,42,0.09);
  --border2:  rgba(2,132,199,0.25);
  --glow:     rgba(2,132,199,0.1);
  --glow-gold:rgba(217,119,6,0.1);
  --nav-bg:   rgba(255,255,255,0.88);
  --grid-color: rgba(15,23,42,0.04);
}

.dark {
  --bg:       #030B1A;
  --bg2:      #071224;
  --bg3:      #0C1A35;
  --cyan:     #06B6D4;
  --cyan2:    #22D3EE;
  --gold:     #F59E0B;
  --gold2:    #FCD34D;
  --text:     #F1F5F9;
  --text-inverse: #000000;
  --muted:    #64748B;
  --muted2:   #94A3B8;
  --surface:  rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(6,182,212,0.25);
  --glow:     rgba(6,182,212,0.15);
  --glow-gold:rgba(245,158,11,0.15);
  --nav-bg:   rgba(3,11,26,0.88);
  --grid-color: rgba(255,255,255,0.02);
}

/* ── Base Reset ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ── Custom Scrollbar ──────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan2); }

/* ── Custom Cursor ─────────────────────── */
#cursor-outer {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  mix-blend-mode: normal;
}
#cursor-inner {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, opacity 0.15s;
}
body.cursor-hover #cursor-outer {
  width: 56px; height: 56px;
  border-color: var(--gold);
  background: rgba(245,158,11,0.06);
}
body.cursor-hover #cursor-inner {
  width: 4px; height: 4px;
  opacity: 0.6;
}

/* ── Preloader ─────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.preloader-logo span { color: var(--cyan); }
.preloader-bar {
  width: 200px; height: 2px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: 99px;
  animation: fill-bar 1.8s ease forwards;
}
@keyframes fill-bar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Typography ────────────────────────── */
.font-syne { font-family: 'Syne', sans-serif; }
.font-outfit { font-family: 'Outfit', sans-serif; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  word-break: keep-all;
  hyphens: none;
  overflow-wrap: normal;
}

.gradient-text,
.gradient-text .char {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-cyan,
.gradient-text-cyan .char {
  background: linear-gradient(135deg, #22D3EE, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-gold,
.gradient-text-gold .char {
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-inverse);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  z-index: -2;
  transition: opacity 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan2), var(--cyan));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(6,182,212,0.35); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--glow);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--text-inverse);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,0.4); }

/* ── Navigation ────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted2);
  transition: color 0.3s;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 24px;
  animation: slideDown 0.3s ease;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--muted2);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
#mobile-menu a:hover { color: var(--cyan); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Glass Cards ───────────────────────── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  transition: all 0.4s ease;
}
.glass-card:hover {
  border-color: var(--border2);
  background: rgba(6,182,212,0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(6,182,212,0.1);
}
.glass-card-gold:hover {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.05);
  box-shadow: 0 20px 60px rgba(245,158,11,0.1);
}

/* Animated border card */
.border-glow {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.border-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cyan), transparent, var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.border-glow:hover::before { opacity: 1; }
.border-glow:hover { border-color: transparent; transform: translateY(-6px); }

/* ── Section Styles ────────────────────── */
section { position: relative; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
}
.section-tag-gold {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.25);
  color: var(--gold);
}

/* ── Animations ────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(6,182,212,0.2); }
  50%       { box-shadow: 0 0 50px rgba(6,182,212,0.5); }
}
@keyframes pulse-glow-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(245,158,11,0.2); }
  50%       { box-shadow: 0 0 50px rgba(245,158,11,0.5); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(120deg) translateX(140px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(140px) rotate(-480deg); }
}
@keyframes orbit3 {
  from { transform: rotate(240deg) translateX(160px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(160px) rotate(-600deg); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes counter-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Utility classes */
.animate-float { animation: float 5s ease-in-out infinite; }
.animate-float2 { animation: float2 6s ease-in-out infinite; }
.animate-float3 { animation: float 7s ease-in-out infinite 1s; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-pulse-glow-gold { animation: pulse-glow-gold 3s ease-in-out infinite; }
.animate-spin-slow { animation: spin-slow 20s linear infinite; }
.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.2), transparent);
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite;
}

/* ── Scroll Reveal ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Heading Character-Split Reveal ──────
   Matches the animation from the reference.
   JS splitAndAnimate() wraps each char in a
   .char span with staggered transitionDelay.
   Add class="split-title" to any h1/h2/h3.
   ─────────────────────────────────────── */
.word {
  display: inline-block;
  white-space: nowrap;
}
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.char.revealed { opacity: 1; transform: translateY(0); }

/* Pre-hide split headings; JS handles the reveal */
.split-title { opacity: 0; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── Hero Canvas ───────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Marquee ───────────────────────────── */
.marquee-wrapper { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* ── Stats Counter ─────────────────────── */
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

/* ── Service Cards ─────────────────────── */
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  transition: all 0.4s ease;
}
.glass-card:hover .service-icon-wrap {
  background: rgba(6,182,212,0.2);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(6,182,212,0.3);
}
.service-icon-gold { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.2); }
.glass-card:hover .service-icon-gold { background: rgba(245,158,11,0.2); box-shadow: 0 0 20px rgba(245,158,11,0.3); }

/* ── Testimonial ───────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--cyan);
  opacity: 0.1;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: var(--border2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(6,182,212,0.08);
}

/* ── Progress Bar ──────────────────────── */
.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: 99px;
  transition: width 1.2s ease;
}

/* ── Timeline ──────────────────────────── */
.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px; top: 24px; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute;
  left: 0; top: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ── Form Elements ─────────────────────── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}
.form-input::placeholder { color: var(--muted); }
select.form-input option { background: var(--bg2); color: var(--text); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── Blog Card ─────────────────────────── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(6,182,212,0.08); }
.blog-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(3,11,26,0.8));
}
.blog-card-img-bg {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img-bg { transform: scale(1.06); }

/* ── FAQ Accordion ─────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 0.85rem;
  color: var(--cyan);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(6,182,212,0.1); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--muted2);
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ── Comparison Table ──────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th { color: var(--muted2); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table td:first-child { text-align: left; color: var(--muted2); }
.compare-table .check { color: #22C55E; font-size: 1.1rem; }
.compare-table .cross { color: #EF4444; font-size: 1.1rem; }
.compare-table .highlight-col { background: rgba(6,182,212,0.06); }

/* ── Pricing Cards ─────────────────────── */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--cyan);
  background: rgba(6,182,212,0.05);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(6,182,212,0.12); }

/* ── Footer ────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-link {
  color: var(--muted2);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: block;
  margin-bottom: 10px;
}
.footer-link:hover { color: var(--cyan); }
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}
.social-icon:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(6,182,212,0.1); transform: translateY(-3px); }

/* ── Gradient BG Mesh ──────────────────── */
.mesh-bg {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
}

/* ── Category Pills ────────────────────── */
.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--muted2);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
.category-pill:hover, .category-pill.active {
  background: rgba(6,182,212,0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── Process Step ──────────────────────── */
.process-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
.process-step:last-child::before { display: none; }
.process-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── Tech Badge ────────────────────────── */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted2);
  transition: all 0.3s;
}
.tech-badge:hover { border-color: var(--border2); color: var(--cyan); background: var(--glow); }

/* ── Hero Typing Cursor ────────────────── */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.8s infinite;
}

/* ── Award Badge ───────────────────────── */
.award-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.award-badge:hover { border-color: var(--gold); background: rgba(245,158,11,0.05); transform: translateY(-4px); }

/* ── Contact Info Card ─────────────────── */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.4s;
}
.contact-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(6,182,212,0.08); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 1.2rem;
}

/* ── CTA Banner ────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(6,182,212,0.08) 0%, rgba(245,158,11,0.06) 100%);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(6,182,212,0.03) 60deg, transparent 120deg);
  animation: spin-slow 30s linear infinite;
}

/* ── Breadcrumb ────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb-sep { color: var(--muted); }

/* ── Page Hero ─────────────────────────── */
.page-hero {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* ── Mobile Responsiveness ─────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor-outer, #cursor-inner { display: none; }
  .stat-number { font-size: 2rem; }
  .page-hero { min-height: 360px; padding-top: 100px; padding-bottom: 60px; }
  .pricing-card { padding: 24px; }
  .testimonial-card { padding: 24px; }
  .contact-card { flex-direction: column; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.8rem; }
  .split-title { font-size: 2.5rem !important; }
}

@media (max-width: 400px) {
  .split-title { font-size: 2rem !important; }
}

/* ── Divider ───────────────────────────── */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.3;
}

/* ── Tag Colors ────────────────────────── */
.tag-web    { background: rgba(6,182,212,0.1);  color: var(--cyan); border: 1px solid rgba(6,182,212,0.2);  border-radius: 6px; padding: 2px 10px; font-size: 0.75rem; font-weight: 600; }
.tag-seo    { background: rgba(34,197,94,0.1);  color: #22C55E;     border: 1px solid rgba(34,197,94,0.2);  border-radius: 6px; padding: 2px 10px; font-size: 0.75rem; font-weight: 600; }
.tag-ai     { background: rgba(168,85,247,0.1); color: #A855F7;     border: 1px solid rgba(168,85,247,0.2); border-radius: 6px; padding: 2px 10px; font-size: 0.75rem; font-weight: 600; }
.tag-mkt    { background: rgba(245,158,11,0.1); color: var(--gold); border: 1px solid rgba(245,158,11,0.2); border-radius: 6px; padding: 2px 10px; font-size: 0.75rem; font-weight: 600; }
.tag-dev    { background: rgba(239,68,68,0.1);  color: #EF4444;     border: 1px solid rgba(239,68,68,0.2);  border-radius: 6px; padding: 2px 10px; font-size: 0.75rem; font-weight: 600; }
.tag-ux     { background: rgba(236,72,153,0.1); color: #EC4899;     border: 1px solid rgba(236,72,153,0.2); border-radius: 6px; padding: 2px 10px; font-size: 0.75rem; font-weight: 600; }

/* ── Header Scroll Progress Bar ────────── */
#scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* ── Back to Top Button ────────────────── */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
}
#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(6,182,212,0.4);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s;
}
#back-to-top:hover .arrow {
  color: var(--cyan);
}
#back-to-top svg.progress-circle {
  width: 100%;
  height: 100%;
}
#back-to-top svg.progress-circle path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  box-sizing: border-box;
}