/* ===== VARIABLES — exact from index.css ===== */
:root {
  --orange: #d4521a;
  --orange-h: #c24415;
  --orange-glow: rgba(212, 82, 26, 0.25);
  --dark: #111110;
  --dark2: #1a1918;
  --dark3: #222120;
  --white: #ffffff;
  --off: #f7f5f2;
  --gray: #888580;
  --light: #efefed;
  --border: #e8e5e0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: "Open Sans", sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s 0.1s ease, visibility 0.7s 0.1s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: .4;
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  animation: loaderFill 0.9s var(--ease-out) forwards;
  width: 0;
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

/* ===== NAVBAR — exact from index.css ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--ease-smooth);
}

#navbar.scrolled .nav-main {
  box-shadow: 0 4px 40px rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}

.nav-main {
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .4s var(--ease-smooth), background .4s;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: 44px;
  flex-shrink: 0;
  transition: opacity .2s;
  width: 50px;
  height: 60px;
}

.logo:hover {
  opacity: .85;
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
  align-items: center;
  justify-content: center;
  
}

.nav-links a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color .25s var(--ease-smooth);
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
  transform-origin: left;
  border-radius: 2px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  flex-shrink: 0;
  transition: background .25s var(--ease-smooth);
  margin-right: -32px;
}

.nav-cta:hover {
  background: var(--orange-h);
}

.cta-body strong {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all .35s var(--ease-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.about-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 9, 8, .92) 0%, rgba(10, 9, 8, .65) 50%, rgba(10, 9, 8, .25) 100%);
}

.about-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Fire embers */
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.ember {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  animation: emberRise linear infinite;
  opacity: 0;
  box-shadow: 0 0 6px var(--orange);
}

.ember:nth-child(1) {
  left: 8%;
  animation-duration: 7s;
  animation-delay: 0s;
}

.ember:nth-child(2) {
  left: 18%;
  animation-duration: 9s;
  animation-delay: 1.5s;
  background: #ff9d00;
}

.ember:nth-child(3) {
  left: 32%;
  animation-duration: 6s;
  animation-delay: 3s;
}

.ember:nth-child(4) {
  left: 48%;
  animation-duration: 10s;
  animation-delay: 0.5s;
  width: 2px;
  height: 2px;
}

.ember:nth-child(5) {
  left: 60%;
  animation-duration: 8s;
  animation-delay: 2s;
  background: #ffb347;
}

.ember:nth-child(6) {
  left: 72%;
  animation-duration: 7s;
  animation-delay: 4s;
}

.ember:nth-child(7) {
  left: 82%;
  animation-duration: 9s;
  animation-delay: 1s;
  background: #ff9d00;
}

.ember:nth-child(8) {
  left: 92%;
  animation-duration: 6.5s;
  animation-delay: 2.5s;
}

@keyframes emberRise {
  0% {
    transform: translateY(110vh);
    opacity: 0;
  }

  10% {
    opacity: .9;
  }

  90% {
    opacity: .4;
  }

  100% {
    transform: translateY(-10vh) translateX(20px);
    opacity: 0;
  }
}

.about-hero-body {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 52px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
}

/* eyebrow */
.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}

.eyebrow-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.eyebrow-tag.center {
  display: block;
  text-align: center;
  padding-left: 0;
}

.eyebrow-tag.center::before {
  display: none;
}

.eyebrow-tag.light {
  color: rgba(255, 255, 255, .6);
}

.eyebrow-tag.light::before {
  background: rgba(255, 255, 255, .4);
}

.about-hero-h1 {
   font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  max-width: 780px;
}

.about-hero-h1 .line {
  display: block;
  overflow: hidden;
}

.ah-l1 {
  animation: fadeSlideUp .9s .25s var(--ease-out) both;
}

.ah-l2 {
  animation: fadeSlideUp .9s .38s var(--ease-out) both;
}

.ah-l3 {
  animation: fadeSlideUp .9s .51s var(--ease-out) both;
}

.accent-orange {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(212, 82, 26, .5);
  animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {

  0%,
  100% {
    text-shadow: 0 0 60px rgba(212, 82, 26, .5);
  }

  50% {
    text-shadow: 0 0 90px rgba(212, 82, 26, .9);
  }
}

.about-hero-p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeSlideUp .9s .65s var(--ease-out) both;
  font-weight: 300;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeSlideUp .9s .78s var(--ease-out) both;
}

/* Hero right badges */
.about-hero-right {
  flex-shrink: 0;
  animation: fadeSlideUp .9s .9s var(--ease-out) both;
}

