/* =========================================================
   PAGES.CSS — All non-service pages, zero inline styles
   Covers: contact, services, blog, work, book-a-call
   ========================================================= */

/* -------------------------------------------------------
   HEADER / NAVBAR — scroll blur effect
   ------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 16px 24px;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 24px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.site-header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.site-header .logo-icon {
  width: 32px; height: 32px;
  background: #4f39f6;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.site-header .logo:hover .logo-icon { transform: rotate(12deg); }
.site-header .logo-text {
  font-weight: 700; font-size: 20px;
  letter-spacing: -0.02em; color: #0f172a;
}
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a {
  font-size: 14px; font-weight: 700; color: #475569;
  text-decoration: none; transition: color 0.2s;
}
.site-header nav a:hover,
.site-header nav a.active { color: #4f46e5; }
.site-header .nav-cta {
  background: #4f46e5; color: #fff;
  padding: 10px 24px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; transition: background 0.2s;
}
.site-header .nav-cta:hover { background: #4338ca; color: #fff; }

/* Mobile menu */
.mobile-menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: #0f172a;
}
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 100;
  padding: 24px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px; font-weight: 700; color: #0f172a;
  text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-close { background: none; border: none; cursor: pointer; align-self: flex-end; }

@media (max-width: 768px) {
  .site-header nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* -------------------------------------------------------
   SHARED PAGE PATTERNS
   ------------------------------------------------------- */
.page-wrap { padding-top: 80px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 10px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.2em; margin-bottom: 32px;
}
.page-eyebrow--dark { background: #0f172a; color: #fff; }
.page-eyebrow--light { background: #f8fafc; border: 1px solid #f1f5f9; color: #64748b; }
.page-eyebrow--indigo { background: rgba(79,70,229,0.1); color: #4f46e5; }
.page-eyebrow svg { width: 14px; height: 14px; }

.page-section { padding: 96px 24px; }
.page-section--sm { padding: 64px 24px; }
.page-section--white { background: #fff; }
.page-section--slate { background: #f8fafc; }
.page-section--dark { background: #0f172a; color: #fff; }
.page-section--indigo { background: #312e81; color: #fff; }

.page-container { max-width: 1280px; margin: 0 auto; }
.page-container--md { max-width: 900px; margin: 0 auto; }

.section-heading-sm {
  font-size: 10px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.2em; color: #4f46e5; display: block; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px); font-weight: 900;
  color: #0f172a; line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title--white { color: #fff; }
.section-desc {
  font-size: 18px; color: #64748b; line-height: 1.75;
  max-width: 640px;
}
.section-desc--white { color: rgba(255,255,255,0.7); }

.section-hd-center { text-align: center; margin-bottom: 64px; }
.section-hd-center .section-desc { margin: 16px auto 0; }

/* Hero two-col layout */
.hero-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 1024px) { .hero-two-col { grid-template-columns: 1fr; } }

.hero-btn-group { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #4f46e5; color: #fff;
  padding: 20px 40px; border-radius: 999px;
  font-weight: 900; font-size: 18px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(79,70,229,0.2);
  text-decoration: none;
}
.btn-primary:hover { background: #4338ca; transform: translateY(-2px); color: #fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #0f172a;
  padding: 20px 40px; border-radius: 999px;
  font-weight: 900; font-size: 18px;
  border: 1px solid #e2e8f0; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
}
.btn-secondary:hover { background: #f8fafc; color: #0f172a; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  padding: 20px 40px; border-radius: 999px;
  font-weight: 900; font-size: 18px;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: background 0.2s; text-decoration: none;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* -------------------------------------------------------
   SERVICES PAGE
   ------------------------------------------------------- */
.svc-hero-mock {
  background: #0f172a;
  border-radius: 32px; padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  border: 1px solid #1e293b;
  position: relative;
}
.svc-hero-mock__bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding: 0 8px;
}
.svc-hero-mock__dots { display: flex; gap: 6px; }
.svc-hero-mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.svc-hero-mock__dot--red { background: #ef4444; }
.svc-hero-mock__dot--amber { background: #f59e0b; }
.svc-hero-mock__dot--green { background: #22c55e; }
.svc-hero-mock__title {
  flex: 1; text-align: center;
  font-size: 10px; font-family: monospace; color: #475569;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.svc-hero-mock__screen {
  background: rgba(30,41,59,0.5);
  border-radius: 16px; padding: 32px;
  border: 1px solid #334155;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-hero-mock__screen-card {
  padding: 16px; border-radius: 16px; border: 1px solid;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100px;
}
.svc-hero-mock__screen-card--dim {
  background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.03);
}
.svc-hero-mock__screen-card--indigo {
  background: rgba(79,70,229,0.15); border-color: rgba(99,102,241,0.2);
}
.svc-hero-mock__card-label {
  font-size: 10px; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.svc-hero-mock-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: #4f46e5; color: #fff;
  padding: 24px; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(79,70,229,0.3);
  border: 1px solid #6366f1;
  display: none;
}
@media (min-width: 768px) { .svc-hero-mock-badge { display: flex; align-items: center; gap: 12px; } }
.svc-hero-mock-badge__val { font-size: 24px; font-weight: 900; }
.svc-hero-mock-badge__lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

/* Services grid */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  padding: 32px; background: #fff;
  border: 1px solid #f1f5f9; border-radius: 24px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none; color: inherit;
}
.svc-card:hover {
  border-color: rgba(79,70,229,0.2);
  box-shadow: 0 20px 40px rgba(79,70,229,0.05);
}
.svc-card__icon {
  width: 48px; height: 48px; background: #f8fafc;
  border-radius: 24px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: background 0.3s;
  color: #64748b;
}
.svc-card:hover .svc-card__icon { background: #4f46e5; color: #fff; }
.svc-card__title { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.svc-card__desc { font-size: 14px; color: #64748b; line-height: 1.75; flex: 1; margin-bottom: 32px; }
.svc-card__link {
  display: flex; align-items: center; gap: 8px;
  color: #4f46e5; font-weight: 700; font-size: 14px;
  transition: gap 0.2s;
}
.svc-card:hover .svc-card__link { gap: 12px; }

/* -------------------------------------------------------
   WORK PAGE
   ------------------------------------------------------- */
.work-hero-section {
  background: #fff; padding: 192px 24px 96px;
  position: relative; overflow: hidden;
}
.work-hero-glow {
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: rgba(99,102,241,0.05);
  border-radius: 50%; filter: blur(120px);
  z-index: 0;
}
.work-hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
}
.work-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: flex-end;
}
@media (max-width: 1024px) { .work-hero-grid { grid-template-columns: 1fr; } }
.work-hero-h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700; color: #0f172a;
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.work-hero-sub {
  font-size: 20px; color: #64748b; line-height: 1.75; max-width: 480px;
}

/* Work filters bar */
.work-filters {
  position: sticky; top: 80px; z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9; padding: 24px;
}
.work-filters-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.work-filter-group { display: flex; align-items: center; gap: 16px; }
.work-filter-label { font-size: 12px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; }
.work-filter-select {
  height: 40px; padding: 0 16px; border-radius: 4px;
  border: 1px solid #e2e8f0; background: #fff;
  font-weight: 700; font-size: 14px; color: #334155;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
.work-filter-divider { height: 32px; width: 1px; background: #f1f5f9; }

/* Work project grid */
.work-grid-section { padding: 96px 24px; background: #fff; }
.work-project-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 768px) { .work-project-grid { grid-template-columns: 1fr; } }
.work-project { cursor: pointer; }
.work-project-image {
  position: relative; border-radius: 32px; overflow: hidden;
  aspect-ratio: 16/10; background: #f1f5f9; margin-bottom: 32px;
}
.work-project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.work-project:hover .work-project-image img { transform: scale(1.05); }
.work-project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
  opacity: 0; transition: opacity 0.5s;
  display: flex; align-items: flex-end; padding: 40px;
}
.work-project:hover .work-project-overlay { opacity: 1; }
.work-project-overlay-text {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700;
}
.work-project-category {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  padding: 6px 16px; border-radius: 999px;
  font-size: 10px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em; color: #0f172a;
}
.work-project-info { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px; }
.work-project-title {
  font-size: 28px; font-weight: 700; color: #0f172a;
  margin-bottom: 12px; transition: color 0.2s; line-height: 1.2;
}
.work-project:hover .work-project-title { color: #4f46e5; }
.work-project-desc { font-size: 16px; color: #64748b; line-height: 1.75; max-width: 400px; margin-bottom: 24px; }
.work-project-stats { display: flex; flex-wrap: wrap; gap: 8px; }
.work-project-stat {
  padding: 4px 12px; background: #f8fafc;
  border: 1px solid #f1f5f9; border-radius: 8px;
  font-size: 11px; font-weight: 700; color: #94a3b8;
}

/* Lessons learned */
.lessons-section { padding: 96px 24px; background: #f8fafc; }
.lessons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 64px; }
@media (max-width: 768px) { .lessons-grid { grid-template-columns: 1fr; } }
.lesson-card {
  background: #fff; padding: 40px; border-radius: 24px;
  border: 1px solid #f1f5f9;
}
.lesson-num { font-size: 12px; font-weight: 900; color: #4f46e5; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px; }
.lesson-title { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.lesson-desc { font-size: 14px; color: #64748b; line-height: 1.75; }

/* -------------------------------------------------------
   BLOG PAGE
   ------------------------------------------------------- */
.blog-hero { background: #fff; padding: 192px 24px 96px; position: relative; overflow: hidden; }
.blog-hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 500px;
  background: rgba(99,102,241,0.04); border-radius: 50%;
  filter: blur(120px); z-index: 0;
}
.blog-hero-inner { max-width: 1280px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.blog-hero-h1 {
  font-size: clamp(48px, 8vw, 96px); font-weight: 700;
  color: #0f172a; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 32px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.blog-hero-sub {
  font-size: 20px; color: #64748b; max-width: 600px;
  margin: 0 auto 48px; line-height: 1.75; font-weight: 500;
}
.blog-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Blog filters bar */
.blog-filters {
  position: sticky; top: 80px; z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
  padding: 16px 24px; margin-bottom: 64px;
}
.blog-filters-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.blog-filter-tabs { display: flex; align-items: center; gap: 8px; overflow-x: auto; }
.blog-filter-tab {
  padding: 10px 20px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap;
  color: #64748b; background: transparent; transition: all 0.2s;
}
.blog-filter-tab:hover { border-color: #e2e8f0; background: #f8fafc; }
.blog-filter-tab.active-all { background: #0f172a; color: #fff; border-color: #0f172a; }
.blog-filter-tab.active-cat { background: #4f46e5; color: #fff; border-color: #4f46e5; }
.blog-search-wrap { position: relative; }
.blog-search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: #94a3b8; pointer-events: none; }
.blog-search {
  width: 256px; height: 48px; padding: 0 16px 0 40px;
  border-radius: 999px; border: 1px solid #f1f5f9; background: #f8fafc;
  font-size: 14px; font-weight: 500; outline: none;
  transition: all 0.2s;
}
.blog-search:focus { background: #fff; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

/* Featured articles section */
.blog-featured { padding: 0 24px 96px; }
.blog-featured-inner { max-width: 1280px; margin: 0 auto; }
.blog-featured-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px;
}
@media (max-width: 1024px) { .blog-featured-grid { grid-template-columns: 1fr; } }

.blog-featured-main { cursor: pointer; }
.blog-featured-image {
  border-radius: 48px; overflow: hidden; aspect-ratio: 16/10;
  background: #f1f5f9; margin-bottom: 32px; position: relative;
}
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-featured-main:hover .blog-featured-image img { transform: scale(1.05); }
.blog-featured-badge {
  position: absolute; top: 32px; left: 32px;
  padding: 8px 20px; background: #4f46e5; border-radius: 999px;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
}
.blog-featured-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 700; color: #4f46e5;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.blog-featured-meta svg { width: 14px; height: 14px; }
.blog-featured-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #0f172a;
  line-height: 1.15; margin-bottom: 24px;
  transition: color 0.2s;
}
.blog-featured-main:hover .blog-featured-title { color: #4f46e5; }
.blog-featured-excerpt { font-size: 18px; color: #64748b; line-height: 1.75; max-width: 600px; }

/* Secondary featured posts */
.blog-secondary-list { display: flex; flex-direction: column; gap: 48px; }
.blog-secondary-item { display: flex; gap: 32px; align-items: flex-start; cursor: pointer; }
.blog-secondary-image { width: 160px; height: 160px; flex-shrink: 0; border-radius: 24px; overflow: hidden; background: #f1f5f9; }
.blog-secondary-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-secondary-item:hover .blog-secondary-image img { transform: scale(1.1); }
.blog-secondary-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
  color: #94a3b8; margin-bottom: 12px;
}
.blog-secondary-meta span:first-child { color: #4f46e5; }
.blog-secondary-title {
  font-size: 20px; font-weight: 700; color: #0f172a; line-height: 1.3;
  margin-bottom: 16px; transition: color 0.2s;
}
.blog-secondary-item:hover .blog-secondary-title { color: #4f46e5; }
.blog-secondary-excerpt { font-size: 14px; color: #64748b; line-height: 1.75; }

/* Blog posts grid */
.blog-posts-section { padding: 96px 24px; background: #fff; }
.blog-posts-inner { max-width: 1280px; margin: 0 auto; }
.blog-posts-header { margin-bottom: 64px; }
.blog-posts-header-title { font-size: 28px; font-weight: 700; color: #0f172a; }
.blog-posts-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px 32px;
}
@media (max-width: 1024px) { .blog-posts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .blog-posts-grid { grid-template-columns: 1fr; } }

.blog-card { cursor: pointer; display: flex; flex-direction: column; }
.blog-card-image {
  border-radius: 32px; overflow: hidden; aspect-ratio: 4/3;
  background: #f1f5f9; margin-bottom: 32px; position: relative;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute; top: 24px; left: 24px;
  padding: 6px 16px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px); border-radius: 999px;
  border: 1px solid #f1f5f9;
  font-size: 10px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em; color: #4f46e5;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 16px;
}
.blog-card-title {
  font-size: 22px; font-weight: 700; color: #0f172a; line-height: 1.3;
  margin-bottom: 16px; transition: color 0.2s; flex: 1;
}
.blog-card:hover .blog-card-title { color: #4f46e5; }
.blog-card-excerpt {
  font-size: 14px; color: #64748b; line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 24px;
}
.blog-card-footer {
  padding-top: 24px; border-top: 1px solid #f8fafc;
  display: flex; align-items: center; gap: 8px;
  color: #4f46e5; font-weight: 700; font-size: 14px;
}
.blog-card-footer svg { width: 16px; height: 16px; transition: transform 0.2s; }
.blog-card:hover .blog-card-footer svg { transform: translateX(4px); }

/* Newsletter section */
.newsletter-section { padding: 96px 24px; }
.newsletter-box {
  background: #0f172a; border-radius: 48px;
  padding: 96px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 1024px) { .newsletter-box { grid-template-columns: 1fr; padding: 48px; } }
.newsletter-glow-tr {
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: rgba(79,70,229,0.2); border-radius: 50%; filter: blur(100px);
  transform: translate(200px,-200px); pointer-events: none;
}
.newsletter-glow-bl {
  position: absolute; bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: rgba(37,99,235,0.1); border-radius: 50%; filter: blur(80px);
  transform: translate(-150px,150px); pointer-events: none;
}
.newsletter-content { position: relative; z-index: 1; }
.newsletter-icon {
  width: 56px; height: 56px; background: #4f46e5; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; box-shadow: 0 20px 40px rgba(79,70,229,0.2);
}
.newsletter-icon svg { width: 28px; height: 28px; color: #fff; }
.newsletter-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: #fff;
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em;
}
.newsletter-title span { color: #818cf8; }
.newsletter-sub { font-size: 18px; color: #94a3b8; line-height: 1.75; max-width: 400px; }
.newsletter-form-wrap {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  padding: 8px; border-radius: 32px; border: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 1;
}
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .newsletter-form { flex-direction: row; } }
.newsletter-input {
  flex: 1; height: 64px; padding: 0 32px;
  border-radius: 24px; border: none;
  background: rgba(255,255,255,0.1); color: #fff;
  font-size: 16px; outline: none;
  transition: box-shadow 0.2s;
}
.newsletter-input::placeholder { color: #64748b; }
.newsletter-input:focus { box-shadow: 0 0 0 2px #4f46e5; }
.newsletter-submit {
  height: 64px; padding: 0 32px; border-radius: 24px;
  background: #4f46e5; color: #fff; border: none; cursor: pointer;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-submit:hover { background: #4338ca; }
.newsletter-submit svg { width: 16px; height: 16px; transition: transform 0.2s; }
.newsletter-submit:hover svg { transform: translateX(4px); }
.newsletter-note { font-size: 12px; color: #475569; padding: 0 16px; margin-top: 16px; }

/* -------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------- */
.contact-hero { background: #fff; padding: 192px 24px 96px; position: relative; overflow: hidden; }
.contact-hero-glow-tr {
  position: absolute; top: 0; right: 0;
  width: 800px; height: 800px;
  background: rgba(99,102,241,0.03); border-radius: 50%; filter: blur(120px);
  transform: translate(300px,-300px);
}
.contact-hero-glow-bl {
  position: absolute; bottom: 0; left: 0;
  width: 600px; height: 600px;
  background: rgba(219,234,254,0.2); border-radius: 50%; filter: blur(100px);
  transform: translate(-300px,300px);
}
.contact-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.contact-hero-h1 {
  font-size: clamp(48px, 8vw, 96px); font-weight: 700; color: #0f172a;
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 40px;
}
.contact-hero-h1 span { color: #4f46e5; }
.contact-hero-sub {
  font-size: clamp(18px, 2vw, 24px); color: #64748b; max-width: 600px;
  line-height: 1.75; font-weight: 500; margin-bottom: 48px;
}

/* Contact form section */
.contact-form-section { padding: 48px 24px 96px; background: #fff; }
.contact-form-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 7fr 5fr; gap: 96px;
}
@media (max-width: 1024px) { .contact-form-inner { grid-template-columns: 1fr; gap: 48px; } }

/* Form card */
.contact-form-card {
  background: #fff; border-radius: 48px; padding: 56px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 40px 80px rgba(15,23,42,0.05);
}
@media (max-width: 640px) { .contact-form-card { padding: 32px; } }
.cf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .cf-grid-2 { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.cf-label {
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em; color: #94a3b8; padding-left: 4px;
}
.cf-input {
  width: 100%; height: 64px; padding: 0 24px;
  border-radius: 16px; border: 1px solid #f1f5f9;
  background: #f8fafc; color: #0f172a; font-size: 16px; font-weight: 500;
  outline: none; transition: all 0.2s; box-sizing: border-box;
}
.cf-input:focus {
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
  background: #fff; border-color: #e2e8f0;
}
.cf-select { appearance: none; cursor: pointer; }
.cf-textarea {
  width: 100%; padding: 24px; border-radius: 16px;
  border: 1px solid #f1f5f9; background: #f8fafc;
  color: #0f172a; font-size: 16px; font-weight: 500;
  outline: none; resize: none; transition: all 0.2s;
  font-family: inherit; box-sizing: border-box;
}
.cf-textarea:focus { box-shadow: 0 0 0 3px rgba(79,70,229,0.1); background: #fff; }
.cf-submit {
  width: 100%; padding: 24px; background: #4f46e5; color: #fff;
  border: none; border-radius: 16px; font-weight: 700; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(79,70,229,0.2);
}
.cf-submit:hover { background: #4338ca; transform: translateY(-2px); }
.cf-submit svg { width: 20px; height: 20px; transition: transform 0.2s; }
.cf-submit:hover svg { transform: translateX(4px); }
.cf-note { text-align: center; font-size: 14px; color: #94a3b8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 24px; }

/* Success state */
.cf-success { text-align: center; padding: 64px 0; }
.cf-success-icon {
  width: 80px; height: 80px; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 32px;
}
.cf-success-icon svg { width: 40px; height: 40px; color: #16a34a; }
.cf-success h3 { font-size: 28px; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.cf-success p { font-size: 18px; color: #64748b; max-width: 360px; margin: 0 auto; line-height: 1.75; }

/* Contact trust panel */
.contact-trust-panel { display: flex; flex-direction: column; justify-content: center; }
.contact-trust-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #0f172a;
  line-height: 1.3; margin-bottom: 32px;
}
.contact-trust-title span { color: #4f46e5; }
.contact-trust-items { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.contact-trust-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-trust-icon {
  width: 48px; height: 48px; border-radius: 16px; background: #eef2ff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-trust-icon svg { width: 24px; height: 24px; color: #4f46e5; }
.contact-trust-item-title { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.contact-trust-item-desc { font-size: 16px; color: #64748b; line-height: 1.6; }
.contact-quote-card {
  background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 32px; padding: 32px;
}
.contact-quote-text { font-size: 16px; color: #475569; font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.contact-quote-author { display: flex; align-items: center; gap: 16px; }
.contact-quote-avatar { width: 40px; height: 40px; border-radius: 50%; background: #e2e8f0; }
.contact-quote-name { font-weight: 700; color: #0f172a; font-size: 14px; }
.contact-quote-role { font-size: 10px; font-weight: 900; color: #4f46e5; text-transform: uppercase; letter-spacing: 0.1em; }

/* -------------------------------------------------------
   BOOK A CALL PAGE
   ------------------------------------------------------- */
.bac-page { background: #fdfdfd; min-height: 100vh; }
.bac-hero { padding: 128px 24px 96px; position: relative; overflow: hidden; }
.bac-hero-glow-tr {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: rgba(79,70,229,0.03);
  transform: skewX(-12deg) translateX(25%);
  pointer-events: none;
}
.bac-hero-glow-bl {
  position: absolute; top: 25%; left: 0;
  width: 256px; height: 256px;
  background: rgba(79,70,229,0.08); border-radius: 50%; filter: blur(64px);
  pointer-events: none;
}
.bac-hero-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: flex-start;
}
@media (max-width: 1024px) { .bac-hero-inner { grid-template-columns: 1fr; } }

.bac-left h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 700; color: #0f172a;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 32px;
}
.bac-left h1 span { color: #4f46e5; }
.bac-left p { font-size: 18px; color: #64748b; line-height: 1.75; max-width: 480px; margin-bottom: 48px; }
.bac-benefits { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.bac-benefit { display: flex; gap: 16px; }
.bac-benefit-icon {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(79,70,229,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.bac-benefit-icon svg { width: 16px; height: 16px; color: #4f46e5; }
.bac-benefit-title { font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.bac-benefit-desc { font-size: 14px; color: #64748b; }
.bac-social-proof {
  display: flex; align-items: center; gap: 24px;
  padding: 24px; background: #fff; border: 1px solid #f1f5f9;
  border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.bac-avatars { display: flex; }
.bac-avatar {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff;
  background: #e2e8f0; overflow: hidden; margin-left: -12px;
}
.bac-avatar:first-child { margin-left: 0; }
.bac-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bac-sp-text p:first-child { font-size: 14px; font-weight: 700; color: #0f172a; }
.bac-sp-text p:last-child { font-size: 12px; color: #64748b; }

/* Calendar card */
.bac-cal-card {
  background: #fff; border-radius: 24px;
  box-shadow: 0 40px 80px rgba(15,23,42,0.1);
  border: 1px solid #f1f5f9; overflow: hidden;
}
.bac-cal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) { .bac-cal-grid { grid-template-columns: 1fr; } }
.bac-cal-left { padding: 32px; border-right: 1px solid #f1f5f9; }
.bac-cal-right { padding: 32px; background: rgba(248,250,252,0.5); }
.bac-cal-heading { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.bac-cal-sub { font-size: 14px; color: #94a3b8; margin-bottom: 24px; }

/* Pure JS Calendar */
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-nav-title { font-weight: 700; font-size: 16px; color: #0f172a; }
.cal-nav-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid #f1f5f9; background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cal-nav-btn:hover { background: #f8fafc; border-color: #e2e8f0; }
.cal-nav-btn svg { width: 16px; height: 16px; color: #64748b; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-weekday {
  text-align: center; font-size: 10px; font-weight: 700;
  color: #94a3b8; text-transform: uppercase; padding: 4px 0;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; background: transparent; transition: all 0.15s;
}
.cal-day:hover:not(.cal-day--past):not(.cal-day--empty) { background: #f8fafc; color: #4f46e5; }
.cal-day--past { color: #e2e8f0; cursor: not-allowed; }
.cal-day--empty { cursor: default; }
.cal-day--today { color: #4f46e5; font-weight: 900; }
.cal-day--selected { background: #4f46e5 !important; color: #fff !important; }
.cal-tz { display: flex; align-items: center; gap: 12px; margin-top: 32px; font-size: 12px; color: #94a3b8; }
.cal-tz svg { width: 16px; height: 16px; }

/* Time slots */
.time-slots-list { display: flex; flex-direction: column; gap: 12px; max-height: 400px; overflow-y: auto; padding-right: 4px; }
.time-slots-list::-webkit-scrollbar { width: 4px; }
.time-slots-list::-webkit-scrollbar-track { background: transparent; }
.time-slots-list::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }
.time-slot {
  width: 100%; padding: 16px; border-radius: 12px;
  border: 1px solid #f1f5f9; background: #fff;
  font-weight: 700; font-size: 14px; color: #475569;
  cursor: pointer; transition: all 0.15s; text-align: center;
}
.time-slot:hover { border-color: #4f46e5; color: #4f46e5; }
.time-slot.selected { background: #4f46e5; color: #fff; border-color: #4f46e5; box-shadow: 0 10px 20px rgba(79,70,229,0.2); }
.bac-confirm-btn {
  width: 100%; margin-top: 24px; padding: 20px;
  background: #4f46e5; color: #fff; border: none; border-radius: 12px;
  font-weight: 700; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s; box-shadow: 0 20px 40px rgba(79,70,229,0.2);
}
.bac-confirm-btn:hover { background: #4338ca; }
.bac-confirm-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.bac-confirm-btn:hover svg { transform: translateX(4px); }

/* Trust badges below calendar */
.bac-trust-badges {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 32px; margin-top: 32px; opacity: 0.4;
  filter: grayscale(1) contrast(1.25);
}
.bac-trust-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.bac-trust-badge svg { width: 20px; height: 20px; }

/* FAQ section */
.bac-faq-section { padding: 96px 24px; border-top: 1px solid #f1f5f9; }
.bac-faq-inner { max-width: 768px; margin: 0 auto; text-align: center; }
.bac-faq-title { font-size: 32px; font-weight: 700; color: #0f172a; margin-bottom: 48px; }
.bac-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
@media (max-width: 640px) { .bac-faq-grid { grid-template-columns: 1fr; } }
.bac-faq-card {
  background: #fff; padding: 32px; border-radius: 24px;
  border: 1px solid #f1f5f9;
  transition: border-color 0.2s;
}
.bac-faq-card:hover { border-color: rgba(79,70,229,0.3); }
.bac-faq-q { font-weight: 700; color: #0f172a; margin-bottom: 12px; font-size: 16px; transition: color 0.2s; }
.bac-faq-card:hover .bac-faq-q { color: #4f46e5; }
.bac-faq-a { font-size: 14px; color: #64748b; line-height: 1.75; }

/* CTA footer */
.bac-cta { padding: 80px 24px; background: #0f172a; position: relative; overflow: hidden; }
.bac-cta-glow {
  position: absolute; top: 0; right: 0;
  width: 256px; height: 256px;
  background: rgba(79,70,229,0.1); border-radius: 50%; filter: blur(100px);
  transform: translate(50%,-50%);
}
.bac-cta-inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 48px;
}
.bac-cta-title { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.bac-cta-sub { color: #64748b; }
.bac-cta-btn {
  padding: 20px 40px; background: #4f46e5; color: #fff;
  border: none; border-radius: 24px; font-weight: 700; font-size: 18px;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
  box-shadow: 0 20px 40px rgba(79,70,229,0.2); text-decoration: none;
  display: inline-block;
}
.bac-cta-btn:hover { background: #4338ca; color: #fff; }

/* -------------------------------------------------------
   TESTIMONIALS (shared) — used on service pages
   ------------------------------------------------------- */
.testimonials-section { padding: 96px 24px; background: #f8fafc; overflow: hidden; }
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-eyebrow { font-size: 12px; font-weight: 900; color: #4f46e5; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px; display: block; }
.testimonials-title { font-size: 40px; font-weight: 900; color: #0f172a; margin-bottom: 24px; }
.testimonials-sub { font-size: 18px; color: #64748b; max-width: 600px; margin: 0 auto; line-height: 1.75; }

.testimonials-slider { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
@media (max-width: 1024px) { .testimonials-slider { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .testimonials-slider { grid-template-columns: 1fr; } }

.t-card {
  padding: 32px 40px; background: #fff; border-radius: 32px;
  border: 1px solid #f1f5f9;
  display: flex; flex-direction: column; margin: 16px;
  transition: box-shadow 0.2s;
}
.t-card:hover { box-shadow: 0 20px 40px rgba(15,23,42,0.08); }
.t-stars { display: flex; gap: 4px; margin-bottom: 24px; color: #f59e0b; }
.t-stars svg { width: 16px; height: 16px; fill: currentColor; }
.t-quote-icon { width: 40px; height: 40px; color: #e0e7ff; margin-bottom: 24px; }
.t-text { color: #64748b; font-style: italic; line-height: 1.75; flex: 1; margin-bottom: 32px; }
.t-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid #f8fafc; padding-top: 24px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; background: #eef2ff; display: flex; align-items: center; justify-content: center; font-weight: 900; color: #4f46e5; font-size: 18px; }
.t-name { font-weight: 900; color: #0f172a; }
.t-role { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* Section title size variants */
.section-title--h1 { font-size: clamp(40px, 5vw, 64px); }
.section-title--h2 { font-size: clamp(28px, 4vw, 40px); }

/* Why card text */
.why-card-title { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.why-card-desc { font-size: 14px; color: #64748b; line-height: 1.75; }

/* Blog accent span */
.text-indigo { color: #4f46e5; }

/* Remaining inline style replacements */
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-0  { margin-top: 0; }
.pt-16 { padding-top: 16px; }
.pb-16 { padding-bottom: 16px; }
.pos-rel { position: relative; }
.hidden { display: none; }

/* Why card title / desc (for PHP loops) */
.why-card-title { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.why-card-desc  { font-size: 14px; color: #64748b; line-height: 1.75; }
