/* ════════════════════════════════════════════════════════════
   Afrik Interim — Procurement & Supply Solutions
   Editorial / Cinematic Premium 2026
   Brand: Black (#000000) · Orange (#E8732A) · White (#FFFFFF)
════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --black: #000000;
  --dark: #000000;
  --dark-2: #000000;
  --dark-3: #000000;
  --accent: #E8732A;
  --accent-dark: #CC6422;
  --accent-glow: rgba(232, 115, 42, 0.15);
  --teal: #000000;
  --teal-dark: #000000;
  --teal-light: #E8732A;
  --grey: #64666C;
  --grey-light: #999999;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);

  --bg-primary: #ffffff;
  --bg-cream: #f5f5f5;
  --bg-grey: #e8e8e8;
  --bg-dark: #000000;
  --text-primary: #000000;
  --text-body: #555555;
  --text-light: rgba(255, 255, 255, 0.7);

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition: 0.4s var(--ease);
  --radius: 6px;
  --radius-lg: 12px;
  --header-height: 80px;
  --wrapper-width: 1320px;
}


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

html {
  scroll-behavior: smooth;
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal-light);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--teal) #e0e0e0;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.wrapper {
  max-width: var(--wrapper-width);
  margin: 0 auto;
  padding: 0 60px;
}


/* ── LOADER ──────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--teal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease);
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.1em;
  color: #ffffff;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo span {
  color: var(--accent);
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  animation: loaderBar 1.4s var(--ease) forwards;
}

@keyframes loaderBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* ── HEADER ──────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

#site-header.scrolled .nav-link {
  color: var(--text-body);
}

#site-header.scrolled .nav-link:hover {
  color: var(--text-primary);
}

#site-header.scrolled .nav-link.active {
  color: var(--text-primary);
}

#site-header.scrolled .nav-toggle span {
  background: var(--text-primary);
}

#site-header.scrolled .lang-switcher {
  border-color: rgba(0, 0, 0, 0.12);
}

#site-header.scrolled .lang-btn {
  color: var(--text-body);
}

#site-header.scrolled .lang-btn.active {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

#site-header.scrolled .auth-btn--login {
  color: var(--text-body);
}

#site-header.scrolled .auth-btn--login:hover {
  color: var(--text-primary);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

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

.header-logo img {
  height: 42px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #ffffff;
}

.nav-cta {
  background: var(--accent);
  color: #ffffff !important;
  padding: 10px 22px;
  margin-left: 4px;
  transition: background var(--transition), transform var(--transition);
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Auth Buttons */
.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.auth-btn {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.auth-btn--login {
  color: rgba(255, 255, 255, 0.7);
  background: none;
}

.auth-btn--login:hover {
  color: #ffffff;
}

.auth-btn--signup {
  color: #ffffff;
  background: var(--accent);
}

.auth-btn--signup:hover {
  background: var(--accent-dark);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 3px;
}

.lang-btn {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.lang-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.8);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s 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);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 48px 32px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mob-link {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color var(--transition);
}

.mob-link:last-child {
  border-bottom: none;
}

.mob-link:hover {
  color: var(--accent);
}

.mobile-auth {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-auth .auth-btn--login {
  color: var(--text-body);
}

.mobile-auth .auth-btn--signup {
  color: #ffffff;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  padding-top: 12px;
}

.mobile-lang .lang-btn {
  color: var(--text-body);
}

.mobile-lang .lang-btn.active {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}


/* ══════════════════════════════════════════════════════════
   AUTH MODAL
══════════════════════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: authFadeIn 0.3s ease;
}

.auth-overlay.open {
  display: flex;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.auth-modal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 440px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: authSlideUp 0.4s var(--ease-out);
  position: relative;
}

@keyframes authSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-modal-close,
.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.auth-modal-close:hover,
.auth-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.auth-modal-header {
  padding: 40px 40px 0;
  text-align: center;
}

.auth-modal-header h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.auth-modal-header p {
  font-size: 14px;
  color: var(--grey);
}

.auth-tabs {
  display: flex;
  margin: 24px 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.auth-tab {
  flex: 1;
  padding: 12px 0;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.auth-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.auth-tab:hover:not(.active) {
  color: var(--text-primary);
}

.auth-panel {
  display: none;
  padding: 28px 40px 36px;
}

.auth-panel.active {
  display: block;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-field label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.auth-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.auth-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.12);
}

.auth-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--teal);
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.auth-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  font-size: 12px;
  color: var(--grey-light);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.auth-social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-social-btn:hover {
  border-color: var(--accent);
  background: rgba(232, 115, 42, 0.04);
}

.auth-social-btn i {
  font-size: 16px;
}


/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 115, 42, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-dark {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 115, 42, 0.05);
}

.btn-teal {
  background: var(--dark);
  color: #ffffff;
}

.btn-teal:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/* ── SECTION HELPERS ─────────────────────────────────────── */
.section {
  padding: 140px 0;
}

.section--dark {
  background: var(--teal);
  color: #ffffff;
}

.section--cream {
  background: var(--bg-cream);
}

.section--grey {
  background: var(--bg-grey);
}

.section--teal {
  background: var(--teal);
  color: #ffffff;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--accent);
}

.section--dark .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .section-label::before {
  background: rgba(255, 255, 255, 0.35);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 0.95;
  margin-bottom: 24px;
}

.section--dark .section-heading {
  color: #ffffff;
}

.section-heading span {
  color: var(--accent);
}

.section--dark .section-heading span {
  color: var(--accent);
}

.section-desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 560px;
}

