/* ============================================================
   i-rana.com — Global Stylesheet
   Author: Imran "i-rana" Ali
   Design: Dark Glassmorphism — Blue #2563EB | Purple #8B5CF6
   ============================================================ */

/* ─────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:      #0F172A;
  --bg-secondary:    #1E293B;
  --bg-card:         rgba(255, 255, 255, 0.04);
  --bg-card-hover:   rgba(255, 255, 255, 0.08);
  --bg-solid:        #162035;
  --navy:            #1E293B;

  /* Borders */
  --border:          rgba(255, 255, 255, 0.10);
  --border-light:    rgba(255, 255, 255, 0.18);

  /* Blue */
  --blue:            #2563EB;
  --blue-hover:      #1D4ED8;
  --blue-light:      #3B82F6;
  --blue-dim:        rgba(37, 99, 235, 0.12);

  /* Purple */
  --purple:          #8B5CF6;
  --purple-hover:    #7C3AED;
  --purple-dim:      rgba(139, 92, 246, 0.12);

  /* Cyan */
  --cyan:            #06B6D4;
  --cyan-hover:      #0891B2;
  --cyan-dim:        rgba(6, 182, 212, 0.10);

  /* Orange */
  --orange:          #F97316;
  --orange-hover:    #EA580C;
  --orange-dim:      rgba(249, 115, 22, 0.10);

  /* Text */
  --white:           #FFFFFF;
  --text-primary:    #FFFFFF;
  --text-secondary:  #CBD5E1;
  --text-muted:      #94A3B8;
  --soft:            #64748B;

  /* Status */
  --success:         #22C55E;
  --warning:         #F59E0B;
  --danger:          #EF4444;

  /* Typography */
  --font-sans:       'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm:       8px;
  --radius:          12px;
  --radius-lg:       20px;
  --radius-xl:       24px;
  --radius-full:     9999px;

  /* Shadows */
  --shadow:          0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg:       0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-xl:       0 20px 60px rgba(0, 0, 0, 0.55);

  /* Glows */
  --glow-blue:       0 0 30px rgba(37, 99, 235, 0.30);
  --glow-purple:     0 0 30px rgba(139, 92, 246, 0.30);
  --glow-cyan:       0 0 30px rgba(6, 182, 212, 0.25);
  --glow-orange:     0 0 30px rgba(249, 115, 22, 0.25);

  /* Motion */
  --transition:      all 0.25s ease;
  --transition-slow: all 0.4s ease;

  /* Layout */
  --container:       1200px;
  --nav-height:      72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; color: var(--text-primary); font-weight: 700; }
p { color: var(--text-secondary); line-height: 1.75; }
::selection { background: rgba(37, 99, 235, 0.15); color: var(--text-primary); }

