/* ============================================================
   TRUSTIVE PATH — MASTER STYLESHEET
   ============================================================ */

/* 1. VARIABLES */
:root {
  --red: #E8192C;
  --red-dark: #C0151F;
  --red-light: #FDE8EA;
  --red-mid: #F5C2C6;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --gray-light: #F2F2F2;
  --gray: #E5E5E5;
  --gray-mid: #BDBDBD;
  --gray-text: #636363;
  --text: #1C1C1C;
  --text-light: #4A4A4A;
  --font: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
  --section-y: 100px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --ease: 0.25s ease;
  --ease-slow: 0.5s ease;
  --z-nav: 50;
  --z-drawer: 60;
}

/* 2. FONT FACE */
@font-face {
  font-family: 'Rubik';
  src: url('assets/Font/Rubik-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('assets/Font/Rubik-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('assets/Font/Rubik-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('assets/Font/Rubik-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('assets/Font/Rubik-ExtraBold.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea { font-family: var(--font); }

/* 4. TYPOGRAPHY */
.overline {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.overline--white { color: rgba(255,255,255,0.65); }
.overline--red-bg { color: rgba(255,255,255,0.7); }

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.12;
  color: var(--text);
}
.display {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-transform: uppercase;
}
.display--white { color: var(--white); }
h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-light); }
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.75; color: var(--text-light); }

/* 5. LAYOUT */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-y) 0; }
.section--gray { background: var(--off-white); }

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,25,44,0.35); }
.btn--white { background: var(--white); color: var(--red); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* 7. NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  transition: background var(--ease-slow), box-shadow var(--ease-slow);
}
.nav--transparent { background: transparent; }
.nav--scrolled { background: var(--white); box-shadow: 0 2px 24px rgba(0,0,0,0.09); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo swap */
.nav__logo-wrap { display: block; height: 64px; }
.nav__logo-wrap img { height: 100%; width: auto; display: block; }
.nav__logo--transparent { display: block; }
.nav__logo--scrolled { display: none; }
.nav--scrolled .nav__logo--transparent { display: none; }
.nav--scrolled .nav__logo--scrolled { display: block; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--ease);
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: currentColor;
  transition: width var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav--scrolled .nav__link { color: var(--text); }
.nav--scrolled .nav__link:hover { color: var(--red); }

.nav__cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-slow);
}
.nav--scrolled .nav__cta { opacity: 1; pointer-events: auto; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  color: var(--white);
}
.nav--scrolled .nav__hamburger { color: var(--text); }
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav__drawer {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: var(--z-drawer);
  flex-direction: column;
  padding: 88px 40px 48px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0s 0.35s;
}
.nav__drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0s 0s;
}

.nav__drawer-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.nav__drawer-links { display: flex; flex-direction: column; gap: 28px; flex: 1; }
.nav__drawer-link {
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color var(--ease);
}
.nav__drawer-link:hover { color: var(--red); }
.nav__drawer-cta { margin-top: 40px; }

/* 8. HOME HERO */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--text);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,25,44,0.9) 0%, rgba(160,10,20,0.78) 50%, rgba(28,28,28,0.5) 100%);
  z-index: 2;
}
.hero__main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.hero__content { max-width: 760px; color: var(--white); }
.hero__headline {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__headline em { font-style: normal; color: rgba(255,255,255,0.55); }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar */
.hero__stats-bar { position: relative; z-index: 3; background: var(--white); }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__stat {
  padding: 28px 32px;
  border-right: 1px solid var(--gray);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-number {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* 9. PAGE HERO (About / Contact) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--red);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero__headline {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.07;
  text-transform: uppercase;
  color: var(--white);
  max-width: 820px;
}

/* 10. TICKER */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
}
.ticker__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* 11. WHO WE ARE (Home) */
.wwa { padding: var(--section-y) 0; }
.wwa__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.wwa__heading { margin-bottom: 20px; }
.wwa__body { margin-bottom: 12px; }
.wwa__body + .wwa__body { margin-bottom: 32px; }
.wwa__image-col { position: relative; padding-bottom: 32px; }
.wwa__image {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.wwa__badge {
  position: absolute;
  bottom: -32px; left: -20px;
  background: var(--red);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius);
  max-width: 200px;
  box-shadow: var(--shadow-lg);
}
.wwa__badge-num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.wwa__badge-text {
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

/* 12. VIDEO SECTION */
.video-section {
  padding: var(--section-y) 0;
  background: var(--off-white);
  text-align: center;
}
.video-section__header { margin-bottom: 48px; }
.video-section__heading { margin-bottom: 16px; }
.video-section__sub { max-width: 540px; margin: 0 auto; }
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrapper video {
  width: 100%;
  display: block;
  max-height: 540px;
}

/* 13. SERVICES */
.services { padding: var(--section-y) 0; }
.services__header { margin-bottom: 56px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card__img { transform: scale(1.06); }
.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.3), transparent);
}
.service-card__icon {
  position: absolute;
  top: 14px; right: 14px;
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 50%;
  padding: 9px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card__num {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--white);
  background: var(--red);
  padding: 3px 9px;
  border-radius: 4px;
}
.service-card__body { padding: 26px 28px 28px; }
.service-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
.service-card__list { margin-bottom: 22px; }
.service-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 7px;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--ease), color var(--ease);
}
.service-card__cta:hover { gap: 13px; color: var(--red-dark); }
.service-card__cta svg { transition: transform var(--ease); }
.service-card__cta:hover svg { transform: translateX(3px); }