.hero-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hbadge {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .3s, border-color .3s, transform .3s var(--ease-spring);
  min-width: 200px;
}

.hbadge:hover {
  background: rgba(212, 82, 26, .15);
  border-color: rgba(212, 82, 26, .4);
  transform: translateX(6px);
}

.hbadge i {
  font-size: 2rem;
  color: var(--orange);
}

.hb-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}

.hb-lbl {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Stat bar */
.about-hero-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  background: rgba(212, 82, 26, .92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  animation: fadeSlideUp .9s 1s var(--ease-out) both;
}

.hstat {
  text-align: center;
  flex: 1;
}

.hstat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.hstat-l {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.hstat-div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(212, 82, 26, .22);
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--orange), transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.tdot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 34px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .3s var(--ease-smooth), transform .3s var(--ease-spring), box-shadow .3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-fire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  transform: translateX(-100%);
  transition: transform .4s var(--ease-smooth);
}

.btn-fire:hover::before {
  transform: translateX(0);
}

.btn-fire:hover {
  background: var(--orange-h);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--orange-glow);
}

.btn-fire i {
  transition: transform .3s var(--ease-spring);
}

.btn-fire:hover i {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .3);
  transition: all .3s var(--ease-smooth);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, .8);
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: all .3s var(--ease-smooth);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
}

/* ===== SECTION HEADING ===== */
.section-h2 {
  font-family: var(--font-body);
  font-size:50px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.12;
  letter-spacing: -.3px;
  margin-bottom: 20px;
}

.section-h2.center {
  text-align: center;
}

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

.section-sub {
  font-size: .95rem;
  color: #666;
  line-height: 1.75;
  max-width: 450px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 32px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

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

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

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}

.fade-up {
  transform: translateY(50px);
}

.fade-left {
  transform: translateX(-48px);
}

.fade-right {
  transform: translateX(48px);
}

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

/* ===== APPROACH SECTION ===== */
.approach-section {
  padding: 100px 0 110px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 82, 26, .08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: .5;
}

.approach-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .42s var(--ease-spring), box-shadow .42s var(--ease-smooth), border-color .3s;
  cursor: default;
}

.approach-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s var(--ease-out);
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .1);
  border-color: var(--orange);
}

.approach-card:hover::before {
  transform: scaleX(1);
}

.ap-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(212, 82, 26, .06);
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
  transition: color .4s;
}

.approach-card:hover .ap-num {
  color: rgba(212, 82, 26, .14);
}

.ap-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 82, 26, .08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: background .3s, color .3s, transform .3s var(--ease-spring);
}

.approach-card:hover .ap-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}

.approach-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color .25s;
}

.approach-card:hover h3 {
  color: var(--orange);
}

.approach-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 300;
}

.ap-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  transition: border-color .3s;
}

.approach-card:hover .ap-bottom {
  border-color: rgba(212, 82, 26, .2);
}

.ap-tag {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(212, 82, 26, .08);
  border: 1px solid rgba(212, 82, 26, .2);
  padding: 4px 12px;
  border-radius: 100px;
}

.ap-arrow {
  width: 32px;
  height: 32px;
  background: var(--off);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 1px solid var(--border);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-spring);
}

.approach-card:hover .ap-arrow {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateX(5px);
}

/* ===== ABOUT COMPANY ===== */
.about-company {
  padding: 100px 0 110px;
  background: #fff;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-panel-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  flex-shrink: 0;
}

.about-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease-smooth);
}

.about-panel-img:hover img {
  transform: scale(1.04);
}

.about-panel-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px var(--orange-glow);
  transition: transform .4s var(--ease-spring);
}

.about-panel-img:hover .about-panel-badge {
  transform: scale(1.05);
}

.apb-num {
  display: block;
  font-family: var(--font-body);
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 1px;
}

.apb-lbl {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: 1px;
  opacity: .9;
  margin-top: 4px;
  line-height: 1.5;
}

.about-panel-content {
  padding-right: 8px;
}

.body-txt {
  font-size: .97rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-panel-feats {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.apf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.apf-ic {
  width: 48px;
  height: 48px;
  background: rgba(212, 82, 26, .08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease-spring);
}

.apf-item:hover .apf-ic {
  background: var(--orange);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.apf-item span {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 6px;
}

/* emg-inline from index */
.emg-inline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  transition: border-color .3s, box-shadow .3s;
}

.emg-inline:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.emg-ic {
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform .3s var(--ease-spring);
}

.emg-inline:hover .emg-ic {
  transform: rotate(-15deg) scale(1.1);
}

.emg-inline small {
  display: block;
  font-size: .72rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
  font-family: var(--font-head);
}

.emg-inline strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--dark);
}

