/* ============================================================
   LIFTTRUCK — Vanilla CSS
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --primary:       #D04808;
  --primary-dark:  #b03c00;
  --primary-light: rgba(208, 72, 8, 0.1);
  --secondary:     #345C00;
  --accent:        #ff5b07;
  --dark:          #0c1a13;
  --dark-2:        #152210;
  --white:         #ffffff;
  --light:         #f6f5f2;
  --light-2:       #eeecea;
  --gray-1:        #f4f4f4;
  --gray-2:        #e4e4e4;
  --gray-3:        #c8c8c8;
  --gray-4:        #a0a0a0;
  --gray-5:        #777777;
  --gray-6:        #555555;
  --text:          #2e2e2e;
  --max-w:         1600px;
  --container:     1280px;
  --radius:        8px;
  --radius-lg:     16px;
  --header-h:      90px;
  --transition:    all 0.28s ease;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 50px rgba(0,0,0,0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent any child from blowing out the viewport */
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  min-width: 0; /* never force a minimum width */
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, textarea, button { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
p { line-height: 1.72; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Section Tag ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.625rem;
}
.section-tag--light { color: var(--primary); }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin: 0.4rem 0 0.9rem; }
.section-header p { color: var(--gray-5); font-size: 1rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light p   { color: rgba(255,255,255,0.55); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 2.75rem;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208,72,8,0.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  height: var(--header-h);
  width: 100%;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Nav */
.nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover,
.nav__item.active .nav__link {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}
.chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}
.header__phone:hover { color: var(--primary); }

/* Mobile nav CTA — hidden on desktop, shown in drawer */
.nav__mobile-cta { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.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
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: var(--header-h);
  background: var(--dark);
  overflow: hidden;
}

/* Geometric background shapes */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero__shape--1 {
  width: 700px; height: 700px;
  background: var(--secondary);
  top: -200px; right: -100px;
}
.hero__shape--2 {
  width: 400px; height: 400px;
  background: var(--primary);
  bottom: -150px; left: 30%;
  opacity: 0.08;
}
.hero__shape--3 {
  width: 250px; height: 250px;
  background: var(--accent);
  top: 20%; left: -80px;
  opacity: 0.05;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 5rem 2rem;
  max-width: 680px;
}

.hero__tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__tagline::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.12;
}
.hero__title span { color: var(--primary); }

.hero__subtitle {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  margin-bottom: 2.75rem;
  max-width: 500px;
  line-height: 1.75;
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image side */
.hero__image-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__placeholder img{height: auto;}




/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  background: var(--dark-2);
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solutions__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  cursor: default;
}
.solutions__card:hover {
  background: rgba(208,72,8,0.08);
  border-color: rgba(208,72,8,0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.solutions__card--accent {
  background: rgba(208,72,8,0.12);
  border-color: rgba(208,72,8,0.35);
}
.solutions__card--accent:hover {
  background: rgba(208,72,8,0.18);
  border-color: var(--primary);
}

.solutions__icon {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(208,72,8,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}
.solutions__card:hover .solutions__icon {
  background: var(--primary);
  color: var(--white);
}

.solutions__card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}
.solutions__card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solutions__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.solutions__link:hover { gap: 0.85rem; color: var(--accent); }


/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  padding: 2.5rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray-2);
}

.brands__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-4);
  margin-bottom: 1.5rem;
}

.brands__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.brands__item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 0.5rem 2.5rem;
  cursor: default;
}
.brands__item:hover { color: var(--dark); }

.brands__separator {
  width: 1px;
  height: 24px;
  background: var(--gray-2);
  flex-shrink: 0;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 6.5rem 0; background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.about__image-wrap { position: relative; }

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #c8d4b8 0%, #a8be88 40%, #7a9c50 70%, #345C00 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about__img-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 10px 40px rgba(208,72,8,0.4);
}
.badge__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.badge__num sup { font-size: 1rem; }
.badge__txt {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 80px;
  line-height: 1.3;
}

.about__content { padding-top: 1rem; }
.about__content .section-tag { display: block; }
.about__content h2 { margin: 0.5rem 0 1.25rem; }

.about__stat-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}
.about__stat-bar p {
  font-size: 0.875rem;
  color: var(--gray-5);
  line-height: 1.4;
}

.about__text {
  color: var(--gray-5);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about__actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about__phone-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.about__phone-link:hover { color: var(--primary); }
.about__phone-link small {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-4);
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.about__phone-link strong {
  display: block;
  font-size: 0.95rem;
}

.phone-circle {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(208,72,8,0.3);
  transition: var(--transition);
}
.about__phone-link:hover .phone-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(208,72,8,0.45);
}


