/* ==========================================================================
   1. RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
body { overflow-x: hidden; }

/* ==========================================================================
   2. VARIABLES
   ========================================================================== */
:root {
  --color-black: #0c0b09;
  --color-dark: #161512;
  --color-dark-card: #1c1b17;
  --color-cream: #f3ede1;
  --color-light: #faf7f0;
  --color-card: #eae2d0;
  --color-card-border: rgba(12, 11, 9, 0.14);
  --color-text: #17160f;
  --color-muted: #6f6a5d;
  --color-muted-light: rgba(250, 247, 240, 0.72);
  --color-border: rgba(12, 11, 9, 0.12);
  --color-border-light: rgba(255, 255, 255, 0.16);
  --color-white: #ffffff;

  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --space-xs: clamp(6px, 0.6vw, 10px);
  --space-sm: clamp(12px, 1.2vw, 18px);
  --space-md: clamp(20px, 2.4vw, 32px);
  --space-lg: clamp(40px, 4.5vw, 64px);
  --space-xl: clamp(60px, 7vw, 110px);
  --space-xxl: 80px;

  --radius-lg: clamp(18px, 2vw, 28px);
  --radius-md: clamp(12px, 1.4vw, 18px);
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
body {
  font-family: var(--font-sans);
  background: var(--color-cream);
  color: var(--color-text);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 6vw, 4.5rem); line-height: 1.2; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.4rem); line-height: 1.2; }
h4 { font-size: clamp(1rem, 1.2vw, 1.15rem); }

p { font-size: clamp(0.9rem, 1vw, 1.05rem); color: var(--color-muted); }

.eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}
.eyebrow-light { color: var(--color-muted-light); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--color-black); color: var(--color-white);
  padding: 10px 18px; border-radius: var(--radius-pill);
  z-index: 999; transition: top 0.25s var(--ease);
  font-size: 14px;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   4. GLOBAL CONTAINER
   ========================================================================== */
.container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}
.logo img {
    height: auto;
}
section { position: relative; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(11px, 1.1vw, 15px) clamp(20px, 2vw, 28px);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-dark:hover { background: #2a2822; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.22); }

.btn-light {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-light:hover { background: var(--color-cream); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.22); }

.btn-outline-light {
  background: transparent;
  border-color: var(--color-border-light);
  color: var(--color-white);
}
.btn-outline-light:hover { background: var(--color-white); color: var(--color-black); transform: translateY(-2px); }

.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 210;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s var(--ease), transform 0.35s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(12,11,9,0.06); }
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: clamp(12px, 1.6vw, 18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.logo-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.logo-text em { font-style: normal; font-weight: 500; color: var(--color-muted); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text) !important;
  position: relative;
  padding-block: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after,
.main-nav .current-menu-item a::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-sm); }
.header-cta { padding: 10px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-black);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav --------------------------------------------------------------*/
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(360px, 88vw);
  background: var(--color-black);
  color: var(--color-white);
  z-index: 200;
  padding: clamp(90px, 14vw, 110px) var(--space-lg) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-nav a { font-size: clamp(1rem, 5vw, 1.7rem); font-weight: 600; }
.mobile-cta { align-self: flex-start; margin-top: var(--space-lg); }

.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(12,11,9,0.5);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(520px, 62vw, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.15) 0%, rgba(10,9,7,0.35) 55%, rgba(10,9,7,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding-block: var(--space-xl) var(--space-xxl);
  max-width: 1420px;
}
.hero-content h1 { color: var(--color-white); margin-bottom: var(--space-md); }
.hero-sub {
  color: var(--color-muted-light);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  max-width: 60%;
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   7. ABOUT
   ========================================================================== */
.about { padding-block: var(--space-xxl); background: var(--color-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--space-lg);
}
.about-content h2 { 
  /* max-width: 18ch;  */
  margin-bottom: var(--space-md); 
}
.about-text { 
  /* max-width: 56ch;  */
  margin-bottom: var(--space-md); 
}
.about-text:nth-last-child(1) { margin-bottom: 0; }

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.about-cards.no-top-gap { margin-top: 0; }
.about.no-top-pad { padding-top: 0; }
.about.no-bottom-pad { padding-bottom: 0; }
.info-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,11,9,0.1); }
.info-card h3 { margin-bottom: var(--space-sm); }
.info-card p { font-size: 0.9rem; }

/* ==========================================================================
   8. SERVICES / DARK SECTION
   ========================================================================== */