.section--dark .section-desc {
  color: var(--text-light);
}


/* ══════════════════════════════════════════════════════════
   HERO — Full-width cinematic
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  height: 100lvh;
  background: var(--teal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out) 0.6s, transform 0.7s var(--ease-out) 0.6s;
}

.hero-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-expo) 0.8s, transform 1s var(--ease-expo) 0.8s;
}

.hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title .accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease) 1.2s, transform 0.7s var(--ease) 1.2s;
}

.hero-desc.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease) 1.4s, transform 0.7s var(--ease) 1.4s;
}

.hero-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats strip at bottom */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}


/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee {
  background: var(--teal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-item span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--bg-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-big-number {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 160px;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.about-feature:hover {
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(232, 115, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature-text {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════
   VIDEO SHOWCASE
══════════════════════════════════════════════════════════ */
.video-showcase {
  position: relative;
  background: var(--teal);
  padding: 0;
  overflow: hidden;
}

.video-showcase-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  aspect-ratio: 16/7;
  min-height: 340px;
  overflow: hidden;
}

.video-showcase-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.video-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: videoPulse 2.5s ease-in-out infinite;
}

.video-play-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

@keyframes videoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.video-play-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.video-caption {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 1;
}

.video-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.video-caption p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}


/* ══════════════════════════════════════════════════════════
   SERVICES — Editorial list
══════════════════════════════════════════════════════════ */
.services-list {
  margin-top: 60px;
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr 44px;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.5s var(--ease);
  cursor: default;
}

.service-row:first-child {
  border-top: 1px solid var(--border-light);
}

.service-row:hover {
  padding-left: 20px;
  background: var(--bg-cream);
}

.service-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: rgba(0, 0, 0, 0.12);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.service-row:hover .service-num {
  color: var(--accent);
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  transition: color var(--transition);
}

.service-row:hover .service-title {
  color: var(--accent);
}

.service-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  transition: all var(--transition);
}

.service-row:hover .service-icon {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
}


/* ══════════════════════════════════════════════════════════
   TIMELINE — Side-by-side pinned header + horizontal scroll
══════════════════════════════════════════════════════════ */
.timeline-section {
  background: var(--bg-cream);
  overflow: hidden;
}

.timeline-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 460px;
}

.timeline-header {
  padding: 80px 48px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.timeline-container {
  position: relative;
  overflow: hidden;
}

.timeline-track {
  display: flex;
  gap: 0;
  will-change: transform;
  height: 100%;
}

.timeline-card {
  min-width: 380px;
  flex-shrink: 0;
  padding: 60px 48px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 48px;
  width: 3px;
  height: 40px;
  background: var(--accent);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
  margin-top: 32px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.timeline-card:hover .timeline-year {
  opacity: 1;
}

.timeline-milestone {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.timeline-detail {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 300px;
}

.timeline-progress {
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
}

.timeline-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--dark), var(--accent));
  width: 0%;
  transition: width 0.1s linear;
}


/* ══════════════════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════════════════ */
.projects-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.projects-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 20px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.project-card:first-child {
  grid-row: 1 / 3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(232, 115, 42, 0.9) 0%, rgba(232, 115, 42, 0.2) 60%, transparent 100%);
}

.project-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.project-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4px;
}

.project-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}


