/* ===== CSS Variables / Theme ===== */
:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --card-foreground: #0a0a0a;
  --primary: #6d28d9;
  --primary-foreground: #ffffff;
  --secondary: #f5f3ff;
  --secondary-foreground: #1a1a2e;
  --muted: #e5e5e5;
  --muted-foreground: #737373;
  --accent: #f3f0ff;
  --accent-foreground: #1a1a2e;
  --border: #e5e7eb;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --ring: #6d28d9;
  --radius: 0.75rem;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.min-h-screen { min-height: 100vh; }
.hidden { display: none !important; }

.text-gradient {
  background: linear-gradient(135deg, #6d28d9, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient {
  background: linear-gradient(135deg, #6d28d9, #7c3aed, #a855f7);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4); }
.btn-outline {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--accent); color: var(--accent-foreground); }
.btn-outline-light {
  background: transparent;
  color: var(--primary-foreground);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-lg { height: 2.75rem; padding: 0 2rem; border-radius: var(--radius); }

/* ===== Card Shadow ===== */
.card-shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04); }
.card-shadow-hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04); }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.pulse-dot { animation: pulse 2s infinite; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(109, 40, 217, 0.05);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2rem;
  font-size: 0.75rem;
}
.topbar-text { color: var(--muted-foreground); }
.topbar-links { display: none; align-items: center; gap: 1rem; }
.topbar-link { display: flex; align-items: center; gap: 0.25rem; color: var(--primary); }
.topbar-link:hover { opacity: 0.8; }

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
}
.logo-icon span { font-size: 1.125rem; font-weight: 700; color: #fff; }
.logo-text { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: var(--foreground); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.nav-link:hover { background: var(--secondary); color: var(--foreground); }
.nav-link.active { background: var(--accent); color: var(--accent-foreground); }
.nav-cta { display: none; }
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--foreground);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.mobile-link.active { background: var(--accent); color: var(--accent-foreground); }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9), rgba(10,10,10,0.75), rgba(10,10,10,0.4));
}
.hero-content { position: relative; z-index: 10; padding: 5rem 1rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(109, 40, 217, 0.3);
  background: rgba(109, 40, 217, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  backdrop-filter: blur(4px);
}
.pulse-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
}
.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 1rem;
}
.hero-desc {
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
}
.search-box {
  display: flex;
  max-width: 32rem;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255,255,255,0.95);
  padding: 0.375rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  margin-top: 1.5rem;
}
.search-inner {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}
.search-icon { color: var(--muted-foreground); flex-shrink: 0; }
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--foreground);
}
.search-input::placeholder { color: var(--muted-foreground); }
.search-btn { padding: 0 1.5rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Brand Picker */
.brand-picker {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.brand-picker-title {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.brand-grid-small { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.brand-card-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s;
}
.brand-card-small:hover { background: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-2px); }
.brand-card-small img { width: 3rem; height: 3rem; object-fit: contain; }
.brand-card-small span { font-size: 0.75rem; font-weight: 500; color: var(--foreground); }
.more-brands-link {
  display: block;
  margin-top: 1rem;
  padding: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.2s;
}
.more-brands-link:hover { background: #fff; }

/* ===== STATS ===== */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 3rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 1.875rem; font-weight: 800; }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== BRANDS ===== */
.brands-section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-tag { font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.section-title { margin-top: 0.5rem; font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.section-desc { max-width: 32rem; margin: 0.75rem auto 0; color: var(--muted-foreground); }
.section-cta { margin-top: 2.5rem; text-align: center; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.brand-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-4px); }
.brand-card img { width: 4rem; height: 4rem; object-fit: contain; }
.brand-card span { font-size: 0.875rem; font-weight: 600; color: var(--card-foreground); }

/* ===== SERVICES ===== */
.services-section { padding: 5rem 0; background: rgba(245, 243, 255, 0.5); }
.services-grid { display: grid; gap: 1.5rem; }
.service-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-img-wrap { position: relative; height: 11rem; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.1); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6), transparent);
}
.service-price {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(109, 40, 217, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
}
.service-info { padding: 1rem; }
.service-info h3 { font-size: 0.875rem; font-weight: 700; color: var(--card-foreground); }
.service-info p { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
}
.service-link:hover { opacity: 0.8; }

/* ===== BEFORE & AFTER ===== */
.before-after-section { padding: 5rem 0; }
.ba-grid { display: grid; gap: 2rem; }
.ba-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.ba-img-wrap { position: relative; height: 16rem; overflow: hidden; }
.ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ba-card:hover .ba-img-wrap img { transform: scale(1.05); }
.ba-labels { position: absolute; bottom: 0; left: 0; right: 0; display: flex; }
.ba-label { flex: 1; padding: 0.375rem; text-align: center; font-size: 0.75rem; font-weight: 700; }
.ba-before { background: rgba(239, 68, 68, 0.8); color: #fff; }
.ba-after { background: rgba(109, 40, 217, 0.8); color: #fff; }
.ba-info { padding: 1.25rem; }
.ba-info h3 { font-size: 1.125rem; font-weight: 600; color: var(--card-foreground); }
.ba-info p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== PROCESS / HOW IT WORKS ===== */
.process-section { padding: 5rem 0; background: rgba(245, 243, 255, 0.5); }
.process-tabs { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.process-tab {
  position: relative;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--card);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.process-tab:hover { background: var(--accent); color: var(--accent-foreground); }
.process-tab.active {
  background: linear-gradient(135deg, #6d28d9, #7c3aed, #a855f7);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}
.tab-badge {
  position: absolute;
  top: -0.625rem;
  right: 0;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: var(--destructive);
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
}
.process-content { max-width: 56rem; margin: 0 auto; }
.process-steps { display: grid; gap: 1.5rem; }
.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin: 0 auto 1rem;
  color: #fff;
}
.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.875rem;
  font-weight: 900;
  color: rgba(200,200,200,0.5);
}
.step-card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; font-weight: 600; color: var(--card-foreground); }
.step-card p { font-size: 0.875rem; color: var(--muted-foreground); }
.process-note {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(243, 240, 255, 0.5);
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-foreground);
}

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 5rem 0; }
.why-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
.why-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.why-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #fff;
}
.why-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--card-foreground); margin-bottom: 0.25rem; }
.why-card p { font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 5rem 0; }
.testimonials-grid { display: grid; gap: 1.5rem; }
.testimonial-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.quote-icon { margin-bottom: 0.75rem; color: rgba(109, 40, 217, 0.3); }
.testimonial-text { margin-bottom: 1.25rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.stars { margin-bottom: 0.75rem; color: var(--primary); font-size: 0.75rem; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--card-foreground); }

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 0;
  background: #f3f4f6;
}
.faq-section .section-tag {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.faq-section .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 1.2;
}
.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  color: var(--foreground);
  font-size: clamp(1rem, 1.05vw, 1.2rem);
  font-weight: 600;
  text-align: left;
}
.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-size: clamp(0.93rem, 0.95vw, 1rem);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0b1220, #111a2d);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #fff; }
.footer-desc { max-width: 23rem; font-size: clamp(0.94rem, 0.98vw, 1rem); line-height: 1.78; color: rgba(255,255,255,0.72); }
.footer-col h4 { font-size: clamp(1.06rem, 1.2vw, 1.26rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col a {
  display: block;
  font-size: clamp(0.96rem, 0.95vw, 1.04rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
}

/* ===== SERVICES PAGE ===== */
.services-page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent), var(--background), var(--background));
  overflow: hidden;
}
.services-page-header .section-title { margin-top: 0.5rem; }

