/* =========================================================
   Uistudioz Theme — External CSS
   Matches React design system exactly (Manrope font, #4f46e5 primary)
   ========================================================= */

/* --- Google Fonts: Manrope --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties (from theme.css) --- */
:root {
  --neutral-0: #FFFFFF;
  --neutral-50: #F8FAFC;
  --neutral-100: #F1F5F9;
  --neutral-200: #E2E8F0;
  --neutral-400: #94A3B8;
  --neutral-700: #334155;
  --neutral-900: #0F172A;
  --primary-100: #e0e7ff;
  --primary-500: #4F46E5;
  --primary-600: #4f46e5e0;
  --secondary-100: #F1F5F9;
  --secondary-500: #334155;
  --success-500: #10B981;
  --warning-500: #F59E0B;
  --error-500: #EF4444;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container-max-width: 1200px;
  --container-max-width-lg: 1280px;
  --gutter: 24px;
  --radius-card: 4px;
  --radius-button: 9999px;
  --radius-input: 4px;
  --background: var(--neutral-0);
  --foreground: var(--neutral-900);
  --border: var(--neutral-200);
  --primary: var(--primary-500);
  --radius: 4px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
button { cursor: pointer; }
ul { list-style: none; }

/* --- Typography (from theme.css @layer base) --- */
h1, .h1 { font-size: 56px; font-weight: 700; line-height: 1.1; color: var(--neutral-900); }
h2, .h2 { font-size: 40px; font-weight: 700; line-height: 1.2; color: var(--neutral-900); }
h3, .h3 { font-size: 28px; font-weight: 600; line-height: 1.3; color: var(--neutral-900); }
h4, .h4 { font-size: 20px; font-weight: 600; line-height: 1.4; color: var(--neutral-900); }

/* --- Layout utilities --- */
.container-lg { max-width: var(--container-max-width-lg); margin: 0 auto; width: 100%; }
.container-md { max-width: var(--container-max-width); margin: 0 auto; width: 100%; }
.page-padding { padding-left: 24px; padding-right: 24px; }
.section-py { padding-top: 96px; padding-bottom: 96px; }
.section-py-lg { padding-top: 128px; padding-bottom: 128px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Buttons (from theme.css @layer components) --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700;
  line-height: 1.2; transition: all 0.3s ease; border: none; gap: 8px;
  text-decoration: none; white-space: nowrap;
}

.btn-primary {
  background: var(--primary-500); color: #fff;
  padding: 16px 32px; border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(79,70,229,0.2);
}
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); }

.btn-secondary {
  background: #fff; color: var(--neutral-900);
  border: 1px solid var(--neutral-200); padding: 16px 32px; border-radius: 9999px;
}
.btn-secondary:hover { background: var(--neutral-50); }