/* ══════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.88));
}

.cta-banner .wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}


/* ══════════════════════════════════════════════════════════
   CONTACT — Premium teal section
══════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  padding: 140px 0;
  background: var(--teal);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 115, 42, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(232, 115, 42, 0.18) 0%, transparent 40%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-badge::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--accent);
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.contact-headline span {
  color: var(--accent);
}

.contact-intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  transition: background var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-card div {
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.contact-card a,
.contact-card span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-social-row {
  display: flex;
  gap: 10px;
}

.contact-social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: all var(--transition);
}

.contact-social-row a:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
}

.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.contact-form-header h4 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-form-header p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 32px;
}

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

.contact-form-card .field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form-card .field-group label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
}

.contact-form-card .field-group input,
.contact-form-card .field-group select,
.contact-form-card .field-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.contact-form-card .field-group input::placeholder,
.contact-form-card .field-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.contact-form-card .field-group select option {
  background: #ffffff;
  color: var(--text-primary);
}

.contact-form-card .field-group input:focus,
.contact-form-card .field-group select:focus,
.contact-form-card .field-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.15);
}

.contact-form-card .field-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  justify-content: center;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.form-msg {
  margin-top: 16px;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-msg.error {
  display: block;
  background: rgba(232, 115, 42, 0.1);
  color: var(--accent);
  border: 1px solid rgba(232, 115, 42, 0.2);
}


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */

/* CTA strip */
.footer-cta {
  background: var(--teal);
  padding: 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.footer-cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer top — brand + newsletter */
.footer-main {
  background: var(--bg-cream);
  padding: 60px 0 48px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 300px;
}

.footer-newsletter-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 12px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 14px 18px;
  width: 280px;
  outline: none;
  transition: border-color var(--transition);
}

.footer-newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.footer-newsletter-input:focus {
  border-color: var(--accent);
}

.footer-newsletter-btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition);
}

.footer-newsletter-btn:hover {
  background: var(--accent-dark);
}

.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
}

/* Footer grid columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 48px;
}

.footer-col h5 {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col-icon {
  width: 16px;
  text-align: center;
  margin-right: 6px;
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
}

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

.footer-cert-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 115, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}

.footer-cert span {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 0;
}

/* Footer bottom */
.footer-bottom {
  background: var(--teal);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--accent);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}


/* ══════════════════════════════════════════════════════════
   CHATBOT
══════════════════════════════════════════════════════════ */
.chatbot-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}

.chatbot-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.chatbot-trigger .close-icon {
  display: none;
}

.chatbot-trigger.active .chat-icon {
  display: none;
}

.chatbot-trigger.active .close-icon {
  display: block;
}

.chatbot-popup {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 989;
  width: 380px;
  max-height: 520px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideUp 0.35s var(--ease-out);
}

.chatbot-popup.open {
  display: flex;
}

@keyframes chatSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-header {
  background: var(--teal);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.chatbot-header-info h5 {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 2px;
}

.chatbot-header-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.chatbot-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chatbot-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
}

.chatbot-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.chat-message.bot {
  background: var(--bg-cream);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background: var(--teal);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  outline: none;
  transition: border-color var(--transition);
}

.chatbot-input:focus {
  border-color: var(--accent);
}

.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.chatbot-send:hover {
  background: var(--teal-dark);
}


/* ── CURSOR FOLLOWER ─────────────────────────────────────── */
.cursor-follower {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(232, 115, 42, 0.35);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: none;
}

body.cursor-enabled .cursor-follower {
  display: block;
}

.cursor-follower.hover {
  width: 44px;
  height: 44px;
  border-color: var(--accent);
  background: rgba(232, 115, 42, 0.08);
}