.services { background: var(--color-black); padding-block: var(--space-xxl); color: var(--color-white); }
.services-heading { color: var(--color-white); max-width: 20ch; margin-bottom: var(--space-lg); }

.service-list { display: flex; flex-direction: column; gap: var(--space-md); }

.service-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 44px);
  max-width: 900px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.service-card:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
  background: #211f19;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.service-card h3 { color: var(--color-white); font-size: clamp(1.15rem, 1.8vw, 1.55rem); }
.service-index { color: rgba(255,255,255,0.45); font-weight: 500; }

.icon-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-white);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.service-card:hover .icon-btn { transform: rotate(45deg); background: var(--color-white); color: var(--color-black); }

.service-desc {
  color: rgba(250,247,240,0.68);
  max-width: 62ch;
  margin-bottom: var(--space-md);
  font-size: 0.92rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}
.service-tags span {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-size: 0.78rem;
  color: rgba(250,247,240,0.85);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.service-tags span:hover { background: var(--color-white); color: var(--color-black); }

/* ==========================================================================
   9. STATISTICS
   ========================================================================== */
.stats { padding-block: var(--space-xxl); background: var(--color-cream); }
.stats-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.stats-head h2 { max-width: 18ch; margin-bottom: var(--space-sm); }
.stats-sub { max-width: 52ch; }
.stats-cta { flex-shrink: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.stat-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,11,9,0.1); }
.stat-number {
  display: block;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}
.stat-card h4 { margin-bottom: var(--space-xs); }
.stat-card p { font-size: 0.88rem; }

/* ==========================================================================
   10. CLIENT / BRAND SHOWCASE
   ========================================================================== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 44vw, 620px);
}
.showcase-media { position: relative; overflow: hidden; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.showcase-media:hover img { transform: scale(1.04); }

.showcase-panel {
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
}
.brand-list { display: flex; flex-direction: column; }
.brand-list li { border-top: 1px solid var(--color-border-light); }
.brand-list li:last-child { border-bottom: 1px solid var(--color-border-light); }
.brand-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(14px, 2vw, 22px);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 600;
  transition: padding-left 0.3s var(--ease), color 0.3s var(--ease);
}
.brand-list a svg { transition: transform 0.3s var(--ease); opacity: 0.6; }
.brand-list a:hover { padding-left: 10px; color: var(--color-white); }
.brand-list a:hover svg { transform: rotate(45deg); opacity: 1; }

/* ==========================================================================
   11. TRUST / CLIENTS
   ========================================================================== */
.trust { padding-block: var(--space-xxl); background: var(--color-cream); }
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}
.trust-content h2 { margin-bottom: var(--space-md); }
.trust-text { max-width: 46ch; margin-bottom: var(--space-lg); }

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.trust-badge {
  aspect-ratio: 1.4 / 1;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
  text-align: center;
  padding: 12px;
}
.trust-badge:hover { transform: translateY(-4px); background: var(--color-black); color: var(--color-white); }

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */
.testimonials { padding-block: var(--space-xxl); background: var(--color-cream); }
.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.testi-nav { display: flex; gap: 10px; }
.testi-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-arrow:hover { background: var(--color-black); color: var(--color-white); transform: translateY(-2px); }

.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,11,9,0.1); }
.testi-quote { font-size: 0.95rem; color: var(--color-text); margin-bottom: var(--space-md); }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testi-person div { display: flex; flex-direction: column; }
.testi-person strong { font-size: 0.9rem; }
.testi-person span { font-size: 0.8rem; color: var(--color-muted); }

/* ==========================================================================
   13. FULL-WIDTH IMAGE CTA
   ========================================================================== */
.cta-image {
  position: relative;
  min-height: clamp(360px, 40vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cta-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.1) 0%, rgba(10,9,7,0.65) 100%);
}
.cta-image-content {
  position: relative; z-index: 2;
  padding-block: var(--space-xl);
  color: var(--color-white);
}
.cta-image-content h2 { color: var(--color-white); margin-bottom: var(--space-lg); max-width: 16ch; }

/* ==========================================================================
   14. TEAM
   ========================================================================== */
.team { padding-block: var(--space-xxl); background: var(--color-cream); }
.team-head { max-width: 720px; margin-bottom: var(--space-lg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.team-card { text-align: left; }
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  margin-bottom: var(--space-sm);
  background: var(--color-card);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 { font-size: 1rem; margin-bottom: 2px; }
.team-card p { font-size: 0.85rem; }

/* ==========================================================================
   15. FAQ
   ========================================================================== */
.faq { padding-block: var(--space-xxl); background: var(--color-cream); }
body.faq, body.blog {
    padding-block: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-lg);
}
.faq-head h2 { max-width: 16ch; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: clamp(18px, 2.2vw, 26px);
  text-align: left;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 600;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--color-text);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 10px; height: 1.4px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.4px; height: 10px; transform: translate(-50%, -50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--color-black); }