/* ─────────────────────────────────────────
   3. LAYOUT
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section     { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 130px 0; }
.section--alt { background: var(--bg-secondary); }

.grid    { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }

/* ─────────────────────────────────────────
   4. SECTION LABELS & HEADINGS
───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title span {
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ─────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  position: relative;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-hover) 0%, var(--purple-hover) 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.40);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn--outline:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn--cyan {
  background: var(--cyan);
  color: var(--bg-primary);
  border-color: var(--cyan);
  font-weight: 700;
}
.btn--cyan:hover {
  background: var(--cyan-hover);
  border-color: var(--cyan-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.35);
}

.btn--sm  { font-size: 13px; padding: 9px 18px; }
.btn--lg  { font-size: 16px; padding: 16px 36px; border-radius: var(--radius-lg); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   6. NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition-slow);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-slow);
}

.nav.scrolled::before {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Mobile nav — hidden globally; shown only at ≤1024px via .open class */
.nav__mobile { display: none; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__logo-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav__logo-text span { color: var(--blue); }

.nav__logo-tagline {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--purple);
  background: var(--purple-dim);
}
.nav__link.active {
  color: var(--purple);
  background: var(--purple-dim);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
}

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.nav__dropdown-item {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__dropdown-item:hover {
  color: var(--blue);
  background: var(--cyan-dim);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   7. HERO SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--blue {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.hero__glow--cyan {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
}

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

.hero__content { max-width: 640px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--cyan-dim);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-icon svg { width: 16px; height: 16px; color: var(--cyan); }

.hero__trust-label { font-size: 13px; color: var(--text-muted); }
.hero__trust-label strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }

/* Hero Visual Card */
.hero__visual { position: relative; }

.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__stat {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
}

.hero__stat:hover { border-color: var(--border-light); transform: translateY(-2px); }

.hero__stat-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero__platforms {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.hero__platforms-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero__platform-list { display: flex; gap: 6px; flex-wrap: wrap; }

.hero__platform-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hero__platform-tag:hover { color: var(--cyan); border-color: var(--cyan); }

.hero__availability {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
}

.hero__avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.hero__avail-text { font-size: 13px; font-weight: 600; color: var(--success); }

/* Floating badges */
.hero__float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__float--tl { top: -16px; left: -16px; animation: float 4s ease-in-out infinite; }
.hero__float--br { bottom: -16px; right: -10px; animation: float 4s ease-in-out 2s infinite; }

.hero__float-emoji { font-size: 18px; }
.hero__float-title { font-size: 12px; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.hero__float-sub   { font-size: 11px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   8. CLIENTS BAR
───────────────────────────────────────── */
.clients {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.clients__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.clients__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.clients__item {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  opacity: 0.45;
  user-select: none;
}

.clients__item:hover { opacity: 0.85; color: var(--text-secondary); }

/* ─────────────────────────────────────────
   9. SERVICE CARDS
───────────────────────────────────────── */
.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--purple);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.20);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--cyan-dim);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
  font-size: 22px;
}

.service-card__icon svg { width: 22px; height: 22px; color: var(--cyan); }

.service-card:hover .service-card__icon {
  background: var(--blue-dim);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card__title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.service-card__desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }

.service-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }

.service-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────
   10. STATS SECTION
───────────────────────────────────────── */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

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

.stats__item {
  text-align: center;
  padding: 28px 24px;
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stats__number {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stats__suffix {
  font-size: 0.65em;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.stats__sub { font-size: 12px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   11. ABOUT SECTION
───────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap { position: relative; }

.about__image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-xl);
  background: var(--bg-card);
}

.about__image-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
}

.about__image-badge-number { font-size: 26px; font-weight: 900; color: var(--cyan); line-height: 1; }
.about__image-badge-text   { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.about__skills-bar { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }

.about__skill { display: flex; flex-direction: column; gap: 6px; }

.about__skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__skill-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.about__skill-pct  { font-size: 13px; font-weight: 700; color: var(--cyan); }

.about__skill-track {
  height: 5px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.about__skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: var(--radius-full);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s ease;
}

.about__skill-fill.animated { transform: scaleX(1); }

.about__certs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }

.about__cert {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about__cert:hover { color: var(--cyan); border-color: var(--cyan); }

/* ─────────────────────────────────────────
   12. FEATURE CARDS (Why Choose Me)
───────────────────────────────────────── */
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.20);
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   13. TESTIMONIALS
───────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.18);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--warning);
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--cyan);
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   14. PROCESS STEPS
───────────────────────────────────────── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
  opacity: 0.25;
}

.process__step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }

.process__step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  transition: var(--transition);
}

.process__step:hover .process__step-num {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  box-shadow: var(--glow-cyan);
}

.process__step-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.process__step-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────
   15. CTA SECTION
───────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  overflow: hidden;
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
}

.cta-section__title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   16. BLOG CARDS
───────────────────────────────────────── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-secondary);
}

.blog-card__body { padding: 22px; }

.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
}

.blog-card__date { font-size: 12px; color: var(--text-muted); }

.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-card__title { color: var(--cyan); }

.blog-card__excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

.blog-card__read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ─────────────────────────────────────────
   17. PRICING CARDS
───────────────────────────────────────── */
.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.20);
}

.pricing-card--popular {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
  box-shadow: var(--glow-purple);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.pricing-card__amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: top;
  line-height: 2;
  color: var(--text-muted);
}

.pricing-card__period { font-size: 14px; color: var(--text-muted); margin: 6px 0 24px; }

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card__feature:last-of-type { border-bottom: none; margin-bottom: 24px; }

.pricing-card__check {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   18. FAQ ACCORDION
───────────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: 8px; }

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.open { border-color: var(--purple); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.faq__question:hover { color: var(--purple); }

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 400;
}

