/* ---------------------------------------------
   The Audit Company — stylesheet
   Light, bold, rounded — lime + teal + charcoal
--------------------------------------------- */

:root {
  --bg: #f4f3ee;
  --bg-panel: #eae9e2;
  --bg-panel-2: #e3e2da;
  --ink: #1c1c1a;
  --charcoal: #232326;
  --muted: #5d5d57;
  --paper: #ffffff;
  --line: #dedcd2;

  --lime: #c8e21c;
  --lime-600: #b2ca10;
  --lime-700: #97ac0c;
  --teal: #2c6b64;
  --teal-deep: #1e4a45;
  --teal-ghost: rgba(44, 107, 100, 0.12);

  --font-head: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1200px;
  --radius: 16px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --shadow-sm: 0 2px 12px rgba(28, 28, 26, 0.05);
  --shadow-md: 0 22px 50px rgba(28, 28, 26, 0.10);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--lime);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: "";
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .25s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }
.btn.no-arrow::after { display: none; }

.btn-primary {
  background: var(--lime);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--lime-600); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(151, 172, 12, 0.35); }

.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(28,28,26,0.28); }

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(28, 28, 26, 0.35);
}
.btn-outline-dark:hover { border-color: var(--charcoal); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.btn-small { padding: 11px 22px; font-size: 0.86rem; }
.btn-small::after { width: 14px; height: 14px; }

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--lime);
  z-index: 1000;
  transition: width .1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: padding .35s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(35, 35, 38, 0.86);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 16px 14px 24px;
  box-shadow: 0 10px 30px rgba(28, 28, 26, 0.14);
  transition: background .35s var(--ease);
}
.site-header.scrolled .header-inner {
  background: rgba(28, 28, 30, 0.95);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
}
.logo-mark { color: var(--lime); display: inline-flex; }
.logo-text { max-width: 130px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 3px;
  border-radius: 3px;
  background: var(--lime);
  transition: width .25s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.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); }

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 14px;
}
.hero-slider {
  position: absolute;
  inset: 14px;
  z-index: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(20, 24, 22, 0.55) 0%, rgba(20, 24, 22, 0.35) 40%, rgba(15, 18, 17, 0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 26px 46px;
  max-width: 1000px;
}
.hero .eyebrow { color: var(--lime); }
.hero .eyebrow::before { background: var(--lime); }
.hero h1 { color: #fff; letter-spacing: -0.02em; }
.hero-lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 34px;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.hero-highlights span { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); display: inline-block; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero arrows */
.hero-arrows {
  position: absolute;
  top: 50%;
  left: 14px; right: 14px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 22px;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: auto;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.hero-arrow:hover { background: var(--lime); border-color: var(--lime); color: var(--charcoal); transform: scale(1.06); }

/* Hero caption */
.hero-slide-caption {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-slide-index {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.hero-slide-index #heroSlideNum { color: var(--lime); }
.hero-content .hero-slide-text { transition: opacity .35s var(--ease); margin-bottom: 4px; }
.hero-content .hero-slide-text h1 { margin-bottom: 16px; }
.hero-content .hero-slide-text p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0;
}
.hero-slide-dots { display: flex; gap: 10px; }
.dot-btn {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.dot-btn.is-active { background: var(--lime); transform: scale(1.4); }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--lime);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background: var(--bg);
}
.stats-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(6rem, 20vw, 18rem);
  color: var(--teal-ghost);
  white-space: nowrap;
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 0;
  text-transform: lowercase;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-number, .stat-number-static {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.stats-note {
  text-align: center;
  margin: 54px auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Section shell ---------- */
.section { padding: 104px 0; position: relative; }
.section-alt { background: var(--bg); }
.section-head { max-width: 680px; margin: 0 0 56px; }
.section-lead { color: var(--muted); font-size: 1.1rem; }

/* Dark (teal) accent section */
.section-dark {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--lime); }
.section-dark .eyebrow::before { background: var(--lime); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.72); }

/* ---------- What we cover ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.coverage-item {
  padding: 34px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.coverage-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.coverage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--lime);
  color: var(--charcoal);
  margin-bottom: 18px;
}
.coverage-item h3 { font-size: 1.02rem; margin: 0; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--bg-panel);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 20px;
}
.why-card h3 { margin: 0 0 10px; }
.why-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- How it works (steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  padding: 34px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-index {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.step h3 { margin: 0 0 8px; }
.step p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }

/* ---------- Upside (teal rounded panel) ---------- */
.upside { padding: 40px 0 104px; }
.upside-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  background: var(--teal-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.upside-copy { padding: 60px 28px 60px 56px; align-self: center; }
.upside-list { display: flex; flex-direction: column; gap: 22px; margin-top: 12px; }
.upside-list li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 22px;
  border-left: 3px solid var(--lime);
}
.upside-list strong { font-family: var(--font-head); color: #fff; font-size: 1.1rem; font-weight: 700; }
.upside-list span { color: rgba(255, 255, 255, 0.72); font-size: 0.96rem; }
.upside-media { position: relative; min-height: 340px; }
.upside-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-media { aspect-ratio: 4/3; overflow: hidden; margin: 10px 10px 0; border-radius: 22px; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.08); }
.service-body { padding: 24px 26px 30px; }
.service-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service-body p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- How we work timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.timeline li {
  position: relative;
  padding-top: 26px;
  border-top: 4px solid var(--lime);
}
.timeline-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}
.timeline p { color: var(--ink); font-weight: 600; margin-bottom: 0; font-family: var(--font-head); }

/* ---------- Industries ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  isolation: isolate;
}
.industry-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.industry-tile:hover img { transform: scale(1.1); }
.industry-tile-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(20, 24, 22, 0.94) 8%, rgba(20, 24, 22, 0.3) 65%, transparent 100%);
  color: #fff;
}
.industry-tile-copy h3 { color: #fff; font-size: 1.12rem; margin-bottom: 5px; }
.industry-tile-copy p { color: rgba(255, 255, 255, 0.82); font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Support ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  padding: 40px 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.support-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.support-card h3 { margin: 0 0 10px; }
.support-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- About ---------- */
.about { position: relative; overflow: hidden; }
.about::before {
  content: "our approach";
  position: absolute;
  top: 40px; right: -40px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 11rem);
  color: var(--teal-ghost);
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 0;
  text-transform: lowercase;
}
.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin: 24px 0 36px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: var(--font-head);
}
.check-list li::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 9px;
  background: var(--lime);
  flex-shrink: 0;
  -webkit-mask: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23232326' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 62%;
}
.about-sub {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 8px;
}
.about-sub h3 { margin-bottom: 4px; }
.apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 22px;
}
.apart-grid h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.apart-grid p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- CTA (lime panel) ---------- */
.cta { padding: 40px 0 104px; }
.cta-panel {
  position: relative;
  background: var(--lime);
  border-radius: var(--radius-xl);
  padding: 84px 64px;
  overflow: hidden;
}
.cta-ghost {
  position: absolute;
  right: -20px; bottom: -30px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 13rem);
  color: rgba(35, 35, 38, 0.08);
  letter-spacing: -0.03em;
  pointer-events: none;
  text-transform: lowercase;
}
.cta-content { position: relative; z-index: 1; max-width: 720px; }
.cta .eyebrow { color: var(--teal-deep); }
.cta .eyebrow::before { background: var(--charcoal); }
.cta h2 { color: var(--charcoal); }
.cta-lead { color: rgba(35, 35, 38, 0.78); font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.62);
  padding: 76px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 260px; }