/* Brand Selector */
.brand-selector-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.brand-selector-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.brand-selector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.brand-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  cursor: pointer;
  transition: all 0.2s;
}
.brand-chip:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.brand-chip.selected {
  border-color: var(--primary);
  background: rgba(109, 40, 217, 0.05);
  box-shadow: 0 0 0 2px rgba(109, 40, 217, 0.2);
}
.brand-chip img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.brand-chip span { font-size: 0.625rem; font-weight: 500; color: var(--muted-foreground); }

/* Category Filters */
.services-listing-section { padding: 3rem 0; }
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--muted-foreground);
  border: none;
  transition: all 0.2s;
}
.filter-btn:hover { background: var(--accent); color: var(--accent-foreground); }
.filter-btn.active {
  background: linear-gradient(135deg, #6d28d9, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}

/* Services listing grid (reuses .service-card) */
.services-listing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.service-card.filter-hidden {
  display: none;
}

/* Extended Footer */
.footer-extended { padding-top: 4rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid-4 { display: grid; gap: 2.5rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.72);
  transition: all 0.2s;
}
.social-icon:hover { background: #1f2937; color: #fff; }
.footer-col .footer-contact-item {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.9rem;
  font-size: clamp(0.96rem, 0.95vw, 1.06rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.footer-contact-text {
  display: block;
  line-height: 1.35;
}
a.footer-contact-item:hover { color: #fff; }
.footer-contact-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  color: #16c7a1;
}
.footer-areas {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-areas-top {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-areas h3 {
  font-size: clamp(1.14rem, 1.4vw, 1.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.25rem;
}
.footer-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1.5rem;
}
.footer-area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  transition: color 0.18s ease;
}
.footer-area-link:hover { color: #fff; }
.footer-area-link svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.footer-area-link:hover svg { color: #fff; }

.footer-seo {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-seo h3 {
  font-size: clamp(1.14rem, 1.4vw, 1.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.75rem;
}
.footer-seo p {
  font-size: clamp(0.91rem, 0.92vw, 0.98rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .topbar-links { display: flex; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 7rem 1rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-number { font-size: 2.25rem; }
  .section-title { font-size: 2.25rem; }
  .brands-grid { grid-template-columns: repeat(5, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .mobile-menu-btn { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-grid-4 { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-areas-grid { grid-template-columns: repeat(4, 1fr); }
  .services-listing-grid { grid-template-columns: repeat(3, 1fr); }

  .faq-question { font-size: clamp(1rem, 1.02vw, 1.18rem); }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
  .hero-content { padding: 9rem 1rem; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-listing-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(5, 1fr); }
}