.faq__item.open .faq__icon {
  background: var(--purple-dim);
  border-color: var(--purple);
  color: var(--purple);
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq__item.open .faq__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq__answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─────────────────────────────────────────
   19. FORM ELEMENTS
───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.form-label span { color: var(--danger); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cyan);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-input.error,
.form-textarea.error { border-color: var(--danger); }

.form-textarea { resize: vertical; min-height: 120px; }
.form-error    { font-size: 12px; color: var(--danger); }
.form-hint     { font-size: 12px; color: var(--text-muted); }

/* ─────────────────────────────────────────
   20. TOAST NOTIFICATIONS
───────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 360px;
  pointer-events: all;
  animation: slideInRight 0.3s ease forwards;
}

.toast--success { border-left: 3px solid var(--success); }
.toast--error   { border-left: 3px solid var(--danger); }
.toast--info    { border-left: 3px solid var(--cyan); }
.toast--warning { border-left: 3px solid var(--warning); }

.toast__icon  { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.toast__body  { flex: 1; }
.toast__title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.toast__msg   { font-size: 13px; color: var(--text-secondary); }

.toast__close {
  margin-left: auto;
  font-size: 18px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: var(--transition);
  flex-shrink: 0;
}

.toast__close:hover { color: var(--text-primary); }
.toast.hiding { animation: slideOutRight 0.25s ease forwards; }

/* ─────────────────────────────────────────
   21. PORTFOLIO CARDS
───────────────────────────────────────── */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-secondary);
}

.portfolio-card__body { padding: 22px; }
.portfolio-card__service { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); margin-bottom: 8px; }
.portfolio-card__title   { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }

.portfolio-card__result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

/* ─────────────────────────────────────────
   22. PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 70px) 0 70px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a { color: var(--text-muted); }
.page-hero__breadcrumb a:hover { color: var(--cyan); }
.page-hero__breadcrumb .sep { color: var(--border-light); }
.page-hero__breadcrumb .current { color: var(--text-secondary); }

/* ─────────────────────────────────────────
   23. FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 300px repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__brand-icon { width: 34px; height: 34px; border-radius: 8px; }

.footer__brand-name { font-size: 17px; font-weight: 800; color: var(--text-primary); }
.footer__brand-name span { color: var(--cyan); }

/* Tagline beneath brand name */
.footer__brand-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer__brand-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.footer__socials { display: flex; gap: 8px; }

.footer__social {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.footer__social:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 9px; }

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}

.footer__link:hover { color: var(--cyan); padding-left: 4px; }

.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }

.footer__contact-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.footer__contact-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__contact-value { font-size: 13px; color: var(--text-secondary); transition: var(--transition); text-decoration: none; }
.footer__contact-value:hover { color: var(--cyan); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 13px; color: var(--text-muted); }
.footer__copy a { color: var(--cyan); }

.footer__bottom-links { display: flex; gap: 20px; }

.footer__bottom-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer__bottom-link:hover { color: var(--cyan); }

/* ─────────────────────────────────────────
   24. SCROLL-TO-TOP
───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--blue-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* ─────────────────────────────────────────
   25. REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left  { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
.reveal--scale { transform: scale(0.94); }

.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible { transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   26. LOADING
───────────────────────────────────────── */
.loading-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

.btn.loading { pointer-events: none; opacity: 0.7; }

/* ─────────────────────────────────────────
   27. KEYFRAMES
───────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(24px); }
}

/* ─────────────────────────────────────────
   28. UTILITIES
───────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-cyan    { color: var(--cyan) !important; }
.text-blue    { color: var(--blue-light) !important; }
.text-white   { color: var(--white) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-success { color: var(--success) !important; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}

/* ─────────────────────────────────────────
   29. SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* ─────────────────────────────────────────
   30. UNIVERSAL GLASS CARD
───────────────────────────────────────── */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.20);
}

/* ─────────────────────────────────────────
   31. PACKAGE CARDS (per-service ordering)
───────────────────────────────────────── */
.pkg-grid {
  display: grid;
  gap: 24px;
}
.pkg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pkg-grid--3 { grid-template-columns: repeat(3, 1fr); }

.pkg-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0;
  transition: var(--transition);
}

.pkg-card:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.22);
}
.pkg-card:hover::before { opacity: 1; }

.pkg-card--popular {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(139,92,246,0.07) 0%, rgba(37,99,235,0.07) 100%);
  box-shadow: var(--glow-purple);
}
.pkg-card--popular::before { opacity: 1; }

.pkg-card__badge {
  position: absolute;
  top: -1px; right: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pkg-card__name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pkg-card__price {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-card__price span {
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
  line-height: 2;
  color: var(--text-muted);
}

.pkg-card__period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pkg-card__divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}

.pkg-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pkg-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pkg-card__check {
  color: var(--success);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.pkg-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.pkg-card__cta:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-dim);
}

