/* ═══════════════════════════════════════════════════════════════════════
   kwanzadata – Premium AI Services Design System
   Fonts: Space Grotesk (headings) · Manrope (body) · JetBrains Mono (code/badges)
   Palette: Deep Navy → Cyan/Orange accents · Glassmorphism · Micro-interactions
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg-main: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-dark: #0a0e1a;
  --bg-dark-card: rgba(255, 255, 255, 0.04);

  /* Brand */
  --primary: #ff7f0e; /* KwanzaData Orange */
  --primary-glow: rgba(255, 127, 14, 0.15);
  --accent: #06b6d4; /* Cyan for AI */
  --accent-glow: rgba(6, 182, 212, 0.12);
  --purple: #7c3aed;

  /* Text */
  --text-deep: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --text-on-dark: #e2e8f0;

  /* Borders & Glass */
  --border: #e2e8f0;
  --border-accent: rgba(255, 127, 14, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-blur: 14px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --speed: 0.3s;
}

/* ─── Dark Theme Tokens ────────────────────────────────────────────── */
[data-theme="dark"] {
  /* Surfaces */
  --bg-main: #0a0e1a;
  --bg-alt: #111827;
  --bg-dark: #060912;
  --bg-dark-card: rgba(255, 255, 255, 0.04);

  /* Text */
  --text-deep: #f1f5f9;
  --text-body: #94a3b8;
  --text-muted: #64748b;
  --text-on-dark: #e2e8f0;

  /* Borders & Glass */
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 127, 14, 0.3);
  --glass-bg: rgba(10, 14, 26, 0.8);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.15);

  color-scheme: dark;
}

/* Dark theme – component overrides */
[data-theme="dark"] header.scrolled {
  background: rgba(10, 14, 26, 0.95);
}
[data-theme="dark"] .service-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .industry-detail-card,
[data-theme="dark"] .featured-case-study,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .post-card,
[data-theme="dark"] .widget {
  background: #111827;
}
[data-theme="dark"] .faq-answer {
  background: #0d1117;
}
[data-theme="dark"] footer {
  background: #060912;
  border-top-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .hero {
  background: var(--bg-main);
}
[data-theme="dark"] .btn-primary {
  background: #e2e8f0;
  color: #0a0e1a;
}
[data-theme="dark"] .btn-primary:hover {
  background: #f1f5f9;
}
[data-theme="dark"] .btn-secondary {
  background: #111827;
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .btn-secondary:hover {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.2);
}
[data-theme="dark"] nav ul {
  background: #0a0e1a;
}
[data-theme="dark"] .quote-block {
  background: #111827;
}
[data-theme="dark"] .pricing-amount {
  background: rgba(255, 255, 255, 0.04);
}
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .newsletter input {
  background: #1e293b;
  color: #e2e8f0;
}
[data-theme="dark"] .industry-card {
  background: #111827;
}
[data-theme="dark"] .share-btn,
[data-theme="dark"] .post-tags span {
  background: #1e293b;
  color: #e2e8f0;
}

/* ─── Theme Toggle ─────────────────────────────────────────────────── */
.theme-toggle {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
  color: var(--text-muted);
}
.theme-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.theme-toggle:hover svg {
  transform: rotate(20deg);
}
.theme-toggle .icon-moon {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

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

body {
  background: var(--bg-main);
  color: var(--text-body);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Typography ───────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--text-deep);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--text-body);
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--speed) var(--ease);
}
ul {
  list-style: none;
}

/* ─── Layout ───────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 120px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 2.6rem;
  letter-spacing: -0.04em;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Scroll-reveal utility ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header / Nav ─────────────────────────────────────────────────── */
/* Innos-style: solid dark bar, uppercase nav, CTA right */
header.header-innos {
  background: var(--bg-dark);
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
header.header-innos.scrolled {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
header.header-innos .logo-text {
  color: var(--text-on-dark);
}
header.header-innos .logo-text span {
  color: var(--primary);
}
header.header-innos nav ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
header.header-innos nav ul li a:hover {
  color: var(--primary);
}
header.header-innos nav ul li a::after {
  background: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-header-cta {
  padding: 10px 20px;
  font-size: 0.82rem;
  white-space: nowrap;
}
header.header-innos .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}
header.header-innos .theme-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.mobile-menu {
  color: var(--text-on-dark);
}
@media (max-width: 768px) {
  header.header-innos nav ul {
    background: var(--bg-dark);
  }
  header.header-innos nav ul li a {
    color: var(--text-on-dark);
  }
}

header {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all var(--speed) var(--ease);
}
header.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: var(--text-deep);
}
.logo-text span {
  color: var(--primary);
}

.logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 12px;
}