.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after { background: var(--color-white); }
.faq-question[aria-expanded="true"] .faq-icon::before { transform: translate(-50%, -50%) rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--ease), opacity 0.35s var(--ease);
}
.faq-answer > p { overflow: hidden; padding-right: 44px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; opacity: 1; padding-bottom: var(--space-md); }
.faq-answer { overflow: hidden; }

/* FAQ – dark variant ------------------------------------------------------ */
.faq.on-dark { background: var(--color-black); }
.faq.on-dark .eyebrow { color: var(--color-muted-light); }
.faq.on-dark .faq-head h2 { color: var(--color-white); }
.faq.on-dark .faq-item { border-bottom-color: var(--color-border-light); }
.faq.on-dark .faq-question { color: var(--color-white); }
.faq.on-dark .faq-answer p { color: rgba(250, 247, 240, 0.72); }
.faq.on-dark .faq-icon { border-color: var(--color-border-light); }
.faq.on-dark .faq-icon::before,
.faq.on-dark .faq-icon::after { background: var(--color-white); }
.faq.on-dark .faq-question[aria-expanded="true"] .faq-icon { background: var(--color-white); }
.faq.on-dark .faq-question[aria-expanded="true"] .faq-icon::before,
.faq.on-dark .faq-question[aria-expanded="true"] .faq-icon::after { background: var(--color-black); }

/* ==========================================================================
   16. BLOG
   ========================================================================== */
.blog { padding-block: var(--space-xxl); background: var(--color-cream); }
.blog-head { max-width: 720px; margin-bottom: var(--space-xl); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.blog-card { display: flex; flex-direction: column; }
.blog-image {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  margin-bottom: var(--space-md);
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-meta { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.03em; }
.blog-card h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); margin-bottom: var(--space-sm); max-width: 30ch; }
.blog-card h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.blog-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.blog-arrow:hover { background: var(--color-black); color: var(--color-white); transform: rotate(45deg); }
.blog-more { text-align: center; margin-top: var(--space-lg); }

/* ==========================================================================
   17. PAGE COMPONENTS (interior pages)
   ========================================================================== */

/* Breadcrumb -------------------------------------------------------------- */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-muted-light);
  margin-bottom: var(--space-md);
}
.breadcrumb-nav a:hover { color: var(--color-white); text-decoration: underline; }
.breadcrumb-nav span { opacity: 0.5; }

/* Page hero (interior pages) ---------------------------------------------- */
.page-hero {
  position: relative;
  min-height: clamp(360px, 38vw, 540px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.25) 0%, rgba(10,9,7,0.45) 50%, rgba(10,9,7,0.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding-block: var(--space-xl) var(--space-xl);
  max-width: 1240px;
}
.page-hero-content h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.page-hero-sub {
  color: var(--color-muted-light);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  max-width: 56ch;
  margin-bottom: var(--space-md);
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Section heading helper --------------------------------------------------- */
.section-head { max-width: 760px; margin-bottom: var(--space-lg); }
.section-head p { max-width: 62ch; margin-top: var(--space-sm); }

/* Benefit checklist --------------------------------------------------------- */
.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.benefit-list.on-dark li { color: rgba(250,247,240,0.78); }
.benefit-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-text);
}
.benefit-list.on-dark li svg { color: var(--color-white); }

/* Service grid (services.html) --------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.service-grid-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.service-grid-card:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-6px);
  background: #211f19;
}
.service-grid-card .service-index {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-sm);
}
.service-grid-card h3 { color: var(--color-white); margin-bottom: var(--space-sm); }
.service-grid-card .service-desc { font-size: 0.88rem; margin-bottom: var(--space-sm); }
.service-grid-card .benefit-list { margin-bottom: var(--space-md); flex-grow: 1; }
.service-grid-card .btn { align-self: flex-start; }

/* Process steps --------------------------------------------------------------*/
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: clamp(20px, 2.4vw, 30px) clamp(18px, 2vw, 24px);
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.process-step:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,11,9,0.1); }
.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; }
.process-steps.on-dark .process-step {
  background: var(--color-dark-card);
  border-color: var(--color-border-light);
}
.process-steps.on-dark .process-step .step-number { background: var(--color-white); color: var(--color-black); }
.process-steps.on-dark .process-step h3 { color: var(--color-white); }
.process-steps.on-dark .process-step p { color: rgba(250,247,240,0.68); }