.pkg-card--popular .pkg-card__cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  color: var(--white);
}

.pkg-card--popular .pkg-card__cta:hover {
  background: linear-gradient(135deg, var(--blue-hover), var(--purple-hover));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.40);
}

/* ─────────────────────────────────────────
   32. BREADCRUMB (standalone)
───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Ordered list inside breadcrumb nav */
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron separator between items */
.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  color: var(--border-light);
  font-size: 14px;
  margin-right: 6px;
  user-select: none;
  line-height: 1;
}

.breadcrumb__item--active { color: var(--text-secondary); font-weight: 500; }

.breadcrumb a,
.breadcrumb__link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover,
.breadcrumb__link:hover { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb__sep { color: var(--border-light); user-select: none; font-size: 14px; margin: 0 4px; }
.breadcrumb__current { color: var(--text-secondary); font-weight: 500; }

/* ─────────────────────────────────────────
   33. PURPLE UTILITY CLASSES
───────────────────────────────────────── */
.text-purple  { color: var(--purple) !important; }
.bg-purple    { background: var(--purple-dim) !important; }
.border-purple{ border-color: var(--purple) !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--blue-purple {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* section-label purple variant */
.section-label--purple {
  color: var(--purple);
  background: var(--purple-dim);
  border-color: rgba(139, 92, 246, 0.25);
}
.section-label--purple::before { background: var(--purple); }

/* ─────────────────────────────────────────
   34. SERVICE PAGE HERO (service-hero)
───────────────────────────────────────── */
.service-hero {
  position: relative;
  background: var(--bg-primary);
  padding: calc(var(--nav-height) + 70px) 0 70px;
  overflow: hidden;
}

.service-hero__bg-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.service-hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.service-hero__title .highlight {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
}

.service-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   35. PROCESS STEPS
───────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}

.process-step:last-child { padding-bottom: 0; }

.process-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

.process-step:last-child::before { display: none; }

.process-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-dim);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--purple);
  flex-shrink: 0;
}

.process-step__body { flex: 1; padding-top: 6px; }
.process-step__title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.process-step__desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─────────────────────────────────────────
   36. ACCESSIBILITY & CONTRAST (WCAG AA)
───────────────────────────────────────── */

/* Skip-to-content link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Ensure minimum 4.5:1 contrast for body copy */
p, li, td, span.text-body { color: var(--text-secondary); }

/* Muted text: raise contrast from #64748B to #94A3B8 (passes AA at small size) */
.text-muted, .footer__brand-desc, .section-subtitle {
  color: var(--text-muted);           /* #94A3B8 — 4.6:1 on #0F172A */
}

/* Focus styles — visible ring for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove outline for mouse users, keep for keyboard */
:focus:not(:focus-visible) { outline: none; }

/* ─────────────────────────────────────────
   37. CARD LAYOUT ALIGNMENT FIXES
───────────────────────────────────────── */

/* Cards inside a grid should stretch to equal height */
.grid .card,
.grid .service-card,
.grid .pkg-card,
.grid .process-card,
.pkg-grid .pkg-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Push CTA / action to bottom of card */
.card__actions,
.service-card__link,
.pkg-card__cta,
.pkg-card__footer {
  margin-top: auto;
}

/* No text overflow / clipping in cards */
.card, .service-card, .pkg-card {
  overflow: visible;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Consistent card padding on mobile */
@media (max-width: 480px) {
  .card { padding: 20px; }
  .pkg-card { padding: 24px 20px; }
  .service-card { padding: 20px; }
}

/* ─────────────────────────────────────────
   38. BRANDING — NAV LOGO TAGLINE
───────────────────────────────────────── */

/* Ensure tagline is hidden on very small screens */
@media (max-width: 360px) {
  .nav__logo-tagline { display: none; }
}

/* ─────────────────────────────────────────
   39. INTERNAL LINK ACCESSIBILITY
───────────────────────────────────────── */

/* Inline contextual links: underline on hover for clarity */
.content-body a,
article a,
.post-content a,
.about-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(6, 182, 212, 0.4);
  transition: text-decoration-color 0.2s, color 0.2s;
}
.content-body a:hover,
article a:hover,
.post-content a:hover,
.about-body a:hover {
  color: var(--blue-light);
  text-decoration-color: var(--blue-light);
}