nav ul {
  display: flex;
  gap: 32px;
}
nav ul li a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.93rem;
  font-family: "Manrope", sans-serif;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}
nav ul li a:hover {
  color: var(--primary);
}
nav ul li a:hover::after {
  width: 100%;
}

.nav-more {
  position: relative;
}
.more-nav {
  position: relative;
}
.more-nav summary {
  list-style: none;
  cursor: pointer;
}
.more-nav summary::-webkit-details-marker {
  display: none;
}
header.header-innos .more-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}
header.header-innos .more-nav summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
}
.more-nav[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}
header.header-innos .more-nav summary:hover {
  color: var(--primary);
}

.more-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(16, 23, 38, 0.98) 0%,
    rgba(10, 15, 27, 0.98) 100%
  );
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 1005;
}
.more-menu li {
  border: none;
  padding: 0;
}
header.header-innos .more-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.84);
}
header.header-innos .more-menu li a::after {
  display: none;
}
header.header-innos .more-menu li a:hover {
  background: rgba(237, 138, 33, 0.13);
  color: #fff;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-deep);
}

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn-primary {
  background: var(--text-deep);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #1e293b;
}
.btn-secondary {
  background: #fff;
  color: var(--text-deep);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--bg-alt);
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, var(--primary), #e06b00);
  color: #fff;
  border: none;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 14, 0.35);
}

/* ─── Tag / Badge ──────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
/* Innos-style section label: uppercase, more letter-spacing */
.tag--label {
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}
.tag--on-dark {
  background: rgba(255, 127, 14, 0.2);
  color: var(--primary);
}
.tag--orange {
  background: var(--primary-glow);
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
/* Innos-style hero: dark band, light text */
.hero.hero-innos {
  background: var(--bg-dark);
  padding: 180px 0 100px;
}
.hero.hero-innos h1 {
  color: #fff;
}
.hero.hero-innos h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero.hero-innos .hero-subtitle {
  color: var(--primary);
  background: rgba(255, 127, 14, 0.15);
}
.hero.hero-innos .hero-description {
  color: var(--text-on-dark);
}
.hero.hero-innos::before,
.hero.hero-innos::after {
  opacity: 0.4;
}

.hero {
  padding: 200px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-main);
}

/* Ambient glow orbs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}
.hero::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
  top: -120px;
  right: -80px;
}
.hero::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 127, 14, 0.15),
    transparent 70%
  );
  bottom: -60px;
  left: -100px;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  color: var(--text-deep);
  position: relative;
  z-index: 1;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent-glow);
  position: relative;
  z-index: 1;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ─── Trust Bar ────────────────────────────────────────────────────── */
.stats-strip {
  padding: 32px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.stats-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stats-strip-value {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-deep);
}
.stats-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
[data-theme="dark"] .stats-strip {
  background: var(--bg-main);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .stats-strip-value {
  color: var(--text-deep);
}

.stats-strip--light {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.stats-strip--light .stats-strip-value {
  color: var(--text-deep);
}
.stats-strip--light .stats-strip-label {
  color: var(--text-muted);
}

.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   AI SERVICES GRID (NEW)
   ═══════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

/* Icon header strip */
.service-icon-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--bg-alt) 0%,
    rgba(6, 182, 212, 0.06) 100%
  );
  border-bottom: 1px solid var(--border);
  position: relative;
}

.service-content {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.service-content p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}
.service-bullets {
  margin-top: 14px;
  padding-left: 20px;
  list-style: disc;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
}
.service-bullets li {
  margin-bottom: 4px;
}
.service-content p + .service-bullets {
  margin-top: 12px;
}
.service-content:has(.service-bullets) p {
  margin-bottom: 0;
}

/* Image-based cards (legacy support) */
.service-image-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-image-container img {
  transform: scale(1.05);
}

/* ─── "Why Private AI?" Feature Section ────────────────────────────── */
.features-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.features-section .section-header h2 {
  color: #fff;
}
.features-section .section-header p {
  color: var(--text-on-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--speed) var(--ease);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.15),
    rgba(255, 127, 14, 0.1)
  );
}
.feature-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ─── Mid-page CTA (inline, like innos "Ready to transform?") ────────── */
.cta-inline {
  padding: 72px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inline--dark {
  background: var(--bg-dark);
  border-color: transparent;
}
.cta-inline--dark .cta-inline-inner h2 {
  color: #fff;
}
.cta-inline--dark .cta-inline-inner p {
  color: var(--text-on-dark);
}
.cta-inline-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inline-inner h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
}
.cta-inline-inner p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
[data-theme="dark"] .cta-inline {
  background: var(--bg-alt);
  border-color: var(--border);
}

