/* ============================================================
   INGENUITY GAMING — WEBSITE STYLESHEET
   Brand: #F04B4B red | #0A0A0A black | #B6B8BA grey | #FFFFFF white
   Font: Outfit (Google Fonts)
   ============================================================ */

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

:root {
  --red:    #F04B4B;
  --black:  #0A0A0A;
  --grey:   #B6B8BA;
  --lgrey:  #F2F2F2;
  --mgrey:  #1A1A1A;
  --dgrey:  #111111;
  --white:  #FFFFFF;
  --nav-h:  72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; line-height: 1.25; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: #444; }

.label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Grid Pattern (hero backgrounds) ────────────────────────── */
.grid-bg {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(240,75,75,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,75,75,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__logo { display: flex; align-items: center; }
.nav__logo svg { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav__dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav__dropdown:hover > a::after { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
  border-left: 2px solid transparent;
}
.nav__dropdown-menu a:hover {
  color: var(--white);
  background: rgba(240,75,75,0.08);
  border-left-color: var(--red);
}

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav__cta:hover { background: #d93f3f !important; transform: translateY(-1px); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Page offset for fixed nav ──────────────────────────────── */
.page-top { padding-top: var(--nav-h); }

/* ── Hero Sections ──────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero--short {
  height: 80vh;
  min-height: 480px;
  padding: 7rem 5% 5rem;
}

.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__content .label { margin-bottom: 1.2rem; }
.hero__content h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero__content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.hero__image-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* REPLACE WITH MIDJOURNEY IMAGE: set as background-image */
  background: linear-gradient(135deg, rgba(240,75,75,0.15) 0%, transparent 60%);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: #d93f3f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,75,75,0.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

/* ── Metrics Bar ────────────────────────────────────────────── */
.metrics {
  background: var(--red);
  padding: 0;
}
.metrics__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.metrics__item {
  padding: 2.2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.metrics__item:last-child { border-right: none; }
.metrics__number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.metrics__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 6rem 5%; }
.section--dark { background: var(--black); }
.section--dgrey { background: var(--dgrey); }
.section--mgrey { background: var(--mgrey); }
.section--lgrey { background: var(--lgrey); }
.section--red { background: var(--red); }

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

.section__header { margin-bottom: 3.5rem; }
.section__header .label { margin-bottom: 0.8rem; }
.section__header h2 { margin-bottom: 1rem; }
.section__header p { max-width: 600px; }

.section--dark .section__header h2,
.section--dgrey .section__header h2,
.section--mgrey .section__header h2 { color: var(--white); }

.section--dark p,
.section--dgrey p,
.section--mgrey p { color: rgba(255,255,255,0.65); }

/* ── Cards ──────────────────────────────────────────────────── */
.cards { display: grid; gap: 1.5rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }

.card--dark {
  background: #161616;
  border-color: rgba(255,255,255,0.07);
}
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--dark p { color: rgba(255,255,255,0.6); }

.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(240,75,75,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card__icon svg { width: 22px; height: 22px; fill: var(--red); }

.card--service {
  border-top: 3px solid var(--red);
  padding: 2.2rem;
}
.card--service h3 { margin-bottom: 0.8rem; }
.card--service p { margin-bottom: 1.4rem; font-size: 0.95rem; }

.card--feature {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
  border-radius: 0;
  padding: 1.8rem 2rem;
}
.card--feature h4 { color: var(--white); margin-bottom: 0.6rem; }
.card--feature p { font-size: 0.92rem; color: rgba(255,255,255,0.6); }

/* ── Service page hero card ─────────────────────────────────── */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}
.service-intro--right .service-intro__text { order: 2; }
.service-intro__text h2 { margin-bottom: 1.2rem; }
.service-intro__text p { margin-bottom: 1.2rem; }
.service-intro__text .label { margin-bottom: 0.6rem; }

.service-intro__visual {
  background: var(--lgrey);
  border-radius: 8px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
  padding: 2rem;
  /* REPLACE WITH MIDJOURNEY IMAGE */
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(240,75,75,0.15);
}
.service-intro__visual span { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ── Stats Row ──────────────────────────────────────────────── */
.stats { display: grid; gap: 0; }
.stats--4 { grid-template-columns: repeat(4, 1fr); }
.stats--3 { grid-template-columns: repeat(3, 1fr); }

.stat {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat__number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Process Steps ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { text-align: left; }
.step__num {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step h4 { color: var(--white); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem;
}
.testimonial::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.testimonial__author { font-size: 0.8rem; color: rgba(255,255,255,0.4); display:flex; align-items:center; gap:0.75rem; margin-top:1.5rem; }
.testimonial__author-photo { width:44px; height:44px; border-radius:50%; background-size:cover; background-position:center top; flex-shrink:0; border:2px solid rgba(255,255,255,0.15); }
.testimonial__author strong { display: block; color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 0.1rem; }

/* ── Team Grid ──────────────────────────────────────────────── */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card__photo {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  border-bottom: 2px solid var(--red);
}
.team-card__info { padding: 1.2rem 1.4rem; }
.team-card__name { color: var(--white); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.team-card__role { color: var(--red); font-size: 0.78rem; font-weight: 500; margin-bottom: 0.6rem; }
.team-card__bio { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── frog-style Leadership Section ─────────────────────────── */
.leadership-section {
  background: #0c0c0c;
  padding: 5rem 0 4rem;
}
.leadership-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.leadership-header {
  margin-bottom: 4rem;
}
.leadership-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.4rem 0 1rem;
  color: var(--white);
}
.leadership-region {
  margin-bottom: 4rem;
}
.leadership-region__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
}

/* ── Leadership Tabs ─────────────────────────────────────────── */
.ldr-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 3rem;
}
.ldr-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.ldr-tab:hover { color: #444; }
.ldr-tab.active { color: var(--black); border-bottom-color: var(--red); }
.ldr-panel { display: none; }
.ldr-panel.active { display: block; }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.ldr-card {
  display: flex;
  flex-direction: column;
}
.ldr-card__photo {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center top;
  background-color: #1a1a1a;
  filter: grayscale(30%);
  transition: filter 0.3s;
  margin-bottom: 1.2rem;
}
.ldr-card:hover .ldr-card__photo {
  filter: grayscale(0%);
}
.ldr-card__bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  flex: 1;
  margin: 0 0 1.2rem;
}
.ldr-card__line {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 1rem;
}
.ldr-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.ldr-card__role {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 500;
}

/* ── Employee Stories ───────────────────────────────────────── */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.story {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem;
}
.story__quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.story__person { display: flex; align-items: center; gap: 1rem; }
.story__avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.story__name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.story__role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.story__since { font-size: 0.72rem; color: var(--red); font-weight: 500; }

/* ── Values Grid ────────────────────────────────────────────── */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.value {
  text-align: center;
  padding: 2rem 1rem;
}
.value__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value__name { color: var(--white); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; }
.value__desc { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; }

/* ── Two-col layout ─────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col--reverse .two-col__text { order: 2; }

/* ── Icon list ──────────────────────────────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.icon-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.icon-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ── Contact Form ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info h3 { color: var(--white); margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

.office-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.office-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.office-item__dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.office-item__name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.office-item__city { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.contact-form { background: #141414; border-radius: 8px; padding: 2.5rem; border: 1px solid rgba(255,255,255,0.07); }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; font-weight: 500; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Anchor Nav (service pages) ─────────────────────────────── */
.anchor-nav {
  background: var(--mgrey);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.anchor-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
}
.anchor-nav__inner a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 1rem 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.anchor-nav__inner a:hover { color: var(--white); border-bottom-color: var(--red); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 2.5rem 5%;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 1.4rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── Global Map / Regions ───────────────────────────────────── */
.regions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.region {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  padding: 1.8rem;
}
.region h4 { color: var(--white); margin-bottom: 0.6rem; }
.region p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 5% 2.5rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand svg { height: 32px; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }

.footer__col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer__bottom a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── Image placeholder helper ───────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #141414, #0a0a0a);
  border: 1px dashed rgba(240,75,75,0.3);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-align: center;
  min-height: 280px;
}
.img-placeholder__icon { font-size: 2rem; opacity: 0.4; }

/* ── Logo image sizing ──────────────────────────────────────── */
.nav__logo-img    { height: 40px; width: auto; display: block; }
.footer__logo-img { height: 32px; width: auto; display: block; margin-bottom: 1rem; }

/* ── Step number alias ──────────────────────────────────────── */
.step__number {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Steps on light background override */
.section:not(.section--dark):not(.section--mgrey) .step h4 { color: var(--black); }
.section:not(.section--dark):not(.section--mgrey) .step p { color: #555; }

/* ── Story card variants (life-ig) ──────────────────────────── */
.story__image {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  background: rgba(240,75,75,0.1);
  border-radius: 8px;
}
.story__content h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.6rem; }
.story__content p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── Values on light background ─────────────────────────────── */
.section--lgrey .value h4,
.section--lgrey .value h3 { color: var(--black); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.section--lgrey .value p  { color: #555; font-size: 0.88rem; line-height: 1.6; }

/* ── Option 2 Values — dark card grid ───────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 0;
}
.value-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.value-card:hover { transform: translateY(-4px); border-top-color: #ff4444; }
.value-card__icon { font-size: 1.6rem; margin-bottom: 1.1rem; opacity: 1; color: var(--red); }
.value-card__name { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.value-card__tagline { font-size: .8rem; font-weight: 600; color: var(--red); margin-bottom: .8rem; line-height: 1.4; }
.value-card__desc { font-size: .82rem; color: rgba(255,255,255,0.5); line-height: 1.65; flex: 1; }

/* ── Story cards on white background ────────────────────────── */
.section--white .story,
.section:not(.section--dark):not(.section--mgrey):not(.section--lgrey) .story {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
}
.section:not(.section--dark):not(.section--mgrey):not(.section--lgrey) .story__content h4 { color: var(--black); }
.section:not(.section--dark):not(.section--mgrey):not(.section--lgrey) .story__content p  { color: #666; }

@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Contact grid on light background ───────────────────────── */
.section .contact-grid .contact-info h3,
.section .contact-grid .contact-info h2 { color: var(--black); }
.section .contact-grid .contact-info p  { color: #555; }

/* ── Anchor nav active link ─────────────────────────────────── */
.anchor-nav__inner a.active { color: var(--white); border-bottom-color: var(--red); }

/* ── Vertical cards (3 segments on home page) ───────────────── */
.verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.vertical-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.vertical-card:hover { border-color: rgba(240,75,75,0.4); }
.vertical-card__image {
  width: 100%;
  min-height: 220px;
  background-color: #1a1a1a;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.vertical-card:hover .vertical-card__image { opacity: 0.9; }
.vertical-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vertical-card__content h3 { font-size: 1.15rem; line-height: 1.5; }
.vertical-card__content p { flex: 1; }

/* ── Inline grid utility classes (vertical pages) ──────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-2--tight { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-2--med { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }

/* Two-col headline split (h2 left, paragraph right) */
.split-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .stories { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ── Navigation ── */
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem 5%;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  /* Animate hamburger to X when open */
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav__dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; border: none; box-shadow: none; padding-left: 1rem; }
  .nav__dropdown > a::after { display: none; }

  /* ── Hero ── */
  .hero { min-height: 85vh; padding: 6rem 5% 3rem; }
  .hero--short { height: auto; min-height: 50vh; padding: 6rem 5% 3rem; }
  .hero__content h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero__content p { font-size: 0.95rem; }
  .hero__content .btn { width: 100%; justify-content: center; margin-bottom: 0.5rem; }

  /* ── Sections ── */
  .section { padding: 3.5rem 5%; }
  .section__header { margin-bottom: 2.5rem; }

  /* ── Grids ── */
  .metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .two-col, .contact-grid, .service-intro { grid-template-columns: 1fr; gap: 2rem; }
  .two-col__visual { order: -1; }
  .split-header { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .stories { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .grid-2--tight, .grid-2--med { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .verticals { grid-template-columns: 1fr; }
  .vertical-card { flex-direction: column; }
  .vertical-card__image { min-height: 200px; width: 100%; flex-shrink: 0; }

  /* ── Inline margin/padding overrides ── */
  .qa-desc { padding-top: 0 !important; }
  .section-sep { margin-top: 2rem !important; padding-top: 2rem !important; }

  /* ── Typography ── */
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  h3 { font-size: clamp(1.05rem, 3.5vw, 1.3rem); }

  /* ── Cards ── */
  .card { padding: 1.5rem; }
  .card--service { padding: 1.5rem; }

  /* ── CTA Banner ── */
  .cta-banner { padding: 2rem 5%; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.9rem; margin-bottom: 1.4rem; }

  /* ── Footer ── */
  .footer { padding: 3rem 5% 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  /* ── Misc ── */
  .regions { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats--4 { grid-template-columns: repeat(2, 1fr); }
  .stats--3 { grid-template-columns: 1fr; }
  .ldr-tabs { overflow-x: auto; gap: 0; }
  .ldr-tab { padding: 0.8rem 1rem; font-size: 0.78rem; }
  .anchor-nav__inner { gap: 1rem; }
  .service-intro { gap: 2rem; }
  .contact-form { padding: 1.8rem; }
  .office-list { gap: 1rem; }
}