.btn-dark {
  background: var(--neutral-900); color: #fff;
  padding: 16px 32px; border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.2);
}
.btn-dark:hover { background: #1e293b; transform: translateY(-2px); }

.btn-indigo {
  background: #4f46e5; color: #fff;
  padding: 16px 32px; border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2);
}
.btn-indigo:hover { background: #4338ca; transform: translateY(-2px); }

.btn-lg { padding: 20px 40px; font-size: 18px; }
.btn-xl { padding: 20px 40px; font-size: 20px; }

.indigo-600 { color:#4F46E5; }
.bg-indigo-600 { background:#4F46E5; }

/* --- Cards --- */
.card {
  background: #fff; border: 1px solid var(--neutral-200);
  border-radius: 40px; transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.06); transform: translateY(-4px); border-color: #e0e7ff; }

.card-slate { background: var(--neutral-50); border-color: var(--neutral-100); border-radius: 40px; }
.card-slate:hover { background: #fff; border-color: #e0e7ff; box-shadow: 0 20px 40px rgba(79,70,229,0.05); }

/* --- Eyebrow text --- */
.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; line-height: 1.4;
}
.eyebrow-red { color: var(--primary-500); }
.eyebrow-indigo { color: #4f46e5; }
.eyebrow-slate { color: var(--neutral-400); }
.eyebrow-white { color: rgba(199,210,254,1); } /* indigo-200 */

/* --- Badges --- */
.badge-red {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 9999px;
  background: rgba(255,77,77,0.1); border: 1px solid rgba(255,77,77,0.2);
  font-size: 11px; font-weight: 700; color: var(--primary-500);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.badge-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 9999px;
  background: #0f172a; color: #fff;
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em;
}

/* --- Logo / Brand --- */
.brand-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; border: none; background: transparent; cursor: pointer;
}
.brand-icon {
  width: 32px; height: 32px; border-radius: 4px;
  background: rgb(79, 57, 246); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.brand-icon:hover, .brand-logo:hover .brand-icon { transform: rotate(12deg); }
.brand-icon span { color: #fff; font-weight: 700; font-size: 20px; line-height: 1; }
.brand-name { font-weight: 700; font-size: 20px; letter-spacing: -0.025em; color: #0f172a; }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 24px; transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-100); padding: 12px 24px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 700; color: #475569;
  transition: color 0.2s; text-decoration: none;
  padding: 16px 0; display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--primary-500); }
.nav-cta {
  background: var(--primary-500); color: #fff;
  padding: 10px 20px; border-radius: 9999px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.nav-cta:hover { background: var(--primary-600); box-shadow: 0 4px 12px rgba(255,77,77,0.2); }

/* Mega Dropdown */
.nav-item { position: relative; }
.mega-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 4px; border: 1px solid var(--neutral-100);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
  padding: 32px; display: flex; gap: 48px; z-index: 50;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  transition: all 0.2s ease;
}
.nav-item:hover .mega-dropdown,
.mega-dropdown:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.dropdown-col { min-width: 180px; }
.dropdown-col h4 {
  font-size: 10px; font-weight: 900; color: var(--neutral-400);
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 24px;
}
.dropdown-item {
  display: flex; align-items: center; gap: 12px; padding: 8px;
  margin-left: -8px; border-radius: 4px; cursor: pointer;
  transition: all 0.15s; border: none; background: transparent;
  width: 100%; text-align: left; margin-bottom: 4px; text-decoration: none;
}
.dropdown-item:hover { background: var(--neutral-50); }
.dropdown-item-icon {
  width: 32px; height: 32px; border-radius: 4px; background: var(--neutral-50);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; border: 1px solid transparent; flex-shrink: 0;
}
.dropdown-item:hover .dropdown-item-icon {
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border-color: var(--neutral-100);
}
.dropdown-item-icon svg { width: 16px; height: 16px; color: var(--neutral-400); transition: color 0.15s; }
.dropdown-item:hover .dropdown-item-icon svg { color: var(--primary-500); }
.dropdown-item span { font-size: 14px; font-weight: 700; color: #475569; white-space: nowrap; transition: color 0.15s; }
.dropdown-item:hover span { color: var(--primary-500); }

/* Mobile menu toggle */
.mobile-toggle { display: none; background: none; border: none; color: #475569; padding: 8px; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--neutral-100);
  padding: 24px; flex-direction: column; gap: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.mobile-menu.open { display: flex; }
.mobile-nav-item { border: none; background: none; font-size: 18px; font-weight: 700; color: #0f172a; display: flex; align-items: center; justify-content: space-between; padding: 8px 0; width: 100%; cursor: pointer; }
.mobile-submenu { padding-left: 16px; border-left: 2px solid var(--neutral-50); margin-top: 8px; }
.mobile-submenu-item { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: 4px; border: none; background: none; width: 100%; cursor: pointer; }
.mobile-submenu-item span { font-size: 14px; font-weight: 700; color: #475569; }

@media (max-width: 767px) {
  .mobile-toggle { display: block; }
  .nav-desktop { display: none!important; }
}

/* =========================================================
   ANIMATIONS — Intersection Observer based
   ========================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="zoom"] {
  transform: scale(0.92);
}
[data-animate="left"] {
  transform: translateX(-24px);
}
[data-animate="right"] {
  transform: translateX(24px);
}
[data-animate].animated {
  opacity: 1; transform: none;
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* --- Pulse animation --- */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* --- Bounce animation --- */
@keyframes bounce {
  0%, 100% { transform: translateY(0); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: translateY(-6px); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-bounce { animation: bounce 1.5s infinite; }

/* --- Progress bar animation --- */
@keyframes growWidth { from { width: 0; } to { width: var(--target-width, 85%); } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #fff; border-top: 1px solid var(--neutral-100); padding-top: 80px; padding-bottom: 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 80px; }
.footer-brand p { color: #64748b; font-size: 18px; line-height: 1.75; margin-bottom: 32px; margin-top: 32px; max-width: 320px; }
.footer-socials { display: flex; gap: 16px; }
.footer-social-icon {
  width: 40px; height: 40px; border-radius: 9999px; background: var(--neutral-50);
  display: flex; align-items: center; justify-content: center; color: var(--neutral-400);
  transition: all 0.2s;
}
.footer-social-icon:hover { background: #4f46e5; color: #fff; }
.footer-col h4 { font-weight: 700; color: #0f172a; margin-bottom: 24px; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; }
.footer-col ul { display: flex; flex-direction: column; gap: 16px; }
.footer-col a { color: #64748b; font-size: 15px; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: #4f46e5; }
.footer-bottom { border-top: 1px solid var(--neutral-50); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--neutral-400); font-weight: 500; }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a:hover { color: #475569; }

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* =========================================================
   HOMEPAGE SECTIONS
   ========================================================= */

/* --- Hero --- */
.hero-section {
  position: relative; padding-top: 128px; padding-bottom: 80px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding-top: 192px; padding-bottom: 128px; } }
.hero-bg-blob-1 {
  position: absolute; top: 0; right: 0; z-index: -1;
  width: 600px; height: 600px;
  background: rgba(255,77,77,0.05); border-radius: 9999px;
  filter: blur(64px); opacity: 0.6;
  transform: translate(50%, -50%);
}
.hero-bg-blob-2 {
  position: absolute; bottom: 0; left: 0; z-index: -1;
  width: 400px; height: 400px;
  background: var(--neutral-50); border-radius: 9999px;
  filter: blur(64px); opacity: 0.4;
  transform: translate(-50%, 50%);
}
.hero-content { max-width: 896px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-h1 { font-size: clamp(42px, 7vw, 72px); font-weight: 700; color: #0f172a; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 32px; }
.hero-p { font-size: clamp(16px, 2vw, 20px); color: #475569; margin-bottom: 40px; line-height: 1.75; max-width: 672px; }
.hero-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; margin-bottom: 64px; }
@media (min-width: 640px) { .hero-cta-wrap { flex-direction: row; justify-content: center; } }
.hero-image-wrap {
  position: relative; max-width: 1152px; margin: 0 auto;
}
.hero-image-inner {
  position: relative; z-index: 10;
  padding: 8px; background: rgba(255,255,255,0.4); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12); overflow: hidden;
}
.hero-image-inner img { border-radius: 24px; width: 100%; height: auto; border: 1px solid var(--neutral-100); }
@media (min-width: 768px) { .hero-image-inner { padding: 16px; } }

/* --- Logos Section --- */
.logos-section { padding: 64px 0; background: #fff; overflow: hidden; }
.logos-eyebrow { text-align: center; font-size: 10px; font-weight: 700; color: var(--neutral-400); text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 48px; }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 64px 96px; opacity: 0.3; filter: grayscale(1); transition: opacity 0.3s; }
.logos-row:hover { opacity: 0.5; }
.logo-text { font-size: 24px; font-weight: 900; color: #0f172a; letter-spacing: -0.05em; }
@media (max-width: 639px) { .logos-row { gap: 32px 48px; } }

/* --- Services Section --- */
.services-section { padding: 96px 0; background: var(--neutral-50); }
@media (min-width: 768px) { .services-section { padding: 128px 0; } }
.section-header { max-width: 672px; margin: 0 auto 80px; text-align: center; }
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: #0f172a; margin-bottom: 24px; }
.section-p { font-size: 18px; color: #475569; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  padding: 32px; background: #fff; border: 1px solid var(--neutral-100);
  border-radius: 24px; cursor: pointer;
  transition: all 0.3s ease;
}
.service-card:hover { border-color: #c7d2fe; box-shadow: 0 20px 40px rgba(79,70,229,0.05); }
.service-icon {
  width: 48px; height: 48px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(3deg); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h4 { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 24px; }
.service-card-cta { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #4f46e5; text-transform: uppercase; opacity: 0; transition: opacity 0.2s; }
.service-card:hover .service-card-cta { opacity: 1; }

/* --- Transformation Section (dark bg) --- */
.transform-section { padding: 96px 0; background: #0f172a; color: #fff; overflow: hidden; }
@media (min-width: 768px) { .transform-section { padding: 128px 0; } }
.transform-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 48px; overflow: hidden;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .transform-grid { grid-template-columns: repeat(2, 1fr); } }
.transform-col { padding: 40px 64px; }
.transform-col:first-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) {
  .transform-col:first-child { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); }
  .transform-col:last-child { background: rgba(79,70,229,0.1); }
}
.transform-col h4 { font-size: 20px; font-weight: 700; margin-bottom: 40px; display: flex; align-items: center; gap: 8px; }
.transform-col:first-child h4 { color: var(--neutral-400); }
.transform-col:last-child h4 { color: #a5b4fc; }
.transform-num { width: 32px; height: 32px; border-radius: 9999px; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.transform-num-red { background: rgba(239,68,68,0.1); color: #ef4444; }
.transform-num-indigo { background: #4f46e5; color: #fff; }
.transform-list { display: flex; flex-direction: column; gap: 24px; }
.transform-item { display: flex; align-items: flex-start; gap: 16px; font-size: 18px; }
.transform-item-before { color: var(--neutral-400); }
.transform-item-after { color: #fff; font-weight: 500; }
.transform-item svg { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.metrics-strip { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 640px) { .metrics-strip { grid-template-columns: repeat(3, 1fr); } }
.metric-card { padding: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; }
.metric-label { font-size: 10px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.metric-value { font-size: 24px; font-weight: 700; color: #fff; }
.metric-icon { width: 32px; height: 32px; color: rgba(165,180,252,0.5); }

/* --- Why Us --- */
.why-section { padding: 96px 0; background: #fff; }
@media (min-width: 768px) { .why-section { padding: 128px 0; } }
.why-header { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 80px; }
@media (min-width: 768px) { .why-header { flex-direction: row; } }
.why-header-left h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: #0f172a; line-height: 1.2; margin-top: 16px; }
.why-header-right { font-size: 18px; color: #475569; max-width: 380px; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 40px; border-radius: 40px; background: var(--neutral-50); border: 1px solid var(--neutral-100); transition: all 0.3s ease; }
.why-card:hover { background: #fff; border-color: #e0e7ff; box-shadow: 0 20px 40px rgba(79,70,229,0.05); }
.why-icon { width: 56px; height: 56px; background: #fff; border: 1px solid var(--neutral-100); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: all 0.3s; }
.why-card:hover .why-icon { background: #4f46e5; }
.why-icon svg { width: 28px; height: 28px; color: #4f46e5; transition: color 0.3s; }
.why-card:hover .why-icon svg { color: #fff; }
.why-card h4 { font-size: 24px; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.why-card p { color: #475569; line-height: 1.75; }

/* --- Work Grid (homepage) --- */
.work-section { padding: 96px 0; background: #fff; }
@media (min-width: 768px) { .work-section { padding: 128px 0; } }
.work-header { text-align: center; margin-bottom: 80px; }
.work-view-all { display: inline-flex; align-items: center; gap: 8px; color: #4f46e5; font-weight: 700; transition: gap 0.2s; text-decoration: none; border: none; background: none; cursor: pointer; font-size: 16px; font-family: 'Manrope', sans-serif; }
.work-view-all:hover { gap: 12px; }
.work-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card { cursor: pointer; }
.work-img-wrap { position: relative; aspect-ratio: 4/5; border-radius: 40px; overflow: hidden; margin-bottom: 32px; background: var(--neutral-100); border: 1px solid var(--neutral-100); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.work-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.work-card:hover .work-img-wrap img { transform: scale(1.05); }
.work-img-overlay { position: absolute; inset: 0; background: rgba(79,70,229,0.2); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s; }
.work-card:hover .work-img-overlay { opacity: 1; }
.work-img-overlay span { background: #fff; color: #0f172a; padding: 12px 24px; border-radius: 9999px; font-weight: 700; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.work-result-badge { position: absolute; top: 24px; left: 24px; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); padding: 8px 16px; border-radius: 9999px; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.work-result-badge svg { width: 16px; height: 16px; color: #10b981; }
.work-result-badge span { font-size: 12px; font-weight: 700; color: #0f172a; text-transform: uppercase; letter-spacing: 0.05em; }
.work-card-info { padding: 0 16px; }
.work-card-info h4 { font-size: 24px; font-weight: 700; color: #0f172a; margin-bottom: 4px; transition: color 0.2s; }
.work-card:hover .work-card-info h4 { color: #4f46e5; }
.work-card-info p { color: #64748b; font-weight: 600; }

/* --- Outcomes (indigo bg) --- */
.outcomes-section { padding: 96px 0; background: #4f46e5; color: #fff; position: relative; overflow: hidden; }
@media (min-width: 768px) { .outcomes-section { padding: 128px 0; } }
.outcomes-bg1 { position: absolute; top: 0; right: 0; width: 800px; height: 800px; background: rgba(255,255,255,0.05); border-radius: 9999px; filter: blur(120px); transform: translate(50%, -50%); }
.outcomes-bg2 { position: absolute; bottom: 0; left: 0; width: 600px; height: 600px; background: rgba(165,180,252,0.1); border-radius: 9999px; filter: blur(120px); transform: translate(-50%, 50%); }
.outcomes-header { max-width: 720px; margin: 0 auto 80px; text-align: center; position: relative; z-index: 1; }
.outcomes-eyebrow { font-size: 14px; font-weight: 700; color: #c7d2fe; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 16px; }
.outcomes-h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; }
.outcomes-grid { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; z-index: 1; }
@media (min-width: 640px) { .outcomes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .outcomes-grid { grid-template-columns: repeat(4, 1fr); } }
.outcome-card { padding: 40px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 40px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.outcome-value { font-size: clamp(48px, 5vw, 64px); font-weight: 900; letter-spacing: -0.05em; margin-bottom: 16px; }
.outcome-label { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.outcome-desc { color: rgba(199,210,254,1); font-size: 14px; line-height: 1.6; }

/* --- Process --- */
.process-section { padding: 96px 0; background: var(--neutral-50); position: relative; overflow: hidden; }
@media (min-width: 768px) { .process-section { padding: 128px 0; } }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 10; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-icon-wrap { position: relative; margin-bottom: 32px; }
.process-icon {
  width: 96px; height: 96px; background: #fff; border: 4px solid var(--neutral-50);
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.07); transition: all 0.3s ease;
}
.process-step:hover .process-icon { background: #4f46e5; transform: scale(1.1); }
.process-icon svg { width: 40px; height: 40px; color: #4f46e5; transition: color 0.3s; }
.process-step:hover .process-icon svg { color: #fff; }
.process-num {
  position: absolute; top: -8px; right: -8px;
  width: 32px; height: 32px; background: #0f172a; color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--neutral-50);
}
.process-step h4 { font-size: 24px; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.process-step p { color: #475569; line-height: 1.75; max-width: 240px; }
.process-connector { display: none; }
@media (min-width: 1024px) {
  .process-connector { display: block; position: absolute; top: 60px; left: 0; right: 0; height: 2px; background: var(--neutral-200); z-index: 0; }
}

/* --- Stack --- */
.stack-section { padding: 96px 0; background: #fff; }
.stack-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .stack-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stack-grid { grid-template-columns: repeat(6, 1fr); } }
.stack-card { padding: 32px; border-radius: 16px; border: 1px solid var(--neutral-100); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; transition: all 0.2s; }
.stack-card:hover { border-color: #e0e7ff; box-shadow: 0 10px 25px rgba(79,70,229,0.05); }
.stack-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.stack-icon svg { width: 24px; height: 24px; }
.stack-card span { font-weight: 700; color: #0f172a; font-size: 15px; }

/* --- Testimonials --- */
.testimonials-section { padding: 96px 0; background: #fff; }
@media (min-width: 768px) { .testimonials-section { padding: 128px 0; } }
.testimonials-header { text-align: center; margin-bottom: 80px; }
.testimonials-header svg { width: 48px; height: 48px; color: #e0e7ff; margin: 0 auto 24px; display: block; }
.testimonials-header h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #0f172a; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { padding: 32px; background: var(--neutral-50); border-radius: 40px; border: 1px solid var(--neutral-100); transition: all 0.3s ease; }
.testimonial-card:hover { background: #fff; border-color: #e0e7ff; box-shadow: 0 25px 50px rgba(79,70,229,0.05); }
.stars { display: flex; gap: 4px; color: #f97316; margin-bottom: 24px; }
.stars svg { width: 16px; height: 16px; }
.testimonial-quote { font-size: 18px; color: #334155; line-height: 1.75; font-style: normal; margin-bottom: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 9999px; overflow: hidden; border: 2px solid #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: #0f172a; }
.testimonial-role { font-size: 14px; color: #64748b; font-weight: 500; }

/* --- FAQ --- */
.faq-section { padding: 96px 0; background: var(--neutral-50); }
@media (min-width: 768px) { .faq-section { padding: 128px 0; } }
.faq-container { max-width: 768px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--neutral-100); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: #c7d2fe; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px; text-align: left; background: none; border: none; cursor: pointer; }
.faq-trigger span { font-size: 18px; font-weight: 700; color: #0f172a; }
.faq-icon { width: 32px; height: 32px; border-radius: 9999px; background: var(--neutral-50); display: flex; align-items: center; justify-content: center; color: var(--neutral-400); flex-shrink: 0; }
.faq-icon svg { width: 16px; height: 16px; }
.faq-answer { display: none; padding: 0 24px 24px; color: #475569; line-height: 1.75; border-top: 1px solid var(--neutral-50); padding-top: 16px; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { background: #4f46e5; color: #fff; }

/* --- Contact CTA --- */
.cta-risk-section { padding: 96px 0; border-top: 1px solid var(--neutral-100); background: rgba(248,250,252,0.5); }
@media (min-width: 768px) { .cta-risk-section { padding: 128px 0; } }
.cta-risk-inner { max-width: 768px; margin: 0 auto; text-align: center; }
.cta-risk-icon { width: 64px; height: 64px; background: var(--primary-100); color: var(--primary-500); border-radius: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; }
.cta-risk-icon svg { width: 32px; height: 32px; }
.cta-risk-inner h2 { font-size: clamp(28px, 3vw, 36px); font-weight: 700; color: #0f172a; margin-bottom: 24px; }
.cta-risk-inner p { font-size: 18px; color: #475569; margin-bottom: 40px; line-height: 1.75; }
.cta-risk-btns { display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 640px) { .cta-risk-btns { flex-direction: row; justify-content: center; } }
.cta-banner-section { padding: 96px 0; overflow: hidden; position: relative; }
@media (min-width: 768px) { .cta-banner-section { padding: 128px 0; } }
.cta-banner-inner { background: #0f172a; border-radius: 24px; padding: 48px 96px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
@media (max-width: 767px) { .cta-banner-inner { padding: 48px 32px; } }
.cta-banner-blob1 { position: absolute; top: 0; right: 0; width: 384px; height: 384px; background: rgba(255,77,77,0.1); border-radius: 9999px; filter: blur(100px); transform: translate(50%, -50%); }
.cta-banner-blob2 { position: absolute; bottom: 0; left: 0; width: 384px; height: 384px; background: rgba(30,41,59,0.2); border-radius: 9999px; filter: blur(100px); transform: translate(-50%, 50%); }
.cta-banner-inner h2 { font-size: clamp(32px, 6vw, 72px); font-weight: 700; color: #fff; margin-bottom: 32px; letter-spacing: -0.05em; line-height: 1.1; position: relative; z-index: 10; }
.cta-banner-inner p { color: #b1bfd3; font-size: clamp(16px, 1.8vw, 20px); margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; position: relative; z-index: 10; }
.cta-banner-btns { display: flex; flex-direction: column; align-items: center; gap: 24px; position: relative; z-index: 10; }
@media (min-width: 640px) { .cta-banner-btns { flex-direction: row; justify-content: center; } }
.cta-social-proof { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }
.avatar-stack { display: flex; }
.avatar-stack div { width: 32px; height: 32px; border-radius: 9999px; border: 2px solid #0f172a; background: #1e293b; overflow: hidden; margin-right: -8px; }
.avatar-stack div img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   SERVICES PAGE SECTIONS
   ========================================================= */
.svc-hero { position: relative; padding: 128px 24px 96px; overflow: hidden; }
.svc-hero-blur { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1280px; height: 100%; z-index: -1; opacity: 0.1; pointer-events: none; }
.svc-hero-blur-circle { position: absolute; top: 0; left: 25%; width: 600px; height: 600px; background: #6366f1; filter: blur(150px); border-radius: 9999px; }
.svc-grid-2 { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .svc-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.code-mockup { background: #0f172a; border-radius: 32px; padding: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); border: 1px solid #1e293b; }
.code-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 0 8px; }
.code-dot { width: 10px; height: 10px; border-radius: 9999px; }
.code-title { font-size: 10px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 auto; font-family: monospace; }
.code-screen { aspect-ratio: 16/10; background: rgba(30,41,59,0.5); border-radius: 16px; overflow: hidden; border: 1px solid #334155; padding: 24px; font-family: 'Courier New', monospace; font-size: 14px; }
.design-mockup { background: #f8fafc; border-radius: 32px; padding: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.08); border: 1px solid #e2e8f0; }
.design-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding: 0 8px; }

/* All Services Grid */
.all-services-section { padding: 96px 24px; }
.all-services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .all-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .all-services-grid { grid-template-columns: repeat(4, 1fr); } }
.all-service-card { background: #fff; border: 1px solid var(--neutral-100); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; transition: all 0.3s; }
.all-service-card:hover { border-color: #c7d2fe; box-shadow: 0 20px 40px rgba(79,70,229,0.05); transform: translateY(-4px); }

/* Comparison Matrix */
.comparison-section { padding: 96px 24px; background: var(--neutral-50); }
.comparison-table { overflow-x: auto; border-radius: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.comparison-table table { width: 100%; border-collapse: collapse; background: #fff; }
.comparison-table th { padding: 24px; text-align: left; font-weight: 700; background: #fff; border-bottom: 1px solid var(--neutral-100); }
.comparison-table td { padding: 20px 24px; border-bottom: 1px solid var(--neutral-50); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: #0f172a; }

/* Decision Guides */
.decision-section { padding: 96px 24px; }
.decision-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .decision-grid { grid-template-columns: repeat(3, 1fr); } }

/* Engagement Models */
.engagement-section { padding: 96px 24px; background: var(--neutral-50); }
.engagement-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .engagement-grid { grid-template-columns: repeat(3, 1fr); } }

/* Timeline */
.timeline-section { padding: 96px 24px; }
.timeline-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .timeline-grid { grid-template-columns: repeat(3, 1fr); } }

/* Industries */
.industries-section { padding: 96px 24px; background: var(--neutral-50); }
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cross-Service Dark */
.cross-section { padding: 96px 24px; background: #0f172a; }
.cross-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .cross-grid { grid-template-columns: repeat(3, 1fr); } }

/* Process Governance */
.process-gov-section { padding: 96px 24px; }
.process-gov-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .process-gov-grid { grid-template-columns: repeat(2, 1fr); } }

/* Services Contact */
.svc-contact-section { padding: 96px 24px; background: var(--neutral-50); }
.svc-contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .svc-contact-grid { grid-template-columns: 7fr 5fr; } }

/* =========================================================
   WORK PAGE
   ========================================================= */
.work-hero-section { padding-top: 128px; padding-bottom: 80px; background: #fff; }
.work-filters-bar { position: sticky; top: 80px; z-index: 40; background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--neutral-100); padding: 16px 24px; }
.work-filters-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 8px 24px; border-radius: 9999px; font-size: 14px; font-weight: 700; border: 1px solid var(--neutral-200); background: #fff; color: #475569; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: #c7d2fe; color: #4f46e5; }
.filter-btn.active { background: #4f46e5; color: #fff; border-color: #4f46e5; }
.work-main-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .work-main-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .work-main-grid { grid-template-columns: repeat(4, 1fr); } }
.lessons-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .lessons-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero-section { padding-top: 128px; padding-bottom: 80px; }
.guarantee-bar { background: #4f46e5; color: #fff; padding: 24px; border-radius: 16px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-form-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-form-grid { grid-template-columns: 7fr 5fr; } }
.form-input {
  border: 1px solid var(--neutral-200); background: #fff; color: #0f172a;
  height: 52px; border-radius: 4px; padding: 0 16px;
  font-family: 'Manrope', sans-serif; font-size: 16px; width: 100%;
  transition: all 0.2s;
}
.form-input:focus { outline: none; border-color: var(--primary-500); box-shadow: 0 0 0 3px rgba(255,77,77,0.1); }
.form-textarea {
  border: 1px solid var(--neutral-200); background: #fff; color: #0f172a;
  border-radius: 4px; padding: 16px; font-family: 'Manrope', sans-serif;
  font-size: 16px; width: 100%; resize: vertical; transition: all 0.2s; min-height: 120px;
}
.form-textarea:focus { outline: none; border-color: var(--primary-500); box-shadow: 0 0 0 3px rgba(255,77,77,0.1); }
.form-label { font-size: 14px; font-weight: 600; color: #334155; display: block; margin-bottom: 8px; }
.form-select {
  border: 1px solid var(--neutral-200); background: #fff; color: #0f172a;
  height: 52px; border-radius: 4px; padding: 0 16px;
  font-family: 'Manrope', sans-serif; font-size: 16px; width: 100%;
  appearance: none; cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--primary-500); }
.next-steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 1024px) { .next-steps-grid { grid-template-columns: repeat(4, 1fr); } }
.global-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 639px) { .global-stats { grid-template-columns: 1fr; } }
.trust-signals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 1024px) { .trust-signals-grid { grid-template-columns: repeat(5, 1fr); } }
.low-commitment-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .low-commitment-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   BOOK A CALL PAGE
   ========================================================= */
.book-hero { padding-top: 128px; padding-bottom: 96px; position: relative; overflow: hidden; }
.book-hero-bg1 { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: rgba(255,77,77,0.05); transform: skewX(-12deg) translateX(25%); pointer-events: none; }
.book-hero-bg2 { position: absolute; top: 25%; left: 0; width: 256px; height: 256px; background: rgba(255,77,77,0.1); border-radius: 9999px; filter: blur(64px); pointer-events: none; }
.book-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .book-grid { grid-template-columns: 5fr 7fr; } }
.calendar-widget { background: #fff; border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.06); border: 1px solid var(--neutral-100); overflow: hidden; }
.calendar-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .calendar-inner { grid-template-columns: repeat(2, 1fr); } }
.calendar-col-left { padding: 32px; border-bottom: 1px solid var(--neutral-100); }
@media (min-width: 768px) { .calendar-col-left { border-bottom: none; border-right: 1px solid var(--neutral-100); } }
.calendar-col-right { padding: 32px; background: rgba(248,250,252,0.5); }
.time-btn {
  width: 100%; padding: 16px; border-radius: 12px; font-weight: 700;
  border: 1px solid var(--neutral-100); background: #fff; color: #475569;
  cursor: pointer; transition: all 0.15s; font-family: 'Manrope', sans-serif;
  font-size: 15px;
}
.time-btn:hover { border-color: var(--primary-500); color: var(--primary-500); }
.time-btn.selected { background: var(--primary-500); color: #fff; border-color: var(--primary-500); box-shadow: 0 10px 25px rgba(255,77,77,0.2); }
.book-faq-grid { display: grid; grid-template-columns: 1fr; gap: 32px; text-align: left; }
@media (min-width: 768px) { .book-faq-grid { grid-template-columns: repeat(2, 1fr); } }
.book-faq-card { background: #fff; padding: 32px; border-radius: 24px; border: 1px solid var(--neutral-100); box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: border-color 0.2s; }
.book-faq-card:hover { border-color: rgba(255,77,77,0.3); }
.book-faq-card h4 { font-weight: 700; color: #0f172a; margin-bottom: 12px; transition: color 0.2s; }
.book-faq-card:hover h4 { color: var(--primary-500); }
.book-faq-card p { font-size: 14px; color: #64748b; }

/* =========================================================
   BLOG PAGE
   ========================================================= */
.blog-hero-section { padding-top: 128px; padding-bottom: 80px; text-align: center; }
.blog-filters-bar { position: sticky; top: 80px; z-index: 40; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--neutral-100); padding: 16px 24px; }
.blog-tag-btn { padding: 8px 20px; border-radius: 9999px; font-size: 14px; font-weight: 700; border: 1px solid var(--neutral-200); background: #fff; color: #475569; cursor: pointer; transition: all 0.2s; }
.blog-tag-btn.active { background: #0f172a; color: #fff; border-color: #0f172a; }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: 3fr 2fr; } }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1024px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-main-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .blog-main-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-main-grid { grid-template-columns: repeat(3, 1fr); } }
.expert-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .expert-grid { grid-template-columns: repeat(3, 1fr); } }
.authors-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .authors-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-content-mapping { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .blog-content-mapping { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   SERVICE DETAIL PAGES (unique page layouts)
   ========================================================= */
.svc-detail-page { background: #fff; padding-top: 80px; }
.svc-philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .svc-philosophy-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-image-card { border-radius: 40px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.svc-image-card img { width: 100%; height: 100%; object-fit: cover; }
.project-gallery { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .project-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .project-gallery { grid-template-columns: repeat(3, 1fr); } }
.six-step-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; position: relative; }
@media (min-width: 768px) { .six-step-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .six-step-grid { grid-template-columns: repeat(6, 1fr); } }

/* =========================================================
   SHARED COMPONENTS
   ========================================================= */
/* Floating badge on cards */
.float-badge { position: absolute; bottom: -24px; right: -24px; background: #4f46e5; color: #fff; padding: 24px; border-radius: 16px; box-shadow: 0 10px 25px rgba(79,70,229,0.3); border: 1px solid #6366f1; display: none; }
@media (min-width: 768px) { .float-badge { display: flex; align-items: center; gap: 12px; } }
.float-badge .badge-num { font-size: 24px; font-weight: 900; }
.float-badge .badge-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #334155; }
.check-dot { width: 24px; height: 24px; border-radius: 9999px; background: #4f46e5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-dot svg { width: 14px; height: 14px; color: #fff; }

/* Mini stat card */
.mini-stat { background: #fff; padding: 32px; border-radius: 24px; border: 1px solid var(--neutral-100); box-shadow: 0 1px 3px rgba(0,0,0,0.04); display: inline-block; }
.mini-stat .stat-num { font-size: 36px; font-weight: 900; color: #4f46e5; margin-bottom: 4px; }
.mini-stat .stat-label { font-size: 10px; font-weight: 700; color: var(--neutral-400); text-transform: uppercase; letter-spacing: 0.1em; }

/* Dark stats row */
.dark-stat-card { padding: 40px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; text-align: center; }
.dark-stat-card .dsc-num { font-size: 48px; font-weight: 900; color: #fff; letter-spacing: -0.05em; margin-bottom: 8px; }
.dark-stat-card .dsc-label { font-size: 14px; font-weight: 700; color: #94a3b8; }

/* 4-col benefits  */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

/* Responsive utils */
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } }
.text-red { color: var(--primary-500); }
.text-indigo { color: #4f46e5; }
.text-slate { color: #475569; }
.bg-white { background: #fff; }
.bg-slate-50 { background: var(--neutral-50); }
.bg-slate-900 { background: #0f172a; }
.bg-indigo { background: #4f46e5; }
.rounded-full { border-radius: 9999px; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.border-slate { border: 1px solid var(--neutral-200); }

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 28px;
  padding: 28px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.blog-filter {
  padding: 8px 20px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-filter:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}

.blog-filter.active {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
}

.blog-cat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(79,70,229,.08);
  color: #4f46e5;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================================
   BOOK A CALL PAGE STYLES
   ======================================== */

.book-hero {
  background: #fff;
}

.book-hero-bg1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: rgba(238, 242, 255, 0.5);
  border-radius: 9999px;
  filter: blur(100px);
  z-index: 0;
}

.book-hero-bg2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 240, 240, 0.4);
  border-radius: 9999px;
  filter: blur(100px);
  z-index: 0;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .book-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.calendar-widget {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 40px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.08);
  overflow: hidden;
}

.calendar-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .calendar-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.calendar-col-left {
  padding: 40px;
  border-right: 1px solid #f1f5f9;
}

.calendar-col-right {
  padding: 40px;
}

/* Calendar grid */
#ui-calendar {
  width: 100%;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.calendar-nav-btn:hover {
  background: #0f172a;
  color: #fff;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.calendar-day-name {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  padding: 8px 0;
}

.calendar-day {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  margin: auto;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: #f1f5f9;
}

.calendar-day.today {
  border: 2px solid #4f46e5;
  color: #4f46e5;
}

.calendar-day.selected {
  background: #4f46e5;
  color: #fff;
}

.calendar-day.disabled {
  color: #e2e8f0;
  cursor: not-allowed;
}

.calendar-day.available {
  color: #0f172a;
}

/* Time slots */
.time-slot {
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
}

.time-slot:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  background: #eef2ff;
}

.time-slot.selected {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
}

.book-confirm-btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: #4f46e5;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.book-confirm-btn:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

/* Book FAQ */
.book-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
  margin-top: 0;
}

@media (min-width: 640px) {
  .book-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.book-faq-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 32px;
}

.book-faq-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.book-faq-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ========================================
   SERVICE PAGE STYLES
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