/* ─── Two-column section (innos: What We Build | Who We Serve) ─────── */
.section-light {
  background: var(--bg-main);
}
[data-theme="dark"] .section-light {
  background: var(--bg-main);
}

.two-col-section {
  padding: 100px 0;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.two-col-block .tag--label {
  margin-bottom: 12px;
}
.two-col-block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.two-col-block p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-body);
}
.key-capabilities {
  margin-top: 24px;
}
.key-capabilities-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}
.capability-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.capability-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}
.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.two-col-block .capability-list {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ─── Stats ────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  padding: 24px;
}
.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-deep);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
}
.stat-label {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
}

/* ─── Industries ───────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-sm);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.industry-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.industry-value-prop {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ─── Testimonials ─────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-alt);
  padding: 120px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--speed) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-deep);
}
.testimonial-title {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq-section {
  padding: 120px 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.faq-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 22px 24px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-deep);
  transition: all var(--speed) var(--ease);
  user-select: none;
}
.faq-question:hover {
  background: var(--bg-alt);
  color: var(--primary);
}
.faq-toggle {
  font-size: 1.4rem;
  transition: transform var(--speed) var(--ease);
  color: var(--primary);
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: var(--bg-alt);
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-content {
  padding: 20px 24px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ─── CTA Section ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  margin: 0 auto 80px;
  padding: 80px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  width: 90%;
}
.cta-section--full {
  width: 100%;
  max-width: none;
  border-radius: 0;
  margin-bottom: 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent),
    var(--purple)
  );
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
  bottom: -100px;
  right: -60px;
  pointer-events: none;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 2.2rem;
}
.cta-section p {
  color: var(--text-on-dark);
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ─── Footer ───────────────────────────────────────────────────────── */
/* Innos-style: dark band, structured columns, accent headings */
footer.footer-innos {
  background: var(--bg-dark);
  border-top: none;
  padding: 80px 0 40px;
}
footer.footer-innos .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
footer.footer-innos .footer-column h3 {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
footer.footer-innos .footer-column p,
footer.footer-innos .footer-column ul li {
  color: var(--text-on-dark);
  opacity: 0.9;
}
footer.footer-innos .footer-column ul li a {
  color: var(--text-on-dark);
}
footer.footer-innos .footer-column ul li a:hover {
  color: var(--primary);
}
footer.footer-innos .copyright {
  border-top-color: rgba(255, 255, 255, 0.08);
}
footer.footer-innos .copyright p {
  color: var(--text-on-dark);
  opacity: 0.7;
  font-size: 0.85rem;
}
footer.footer-innos .social-links a {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}
footer.footer-innos .social-links a:hover {
  background: var(--primary);
  color: #fff;
}
footer.footer-innos .newsletter input[type="email"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}
footer.footer-innos .newsletter input[type="email"]::placeholder {
  color: var(--text-on-dark);
  opacity: 0.6;
}
@media (max-width: 768px) {
  footer.footer-innos .footer-content {
    grid-template-columns: 1fr;
  }
  footer.footer-innos .footer-column {
    text-align: left;
  }
}

footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: #fff;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-column h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-family: "JetBrains Mono", monospace;
}
.footer-column ul li {
  margin-bottom: 12px;
}
.footer-column ul li a:hover {
  color: var(--primary);
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin-right: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Newsletter */
.newsletter input[type="email"] {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  width: 100%;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--speed) var(--ease);
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

/* ─── Pricing (keep existing compat) ───────────────────────────────── */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}
.pricing-header {
  margin-bottom: 30px;
  text-align: center;
}
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-amount {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}
.price-from {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
}
.pricing-content {
  flex: 1;
}
.pricing-content h4 {
  font-size: 1rem;
}
.pricing-content ul {
  list-style: none;
}
.pricing-content li {
  padding: 8px 0;
  color: var(--text-deep);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Blog (compat) ───────────────────────────────────────────────── */
.blog-grid,
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.blog-post {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--speed) var(--ease);
}
.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.post-image {
  height: 200px;
  background: linear-gradient(135deg, #1f4e79, #2c5a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}
.post-content {
  padding: 24px;
}
.post-meta span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.blog-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-body {
  padding: 28px;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.post-excerpt {
  color: var(--text-muted);
  margin-bottom: 18px;
}
.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.post-tags span {
  background: var(--bg-alt);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}
.post-share {
  display: flex;
  gap: 8px;
}
.share-btn {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.share-btn:hover {
  border-color: var(--border);
}
.sidebar {
  position: relative;
}
.sidebar .widget {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.recent-posts li,
.category-list li {
  margin-bottom: 12px;
}

/* ─── Case Studies (compat) ────────────────────────────────────────── */
.featured-case-study {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}
.case-study-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.case-study-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-glow);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-right: 30px;
  flex-shrink: 0;
  font-style: normal;
}
.case-study-title h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}
.case-study-meta span {
  display: inline-block;
  background: var(--bg-alt);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 8px;
  color: var(--text-deep);
  font-family: "JetBrains Mono", monospace;
}
.case-study-meta .services-tag {
  color: var(--primary);
  background: var(--primary-glow);
}

/* ─── Contact form (compat) ────────────────────────────────────────── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--speed) var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ─── Page Load Animation ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  animation: fadeInUp 0.6s var(--ease) both;
}

/* ─── Staggered Reveal (grid children) ─────────────────────────────── */
.services-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.services-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.services-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.services-grid .reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.services-grid .reveal:nth-child(6) {
  transition-delay: 0.4s;
}
.feature-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.feature-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.feature-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* ─── Team / People Cards ──────────────────────────────────────────── */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 4px 24px rgba(255, 127, 14, 0.2);
}
.team-card h3 {
  margin-bottom: 4px;
}
.team-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}
.team-card p:last-child {
  margin-bottom: 0;
}

