
/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:       #0D0D0D;
  --s1:       #141414;
  --s2:       #1A1A1A;
  --s3:       #242424;
  --border:   #2A2A2A;
  --muted:    #666;
  --white:    #FFFFFF;
  --gold:     #F5A623;
  --gold-dk:  #C8841A;
  --accent:   #F5A623;
  --accent-dk: #C8841A;
  --gold-dk:  #C8841A;

  --f-head: 'Bebas Neue', sans-serif;
  --f-body: 'Barlow', sans-serif;
}

/* ─── BASE ───────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }

/* ─── LAYOUT ─────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; border-bottom: 1px solid var(--border); }
.section--dark { background: var(--bg); }
.section--raised { background: var(--s1); }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--f-head);
  line-height: 0.95;
  text-transform: uppercase;
}

.h1 { font-size: clamp(72px, 10vw, 140px); }
.h2 { font-size: clamp(48px, 6vw, 88px); }
.h3 { font-size: clamp(32px, 4vw, 56px); }
.h4 { font-family: var(--f-head); font-size: 28px; text-transform: uppercase; line-height: 1; }

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

p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 56ch; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn svg { flex-shrink: 0; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav__logo-text { line-height: 1; }
.nav__logo-name {
  font-family: var(--f-head);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
}
.nav__logo-sub {
  font-family: var(--f-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold); }

.nav__cta { flex-shrink: 0; }

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

/* Mobile drawer — fullscreen overlay */
.nav__drawer {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--bg);
  padding: 100px 40px 60px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.35s ease;
}
.nav__drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.nav__drawer a {
  font-family: var(--f-head);
  font-size: clamp(48px, 10vw, 72px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
  display: block;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav__drawer a:first-child { border-top: 1px solid var(--border); }
.nav__drawer a:hover { color: var(--gold); transform: translateX(8px); }
.nav__drawer a.active { color: var(--gold); }
.nav__drawer .btn {
  font-family: var(--f-body);
  font-size: 13px;
  border: none;
  margin-top: 24px;
  width: fit-content;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Video placeholder — swap for <video> tag when ready */
.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
}

/* Grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Dark overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.95) 0%,
    rgba(13,13,13,0.5) 50%,
    rgba(13,13,13,0.3) 100%
  );
  z-index: 2;
}



.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--f-head);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__title .gold { display: block; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* ─── STATS BAR ──────────────────────────────────────── */
.stats {
  background: var(--s1);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--f-head);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  display: block;
}

.stats__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ─── SERVICES ICON GRID ─────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.icon-grid__item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}
.icon-grid__item:hover { background: var(--s2); }
.icon-grid__item:nth-child(3n) { border-right: none; }
.icon-grid__item:nth-child(n+4) { border-bottom: none; }

.icon-grid__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-grid__icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; }

.icon-grid__name {
  font-family: var(--f-head);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.icon-grid__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28ch;
}

/* ─── INDUSTRY TAGS ──────────────────────────────────── */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--s2);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.industry-tag:hover {
  border-color: var(--gold);
  color: var(--white);
  background: var(--s3);
}
.industry-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.step {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--s2); }

.step__num {
  font-family: var(--f-head);
  font-size: 80px;
  line-height: 1;
  color: var(--border);
  transition: color 0.2s;
  display: block;
}
.step:hover .step__num { color: var(--gold); }

.step__title {
  font-family: var(--f-head);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 16px 0 10px;
}

.step__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
}

/* ─── PACKAGES ───────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.pkg {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg:last-child { border-right: none; }

.pkg--featured {
  border: 2px solid var(--gold);
  margin: -1px;
  z-index: 1;
}

.pkg--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 14px;
  white-space: nowrap;
}

.pkg__name {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pkg__price {
  font-family: var(--f-head);
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}

.pkg__period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

.pkg__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pkg__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.pkg__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--white);
}
.pkg__features li::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}
.pkg__features li.no {
  color: var(--border);
}
.pkg__features li.no::before {
  content: '—';
  color: var(--border);
}

/* ─── RESULTS ────────────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.result {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.result:hover { background: var(--s2); }
.result:nth-child(3n) { border-right: none; }
.result:nth-child(n+4) { border-bottom: none; }

.result__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.result__num {
  font-family: var(--f-head);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  display: block;
}

.result__metric {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin: 6px 0 16px;
  display: block;
}

.result__detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.testi {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.testi:last-child { border-right: none; }

.testi__quote-mark {
  font-family: var(--f-head);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.testi__body {
  font-size: 15px;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: none;
}

.testi__name {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.testi__co {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ─── INDUSTRY PAGE GRID ─────────────────────────────── */
.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.industry-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.industry-card:nth-child(2n) { border-right: none; }
.industry-card:nth-last-child(-n+2) { border-bottom: none; }
.industry-card:hover { background: var(--s2); }

