/* =============================================
   MOIRAI CONSULTANCY — GLOBAL STYLES
   ============================================= */

/*
  COLOUR PALETTE
  To revert to original blue scheme, replace the :root block with:
  --bg-deep: #000914; --bg-dark: #0D1117; --bg-card: #161C24;
  --bg-card-hover: #1E2730; --bg-light: #F4F8FA; --bg-white: #FFFFFF;
  --accent: #3858E9; --accent-hover: #2544D4; --accent-glow: rgba(56,88,233,0.25);
  --accent-light: #3858E9;
  --text-primary: #FFFFFF; --text-secondary: rgba(255,255,255,0.65);
  --text-dark: #0D1117; --text-mid: #3C4858; --text-muted: #657E9A;
  --border-dark: rgba(255,255,255,0.08); --border-light: rgba(0,0,0,0.08);
*/

:root {
  /* Dark backgrounds (hero, services, footer, CTA) */
  --bg-deep:      #0D3446;
  --bg-dark:      #0D3446;
  --bg-card:      #0f3d52;
  --bg-card-hover:#154d66;

  /* Light backgrounds */
  --bg-light:     #D8DFE2;
  --bg-white:     #f8f9fa;

  /* Accent colours */
  --accent:       #176D81;   /* primary CTA / interactive */
  --accent-hover: #0f5566;
  --accent-glow:  rgba(23, 109, 129, 0.28);
  --accent-light: #71ADB5;   /* decorative / logo AI / tags */

  /* Text */
  --text-primary:   #f8f9fa;
  --text-secondary: rgba(216, 223, 226, 0.72);
  --text-dark:      #0D3446;
  --text-mid:       #212529;
  --text-muted:     #71ADB5;

  /* Borders */
  --border-dark:  rgba(255, 255, 255, 0.08);
  --border-light: rgba(13, 52, 70, 0.12);

  --font:         'Barlow', -apple-system, sans-serif;
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.2s ease;

  --max-w:        1200px;
  --nav-h:        72px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn--nav {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
}
.btn--nav:hover {
  background: var(--accent-hover);
}

.btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(13, 52, 70, 0.94);
  backdrop-filter: blur(12px);
  border-color: var(--border-dark);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  text-decoration: none;
}
.nav__logo-word {
  font-family: var(--font);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.logo-moi  { color: #fff; }
.logo-r    { color: rgba(255,255,255,0.82); }
.logo-ai   {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(113,173,181,0.7));
}
.logo-consultancy {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: #fff; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 16px 32px 24px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
}
.nav__mobile a:last-child { border-bottom: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Subtle grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113, 173, 181, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 173, 181, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
}

/* Blue glow accent */
.hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(23, 109, 129, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  max-width: 860px;
}

/* Hero wordmark */
.hero__wordmark {
  margin-bottom: 48px;
}
.hero-wordmark-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.hero__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(23, 109, 129, 0.5);
  border-radius: 100px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(23, 109, 129, 0.1);
}

.hero__headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero__headline .accent {
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__pills span {
  padding: 6px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.25);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 96px 0;
}
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--bg-dark); }
.section--white { background: var(--bg-white); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section__header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section__header p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}
.section__header--light h2 { color: var(--text-primary); }
.section__header--light p  { color: var(--text-secondary); }

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* =============================================
   CLIENT GRID
   ============================================= */
.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.client-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.client-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(23, 109, 129, 0.12);
}
.client-card__icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin: 0 auto 14px;
}
.client-card__icon svg { width: 100%; height: 100%; }
.client-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.client-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  border-top: 2px solid transparent;
}
.service-card:hover {
  background: var(--bg-card-hover);
}
/* Subtle top-border accent cycling through teal shades */
.service-card:nth-child(1) { border-top-color: #71ADB5; }
.service-card:nth-child(2) { background: #0e3f56; border-top-color: rgba(113,173,181,0.4); }
.service-card:nth-child(3) { background: #0c3a4e; border-top-color: #176D81; }
.service-card:nth-child(4) { border-top-color: rgba(113,173,181,0.25); }
.service-card:nth-child(5) { background: #0e3f56; border-top-color: #176D81; }
.service-card:nth-child(6) { background: #0c3a4e; border-top-color: #176D81; }
.service-card:nth-child(7) { border-top-color: rgba(113,173,181,0.4); }
.service-card:nth-child(8) { background: #0e3f56; border-top-color: #71ADB5; }
.service-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.service-card__icon {
  width: 32px;
  height: 32px;
  color: var(--accent-light);
  flex-shrink: 0;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  flex: 1;
}
.service-card p { display: none; }
.service-card__arrow {
  font-size: 20px;
  color: var(--accent);
  margin-top: 8px;
  transition: transform var(--transition);
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   ABOUT TEASER
   ============================================= */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-teaser__text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-teaser__text p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-teaser__text .btn { margin-top: 12px; }

.about-teaser__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pillar {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.pillar__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* =============================================
   EU AI ACT SECTION
   ============================================= */
.euai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.euai-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.euai-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.euai-text .btn { margin-top: 12px; }
.euai-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.euai-point {
  padding: 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}
.euai-point__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.euai-point p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .euai-inner { grid-template-columns: 1fr; gap: 48px; }
  .euai-points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .euai-points { grid-template-columns: 1fr; }
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--bg-deep);
  padding: 80px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cta-band p {
  color: var(--text-secondary);
  font-size: 17px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  padding-top: 64px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer__links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}
.footer__bottom p, .footer__bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.65); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--bg-deep);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113, 173, 181, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 173, 181, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(23, 109, 129, 0.5);
  border-radius: 100px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(23, 109, 129, 0.1);
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-list {
  padding: 96px 0;
  background: var(--bg-white);
}
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.service-item:first-child { border-top: 1px solid var(--border-light); }
.service-item__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.service-item__body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-item__body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
}

.approach-section {
  background: var(--bg-dark);
  padding: 96px 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 64px;
}
.approach-card {
  padding: 36px 32px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.approach-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.approach-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.approach-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.team-section {
  background: var(--bg-white);
  padding: 96px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 40px;
  margin-top: 64px;
}
.team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  align-items: start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(23, 109, 129, 0.12);
}
.team-card__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-light);
  flex-shrink: 0;
  border: 2px solid var(--border-light);
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.team-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.team-card__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.team-card__email {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  transition: opacity var(--transition);
}
.team-card__email:hover { opacity: 0.75; }
.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.team-card__linkedin:hover { color: var(--accent); }
.team-card__linkedin svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.team-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

.about-section {
  background: var(--bg-light);
  padding: 96px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-inner p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mv-card {
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.mv-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mv-card p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-teaser__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 80px 1fr; }
  .team-card__img { width: 80px; height: 80px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 64px 0; }
  .about-teaser__pillars { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 8px; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__img { width: 80px; height: 80px; }
  .footer__inner { flex-direction: column; gap: 40px; }
  .footer__links { gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__ctas { flex-direction: column; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding-top: calc(var(--nav-h) + 80px); }
  .hero__pills { padding-bottom: 48px; }
}