/* 14. STATEMENT BAND */
.statement {
  background: var(--red);
  padding: 80px 0;
}
.statement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.statement__text {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.22;
  text-transform: uppercase;
  max-width: 680px;
}
.statement__text em { font-style: normal; color: rgba(255,255,255,0.5); }

/* 15. WHY CHOOSE US */
.why { padding: var(--section-y) 0; background: var(--off-white); }
.why__header { margin-bottom: 56px; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--gray);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-mid);
}
.why__icon {
  width: 42px; height: 42px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}
.why__card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why__card-body { font-size: 0.855rem; color: var(--gray-text); line-height: 1.65; }

.why__card--wide {
  grid-column: 1 / -1;
  background: var(--red);
  border-color: transparent;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 44px;
}
.why__card--wide:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.why__card--wide .why__icon { background: rgba(255,255,255,0.18); color: var(--white); flex-shrink: 0; }
.why__card--wide .why__card-title { color: var(--white); font-size: 1.05rem; }
.why__card--wide .why__card-body { color: rgba(255,255,255,0.75); }
.why__wide-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }

/* 16. CTA SECTION */
.cta-sec { padding: var(--section-y) 0; }
.cta-sec__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cta-sec__heading { margin-bottom: 20px; }
.cta-sec__body { margin-bottom: 36px; }
.cta-sec__image {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* 17. ABOUT: WHO WE ARE */
.about-wwa { padding: var(--section-y) 0; }
.about-wwa__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-wwa__img-col { position: relative; padding-bottom: 64px; }
.about-wwa__image {
  width: 100%; height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-wwa__quote {
  position: absolute;
  bottom: 0; right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius);
  max-width: 290px;
  box-shadow: var(--shadow-lg);
}
.about-wwa__quote-text {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.about-wwa__quote-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* 18. ABOUT: CORE VALUES */
.values { padding: var(--section-y) 0; background: var(--off-white); }
.values__header { margin-bottom: 56px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-mid);
}
.value-icon {
  width: 54px; height: 54px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--red);
}
.value-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* 19. ABOUT: VISION & MISSION */
.vision-mission { background: var(--white); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.vm-panel { padding: 80px 64px; }
.vm-panel--light { background: var(--gray-light); }
.vm-panel--red { background: var(--red); }
.vm-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.vm-panel--light .vm-icon { background: var(--red-light); color: var(--red); }
.vm-panel--red .vm-icon { background: rgba(255,255,255,0.18); color: var(--white); }
.vm-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vm-panel--light .vm-label { color: var(--red); }
.vm-panel--red .vm-label { color: rgba(255,255,255,0.65); }
.vm-heading {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.vm-panel--light .vm-heading { color: var(--text); }
.vm-panel--red .vm-heading { color: var(--white); }
.vm-body { font-size: 1rem; line-height: 1.78; max-width: 420px; }
.vm-panel--light .vm-body { color: var(--text-light); }
.vm-panel--red .vm-body { color: rgba(255,255,255,0.8); }

/* 20. ABOUT: ACHIEVEMENTS */
.achievements { padding: var(--section-y) 0; background: var(--off-white); }
.achievements__header { margin-bottom: 52px; }
.achievements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.ach-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray);
}
.ach-item:last-child { border-bottom: none; }
/* 2-col grid: also remove border from the second-to-last item */
.ach-item:nth-last-child(2) { border-bottom: none; }
.ach-icon { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.ach-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* 21. CONTACT: FORM SECTION */
.contact-main { padding: var(--section-y) 0; }
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.form__heading { margin-bottom: 8px; }
.form__sub { margin-bottom: 36px; }
.form__group { margin-bottom: 22px; }
.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
}
.form__input.is-error,
.form__textarea.is-error { border-color: var(--red); }
.form__textarea { resize: vertical; min-height: 150px; }
.form__err {
  display: none;
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 5px;
}
.form__err.show { display: block; }
.form__success {
  display: none;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
}
.form__success.show { display: block; }