/* ─── About quote block ────────────────────────────────────────────── */
.quote-block {
  position: relative;
  padding: 40px 48px;
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 800px;
  margin: 0 auto 60px;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 4rem;
  font-family: "Space Grotesk", serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}
.quote-block p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 0;
}

/* ─── Values grid ──────────────────────────────────────────────────── */
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--accent);
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ─── Enhanced Form Focus ──────────────────────────────────────────── */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

/* ─── Industry detail card ─────────────────────────────────────────── */
.industry-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-sm);
}
.industry-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}
.industry-detail-card .industry-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.industry-detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.industry-detail-card ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-body);
  line-height: 1.8;
}
.industry-detail-card li {
  margin-bottom: 6px;
}
.industry-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.industry-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
}
.industry-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }
  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }

  header {
    padding: 12px 0;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  nav ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav ul.show {
    display: flex;
  }
  .more-nav {
    width: 100%;
  }
  .more-nav summary {
    width: 100%;
    justify-content: space-between;
  }
  .more-menu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    padding: 8px;
    border-radius: 10px;
    box-shadow: none;
  }
  .more-menu li {
    border: none;
  }
  .more-menu li a {
    padding: 10px 8px;
  }
  .mobile-menu {
    display: block;
    z-index: 1001;
  }
  .btn-header-cta {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }

  section {
    padding: 72px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar .container {
    gap: 20px;
  }
  .trust-item {
    font-size: 0.8rem;
  }

  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stats-strip-value {
    font-size: 1.35rem;
  }
  .stats-strip-label {
    font-size: 0.7rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-column h3 {
    margin-bottom: 16px;
  }

  .case-study-header {
    flex-direction: column;
    text-align: center;
  }
  .case-study-icon {
    margin: 0 0 20px 0;
  }
  .featured-case-study {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }
  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }
  .faq-answer-content {
    padding: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .cta-section {
    padding: 60px 24px;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .container {
    padding: 0 16px;
  }
  section {
    padding: 52px 0;
  }
  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .section-header p {
    font-size: 0.88rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    padding: 16px;
  }
  .testimonial-stars {
    font-size: 1rem;
  }
  .testimonial-quote {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .faq-item {
    margin-bottom: 12px;
  }
  .faq-question {
    padding: 12px;
    font-size: 0.9rem;
  }
  .faq-answer-content {
    padding: 12px;
    font-size: 0.9rem;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }
  .service-content p {
    font-size: 0.88rem;
  }

  .footer-column {
    text-align: center;
  }
  .footer-column h3 {
    font-size: 0.82rem;
  }
  .social-links {
    justify-content: center;
  }
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry-card {
    padding: 24px 16px;
  }
}