/* Principles grid (homepage – non-claim metrics) ----------------------------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.principle-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.principle-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,11,9,0.1); }
.principle-number {
  display: block;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--color-border);
  -webkit-text-stroke: 1px var(--color-text);
  margin-bottom: var(--space-sm);
}
.principle-card h3 { margin-bottom: 8px; }
.principle-card p { font-size: 0.88rem; }

/* Industry grid --------------------------------------------------------------*/
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}
.industry-tile {
  aspect-ratio: 1.3 / 1;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.industry-tile:hover { transform: translateY(-4px); background: var(--color-black); color: var(--color-white); }
.industry-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.platform-note { margin-top: var(--space-md); max-width: 66ch; }

/* Team / industries section – dark variant -------------------------------- */
.team.on-dark { background: var(--color-black); }
.team.on-dark .eyebrow { color: var(--color-muted-light); }
.team.on-dark .team-head h2 { color: var(--color-white); }
.team.on-dark .industry-tile {
  background: var(--color-dark-card);
  border-color: var(--color-border-light);
  color: var(--color-white);
}
.team.on-dark .industry-tile:hover { background: var(--color-white); color: var(--color-black); }

/* Team – role cards (no fabricated individual identities) -------------------- */
.team-role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.team-role-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.team-role-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12,11,9,0.1); }
.team-role-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.team-role-card h3 { margin-bottom: 8px; }
.team-role-card p { font-size: 0.88rem; }

/* CTA band (no image) ---------------------------------------------------------*/
.cta-band { background: var(--color-black); padding-block: var(--space-xxl); }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--color-white); max-width: 18ch; margin-bottom: var(--space-sm); }
.cta-band p { color: var(--color-muted-light); max-width: 46ch; }
.cta-band-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; flex-shrink: 0; }
.cta-band.on-light { background: var(--color-cream); }
.cta-band.on-light h2 { color: var(--color-text); }
.cta-band.on-light p { color: var(--color-muted); }

/* Testimonial sample badge ----------------------------------------------------*/
.testi-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  margin-bottom: var(--space-md);
}
.testi-note { font-size: 0.85rem; margin-bottom: var(--space-lg); max-width: 64ch; }

/* Contact page ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
}
.contact-info-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  height: fit-content;
}
.contact-info-card h3 { margin-bottom: var(--space-md); }
.contact-detail { display: flex; gap: 12px; margin-bottom: var(--space-md); align-items: flex-start; }
.contact-detail svg { flex-shrink: 0; margin-top: 3px; }
.contact-detail strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-size: 0.9rem; color: var(--color-muted); }
.contact-detail a:hover { color: var(--color-text); text-decoration: underline; }

.map-embed {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-card-border);
  aspect-ratio: 4 / 3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link { display: block; margin-top: var(--space-sm); font-size: 0.82rem; text-decoration: underline; text-underline-offset: 3px; }

.contact-form-card {
  background: var(--color-light);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 44px);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-field { margin-bottom: var(--space-sm); }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field span.wpcf7-spinner {
    position: absolute;
    right: 0;
    margin: 0;
    padding: 0;
}
.form-field.form-field-sumit input.send__message {
    background: #0c0b09;
    color: #FFF;
    cursor: pointer;
}
.form-field.form-field-sumit {
    margin: 0;
}
span.wpcf7-not-valid-tip {
    font-size: 12px;
    line-height: normal;
    padding-left: 5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: clamp(10px, 1.1vw, 14px) clamp(14px, 1.4vw, 18px);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field textarea { resize: vertical; height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(12,11,9,0.08);
}
.form-note { font-size: 0.78rem; margin-top: var(--space-sm); }
.form-status { font-size: 0.85rem; margin-top: var(--space-sm); min-height: 1.2em; }
.form-status.is-success { color: #3f7a4d; }

/* Legal pages (privacy / terms) --------------------------------------------- */
.legal-hero { padding-block: var(--space-md) var(--space-md); background: var(--color-cream); }
.legal-hero p { font-size: 0.85rem; }
.legal-section { padding-block: var(--space-lg); background: var(--color-cream); }
.legal-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: clamp(90px, 12vw, 120px);
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.legal-toc h4 { margin-bottom: var(--space-sm); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.legal-toc ol { display: flex; flex-direction: column; gap: 8px; counter-reset: toc; }
.legal-toc li { font-size: 0.84rem; }
.legal-toc a { color: var(--color-muted); }
.legal-toc a:hover { color: var(--color-text); text-decoration: underline; }

.legal-content { max-width: 74ch; }
.legal-content h2 {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  scroll-margin-top: 100px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: var(--space-sm); }
.legal-content ul { display: flex; flex-direction: column; gap: 8px; margin: var(--space-sm) 0 var(--space-md); }
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--color-muted);
  padding-left: 18px;
  position: relative;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-muted);
}
.legal-content .legal-note {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 0.88rem;
  margin-top: var(--space-md);
}