/* Contact aside */
.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.c-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.c-card__icon {
  width: 38px; height: 38px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.c-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.c-card__value { font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.c-card__value a { color: var(--red); transition: color var(--ease); }
.c-card__value a:hover { color: var(--red-dark); }

/* 22. CONTACT: WORK WITH US */
.work-with-us { padding: var(--section-y) 0; }
.work-with-us__header { margin-bottom: 56px; }
.wwu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wwu-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.wwu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-mid);
}
.wwu-card__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.wwu-card__title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.wwu-card__body { font-size: 0.875rem; color: var(--gray-text); line-height: 1.72; }

/* 23. GEO FOCUS */
.geo-focus { background: var(--red); padding: 64px 0; }
.geo-focus__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.geo-focus__left {}
.geo-focus__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.geo-focus__heading {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.geo-focus__pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.geo-pill {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.22);
  transition: background var(--ease);
}
.geo-pill:hover { background: rgba(255,255,255,0.24); }

/* 24. FOOTER */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 28px;
}
.footer__logo { height: 54px; width: auto; margin-bottom: 18px; }
.footer__tagline {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 0;
}
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__link { font-size: 0.875rem; color: var(--gray-text); transition: color var(--ease); }
.footer__link:hover { color: var(--red); }
.footer__ci { display: flex; flex-direction: column; gap: 12px; }
.footer__ci-item { display: flex; align-items: flex-start; gap: 10px; }
.footer__ci-icon { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.footer__ci-text { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; }
.footer__ci-text a { color: var(--gray-text); transition: color var(--ease); }
.footer__ci-text a:hover { color: var(--red); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: var(--gray-text); }
.footer__copy strong { color: var(--red); font-weight: 700; }
.footer__credit { font-size: 0.78rem; color: var(--gray-mid); }
.footer__credit a { color: var(--red); font-weight: 600; }

/* 25. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}

/* 26. RESPONSIVE */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: repeat(3, 1fr); }
  .vm-panel { padding: 60px 44px; }
}

@media (max-width: 768px) {
  :root { --section-y: 60px; }

  /* Nav */
  .nav__links, .nav__cta { display: none !important; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: flex; }

  /* Hero */
  .hero__main { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: none; border-bottom: 1px solid var(--gray); padding: 20px 24px; }
  .hero__stat:last-child { border-bottom: none; }

  /* All 2-col grids */
  .wwa__grid,
  .about-wwa__grid,
  .cta-sec__grid,
  .vm-grid,
  .achievements__grid,
  .contact-main__grid { grid-template-columns: 1fr; }

  /* Services grid */
  .services__grid { grid-template-columns: 1fr; }

  /* Why grid */
  .why__grid { grid-template-columns: 1fr 1fr; }
  .why__card--wide { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px; }

  /* Values */
  .values__grid { grid-template-columns: repeat(2, 1fr); }

  /* WWU */
  .wwu-grid { grid-template-columns: 1fr; }

  /* Statement */
  .statement__inner { flex-direction: column; gap: 28px; }

  /* Geo */
  .geo-focus__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .geo-focus__pills { justify-content: flex-start; }

  /* Images */
  .wwa__image, .cta-sec__image { height: 300px; }
  .about-wwa__image { height: 260px; }
  .about-wwa__img-col { padding-bottom: 0; }
  .about-wwa__quote { position: static; margin-top: 16px; max-width: 100%; right: auto; }

  /* Badge */
  .wwa__badge { position: static; margin-top: 16px; max-width: 100%; left: auto; bottom: auto; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 52px) 0 52px; }

  /* VM panels */
  .vm-panel { padding: 48px 24px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* CTA section image order */
  .cta-sec__grid { gap: 40px; }

  /* Achievements: single col, restore border on second-to-last */
  .ach-item:nth-last-child(2) { border-bottom: 1px solid var(--gray); }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__actions { flex-direction: column; }
  .why__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .nav__inner { padding: 0 18px; }
  .btn { padding: 13px 24px; font-size: 0.8rem; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}