.industry-card__name {
  font-family: var(--f-head);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.industry-card:hover .industry-card__name { color: var(--gold); }

.industry-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: none;
}

.industry-card__wins {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.industry-card__wins li {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--s3);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

/* ─── ABOUT PROCESS ──────────────────────────────────── */
.process-list { display: flex; flex-direction: column; }

.process-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.process-item:last-child { border-bottom: none; }
.process-item:hover { background: var(--s2); }

.process-item__num {
  font-family: var(--f-head);
  font-size: 56px;
  color: var(--border);
  line-height: 1;
  transition: color 0.2s;
  padding-left: 24px;
}
.process-item:hover .process-item__num { color: var(--gold); }

.process-item__body {}
.process-item__title {
  font-family: var(--f-head);
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-item__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: none;
}

.process-item__time {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 5px 12px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
  margin-right: 24px;
}

/* ─── VALUES ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.value {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value:nth-child(2n) { border-right: none; }
.value:nth-child(n+3) { border-bottom: none; }

.value__bar { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.value__title {
  font-family: var(--f-head);
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.value__desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: none; }

/* ─── CONTACT FORM ───────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--s2);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--border); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-select option { background: var(--s2); }

.form-textarea { resize: vertical; min-height: 100px; }

/* ─── PAGE HEADER ────────────────────────────────────── */
.page-header {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--gold);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head--stack {
  flex-direction: column;
  align-items: flex-start;
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 0;
}

.cta-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band__title {
  font-family: var(--f-head);
  font-size: clamp(28px, 3vw, 40px);
  color: #000;
  text-transform: uppercase;
  line-height: 1;
}

.cta-band__sub {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
  max-width: none;
}

.btn-dark {
  background: #000;
  color: var(--white);
  flex-shrink: 0;
}
.btn-dark:hover { background: #1a1a1a; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.65;
  max-width: 32ch;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer__contact a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold); }

.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--muted);
  max-width: none;
}

/* ─── UTILS ──────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

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

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ─── GSAP INITIAL STATES ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal-left { opacity: 0; transform: translateX(-32px); }
.reveal-scale { opacity: 0; transform: scale(0.96); }

/* ─── PACKAGES PAGE SPECIFIC ─────────────────────────── */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.entry-grid > div {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.entry-grid > div:last-child { border-right: none; }

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

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:nth-child(2) { border-right: none; }
  .steps .step:nth-child(2),
  .steps .step:nth-child(3) { border-bottom: 1px solid var(--border); }
  .steps .step:nth-child(4) { border-right: none; border-bottom: none; }

  .packages-grid { grid-template-columns: 1fr; }
  .pkg { border-right: none; border-bottom: 1px solid var(--border); }
  .pkg:last-child { border-bottom: none; }
  .pkg--featured { margin: 0; border: 2px solid var(--gold); }

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

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .page-header { padding: 120px 0 60px; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid var(--border); }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) { border-bottom: none; }

  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-grid__item:nth-child(2n) { border-right: none; }
  .icon-grid__item:nth-last-child(-n+2) { border-bottom: none; }

  .results-grid { grid-template-columns: 1fr; }
  .result { border-right: none; }
  .result:last-child { border-bottom: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testi { border-right: none; border-bottom: 1px solid var(--border); }
  .testi:last-child { border-bottom: none; }

  .industry-detail-grid { grid-template-columns: 1fr; }
  .industry-card { border-right: none; }
  .industry-card:nth-last-child(-n+1) { border-bottom: none; }

  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; }

  .process-item { grid-template-columns: 1fr; }
  .process-item__num { padding-left: 24px; }
  .process-item__time { margin-right: 0; margin-left: 24px; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  .entry-grid { grid-template-columns: 1fr; }
  .entry-grid > div { border-right: none; border-bottom: 1px solid var(--border); }
  .entry-grid > div:last-child { border-bottom: none; }
  .included-grid { grid-template-columns: 1fr; gap: 24px; }

  .hero__scroll { display: none; }

  .hero__title { font-size: clamp(60px, 16vw, 100px); }
}