/* ===== WHY US ===== */
.why-us-about {
  padding: 100px 0 110px;
  background: var(--off);
}

.why-head {
  text-align: center;
  margin-bottom: 64px;
}

.why-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .07);
}

.why-card {
  background: #fff;
  padding: 36px 28px 30px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-smooth), background .3s;
  cursor: default;
}

.why-card:last-child {
  border-right: none;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}

.why-card:hover {
  background: #fff9f6;
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(212, 82, 26, .12);
  z-index: 2;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  transition: transform .4s var(--ease-spring);
}

.why-icon-wrap.purple {
  background: #7c3aed;
}

.why-icon-wrap.blue {
  background: #0ea5e9;
}

.why-icon-wrap.orange {
  background: var(--orange);
}

.why-icon-wrap.red {
  background: #ef4444;
}

.why-card:hover .why-icon-wrap {
  transform: rotate(-8deg) scale(1.1);
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color .3s;
}

.why-card:hover h3 {
  color: var(--orange);
}

.why-card p {
  font-size: .86rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

.why-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  transition: background .3s;
}

.why-card:hover .why-accent-bar {
  background: var(--orange);
}

/* trust bar */
.trust-bar {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  
  text-transform: uppercase;
  transition: color .3s;
}

.trust-item:hover {
  color: #fff;
}

.trust-item i {
  color: var(--orange);
  font-size: .85rem;
  transition: transform .3s var(--ease-spring);
}

.trust-item:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.trust-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stats-about {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}

.stats-bg-img {
  position: absolute;
  inset: 0;
}

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

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, .87);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 52px 20px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  transition: background .35s var(--ease-smooth);
  cursor: default;
}

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

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .45s var(--ease-out);
  border-radius: 2px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, .03);
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  color: var(--orange);
  opacity: .8;
  transition: transform .4s var(--ease-spring), opacity .3s;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2) translateY(-4px);
  opacity: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-lbl {
  font-family: var(--font-head);
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== BRANDS ===== */
.brands-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.brands-head {
  margin-bottom: 44px;
}

.brands-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 26px;
  cursor: default;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.brand-chip img {
  width: 90px;
}

/* ===== MISSION / VISION ===== */
.mv-section {
  padding: 70px 0 90px;
  background: var(--off);
}

.mv-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.mv-img-col {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.mv-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-smooth);
}

.mv-img-col:hover img {
  transform: scale(1.04);
}

.mv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 82, 26, .3) 0%, transparent 60%);
}

.mv-content {
  background: #fff;
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.mv-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--orange);
}

.mv-content .section-h2 {
  margin-bottom: 12px;
}

.mv-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding-left: 20px;
  position: relative;
}

.mv-badge {
  width: 64px;
  height: 56px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  clip-path: polygon(0 0, 76% 0, 100% 50%, 76% 100%, 0 100%);
  box-shadow: 0 8px 24px var(--orange-glow);
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring);
}

.mv-item:hover .mv-badge {
  transform: scale(1.06);
}

.mv-item h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.mv-item p {
  font-size: .88rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  max-width: 420px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0 110px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 82, 26, .07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: .5;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item[open] {
  border-color: rgba(212, 82, 26, .35);
  box-shadow: 0 10px 30px rgba(212, 82, 26, .1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color .3s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--orange);
}

.faq-icon {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 28px 22px;
}

.faq-body p {
  font-size: .9rem;
  color: #666;
  line-height: 1.75;
  font-weight: 300;
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, .84);
}

/* cta embers */
.cta-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.c-ember {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--orange);
  animation: emberRise linear infinite;
  opacity: 0;
}

.c-ember:nth-child(1) {
  left: 10%;
  animation-duration: 6s;
  animation-delay: 0s;
}

.c-ember:nth-child(2) {
  left: 25%;
  animation-duration: 8s;
  animation-delay: 1.5s;
  background: #ff9d00;
}

.c-ember:nth-child(3) {
  left: 40%;
  animation-duration: 5s;
  animation-delay: 3s;
}

.c-ember:nth-child(4) {
  left: 55%;
  animation-duration: 9s;
  animation-delay: .5s;
}

.c-ember:nth-child(5) {
  left: 70%;
  animation-duration: 7s;
  animation-delay: 2s;
  background: #ffb347;
}