/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.anim-fade-up.in-view,
.anim-fade-left.in-view,
.anim-fade-right.in-view {
  opacity: 1;
  transform: translate(0);
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

.anim-delay-5 {
  transition-delay: 0.5s;
}

.anim-delay-6 {
  transition-delay: 0.6s;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-list .service-row {
    grid-template-columns: 50px 1fr 40px;
  }

  .service-desc {
    display: none;
  }

  .projects-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
  }

  .project-card:first-child {
    grid-row: auto;
  }

  .timeline-inner {
    grid-template-columns: 1fr;
  }

  .timeline-header {
    padding: 60px 60px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .timeline-card {
    min-width: 340px;
  }

  .header-auth {
    display: none;
  }
}

@media (max-width: 900px) {
  .wrapper {
    padding: 0 32px;
  }

  .header-inner {
    padding: 0 32px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .header-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-img-float {
    right: 20px;
    bottom: -20px;
    width: 160px;
    height: 130px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-newsletter-input {
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .projects-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .projects-mosaic .project-card {
    aspect-ratio: 16/9;
  }

  .timeline-card {
    min-width: 300px;
    padding: 48px 32px;
  }

  .timeline-header {
    padding: 48px 32px 32px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 24px;
  }

  .about-img-main img {
    height: 300px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .mobile-nav {
    padding: 24px;
  }

  .section {
    padding: 80px 0;
  }

  /* Hero — let it grow with content */
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    padding: 120px 0 60px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: clamp(40px, 9vw, 64px);
    line-height: 1;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-scroll {
    display: none;
  }

  /* Global paragraph line-height on mobile — override all specific selectors */
  p,
  .about-text p,
  .section-desc,
  .hero-desc,
  .timeline-detail,
  .cta-text,
  .faq-answer-inner,
  .contact-intro,
  .footer-tagline,
  .footer-cta-text p,
  .service-desc,
  .video-caption p,
  .chat-message {
    line-height: 1.4;
  }

  .loader-logo {
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  .video-showcase-inner {
    aspect-ratio: unset;
    min-height: 480px;
  }

  .video-showcase-overlay {
    gap: 16px;
    padding: 24px;
  }

  .video-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .video-caption h3 {
    font-size: 20px;
  }

  .video-caption p {
    font-size: 12px;
    margin-top: 4px;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding: 20px 0;
  }

  .service-num {
    display: none;
  }

  .service-icon {
    order: 0;
    flex-shrink: 0;
  }

  .service-title {
    order: 1;
    flex: 1;
    min-width: 0;
    font-size: 22px;
    line-height: 1.1;
  }

  .service-desc {
    order: 2;
    display: block;
    flex-basis: 100%;
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-form-card {
    padding: 28px;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .chatbot-popup {
    width: calc(100% - 32px);
    right: 16px;
    bottom: 96px;
  }

  .cursor-follower {
    display: none !important;
  }

  .timeline-header {
    padding: 40px 24px 24px;
  }

  .about-big-number {
    font-size: 100px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .projects-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .projects-header-row .btn-dark {
    align-self: flex-start;
    font-size: 13px;
    padding: 10px 18px;
  }

  .project-name {
    font-size: 20px;
  }

  .auth-modal {
    margin: 16px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .about-img-float {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    min-width: 260px;
  }
}

/* Lenis (Used With Locomotive Scroll) */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════════
   PRODUCTS — full-bleed banner + visual card grid
══════════════════════════════════════════════════════════ */
.products-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.products-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 18, 22, 0.85) 0%,
    rgba(15, 18, 22, 0.65) 50%,
    rgba(15, 18, 22, 0.45) 100%
  );
  z-index: 1;
}

.products-hero .wrapper {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.products-hero-content {
  max-width: 720px;
}

.products-hero-eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}

.products-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 20px;
}

.products-hero-title span {
  color: var(--accent);
}

.products-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 580px;
}

#products-list {
  padding-top: 120px;
  padding-bottom: 140px;
}

.product-category {
  margin-bottom: 110px;
}

.product-category:last-child {
  margin-bottom: 0;
}

.product-category-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-category-num {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}

.product-category-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #111;
  margin: 0 0 8px 0;
}

.product-category-intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  max-width: 680px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 20px -10px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -18px rgba(0, 0, 0, 0.22);
}

.product-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.product-card-body {
  padding: 28px 28px 32px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card:hover .product-card-body {
  border-top-color: var(--accent);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 10px 0;
  color: #111;
}

.product-card-tag {
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.58);
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 36px;
  }
}

@media (max-width: 1024px) {
  #products-list {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }

  .products-hero {
    min-height: 380px;
  }

  .products-hero .wrapper {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (max-width: 640px) {
  #products-list {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .products-hero {
    min-height: 320px;
  }

  .products-hero .wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .product-card-body {
    padding: 24px 24px 28px;
  }
}


/* ══════════════════════════════════════════════════════════
   PRODUCT MODAL
══════════════════════════════════════════════════════════ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 22, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFade 0.25s ease;
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
  animation: modalRise 0.3s var(--ease);
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}

.product-modal-close:hover {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(90deg);
}

.product-modal-media {
  position: relative;
  background: #f0f0f0;
  min-height: 360px;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-content {
  padding: 48px 44px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.product-modal-tag {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.product-modal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #111;
  margin: 0 0 18px 0;
}

.product-modal-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 28px 0;
}

.product-modal-list-heading {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 14px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.product-modal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.82);
  margin-bottom: 10px;
}

.product-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--accent);
}

.product-modal-cta {
  align-self: flex-start;
  margin-top: auto;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 880px) {
  .product-modal-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .product-modal-media {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .product-modal-content {
    padding: 36px 28px 32px;
    overflow: visible;
  }
}