.footer-nav { display: flex; gap: 64px; }
.footer-nav h4 { color: #fff; font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-nav a { display: block; margin-bottom: 11px; font-size: 0.94rem; transition: color .2s; }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom { padding: 26px 28px; font-size: 0.84rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease);
  z-index: 800;
}
.back-to-top:hover { background: var(--lime-600); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps, .timeline, .support-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-media img { position: static; }
  .upside-layout { grid-template-columns: 1fr; }
  .upside-media { order: -1; min-height: 280px; }
  .upside-copy { padding: 44px 40px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 34px 40px;
    gap: 26px;
    margin: 0;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 899;
  }
  .main-nav.open { transform: translateX(0); box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35); }
  .nav-toggle { display: flex; }
  .header-actions .btn-small { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .industries-grid { grid-template-columns: 1fr; }
  .why-grid, .steps, .timeline, .support-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .apart-grid { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-nav { gap: 40px; }

  .hero-arrows { display: none; }
  .hero-content { padding-top: 120px; }
  .hero-slide-caption { gap: 16px; }
  .hero-slide-text p { max-width: none; }
  .cta-panel { padding: 56px 30px; }
}

@media (max-width: 480px) {
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.6rem; }
  .hero-slide-caption { flex-direction: column; align-items: flex-start; }
  .logo-text { font-size: 0.9rem; }
}