.c-ember:nth-child(6) {
  left: 82%;
  animation-duration: 6.5s;
  animation-delay: 4s;
}

.cta-body {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-body h2 {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-body h2 em {
  color: var(--orange);
  font-style: normal;
}

.cta-body p {
  color: rgba(255, 255, 255, .55);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER — exact from index.css ===== */
.footer {
  background: var(--dark2);
}

.footer-top {
  padding: 76px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
}

.footer-logo {
  margin-bottom: 18px;
  width: 60px;
  height: 70px;
  display: block;
}

.footer-about p {
  color: rgba(255, 255, 255, .38);
  font-size: .87rem;
  line-height: 1.75;
  font-weight: 300;
}

.f-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.f-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  transition: background .25s var(--ease-smooth), color .25s, border-color .25s, transform .3s var(--ease-spring);
}

.f-socials a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .38);
  font-size: .87rem;
  transition: color .25s, padding-left .3s var(--ease-smooth);
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.f-emg {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(212, 82, 26, .1);
  border: 1px solid rgba(212, 82, 26, .25);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 22px;
  transition: background .3s, border-color .3s;
}

.f-emg:hover {
  background: rgba(212, 82, 26, .15);
  border-color: rgba(212, 82, 26, .4);
}

.f-emg i {
  font-size: 1.2rem;
  color: var(--orange);
}

.f-emg small {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
}

.f-emg strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: 1px;
}

.f-news-lbl {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 10px;
}

.f-news {
  display: flex;
}

.f-news input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-right: none;
  color: #fff;
  padding: 11px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: .85rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color .3s, background .3s;
}

.f-news input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, .09);
}

.f-news input::placeholder {
  color: rgba(255, 255, 255, .2);
}

.f-news button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 11px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: .9rem;
  transition: background .25s;
}

.f-news button:hover {
  background: var(--orange-h);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 22px 0;
}

.f-bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.f-bot-inner p {
  color: rgba(255, 255, 255, .25);
  font-size: .8rem;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s var(--ease-smooth), transform .4s var(--ease-spring), background .25s;
  z-index: 999;
  box-shadow: 0 8px 24px var(--orange-glow);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--orange-h);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .about-hero-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 120px 32px 80px;
  }

  .hero-badge-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hbadge {
    min-width: 160px;
  }

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

  .about-panel-img {
    height: 360px;
  }

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

  .why-card:nth-child(2) {
    border-right: none;
  }

  .why-card:nth-child(3) {
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .why-card:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

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

  .mv-panel {
    grid-template-columns: 1fr;
  }

  .mv-img-col {
    min-height: 300px;
  }

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

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

  .trust-bar {
    padding: 24px 32px;
    gap: 16px;
  }

  .trust-div {
    display: none;
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 32px;
    transform: translateX(-100%);
    transition: transform .4s var(--ease-smooth);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-hero-body {
    padding: 100px 24px 80px;
  }

  .about-hero-h1 {
    font-size: 2.6rem;
  }

  .about-hero-actions {
    flex-wrap: wrap;
  }

  .about-hero-stat-bar {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hstat-div {
    display: none;
  }

  .hero-badge-stack {
    display: none;
  }

  .approach-section {
    padding: 72px 0;
  }

  .approach-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-sub {
    text-align: left;
    max-width: 100%;
  }

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

  .about-company {
    padding: 72px 0;
  }

  .about-panel-feats {
    flex-direction: column;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 16px;
  }

  .why-card {
    border-right: none !important;
    border-top: none !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg);
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 14px;
  }

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

  .mv-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding-left: 8px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: .9rem;
  }

  .faq-body {
    padding: 0 20px 18px;
  }

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

  .f-bot-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-body h2 {
    font-size: 2rem;
  }
}

@media(max-width:480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge-stack {
    display: none;
  }
}

/* Content size polish */
.about-hero-p,
.section-sub,
.body-txt,
.why-sub,
.mv-item p,
.faq-body p,
.cta-body p {
  font-size: clamp(1.08rem, 1.05vw, 1.2rem);
  line-height: 1.85;
}

.approach-card p,
.why-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.apf-item span,
.ap-tag,
.emg-inline small,
.faq-item summary {
  font-size: 1rem;
}

.footer-about p,
.footer-col ul li a {
  font-size: 1.05rem;
  line-height: 1.8;
}

.f-emg small,
.f-news-lbl,
.f-news input,
.f-news button,
.f-bot-inner p {
  font-size: 0.95rem;
}
