/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DHRUVANK GMBH — GLOBAL STYLESHEET
   Pure CSS, no frameworks
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS CUSTOM PROPERTIES (BRAND COLORS)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  /* Brand color aliases */
  --brand-navy: #2D2B6B;
  --brand-purple: #6B5CE7;
  --purple-light: #EEEDFE;
  --purple-mid: #AFA9EC;
  --purple-dark: #534AB7;
  --purple-deep: #26215C;
  --hero-gradient: linear-gradient(135deg, #2D2B6B 0%, #1a1850 60%, #0f0e35 100%);

  /* Primary Brand Colors */
  --color-navy: #2D2B6B;
  --color-accent: #6B5CE7;
  --color-light-purple: #EEEDFE;
  --color-mid-purple: #AFA9EC;
  --color-dark-purple: #534AB7;
  --color-deepest-purple: #26215C;
  --color-blush: #F5E6E0;
  --color-blush-border: #F0997B;
  --color-white: #FFFFFF;
  --color-body-text: #1a1a2e;
  --color-muted-text: #6B6A8A;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #2D2B6B 0%, #1a1850 60%, #0f0e35 100%);
  --gradient-card-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-card-teal: linear-gradient(135deg, #0f9b8e 0%, #0c7c72 100%);
  --gradient-card-amber: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-card-green: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-card-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-card-ocean: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-pill: 20px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(45, 43, 107, 0.08);
  --shadow-hover: 0 12px 32px rgba(107, 92, 231, 0.18), 0 2px 8px rgba(45, 43, 107, 0.08);
  --shadow-banner: 0 -2px 12px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --site-max: 1200px;
  --site-pad: 24px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12-COLUMN GRID SYSTEM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

.col-offset-1  { grid-column-start: 2; }
.col-offset-2  { grid-column-start: 3; }
.col-offset-3  { grid-column-start: 4; }

@media (max-width: 1023px) {
  .grid { gap: 16px; }
  .col-3, .col-4 { grid-column: span 6; }
  .col-5, .col-6 { grid-column: span 6; }
  .col-7, .col-8 { grid-column: span 12; }
  .col-9, .col-10, .col-11, .col-12 { grid-column: span 12; }
  .col-offset-1, .col-offset-2, .col-offset-3 { grid-column-start: auto; }
  .tablet-col-12 { grid-column: span 12; }
  .tablet-col-6  { grid-column: span 6; }
}

@media (max-width: 767px) {
  .container { padding: 0 16px; }
  .grid { gap: 12px; }
  [class*="col-"] { grid-column: span 12; }
  .col-offset-1, .col-offset-2, .col-offset-3 { grid-column-start: auto; }
  .mobile-col-6 { grid-column: span 6; }
}


.section-lg { padding: 80px 0; }
.section-md { padding: 56px 0; }
.section-sm { padding: 40px 0; }

@media (max-width: 767px) {
  .section-lg { padding: 48px 0; }
  .section-md { padding: 36px 0; }
  .section-sm { padding: 28px 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: var(--color-navy);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nav-container,
.section-container,
.footer-grid,
.footer-bottom,
.footer-social,
.cta-container {
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-pad);
  padding-right: var(--site-pad);
  box-sizing: border-box;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-square {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
}

.nav-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 6px;
  padding: 3px 5px;
  height: 38px;
}

.nav-logo-img img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-text {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  border-bottom-color: var(--color-accent);
}

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

.lang-switcher {
  background: rgba(107, 92, 231, 0.3);
  border: 1px solid rgba(107, 92, 231, 0.5);
  color: var(--color-light-purple);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.lang-switcher:hover {
  background: rgba(107, 92, 231, 0.5);
  border-color: rgba(107, 92, 231, 0.7);
}

.lang-flag {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}

.lang-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-cta {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--color-dark-purple);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--color-navy);
  padding: 0;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-mobile-menu.active {
  max-height: 600px;
}

.nav-mobile-menu a {
  display: block;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile-actions {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
  background: var(--color-navy);
  padding: 48px 60px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.footer-column h4 {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 2;
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-divider {
  max-width: 1400px;
  margin: 0 auto 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-navy);
  padding: 16px 32px;
  box-shadow: var(--shadow-banner);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-text {
  color: var(--color-white);
  font-size: 13px;
  flex: 1;
  min-width: 300px;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
}

.cookie-btn-accept:hover {
  background: var(--color-dark-purple);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 16px;
  border-radius: 16px;
  font-size: 13px;
}

.cookie-btn-decline:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  position: relative;
  width: 100%;
  background: var(--gradient-hero);
  padding: 80px 60px;
  overflow: hidden;
}

.hero-glow-top {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(107, 92, 231, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-bottom {
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 92, 231, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-pad);
  padding-right: var(--site-pad);
  box-sizing: border-box;
  width: 100%;
}

.hero-label {
  display: inline-block;
  background: rgba(107, 92, 231, 0.25);
  border: 1px solid rgba(107, 92, 231, 0.4);
  color: #CECBF6;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 580px;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--color-dark-purple);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 11px 24px;
  font-size: 14px;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.hero-stats {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-top: 3px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section {
  padding: 64px 60px;
}

.section-light {
  background: var(--color-white);
}

.section-purple {
  background: var(--color-light-purple);
}

.section-grey {
  background: #F8F8FC;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.section-tag {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  color: var(--color-navy);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--color-muted-text);
  font-size: 14px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CREDIBILITY SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.credibility {
  background: var(--color-light-purple);
  padding: 36px 60px;
  text-align: center;
}

.credibility-text {
  font-style: italic;
  font-size: 15px;
  color: var(--color-deepest-purple);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-pill {
  background: var(--color-white);
  border: 1px solid var(--color-mid-purple);
  color: var(--color-navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CARD GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--color-white);
  border: 0.5px solid rgba(175, 169, 236, 0.4);
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-mid-purple));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 92, 231, 0.25);
  box-shadow: 0 12px 32px rgba(107, 92, 231, 0.15), 0 2px 8px rgba(45, 43, 107, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-hero);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(107, 92, 231, 0.3);
}

.card-icon-dot {
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-radius: 50%;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-description {
  font-size: 13px;
  color: var(--color-muted-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.card-link {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 8px;
  text-decoration: none;
}

.card-nth-1 { --card-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.card-nth-2 { --card-gradient: linear-gradient(135deg, #0f9b8e 0%, #4facfe 100%); }
.card-nth-3 { --card-gradient: linear-gradient(135deg, #f093fb 0%, #a18cd1 100%); }
.card-nth-4 { --card-gradient: linear-gradient(135deg, #fa709a 0%, #f5576c 100%); }
.card-nth-5 { --card-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.card-nth-6 { --card-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.card-nth-1 .card-icon,
.card-nth-2 .card-icon,
.card-nth-3 .card-icon,
.card-nth-4 .card-icon,
.card-nth-5 .card-icon,
.card-nth-6 .card-icon {
  background: var(--card-gradient, var(--gradient-hero));
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DOMAINS STRIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.domains-strip {
  background: var(--color-navy);
  padding: 32px 60px;
}

.domains-container {
  max-width: 1200px;
  margin: 0 auto;
}

.domains-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}

.domains-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-pill {
  background: rgba(107, 92, 231, 0.15);
  border: 1px solid rgba(107, 92, 231, 0.35);
  color: #CECBF6;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.domain-pill.active,
.domain-pill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.story-filters .domain-pill {
  background: var(--color-white);
  border: 1.5px solid rgba(175, 169, 236, 0.6);
  color: var(--color-muted-text);
}

.story-filters .domain-pill.active,
.story-filters .domain-pill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AI PRODUCTS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.ai-section {
  position: relative;
  background: var(--gradient-hero);
  padding: 56px 60px;
  overflow: hidden;
}

.ai-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-badge {
  display: inline-block;
  background: rgba(107, 92, 231, 0.25);
  border: 1px solid rgba(107, 92, 231, 0.4);
  color: #CECBF6;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.ai-section h2 {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 500;
  max-width: 440px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ai-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 24px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 16px;
  border-radius: 16px;
  font-size: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUCCESS STORIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.story-card {
  border: 0.5px solid rgba(175, 169, 236, 0.4);
  border-radius: 14px;
  padding: 24px 20px;
  background: var(--color-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fa709a, #fee140);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.story-card:hover::before {
  opacity: 1;
}

.story-tag {
  display: inline-block;
  background: var(--color-light-purple);
  color: var(--color-dark-purple);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
}

.story-outcome {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.story-description {
  font-size: 13px;
  color: var(--color-muted-text);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BAND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-band {
  background: var(--color-accent);
  padding: 48px 60px;
  width: 100%;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text {
  flex: 1;
  min-width: 0;
}

.cta-text h3,
.cta-band h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.cta-text p,
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-bottom: 0;
  max-width: 560px;
}

.cta-band > .btn-white {
  display: inline-block;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--color-light-purple);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.form-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--color-mid-purple);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-navy);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(107, 92, 231, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: var(--color-muted-text);
  margin-top: 12px;
  line-height: 1.6;
}

.form-note a {
  color: var(--color-accent);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--color-dark-purple);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LEGAL PAGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px;
}

.legal-container h1 {
  font-size: 28px;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 6px;
}

.legal-container h2 {
  font-size: 18px;
  color: var(--color-navy);
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-container p,
.legal-container li {
  font-size: 14px;
  line-height: 1.8;
  color: #3a3a5c;
  margin-bottom: 12px;
}

.legal-container ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-container a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-container hr {
  border: none;
  border-top: 1px solid var(--color-mid-purple);
  margin: 48px 0;
}

.legal-subtitle {
  font-size: 13px;
  color: var(--color-muted-text);
  margin-bottom: 32px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--color-mid-purple);
  padding: 12px;
  text-align: left;
}

.legal-table th {
  background: var(--color-light-purple);
  color: var(--color-navy);
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CAREERS PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.value-card {
  background: var(--color-white);
  border: 0.5px solid rgba(175, 169, 236, 0.4);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-mid-purple));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.value-card:hover::after {
  opacity: 1;
}

.value-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

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

.role-card {
  border-left: 3px solid var(--color-accent);
  padding: 20px 24px;
  background: var(--color-white);
  margin-bottom: 12px;
  border-radius: 0 8px 8px 0;
}

.role-tag {
  display: inline-block;
  background: var(--color-light-purple);
  color: var(--color-accent);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.role-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 6px;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXPERTISE PAGE — OUTCOME BOX
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.outcome-box {
  background: var(--color-light-purple);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 24px;
}

.outcome-box strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.outcome-box span {
  font-size: 14px;
  color: var(--color-navy);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DOMAINS PAGE — PULL QUOTE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pull-quote {
  background: var(--color-light-purple);
  border-radius: 12px;
  padding: 20px 24px 20px 40px;
  margin-top: 24px;
  font-style: italic;
  font-size: 14px;
  color: var(--color-deepest-purple);
  line-height: 1.7;
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  font-size: 36px;
  color: var(--color-accent);
  position: absolute;
  top: 8px;
  left: 12px;
  line-height: 1;
  font-style: normal;
}

.pull-quote + a.btn-primary,
.pull-quote + .btn-primary {
  display: inline-block;
  margin-top: 20px;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  background: var(--color-accent);
  color: var(--color-white);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(107, 92, 231, 0.3);
}

.pull-quote + a.btn-primary:hover,
.pull-quote + .btn-primary:hover {
  background: var(--color-dark-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 92, 231, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUCCESS STORIES PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.story-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.case-study {
  background: var(--color-white);
  border: 0.5px solid rgba(175, 169, 236, 0.4);
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #43e97b, #38f9d7);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.case-study:hover::before {
  opacity: 1;
}

.case-study h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.case-detail {
  margin-bottom: 16px;
}

.case-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

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

.case-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(175, 169, 236, 0.3);
  margin-top: 8px;
}

.case-metrics .stat-item {
  text-align: left;
}

.case-metrics .stat-number {
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 600;
}

.case-metrics .stat-label {
  color: var(--color-muted-text);
  font-size: 12px;
}

.case-study.hidden {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AI PRODUCTS PAGE — STEP NUMBER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE — STATS ROW
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stats-row .stat-item {
  text-align: center;
}

.stats-row .stat-number {
  color: var(--color-navy);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.stats-row .stat-label {
  color: var(--color-muted-text);
  font-size: 13px;
  margin-top: 6px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE — FOUNDER BIO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.founder-bio {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.founder-photo {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
}

.founder-text p {
  font-size: 14px;
  color: var(--color-muted-text);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 640px;
}

.founder-text p:last-child {
  margin-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE — DUAL CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

.cta-card {
  background: var(--color-white);
  border: 0.5px solid rgba(175, 169, 236, 0.4);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #4facfe);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.cta-card:hover::before {
  opacity: 1;
}

.cta-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 8px;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — SOCIAL MEDIA ICONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-social {
  max-width: 1400px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 4px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITY CLASSES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

.mt-28 {
  margin-top: 28px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE DESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── TABLET 768px–1023px ── */
@media (max-width: 1023px) {

  /* Nav */
  .nav-links { display: none; }

  /* Expertise / Industries */
  .expertise-wrap {
    grid-template-columns: 240px 1fr;
  }
  .ep-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }
  .expertise-panel {
    padding: 32px 28px;
  }

  /* Home cards */
  .cards-grid,
  .cards-grid-3 {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  /* About page vision cards */
  .card-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  /* AI section */
  .ai-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Hero stats */
  .hero-stats {
    gap: 20px;
  }
  .stat-item {
    min-width: 100px;
  }

  /* ── Tablet nav: show hamburger ── */
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
  .nav-cta { display: none; }

  /* ── Outer padding fixes (tablet) ── */
  .hero { padding: 64px 0; }
  .footer { padding: 40px 0 20px; }
  .cta-band { padding: 40px 0; }
  .credibility { padding: 28px 0; }

  /* ── Tablet card content ── */
  .home-card-list li {
    font-size: 13px;
  }
}

/* ── MOBILE < 768px ── */
@media (max-width: 767px) {

  /* ── Spacing scale down ── */
  .section { padding: 40px 0; }
  .section-lg { padding: 48px 0; }

  /* ── Outer container padding fixes (mobile) ── */
  .hero { padding: 44px 0; }
  .footer { padding: 28px 0 16px; }
  .cta-band { padding: 24px 0; }
  .credibility { padding: 24px 0; }

  /* ── Nav ── */
  .nav-links { display: none; }
  .nav-container {
    padding: 0 16px;
  }

  /* ── Hero ── */
  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-btns a {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .stat-item {
    min-width: calc(50% - 8px);
    flex: 1 1 calc(50% - 8px);
  }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 11px; }

  /* ── Section containers ── */
  .section-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 22px;
  }

  /* ── Home cards ── */
  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── About page vision cards ── */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card {
    padding: 18px 16px;
  }
  /* Reduce card outer padding on mobile */
  .home-card {
    padding: 18px 16px;
  }
  /* Slightly larger title for readability */
  .home-card-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  /* Single-column bullet list — clear, full-width, readable */
  .home-card-list {
    display: block;
    margin-bottom: 14px;
  }
  /* Each bullet item gets a subtle separator so items are visually distinct */
  .home-card-list li {
    font-size: 13px;
    padding: 6px 0 6px 16px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(175,169,236,0.15);
  }
  .home-card-list li:last-child {
    border-bottom: none;
  }
  .home-card-dark .home-card-list li {
    border-bottom-color: rgba(255,255,255,0.07);
  }
  .home-card-link {
    font-size: 13px;
    margin-top: 12px;
  }

  /* ── Credibility ── */
  .credibility-quote {
    font-size: 13px;
    padding: 0 4px;
  }
  .brand-pills {
    gap: 6px;
  }

  /* ── Story cards ── */
  .story-card {
    padding: 18px 16px;
  }
  .story-tag {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .story-num { font-size: 22px; }
  .story-label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .story-desc {
    font-size: 13px;
  }

  /* ── AI section ── */
  .ai-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ai-right { width: 100%; }
  .ai-pills {
    gap: 6px;
  }
  .ai-feat-pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* ── Expertise / Industries ── */
  .expertise-wrap {
    grid-template-columns: 1fr;
    padding: 0;
  }
  /* Sidebar → horizontal pill strip */
  .expertise-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid
      rgba(255,255,255,0.08);
    /* Reset desktop-only overrides */
    margin-left: 0;
    padding-left: 16px;
    width: 100%;
    background: linear-gradient(135deg,
      #2D2B6B 0%, #1a1850 60%,
      #0f0e35 100%);
    scrollbar-width: none;
    -ms-overflow-style: none;
    top: 0;
  }
  .expertise-sidebar::-webkit-scrollbar {
    display: none;
  }
  .expertise-all-link,
  .expertise-sidebar-footer {
    display: none;
  }
  #expertise-tab-list,
  #industries-tab-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .expertise-tab-btn {
    display: inline-flex;
    width: auto;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid
      rgba(255,255,255,0.2);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
  }
  .expertise-tab-active {
    background: #6B5CE7 !important;
    border-color: #6B5CE7 !important;
  }
  .etb-chevron { display: none; }

  /* Panel */
  .expertise-panel {
    padding: 24px 16px;
    background: #f8f8fc;
  }
  .ep-title { font-size: 24px; }
  .ep-desc { font-size: 13px; }
  .ep-grid {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }
  .ep-group-label {
    font-size: 13px;
    margin: 24px 0 12px;
  }

  /* ── CTA band ── */
  .cta-container {
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cta-container .btn-white,
  .cta-container .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* ── Footer ── */
  /* 2-column grid: company info spans full width, link cols side-by-side */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 24px;
  }
  /* Company info block: full width at the top */
  .footer-column:first-child {
    grid-column: span 2;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  /* Link column headings */
  .footer-column h4 {
    font-size: 10px;
    margin-bottom: 10px;
  }
  /* Footer links: slightly tighter line-height */
  .footer-column a {
    line-height: 1.85;
  }
  /* Legal column: full width, links displayed horizontally */
  .footer-column:last-child {
    grid-column: span 2;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-column:last-child a {
    display: inline;
    margin-right: 20px;
    line-height: 2.2;
  }
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* Override inline padding from component JS */
  .footer-social {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .footer-address {
    margin-top: 16px;
    padding-top: 14px;
  }

  /* ── Back to top ── */
  #back-to-top {
    bottom: 16px;
    right: 16px;
  }

  /* ── Legacy class support ── */
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
  .nav-cta { display: none; }
  .cookie-banner { padding: 16px 20px; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-text { min-width: auto; }
  .legal-container { padding: 48px 24px; }
  .legal-container h1 { font-size: 24px; }
  .form-container { padding: 36px 24px; }
  .founder-bio { flex-direction: column; }
  .dual-cta { grid-template-columns: 1fr; }
  .stats-row { gap: 32px; }
  .case-metrics { gap: 16px; }
  .story-filters { gap: 8px; }
  .pull-quote { padding: 16px 20px 16px 24px; }
}

/* ── VERY SMALL < 380px ── */
@media (max-width: 379px) {
  .hero h1 { font-size: 24px; }
  .stat-item {
    min-width: 100%;
    flex: 1 1 100%;
  }
  .hero-label {
    font-size: 10px;
    padding: 4px 10px;
  }
  .ep-grid {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANGUAGE FLASH PREVENTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.lang-de { display: none; }
.lang-is-de .lang-en { display: none; }
.lang-is-de .lang-de { display: inline; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCESSIBILITY — SKIP LINK
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
  text-decoration: none;
  font-size: 13px;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORM VALIDATION STATES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.field-invalid {
  border-color: #E24B4A !important;
  outline: 2px solid rgba(226, 75, 74, 0.2) !important;
}

.field-error {
  color: #E24B4A;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE BANNER — iOS SAFE AREA FIX
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#cookie-banner {
  bottom: env(safe-area-inset-bottom, 0);
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE — INFO PANEL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-info-panel {
  background: var(--color-light-purple);
  border-radius: 12px;
  padding: 28px;
}

.contact-info-panel h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.contact-info-item .value {
  font-size: 14px;
  color: var(--color-navy);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AI PRODUCTS — METRIC CARDS (HOME PANEL)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.ai-metric-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
}

.ai-metric-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
  color: white;
  transition: background 0.2s, border-color 0.2s;
}
.ai-metric-card:last-child {
  margin-bottom: 0;
}
.ai-metric-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(107,92,231,0.5);
}

.ai-metric-card .metric-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}

.ai-metric-card .metric-value {
  font-size: 22px;
  font-weight: 600;
}

.ai-metric-card .metric-sub {
  font-size: 12px;
  opacity: 0.55;
  margin-top: 2px;
}

/* ── Expertise tab layout ── */

.expertise-shell {
  background: var(--hero-gradient,
    linear-gradient(135deg,
    #2D2B6B 0%, #1a1850 60%,
    #0f0e35 100%));
  min-height: calc(100vh - 64px);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(107,92,231,0.18);
}

.expertise-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 64px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  align-items: stretch;
}

/* ── Sidebar (dark navy — same gradient-hero as header) ── */
.expertise-sidebar {
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 64px;
  height: calc(140vh - 64px);
  overflow-y: auto;
  padding: 28px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
  background: transparent;
  margin-left: -24px;
  padding-left: 24px;
  width: calc(280px + 0px);
  box-sizing: border-box;
}

.expertise-sidebar::-webkit-scrollbar { width: 4px; }

.expertise-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.expertise-all-link {
  display: block;
  padding: 0 24px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.expertise-tab-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-family: inherit;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
}

.expertise-tab-btn:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.expertise-tab-active {
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-weight: 600;
}

.etb-chevron {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}

.expertise-tab-active .etb-chevron {
  color: var(--color-accent);
}

.expertise-tab-btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.expertise-sidebar-footer {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.expertise-sidebar-footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.expertise-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}

.expertise-contact-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Panel (light brand — white, matching Domains/AI Products) ── */
.expertise-panel {
  background: var(--color-white);
  padding: 52px 60px;
  overflow-y: auto;
}

.ep-tag {
  display: block;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ep-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--color-navy);
  margin: 0 0 14px;
  line-height: 1.2;
}

.ep-desc {
  font-size: 14px;
  color: var(--color-muted-text);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 32px;
}

.ep-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-text);
  margin: 32px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(175,169,236,0.35);
}

/* 12-column style: 4 items per row */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0 16px;
}

.ep-item {
  font-size: 13px;
  color: var(--color-body-text);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(175,169,236,0.15);
  transition: color 0.15s;
}

.ep-item::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--color-mid-purple);
  flex-shrink: 0;
  transition: background 0.15s;
}

.ep-item:hover {
  color: var(--color-accent);
}

.ep-item:hover::before {
  background: var(--color-accent);
}

.ep-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.ep-group-card {
  background: var(--color-white);
  border: 0.5px solid rgba(175, 169, 236, 0.4);
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ep-group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-mid-purple));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ep-group-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 92, 231, 0.25);
  box-shadow: 0 12px 32px rgba(107, 92, 231, 0.15), 0 2px 8px rgba(45, 43, 107, 0.08);
}

.ep-group-card:hover::before {
  opacity: 1;
}

.ep-group-card .ep-group-label {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(175, 169, 236, 0.35);
}

.ep-group-card .ep-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

@media (max-width: 1280px) {
  .ep-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOMEPAGE — NEW CLASSES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stat-num {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.credibility-quote {
  font-size: 15px;
  font-style: italic;
  color: #26215C;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-link {
  font-size: 13px;
  color: #6B5CE7;
  text-decoration: none;
  white-space: nowrap;
}
.section-link:hover {
  text-decoration: underline;
}

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

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.home-card {
  background: #fff;
  border: 0.5px solid #AFA9EC;
  border-radius: 10px;
  padding: 22px 20px;
  cursor: pointer;
  transition: border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  box-shadow: 0 2px 8px rgba(107,92,231,0.06);
  position: relative;
  overflow: hidden;
}
.home-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6B5CE7 0%, #AFA9EC 100%);
  border-radius: 10px 10px 0 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.home-card:hover {
  border-color: #6B5CE7;
  box-shadow: 0 8px 32px rgba(107,92,231,0.18);
  transform: translateY(-2px);
}
.home-card:hover::before {
  opacity: 1;
}

.home-card-dark {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.home-card-dark::before {
  background: linear-gradient(90deg, #6B5CE7 0%, rgba(107,92,231,0.3) 100%);
  opacity: 0.9;
}
.home-card-dark:hover {
  border-color: #6B5CE7;
  box-shadow: 0 8px 32px rgba(107,92,231,0.25);
  transform: translateY(-2px);
}
.home-card-dark:hover::before {
  opacity: 1;
}

.home-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #2D2B6B;
  margin-bottom: 12px;
}
.home-card-dark .home-card-title {
  color: #fff;
}

.home-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.home-card-list li {
  font-size: 12px;
  color: #6B6A8A;
  padding: 3px 0;
  padding-left: 12px;
  position: relative;
}
.home-card-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #6B5CE7;
}
.home-card-dark .home-card-list li {
  color: rgba(255,255,255,0.6);
}

.home-card-link {
  font-size: 12px;
  color: #6B5CE7;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

.story-num {
  font-size: 28px;
  font-weight: 600;
  color: #2D2B6B;
}

.story-label {
  font-size: 12px;
  color: #6B6A8A;
  margin-bottom: 10px;
}

.story-desc {
  font-size: 13px;
  color: #6B6A8A;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ai-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ai-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.ai-feat-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 12px;
}

.ai-metric-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.ai-metric-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.section-dark {
  background: var(--gradient-hero,
    linear-gradient(135deg,
    #2D2B6B 0%, #1a1850 60%,
    #0f0e35 100%));
}

.section-purple-light {
  background: #EEEDFE;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 11px 24px;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
}

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

.ai-steps-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0,1fr));
  gap: 20px;
  margin-top: 32px;
}

.ai-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid
    rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 24px 20px;
  transition: background 0.2s,
    border-color 0.2s;
}

.ai-step-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(107,92,231,0.5);
}

.ai-step-num {
  font-size: 28px;
  font-weight: 600;
  color: #6B5CE7;
  margin-bottom: 12px;
  line-height: 1;
}

.ai-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.ai-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1023px) {
  .ai-steps-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }
  .cards-grid-2 {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 767px) {
  .ai-steps-grid,
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.5;
}

.footer-address-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #6B5CE7;
  opacity: 0.85;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUCCESS STORIES PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.story-card-full {
  background: #fff;
  border: 0.5px solid #AFA9EC;
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  box-shadow: 0 2px 8px rgba(107,92,231,0.06);
}

.story-card-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6B5CE7 0%, #AFA9EC 100%);
  border-radius: 10px 10px 0 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.story-card-full:hover {
  border-color: #6B5CE7;
  box-shadow: 0 8px 32px rgba(107,92,231,0.18);
  transform: translateY(-2px);
}

.story-card-full:hover::before {
  opacity: 1;
}

.scf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.scf-outcome {
  text-align: right;
  flex-shrink: 0;
  max-width: 96px;
}

.scf-num {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #2D2B6B;
  line-height: 1.1;
}

.scf-label {
  display: block;
  font-size: 11px;
  color: #6B6A8A;
  margin-top: 2px;
  white-space: normal;
  word-break: break-word;
}

.scf-title {
  font-size: 15px;
  font-weight: 600;
  color: #2D2B6B;
  margin-bottom: 14px;
  line-height: 1.4;
}

.scf-section-label {
  font-size: 10px;
  font-weight: 600;
  color: #6B5CE7;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  margin-top: 12px;
}

.scf-text {
  font-size: 13px;
  color: #6B6A8A;
  line-height: 1.65;
  margin: 0;
}

.scf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #EEEDFE;
  flex-wrap: wrap;
  gap: 8px;
}

.scf-meta {
  font-size: 11px;
  color: #AFA9EC;
  font-weight: 500;
}

.filter-pill {
  background: #EEEDFE;
  color: #534AB7;
  border: none;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.filter-pill:hover {
  background: #AFA9EC;
  color: #26215C;
}

.filter-pill.active {
  background: #6B5CE7;
  color: #fff;
}

@media (max-width: 767px) {
  .story-card-full {
    padding: 20px 16px;
  }
  .scf-header {
    flex-direction: column;
  }
  .scf-outcome {
    text-align: left;
  }
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form-col {}
.contact-info-col {}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #2D2B6B;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .contact-info-col {
    grid-template-columns: 1fr;
  }
  .footer-social {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media print {
  .nav,
  #back-to-top,
  #cookie-banner,
  #cookie-banner-mount,
  .cta-band,
  .expertise-sidebar,
  #industries-sidebar {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .section-container {
    max-width: 100%;
    padding: 0;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
  a[href^="#"]:after,
  a[href^="javascript"]:after {
    content: "";
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOMEPAGE — RESPONSIVE OVERRIDES
   Must live AFTER the homepage base styles
   so the cascade works correctly.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Tablet 768px – 1023px ── */
@media (max-width: 1023px) {
  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .home-card-list li {
    font-size: 13px;
  }
  /* AI Products: keep 2 cols on tablet, tighten gap */
  .ai-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── Mobile < 768px ── */
@media (max-width: 767px) {

  /* ── Expertise / Industry cards: full-width single column ── */
  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Card shell */
  .home-card {
    padding: 18px 16px;
  }

  /* Card title */
  .home-card-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* Bullet list: single column, readable text, subtle separators */
  .home-card-list {
    display: block;
    margin-bottom: 14px;
  }
  .home-card-list li {
    font-size: 13px;
    padding: 7px 0 7px 16px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(175, 169, 236, 0.18);
  }
  .home-card-list li:last-child {
    border-bottom: none;
  }
  .home-card-dark .home-card-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  /* "Learn more" link */
  .home-card-link {
    font-size: 13px;
    margin-top: 12px;
  }

  /* ── Story cards ── */
  .story-card {
    padding: 18px 16px;
  }
  .story-tag {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .story-num {
    font-size: 22px;
  }
  .story-label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .story-desc {
    font-size: 13px;
  }

  /* ── AI Products section ── */

  /* Stack left (content) and right (metric cards) vertically */
  .ai-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Pills row: wrap neatly, slightly larger hit area */
  .ai-pills {
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .ai-feat-pill {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Explore button: full width, overrides inline display:inline-block */
  .ai-left .btn-primary {
    display: block !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top: 20px !important;
  }

  /* Metric cards: full width, one after another */
  .ai-right {
    width: 100%;
  }
  .ai-metric-card {
    padding: 16px 18px;
    margin-bottom: 10px;
    border-left: 3px solid rgba(107, 92, 231, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 10px 10px 0;
  }
  .ai-metric-card:last-child {
    margin-bottom: 0;
  }
  /* Label: the short status text e.g. "Active now" */
  .ai-metric-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
  }
  /* Sub: the description line */
  .ai-metric-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXPERTISE / INDUSTRIES SHELL — RESPONSIVE OVERRIDES
   Defined after .expertise-wrap/.expertise-shell base
   styles (~line 2297) to win the cascade correctly.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Tablet 768px – 1023px ── */
@media (max-width: 1023px) {
  /* Narrow the sidebar, keep side-by-side layout */
  .expertise-wrap {
    grid-template-columns: 220px 1fr;
    padding: 0 16px;
    min-height: auto;
  }
  .expertise-shell {
    border-radius: 10px;
  }
  .expertise-panel {
    padding: 32px 24px;
  }
  .ep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ep-title {
    font-size: 28px;
  }
}

/* ── Mobile < 768px ── */
@media (max-width: 767px) {

  /* Shell: strip decorative radius/shadow, allow natural height */
  .expertise-shell {
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
  }

  /* Wrap: single column — sidebar on top, panel below */
  .expertise-wrap {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: auto;
    max-width: 100%;
  }

  /* ── Sidebar: horizontal scrolling pill strip ── */
  .expertise-sidebar {
    position: static;
    height: auto;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: 0;
    background: linear-gradient(135deg, #2D2B6B 0%, #1a1850 60%, #0f0e35 100%);
    scrollbar-width: none;
    -ms-overflow-style: none;
    top: 0;
    box-sizing: border-box;
  }
  .expertise-sidebar::-webkit-scrollbar {
    display: none;
  }

  /* Hide desktop-only sidebar elements */
  .expertise-all-link,
  .expertise-sidebar-footer {
    display: none;
  }

  /* Tab list: horizontal row of pill buttons */
  #expertise-tab-list,
  #industries-tab-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
  }

  /* Each tab: pill shape, no-shrink for horizontal scroll */
  .expertise-tab-btn {
    display: inline-flex;
    width: auto;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
  }
  .expertise-tab-active {
    background: #6B5CE7 !important;
    border-color: #6B5CE7 !important;
    color: #fff !important;
    font-weight: 600 !important;
  }
  .etb-chevron {
    display: none;
  }

  /* ── Panel: full-width content area ── */
  .expertise-panel {
    padding: 24px 16px;
    background: #f8f8fc;
    overflow-y: visible;
    border-radius: 0;
  }
  .ep-tag {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .ep-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .ep-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .ep-group-label {
    font-size: 12px;
    margin: 20px 0 10px;
    letter-spacing: 0.08em;
  }

  /* Skill/service items: single column */
  .ep-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ep-item {
    font-size: 13px;
    padding: 9px 0;
  }

  /* Outcome/pull-quote box */
  .outcome-box {
    padding: 14px 16px;
    margin-top: 20px;
  }
  .pull-quote {
    padding: 14px 16px 14px 28px;
    font-size: 13px;
  }
}