/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 6.5rem 0; background: var(--light); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.features__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.features__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--primary);
  transition: width 0.35s ease;
}
.features__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.features__card:hover::after { width: 100%; }

.features__icon {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
}
.features__card:hover .features__icon {
  background: var(--primary);
  color: white;
}

.features__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
}
.features__card p {
  font-size: 0.875rem;
  color: var(--gray-5);
  line-height: 1.65;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 6.5rem 0; background: var(--white); }

.services__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.services__content .section-tag { display: block; }
.services__content h2 { margin: 0.5rem 0 1rem; }
.services__intro {
  color: var(--gray-5);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.services__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-bottom: 2.25rem;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.services__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.services__check {
  width: 1.375rem;
  height: 1.375rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  border: 1px solid rgba(208,72,8,0.2);
}
.services__phone:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 20px rgba(208,72,8,0.3);
}

/* Services image placeholder */
.services__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #2a4a1a 0%, #1e3614 50%, #0c1a13 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 6.5rem 0; background: var(--dark); }

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq__item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: rgba(255,255,255,0.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  gap: 1.5rem;
  transition: var(--transition);
}
.faq__question:hover { color: var(--white); }
.faq__item.active .faq__question { color: var(--white); }

.faq__toggle {
  width: 2rem;
  height: 2rem;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.faq__toggle span {
  position: absolute;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: var(--transition);
}
.faq__toggle span:nth-child(1) { width: 12px; height: 2px; }
.faq__toggle span:nth-child(2) { width: 2px; height: 12px; }

.faq__item.active .faq__toggle {
  background: var(--primary);
}
.faq__item.active .faq__toggle span {
  background: white;
}
.faq__item.active .faq__toggle span:nth-child(2) {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq__item.active .faq__answer { max-height: 400px; }
.faq__answer p {
  color: rgba(255,255,255,0.55);
  padding-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 0.95rem;
}


/* ============================================================
   TEAM
   ============================================================ */
.team { padding: 6.5rem 0; background: var(--light); }

.team__grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.team__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-2);
  flex: 0 1 280px;
}
.team__card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team__photo {
  aspect-ratio: 3/3.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #c5c5c5 0%, #a0a0a0 100%);
  overflow: hidden;
  position: relative;
}
.team__photo--2 { background: linear-gradient(145deg, #b8cba0 0%, #7a9c60 100%); }
.team__photo--3 { background: linear-gradient(145deg, #c8b89a 0%, #a08060 100%); }
.team__photo--4 { background: linear-gradient(145deg, #a8b8c8 0%, #688098 100%); }

.team__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__info {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
}
.team__info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.team__info > p {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.team__socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.team__socials a {
  width: 1.875rem;
  height: 1.875rem;
  background: var(--gray-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-5);
  transition: var(--transition);
}
.team__socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 6.5rem 0; background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5.5rem;
  align-items: start;
}

.contact__info .section-tag { display: block; }
.contact__info h2 { margin: 0.5rem 0 1rem; }
.contact__info > p {
  color: var(--gray-5);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact__detail-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}
.contact__detail-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact__detail-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact__detail-item a,
.contact__detail-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.contact__detail-item a:hover { color: var(--primary); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.375rem; }

.form__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input {
  width: 100%;
  height: 2.875rem;
  background: var(--gray-1);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 0 1.1rem;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}
.form__input::placeholder { color: var(--gray-4); }
.form__input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(208,72,8,0.1);
}

.form__textarea {
  height: 140px;
  padding: 0.875rem 1.1rem;
  resize: vertical;
}

.form__success {
  display: none;
  padding: 0.875rem 1.25rem;
  background: rgba(52,92,0,0.1);
  border: 1px solid rgba(52,92,0,0.3);
  border-radius: var(--radius);
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
}
.form__success.visible { display: block; }


/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 6.5rem 0; background: var(--light); }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.blog__image { overflow: hidden; }

.blog__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.blog__img-placeholder--1 {
  background: linear-gradient(135deg, #2a4a1a 0%, #1a6030 60%, #0e3018 100%);
}
.blog__img-placeholder--2 {
  background: linear-gradient(135deg, #8a2000 0%, #d04808 60%, #a03000 100%);
}
.blog__img-placeholder--3 {
  background: linear-gradient(135deg, #1a2a3a 0%, #2a4a6a 60%, #1a3050 100%);
}
.blog__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 15px,
    rgba(255,255,255,0.02) 15px, rgba(255,255,255,0.02) 16px
  );
}
.blog__img-placeholder span {
  position: relative;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.blog__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog__meta { margin-bottom: 0.875rem; }
.blog__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gray-4);
  font-weight: 500;
}

.blog__body h4 {
  font-size: 0.975rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.blog__card:hover h4 { color: var(--primary); }

.blog__body p {
  font-size: 0.875rem;
  color: var(--gray-5);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.65;
}

.blog__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  margin-top: auto;
}
.blog__link:hover { gap: 0.85rem; color: var(--primary-dark); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); }

.footer__top { padding: 5.5rem 0 3.5rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 3rem;
}

/* Footer brand */
.footer__logo .logo__text { color: var(--white); }
.footer__brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  max-width: 250px;
  line-height: 1.7;
}

.footer__socials { display: flex; gap: 0.5rem; }
.footer__socials a {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Footer locations */
.footer__locations { display: flex; flex-direction: column; gap: 1.75rem; }

.footer__location {
  display: flex;
  gap: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.footer__location svg { flex-shrink: 0; margin-top: 2px; }
.footer__location strong {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.footer__location p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Footer nav */
.footer__nav h5 {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__nav a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: var(--transition);
  display: inline-block;
}
.footer__nav a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.825rem;
}
.footer__brand-name { color: var(--primary); font-weight: 600; }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1.2fr 0.8fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .about__inner,
  .services__inner,
  .contact__inner { gap: 3.5rem; }
  .solutions__grid { gap: 1rem; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__image-wrap {
    order: 0;
    min-height: 50%;

  }
  .hero__content {
    order: 1;
    padding: 5rem 2rem;
    max-width: 100%;
  }

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

  .about__inner,
  .services__inner { grid-template-columns: 1fr; gap: 3rem; }

  .about__img-badge { left: 1rem; bottom: 1rem; }

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* --- Header fixes --- */
  .header__inner { gap: 0; justify-content: space-between; padding: 0 1.25rem; }
  .hamburger { display: flex !important; }
  .header__phone { display: none; }
  /* Hide desktop CTA on small screens, show only hamburger */
  .header__actions .btn--primary { display: none; }
  .header__actions { gap: 0.75rem; }

  /* Desktop nav becomes slide-down mobile drawer */
  .nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 1rem 1.5rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                visibility 0s linear 0.35s;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    width: 100%;
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                visibility 0s linear 0s;
    pointer-events: auto;
  }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__link {
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__list li:last-child .nav__link { border-bottom: none; }
  .nav__mobile-cta {
    display: flex;
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
  }

  .features__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }

  .brands__separator { display: none; }
  .brands__item { padding: 0.5rem 1.25rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
}

/* ---- 600px ---- */
@media (max-width: 600px) {
  :root { --header-h: 80px; }

  .container { padding: 0 1.25rem; }

  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  .hero__btns { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero__btns .btn { width: auto; }

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

  .about__actions { flex-direction: column; align-items: flex-start; }
  .services__lists { grid-template-columns: 1fr; }

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

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

  .about__img-badge { left: 0.75rem; bottom: 0.75rem; padding: 1rem 1.25rem; }
  .badge__num { font-size: 1.75rem; }
}

/* ---- 400px ---- */
@media (max-width: 400px) {
  /* Tighter container padding */
  .container { padding: 0 0.875rem; }

  /* Shrink logo text so header doesn't overflow */
  .logo__text { font-size: 1.1rem; }
  .header__inner { padding: 0 0.875rem; }

  /* Hero content – reduce side padding at tiny sizes */
  .hero__content { padding: 3.5rem 0.875rem; }
  .hero__tagline { font-size: 0.7rem; letter-spacing: 0.08em; }
  .hero__tagline::before { width: 18px; }
  .hero__subtitle { font-size: 0.9rem; }
  .hero__btns .btn { width: 100%; justify-content: center; }

  /* Cards – reduce inner padding */
  .solutions__card { padding: 1.5rem 1.25rem; }
  .features__card  { padding: 1.5rem 1.25rem; }
  .solutions__grid { gap: 0.875rem; }
  .features__grid  { gap: 0.875rem; }

  /* Brands – tighten spacing so track doesn't overflow */
  .brands__item { padding: 0.375rem 0.875rem; font-size: 1rem; }

  /* About badge – keep fully inside parent at tiny sizes */
  .about__img-badge { left: 0.5rem; bottom: 0.5rem; padding: 0.875rem 1rem; }
  .badge__num { font-size: 1.5rem; }

  /* Footer */
  .footer__top { padding: 3rem 0 2rem; }
  .footer__grid { gap: 1.5rem; }

  /* Full-form submit button */
  .full-form__submit .btn { min-width: 0; width: 100%; justify-content: center; }
}
