/* ===== CSS Variables ===== */
:root {
  --bg-dark: #0B0D17;
  --bg-card: #12151F;
  --bg-card-hover: #1A1E2E;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FC;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --accent: #6366F1;
  --accent-light: #818CF8;
  --accent-purple: #8B5CF6;
  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-hover: linear-gradient(135deg, #5558E3 0%, #7C4FE8 100%);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: #E2E8F0;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(99, 102, 241, 0.15);
  --transition: all 0.3s ease;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 96px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(11, 13, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: 310px;
  object-fit: contain;
  display: block;
}

.footer-brand .logo-img {
  height: 64px;
  max-width: 280px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 50px;
  font-size: 13px;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient);
  border-radius: var(--radius-xl);
  opacity: 0.15;
  z-index: -1;
  filter: blur(40px);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
}

.section-white {
  background: var(--bg-white);
  color: var(--text-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-white .section-desc,
.section-light .section-desc {
  color: var(--text-muted);
}

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

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Help / Services Grid (4 col) ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.help-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.section:not(.section-white) .help-card {
  background: var(--bg-card);
  border-color: var(--border);
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.25);
}

.help-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.help-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section:not(.section-white) .help-card h3 {
  color: var(--text-primary);
}

.help-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.section:not(.section-white) .help-card p {
  color: var(--text-secondary);
}

.services-grid-main {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .help-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-main {
    grid-template-columns: 1fr;
  }
}

/* ===== Who I Work With ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.client-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.client-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
}

.client-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.client-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.client-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Burhan-style Hero ===== */
.hero-burhan .hero-role-tags {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero-title-long {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

/* ===== Three Pillars ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.pillar-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/10;
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pillar-card:hover .pillar-image img {
  transform: scale(1.05);
}

.pillar-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pillar-card .service-link {
  color: var(--accent);
  font-weight: 600;
}

/* ===== CEO Quote ===== */
.quote-section {
  padding: 80px 0;
  background: var(--bg-dark);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ceo-quote p {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.ceo-quote cite {
  font-size: 16px;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 600;
}

/* ===== Blog home grid ===== */
.blog-grid-home {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-item summary {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item p a {
  color: var(--accent);
}

/* ===== Newsletter ===== */
.newsletter-section {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.newsletter-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}

.newsletter-section > .container > p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===== Footer hashtags ===== */
.footer-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-hashtags a {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 600;
}

.footer-hashtags a:hover {
  color: var(--text-primary);
}

.footer-bottom a {
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* ===== Home About Me Section ===== */
.home-about {
  background: #F5F5F5;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.home-about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.home-about-heading {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.home-about-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.home-about-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.home-about-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.home-about-tagline em {
  font-style: italic;
}

/* ===== Problem/Solution Section ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

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

.problem-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.solution-box {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.solution-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.solution-box p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.solution-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}

.section-white .service-card,
.section-light .service-card {
  background: #fff;
  border-color: var(--border-light);
}

.service-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.section-white .service-card p,
.section-light .service-card p {
  color: var(--text-muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
}

.service-link:hover {
  gap: 10px;
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Tech Grid ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.tech-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.tech-item img {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.tech-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ===== About Intro ===== */
.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 48px 60px;
  align-items: start;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 380px;
  max-height: 520px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center 12%;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  left: 14px;
  top: 14px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== Service Detail ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-detail-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-features {
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.service-features li::before {
  content: '→';
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
}

.service-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== Filter Tabs ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

/* ===== Case Study Cards ===== */
.case-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-card {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.case-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.case-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.case-card-content h2,
.case-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-card-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent-light);
  font-weight: 600;
}

.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  min-width: 140px;
}

.case-metric-value {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-metric-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== Single Case Study ===== */
.case-hero {
  padding-top: calc(var(--header-height) + 40px);
}

.case-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.case-hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.case-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 32px;
}

.case-overview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
}

.case-overview h2,
.case-overview h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.case-overview p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.case-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.case-column h2,
.case-column h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-column h2 .icon,
.case-column h3 .icon {
  width: 36px;
  height: 36px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.case-column ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.case-column ul li::before {
  content: '•';
  color: var(--accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

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

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.result-card .number {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.result-card .label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Process Timeline ===== */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-timeline {
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-purple));
  opacity: 0.3;
}

.process-step {
  position: relative;
  margin-bottom: 40px;
}

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

.process-step-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
}

/* ===== Blog Grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-body h2,
.blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-link .blog-card-body h2,
.blog-card-link .blog-card-body h3 {
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.blog-card-link:hover .blog-card-body h2,
.blog-card-link:hover .blog-card-body h3 {
  color: var(--accent-light);
}

/* ===== Single Blog Post ===== */
.blog-post {
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 80px;
}

.blog-post-container {
  max-width: 1100px;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.blog-breadcrumb a:hover {
  color: var(--accent-light);
}

.blog-post-header {
  max-width: 820px;
  margin-bottom: 40px;
}

.blog-post-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.blog-post-meta-top time,
.blog-read-time {
  color: var(--text-secondary);
}

.blog-post-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-post-excerpt {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.blog-post-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99, 102, 241, 0.4);
}

.blog-post-author-bar strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.blog-post-author-bar span {
  font-size: 14px;
  color: var(--text-secondary);
}

.blog-post-featured {
  margin-bottom: 48px;
}

.blog-post-featured img {
  width: 100%;
  height: clamp(220px, 40vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog-post-featured figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.blog-post-layout-single {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}

.blog-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.blog-toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.blog-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0 0 24px;
}

.blog-toc li {
  margin-bottom: 10px;
}

.blog-toc a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.blog-toc a:hover {
  color: var(--accent-light);
}

.blog-toc-cta {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-toc-cta p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.blog-post-content {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.blog-post-content > p:first-child {
  font-size: 19px;
  color: var(--text-primary);
}

.blog-post-content h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 48px 0 20px;
  line-height: 1.25;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.blog-post-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 28px 1.25em;
  padding: 0;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post-content blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  background: rgba(99, 102, 241, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-post-content blockquote p {
  margin: 0;
  font-size: 20px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.blog-callout {
  background: var(--bg-card);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 40px 0;
}

.blog-callout h3 {
  margin-top: 0 !important;
  font-size: 18px !important;
  color: var(--accent-light) !important;
}

.blog-callout p {
  margin-bottom: 0;
}

.blog-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.blog-table th,
.blog-table td {
  padding: 14px 18px;
  text-align: left;
  border: 1px solid var(--border);
}

.blog-table th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
}

.blog-faq {
  margin: 32px 0;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.blog-post-tags span:first-child {
  color: var(--text-secondary);
  font-weight: 600;
}

.blog-post-tags a {
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50px;
  font-size: 13px;
  color: var(--accent-light);
  text-decoration: none;
}

.blog-post-tags a:hover {
  background: rgba(99, 102, 241, 0.2);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.blog-share a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}

.blog-author-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 64px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.blog-author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-author-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-author-box p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-related {
  margin-top: 72px;
}

.blog-related h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
}

.blog-grid-related {
  grid-template-columns: repeat(3, 1fr);
}

.blog-post-cta {
  margin-top: 64px;
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info h2,
.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h3,
.contact-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  margin: 0 24px 100px;
  max-width: calc(var(--max-width) + 48px);
  margin-left: auto;
  margin-right: auto;
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inline CTA — mid-page sections */
.cta-inline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 0 auto 80px;
  max-width: var(--max-width);
  position: relative;
  overflow: hidden;
}

.cta-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inline-light {
  background: #fff;
  border-color: var(--border-light);
}

.cta-inline h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}

.cta-inline p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-inline-light p {
  color: var(--text-muted);
}

.cta-inline .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-inline-wrap {
  padding: 0 24px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.55);
  color: #fff;
}

.floating-cta span {
  font-size: 16px;
}

/* ===== Caution Tape Banner ===== */
.tape-banner {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  isolation: isolate;
}

.tape-banner-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 214, 0, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(255, 214, 0, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.tape-banner-inner {
  position: relative;
  height: clamp(260px, 38vw, 380px);
  z-index: 1;
}

.tape-wrap {
  position: absolute;
  width: 140%;
  left: -20%;
}

.tape-wrap-top {
  top: 22%;
  z-index: 3;
  transform: rotate(-5deg);
}

.tape-wrap-bottom {
  top: 46%;
  z-index: 2;
  transform: rotate(5deg);
}

.tape {
  position: relative;
  padding: clamp(22px, 4vw, 38px) 0;
  background:
    linear-gradient(
      180deg,
      #fff59d 0%,
      #ffee58 8%,
      #ffeb3b 30%,
      #fdd835 55%,
      #f9a825 92%,
      #f57f17 100%
    );
  border-top: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.tape-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.tape-crease {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 3px,
      rgba(0, 0, 0, 0.015) 3px,
      rgba(0, 0, 0, 0.015) 4px
    ),
    linear-gradient(
      105deg,
      transparent 48%,
      rgba(255, 255, 255, 0.12) 49%,
      rgba(0, 0, 0, 0.06) 50%,
      transparent 51%
    );
  pointer-events: none;
  z-index: 1;
}

.tape-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 3;
}

.tape-edge-left {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, transparent 100%);
}

.tape-edge-right {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.18) 0%, transparent 100%);
}

.tape-shadow {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 20px;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
}

.tape-shadow-top {
  bottom: -10px;
}

.tape-shadow-bottom {
  bottom: -10px;
}

.tape-text {
  display: block;
  text-align: center;
  font-family: Impact, 'Arial Black', 'Segoe UI', sans-serif;
  font-size: clamp(44px, 8.5vw, 96px);
  font-weight: 400;
  color: #111;
  letter-spacing: clamp(2px, 0.5vw, 6px);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 4;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 -1px 0 rgba(0, 0, 0, 0.1);
  padding: 0 40px;
  white-space: nowrap;
}

.tape-wrap-top .tape {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.tape-wrap-bottom .tape {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tape-read-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #fff;
  border-top: 3px solid #ffeb3b;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.tape-read-bar:hover {
  background: #fafafa;
  padding-left: 40px;
}

.tape-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ffeb3b;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 235, 59, 0.5);
  transition: var(--transition);
}

.tape-read-bar:hover .tape-star {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 235, 59, 0.7);
}

.tape-read-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
}

.tape-read-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e0e0e0 0%, transparent 100%);
  margin-left: 8px;
}

.tape-read-bar:hover .tape-read-text {
  color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .logo-img {
    height: 68px;
    max-width: 260px;
  }

  .hero .container,
  .about-intro,
  .service-detail,
  .process-layout,
  .contact-layout,
  .problem-grid,
  .home-about-grid {
    grid-template-columns: 1fr;
  }

  .home-about-image {
    display: flex;
    justify-content: center;
  }

  .home-about-image img {
    max-width: 360px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about-image {
    max-width: 360px;
    width: 100%;
  }

  .about-image img {
    min-height: 340px;
    max-height: 480px;
  }

  .about-content {
    width: 100%;
    max-width: 720px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .solution-box {
    position: static;
  }

  .services-grid,
  .stats-grid,
  .values-grid,
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid,
  .blog-grid-home {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .hero-role-tags {
    font-size: 12px;
  }

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

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-columns {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 360px;
  }
}

/* ===== SEO Internal Links Hub ===== */
.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.seo-hub-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.seo-hub-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-hub-col li {
  margin-bottom: 10px;
}

.seo-hub-col a {
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.2s ease;
}

.seo-hub-col a:hover {
  color: var(--accent-light);
}

.seo-content-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.seo-content-block p {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 17px;
  margin-bottom: 16px;
}

.seo-content-block a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.page-breadcrumb a:hover {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding: 0 16px;
  }

  .logo-img {
    height: 52px;
    max-width: 200px;
  }

  .footer-brand .logo-img {
    height: 44px;
    max-width: 180px;
  }

  .header .container {
    gap: 12px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .menu-toggle span {
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 13, 23, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px 32px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    pointer-events: none;
  }

  .nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
  }

  .nav-link.active::after {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 48px;
  }

  .hero .container {
    gap: 32px;
  }

  .hero-burhan .hero-role-tags {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-title,
  .hero-title-long {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: -0.5px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .page-hero {
    padding: calc(var(--header-height) + 40px) 0 48px;
  }

  .page-hero-title {
    font-size: clamp(26px, 6vw, 34px);
  }

  .page-hero-desc {
    font-size: 16px;
    padding: 0 4px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .quote-section {
    padding: 48px 0;
  }

  .ceo-quote p {
    font-size: clamp(22px, 6vw, 32px);
    padding: 0 8px;
  }

  .newsletter-section {
    padding: 56px 0;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
    min-width: 0;
  }

  .cta-banner {
    margin: 0 16px 56px;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-banner .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner .cta-buttons .btn {
    width: 100%;
  }

  .cta-inline {
    padding: 32px 20px;
    margin-bottom: 56px;
  }

  .cta-inline .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-inline .cta-buttons .btn {
    width: 100%;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-info h2,
  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 8px;
    margin-bottom: 24px;
    gap: 8px;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }

  .case-card {
    gap: 16px;
  }

  .case-hero-image {
    height: 220px;
  }

  .case-hero-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .blog-post-title {
    font-size: clamp(26px, 6vw, 34px);
  }

  .blog-post-excerpt {
    font-size: 17px;
  }

  .blog-post-content {
    font-size: 16px;
    line-height: 1.75;
  }

  .blog-post-content h2 {
    font-size: 22px;
    margin-top: 36px;
  }

  .blog-post-featured img {
    height: 200px;
  }

  .blog-post-author-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-hashtags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-hashtags a {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-grid {
    gap: 32px;
  }

  .help-card {
    padding: 24px 20px;
  }

  .pillar-card h3 {
    font-size: 20px;
  }

  .home-about-heading {
    font-size: clamp(24px, 6vw, 32px);
  }

  .home-about-text {
    font-size: 15px;
  }

  .faq-item summary {
    font-size: 15px;
    gap: 12px;
  }

  .seo-hub-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .stats-grid,
  .values-grid,
  .results-grid,
  .blog-grid,
  .blog-grid-related,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
    margin-bottom: 32px;
  }

  .blog-author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 28px 20px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .tape-banner-inner {
    height: clamp(180px, 55vw, 260px);
  }

  .tape-wrap-top {
    top: 16%;
    transform: rotate(-5deg);
  }

  .tape-wrap-bottom {
    top: 48%;
    transform: rotate(5deg);
  }

  .tape-text {
    font-size: clamp(24px, 8vw, 40px);
    letter-spacing: 1px;
    padding: 0 12px;
    white-space: normal;
    line-height: 1.1;
  }

  .tape-read-bar {
    padding: 14px 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .tape-read-text {
    font-size: 13px;
  }

  .case-metrics {
    flex-direction: row;
    justify-content: center;
  }

  .service-detail {
    gap: 24px;
  }

  .service-detail-image img {
    max-height: 240px;
    object-fit: cover;
  }

  .about-intro {
    gap: 28px;
  }

  .about-image {
    max-width: 100%;
    padding: 0 8px;
  }

  .about-image img {
    min-height: 300px;
    max-height: 420px;
    object-position: center 10%;
  }

  .process-layout {
    gap: 32px;
  }

  .btn {
    padding: 13px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 64px;
  }

  .logo-img {
    height: 44px;
    max-width: 170px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image img {
    max-width: 240px;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 32px);
  }

  .cta-banner {
    padding: 32px 18px;
  }

}

/* ============================================
   Book Call Modal — merged in from modal.css
   ============================================ */
.book-call-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.book-call-modal.open {
  opacity: 1;
  visibility: visible;
}

.book-call-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.book-call-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #12151F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
  color: #fff;
}

.book-call-modal.open .book-call-dialog {
  transform: translateY(0) scale(1);
}

.book-call-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 0;
  position: sticky;
  top: 0;
  background: #12151F;
  z-index: 1;
}

.book-call-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.book-call-header p {
  font-size: 14px;
  color: #94A3B8;
}

.book-call-close {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #94A3B8;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-call-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.book-call-form {
  padding: 24px 28px 28px;
}

.book-call-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.book-call-form .form-group {
  margin-bottom: 18px;
}

.book-call-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #94A3B8;
}

.book-call-form .form-group label .required {
  color: #ef4444;
}

.book-call-form .form-group input,
.book-call-form .form-group textarea,
.book-call-form .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.book-call-form .form-group input:focus,
.book-call-form .form-group textarea:focus,
.book-call-form .form-group select:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.book-call-form .form-group select option {
  background: #12151F;
  color: #fff;
}

.book-call-form .form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.book-call-error {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 14px;
}

.book-call-form .btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.book-call-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
}

.book-call-form .btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.book-call-form .btn-submit.success {
  background: #22c55e;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.55);
  color: #fff;
}

body.modal-open {
  overflow: hidden;
}

/* ============================================
   Utilities: skip link, flash, honeypot, header state
   ============================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.header.scrolled {
  background: rgba(11, 13, 23, 0.98);
}

.flash-message {
  margin: calc(var(--header-height) + 20px) 0 -8px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
}

.flash-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.flash-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Honeypot — visually gone, still fillable by bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.case-card[hidden] {
  display: none !important;
}

/* ============================================
   Location / market pages
   ============================================ */
.market-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.market-chip:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
  color: #fff;
}

.region-context {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
  padding: 0;
}

.region-context li {
  list-style: none;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.region-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.region-meta strong {
  color: var(--text-primary);
  display: block;
  font-size: 16px;
}

.region-cities {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}

.case-region-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 8px;
}

@media (max-width: 600px) {
  .book-call-form .form-row {
    grid-template-columns: 1fr;
  }

  .book-call-header,
  .book-call-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .book-call-header h2 {
    font-size: 20px;
  }

  .book-call-dialog {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
  }

  .book-call-modal {
    align-items: flex-end;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    font-size: 13px;
  }
}

/* ============================================
   Markets section — one page, four markets
   ============================================ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.market-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-height) + 24px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.market-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.market-card:target {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.market-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.market-flag {
  font-size: 34px;
  line-height: 1;
}

.market-card-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.market-cities {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.market-lede {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.market-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.market-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.market-points li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.market-hours {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.market-hours strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.market-note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
}

.market-note a {
  color: var(--accent);
  font-weight: 600;
}

/* Per-market service angles (services page) */
.market-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.market-service-block {
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.market-service-block h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.market-service-block .market-cities {
  margin-bottom: 20px;
}

.market-service-list {
  margin: 0;
}

.market-service-list dt {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.market-service-list dd {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.market-service-list dd:last-child {
  margin-bottom: 0;
}

.faq-subheading {
  margin: 48px 0 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
}

/* On dark sections the subheading follows the light text scale */
.section:not(.section-white):not(.section-light) .faq-subheading {
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .market-card,
  .market-service-block {
    padding: 22px;
  }

  .market-flag {
    font-size: 28px;
  }
}

/* ============================================================
   REFINEMENT LAYER
   Typography scale, spacing rhythm, and component polish.
   Loaded last so it tunes the base system above without
   rewriting it.
   ============================================================ */

:root {
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.25rem, 1.4rem + 3.6vw, 3.75rem);
  --fs-h1: clamp(2rem, 1.4rem + 2.6vw, 3rem);
  --fs-h2: clamp(1.65rem, 1.25rem + 1.7vw, 2.375rem);
  --fs-h3: clamp(1.125rem, 1.03rem + 0.4vw, 1.3rem);
  --fs-body: clamp(0.975rem, 0.94rem + 0.16vw, 1.0625rem);
  --fs-small: 0.875rem;

  /* Vertical rhythm */
  --space-section: clamp(64px, 7vw, 104px);
  --space-block: clamp(32px, 4vw, 56px);

  --measure: 68ch;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.18), 0 8px 32px rgba(0, 0, 0, 0.22);
  --shadow-card-light: 0 1px 2px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(15, 23, 42, 0.07);
}

body {
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  letter-spacing: -0.021em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* ===== Section rhythm ===== */
.section {
  padding: var(--space-section) 0;
}

.section-header {
  margin-bottom: var(--space-block);
}

.section-title {
  font-size: var(--fs-h2);
  line-height: 1.18;
}

.section-desc {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.7;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== Hero ===== */
.hero {
  min-height: min(100vh, 900px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.hero::after {
  content: '';
  position: absolute;
  left: -12%;
  bottom: -30%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: var(--fs-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.68;
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero-buttons {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.hero-trust li {
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

.hero-trust strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-image img {
  border-radius: var(--radius-xl);
}

/* ===== Credibility strip ===== */
.trust-strip {
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}

.trust-strip-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: 500;
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.trust-strip-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-strip-list a:hover {
  color: var(--accent-light);
}

/* ===== Buttons ===== */
.btn {
  padding: 13px 26px;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.08);
  color: #fff;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
details:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===== Header ===== */
.header {
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-link {
  position: relative;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== Cards ===== */
.pillar-card,
.help-card,
.service-card,
.blog-card,
.market-card,
.market-service-block,
.stat-card {
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.section-white .pillar-card,
.section-white .help-card,
.section-white .service-card,
.section-light .pillar-card,
.section-light .help-card,
.section-light .service-card {
  box-shadow: var(--shadow-card-light);
}

.pillar-card:hover,
.help-card:hover,
.service-card:hover,
.stat-card:hover {
  transform: translateY(-5px);
}

.blog-card,
.blog-card-link {
  height: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body .blog-meta {
  margin-top: auto;
  padding-top: 14px;
}

.case-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ===== Fit / qualification ===== */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.fit-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.fit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.fit-yes {
  border-color: rgba(34, 197, 94, 0.28);
}

.fit-yes .fit-mark {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.fit-no .fit-mark {
  background: rgba(148, 163, 184, 0.14);
  color: var(--text-secondary);
}

.fit-card ul {
  display: grid;
  gap: 13px;
}

.fit-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.fit-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.fit-no li::before {
  background: var(--text-muted);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card-light);
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-rating-off {
  color: #E2E8F0;
}

.testimonial-card blockquote {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.testimonial-card blockquote::before {
  content: '“';
}

.testimonial-card blockquote::after {
  content: '”';
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.testimonial-card figcaption strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-item {
  border-radius: var(--radius);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: rgba(99, 102, 241, 0.35);
}

/* ===== Forms ===== */
.form-group label {
  letter-spacing: 0.005em;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.required {
  color: #ef4444;
}

/* ===== Footer ===== */
.footer-col h4 {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent-light);
}

/* ===== Blog article typography ===== */
.blog-post-content p,
.blog-post-content li {
  font-size: 1.0625rem;
  line-height: 1.78;
  max-width: var(--measure);
}

.blog-post-content h2 {
  font-size: var(--fs-h2);
  margin-top: 44px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.blog-post-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post-title {
  font-size: var(--fs-h1);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

/* ===== Page hero ===== */
.page-hero-title {
  font-size: var(--fs-h1);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.page-hero-desc {
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Motion & responsive ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .pillar-card:hover,
  .help-card:hover,
  .service-card:hover,
  .stat-card:hover,
  .case-card:hover,
  .market-card:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    gap: 14px 24px;
  }

  .hero-image {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
  }

  .hero-trust strong {
    font-size: 1.0625rem;
  }

  .trust-strip .container {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip-list {
    justify-content: center;
    gap: 8px 18px;
  }

  .fit-card,
  .testimonial-card {
    padding: 24px;
  }
}

/* ============================================================
   SURFACE FIXES
   Cards must follow the section they sit on. The base sheet only
   handled .help-card; markets, fit blocks, and the per-market
   service blocks needed the same treatment or they render as dark
   panels on a white section.
   ============================================================ */

:root {
  /* The long hero headline needs a smaller ceiling than a short one */
  --fs-display: clamp(2.1rem, 1.35rem + 2.9vw, 3.15rem);
}

/* ===== Country badge (replaces flag emoji — Windows has no flag glyphs) ===== */
.country-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  padding: 0 6px;
  margin-right: 9px;
  border-radius: 5px;
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(99, 102, 241, 0.32);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
}

.section-white .country-badge,
.section-light .country-badge,
.testimonial-card .country-badge {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.24);
  color: var(--accent);
}

.market-card-head .country-badge {
  min-width: 38px;
  height: 26px;
  font-size: 12px;
  margin-right: 0;
}

/* ===== Market cards on light surfaces ===== */
.section-white .market-card,
.section-light .market-card,
.section-white .market-service-block,
.section-light .market-service-block {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-light);
}

.section-light .market-card,
.section-light .market-service-block {
  background: #fff;
}

.section-white .market-card-head h3,
.section-light .market-card-head h3,
.section-white .market-service-block h3,
.section-light .market-service-block h3,
.section-white .market-service-list dt,
.section-light .market-service-list dt {
  color: var(--text-dark);
}

.section-white .market-lede,
.section-light .market-lede,
.section-white .market-points li,
.section-light .market-points li,
.section-white .market-cities,
.section-light .market-cities,
.section-white .market-service-list dd,
.section-light .market-service-list dd,
.section-white .market-note,
.section-light .market-note {
  color: var(--text-muted);
}

.section-white .market-hours,
.section-light .market-hours {
  border-top-color: var(--border-light);
  color: var(--text-muted);
}

.section-white .market-hours strong,
.section-light .market-hours strong {
  color: var(--text-dark);
}

.section-white .market-card:hover,
.section-light .market-card:hover {
  border-color: var(--accent);
}

/* Four markets read better as a 2x2 block than 3 + 1 orphan */
@media (min-width: 1024px) {
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Fit cards on light surfaces ===== */
.section-white .fit-card,
.section-light .fit-card {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-light);
}

.section-white .fit-card h3,
.section-light .fit-card h3 {
  color: var(--text-dark);
}

.section-white .fit-card li,
.section-light .fit-card li {
  color: var(--text-muted);
}

.section-white .fit-yes,
.section-light .fit-yes {
  border-color: rgba(22, 163, 74, 0.3);
}

.section-white .fit-yes .fit-mark,
.section-light .fit-yes .fit-mark {
  background: rgba(22, 163, 74, 0.12);
  color: #16A34A;
}

.section-white .fit-no .fit-mark,
.section-light .fit-no .fit-mark {
  background: rgba(100, 116, 139, 0.12);
  color: var(--text-muted);
}

/* ===== Pillar cards need a dark variant too ===== */
.section:not(.section-white):not(.section-light) .pillar-card h3 {
  color: var(--text-primary);
}

.section:not(.section-white):not(.section-light) .pillar-card p {
  color: var(--text-secondary);
}

/* ===== Headings that sit on light sections ===== */
.section-white .faq-subheading,
.section-light .faq-subheading {
  color: var(--text-dark);
}

.section-white .market-note a,
.section-light .market-note a {
  color: var(--accent);
}

/* ===== Trust strip badge sizing ===== */
.trust-strip-list .country-badge {
  margin-right: 7px;
}

/* ===== Mobile overflow fix =====
   Two 100%-width buttons inside a flex row overflowed the viewport;
   the row has to stack before the buttons go full width. */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image {
    max-width: 240px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 14px;
  }

  .hero-trust li {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .hero-trust strong {
    display: inline;
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Belt-and-braces: nothing may push the page sideways */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* ============================================================
   PROFESSIONAL PASS
   Two things read as "AI-generated" more than anything else:
   emoji used as iconography, and saturated purple gradients with
   coloured glow shadows. This layer replaces both with a single
   stroke icon set and restrained, neutral depth.
   ============================================================ */

:root {
  /* Indigo stays (it matches the logo) but the purple gradient goes.
     A near-solid vertical shift reads as a considered brand colour
     rather than a template. */
  --accent: #4F46E5;
  --accent-light: #818CF8;
  --gradient: linear-gradient(180deg, #4F46E5 0%, #4338CA 100%);
  --gradient-hover: linear-gradient(180deg, #4338CA 0%, #3730A3 100%);

  /* Neutral depth instead of coloured glow */
  --shadow-lg: 0 10px 30px rgba(2, 6, 23, 0.28);

  /* Slightly tighter corners read more corporate */
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

/* Buttons: solid, no halo */
.btn-primary {
  box-shadow: 0 1px 2px rgba(2, 6, 23, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.28);
}

.floating-cta {
  background: var(--gradient);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.35);
  font-weight: 600;
}

.floating-cta:hover {
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.42);
}

.book-call-form .btn-submit {
  background: var(--gradient);
  box-shadow: 0 1px 2px rgba(2, 6, 23, 0.2);
}

.book-call-form .btn-submit:hover {
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.28);
}

/* Soften the decorative hero washes */
.hero::before {
  background: radial-gradient(circle, rgba(79, 70, 229, 0.10) 0%, transparent 70%);
}

.hero::after {
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
}

.page-hero::before {
  opacity: 0.55;
}

/* ===== Icon system ===== */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Icon tiles: a bordered square, not a floating emoji */
.help-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.22);
  color: var(--accent-light);
  font-size: 0;
}

.section-white .help-icon,
.section-light .help-icon,
.section-white .service-icon,
.section-light .service-icon {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.18);
  color: var(--accent);
}

.contact-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.22);
  color: var(--accent-light);
  font-size: 0;
  flex-shrink: 0;
}

.case-column h2 .icon {
  color: var(--accent-light);
  margin-right: 8px;
}

.section-white .case-column h2 .icon,
.section-light .case-column h2 .icon {
  color: var(--accent);
}

.fit-mark .icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

/* ===== Stat cards without icons ===== */
.stat-card {
  padding-top: 30px;
  padding-bottom: 30px;
}

.stat-number {
  letter-spacing: -0.03em;
}

/* ===== Expertise list (replaces the emoji grid) ===== */
.expertise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.18);
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 500;
}

.section:not(.section-white):not(.section-light) .expertise-list li {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text-secondary);
}

/* ===== Testimonial stars ===== */
.testimonial-rating {
  display: flex;
  gap: 3px;
  letter-spacing: normal;
}

.testimonial-rating .star-on {
  color: #F59E0B;
}

.testimonial-rating .star-off {
  color: #E2E8F0;
}

/* ===== Restrained hovers ===== */
.pillar-card:hover,
.help-card:hover,
.service-card:hover,
.stat-card:hover {
  transform: translateY(-3px);
}

.help-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.28);
}

/* Country badge follows the calmer accent */
.country-badge {
  background: rgba(79, 70, 229, 0.14);
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--accent-light);
}

/* ============================================================
   SEO content blocks
   ============================================================ */
.blog-intro {
  max-width: 72ch;
  margin: 0 auto;
}

.blog-intro p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.blog-intro a {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process-step-detail {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.process-step-meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.process-step-meta strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.case-reading {
  margin-top: 48px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.case-reading h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.case-reading ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.case-reading li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.case-reading li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-reading a {
  flex: 1;
  color: var(--text-secondary);
  font-weight: 500;
}

.case-reading a:hover {
  color: var(--accent-light);
}

.case-reading span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.faq-section .market-note {
  margin-top: 36px;
}