/* Blog article page --------------------------------------------------------- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--color-muted-light);
  font-size: 0.85rem;
}
.article-meta .dot { opacity: 0.5; }

.article-body-section { padding-block: var(--space-xxl); background: var(--color-cream); }
.article-content { max-width: 74ch; margin-inline: auto; }

.article-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-block: var(--space-lg);
}
.article-figure img { width: 100%; height: 100%; object-fit: cover; }

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.article-author strong { display: block; font-size: 0.92rem; }
.article-author span { font-size: 0.8rem; color: var(--color-muted); }

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.article-share .label { font-size: 0.82rem; font-weight: 600; margin-right: 4px; }
.article-share a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.article-share a:hover { background: var(--color-black); color: var(--color-white); transform: translateY(-2px); }

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: var(--space-lg);
}
.article-back svg { transition: transform 0.3s var(--ease); }
.article-back:hover svg { transform: translateX(-4px); }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-footer { background: var(--color-black); color: var(--color-muted-light); padding-top: var(--space-xxl); }
.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}
.footer-brand p { color: var(--color-muted-light); max-width: 42ch; margin-block: var(--space-md); font-size: 0.92rem; }
.logo-footer .logo-text { color: var(--color-white); }
.logo-footer .logo-text em { color: var(--color-muted-light); }
.logo-footer .logo-mark { background: var(--color-white); color: var(--color-black); }

.footer-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-dark-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  max-width: 360px;
}
.footer-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--color-white);
  padding-block: 10px;
  font-size: 14px;
}
.footer-form input::placeholder { color: rgba(250,247,240,0.5); }
.footer-form input:focus { outline: none; }
.footer-form button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.footer-form button:hover { transform: rotate(45deg); background: var(--color-cream); }
.footer-form-note { min-height: 1.2em; font-size: 0.8rem; margin-top: 8px; color: #a9d8b4; }

.footer-social { display: flex; gap: 10px; margin-top: var(--space-md); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a svg {
    width: 15px;
    height: 15px;
}
.footer-social a:hover { background: var(--color-white); color: var(--color-black); transform: translateY(-3px); }
.footer-social a:hover svg {
    filter: invert(1);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.footer-col h4 { color: var(--color-white); font-size: 0.95rem; margin-bottom: var(--space-md); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 0.88rem; color: var(--color-muted-light); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a:hover { color: var(--color-white); }

/* Scroll to top ------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background-color 0.3s var(--ease);
  z-index: 80;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: #2a2822; }

/* ==========================================================================
   19. SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.form-field p br {
    display: none;
}

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .mobile-nav ul a {
    color: #FFF !important;
    font-size: 19px;
}
  .main-nav, .header-cta { display: none; }
  .hamburger { display: inline-flex; }

  .about-grid { grid-template-columns: 1fr; gap: 10px;}
  .about-cards { grid-template-columns: 1fr; }

  .stats-head { flex-direction: column; align-items: flex-start; }
  .stats-cta { align-self: flex-start; }

  .showcase { grid-template-columns: 1fr; }
  .showcase-media { min-height: 320px; }

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

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

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

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

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .breadcrumb-nav { display: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .team-role-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; margin-bottom: var(--space-lg); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .trust-panel { grid-template-columns: repeat(2, 1fr); }
  .testi-track { grid-auto-columns: minmax(78vw, 1fr); }
  .footer-bottom { justify-content: flex-start; }

  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .team-role-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn { width: 100%; }

:root {
  --space-xxl: 40px;
}  

.hero-sub {
    max-width: 100%;
}
.trust-badge {
    aspect-ratio: unset;
}
.mobile-nav {
  padding-right: 20px;
  padding-left: 20px;
}
.mobile-nav ul {
    gap: 16px;
}
.mobile-nav ul a {
    color: #FFF !important;
}
.mobile-nav a.btn.btn-light.mobile-cta {
    width: 100%;
}

}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   21. ACCESSIBILITY
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
