/* =============================================
   LOCPLAN V3 — PREMIUM LIGHT THEME
   Fonts: Plus Jakarta Sans + DM Sans
   No AI images — uses real Unsplash photos
   ============================================= */

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

:root {
  --primary: #D4A90F;
  --primary-dark: #B8920D;
  --primary-light: #FFF8E1;
  --primary-50: rgba(212,169,15,0.06);
  --dark: #151515;
  --dark-800: #1E1E1E;
  --dark-700: #2A2A2A;
  --dark-600: #3A3A3A;
  --gray-900: #222;
  --gray-700: #444;
  --gray-500: #777;
  --gray-400: #999;
  --gray-200: #E0E0E0;
  --gray-100: #F0EFEC;
  --gray-50: #F7F6F3;
  --white: #FFFFFF;
  --green: #22C55E;
  --green-light: #DCFCE7;
  --head: 'Plus Jakarta Sans', sans-serif;
  --body: 'DM Sans', sans-serif;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#diferenciais h2, #diferenciais h4 {
    color: white !important;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--dark); color: var(--white); }

h2 {
  font-family: var(--head);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 em {
  font-style: normal;
  color: var(--primary);
}

/* ===== TAG LINE ===== */
.tag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.tag-line.center { justify-content: center; }
.tag-line.light { color: var(--primary); }

.tag-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}

.section-header h2 { margin-bottom: 14px; }

.section-sub {
  color: var(--gray-500);
  font-size: 1.06rem;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 15px 30px; font-size: 0.92rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212,169,15,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.25);
}

/* =====================
   HEADER
   ===================== */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.4s var(--ease);
  background: var(--white);
}

#header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img { height: 42px; }

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

.nav-link {
  font-family: var(--head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
}

.nav-link:hover, .nav-link.active {
  color: var(--dark);
  background: var(--gray-50);
}

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

.header-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border-radius: var(--r);
  transition: background 0.3s var(--ease);
}

.header-tel:hover { background: var(--gray-50); }

.tel-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 10px;
  color: var(--primary-dark);
  font-size: 0.85rem;
}

.tel-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 500;
}

.tel-text strong {
  display: block;
  font-family: var(--head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--head);
  font-size: 1.5rem;
  font-weight: 700;
}
.mobile-nav a:hover { color: var(--primary-dark); }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,169,15,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* === VIDEO HERO VARIANT === */
.hero-video {
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.hero-video::before { display: none; }

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero-video .hero-inner {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-video .hero-content { text-align: center; }

.hero-video .hero-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--primary);
  backdrop-filter: blur(8px);
}

.hero-video h1 {
  color: var(--white) !important;
}

.hero-video .hero-sub {
  color: rgba(255,255,255,0.75);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-video .hero-ctas {
  justify-content: center;
}

.hero-video .stats-bar {
  position: relative;
  z-index: 2;
  border-radius: 0;
  background: transparent;
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost-light:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
  margin: 0 auto;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 10px;
  background: var(--primary-light);
  border: 1px solid rgba(212,169,15,0.2);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.5; }
}

.hero h1 {
  font-family: var(--head);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-accent {
  position: relative;
  color: var(--primary);
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212,169,15,0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Media */
.hero-media {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--primary);
  border-radius: 0 0 var(--r-xl) 0;
  z-index: -1;
}

/* Floating cards */
.hero-float-card {
  will-change: transform;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  z-index: 2;
  animation: floatY 4s ease-in-out infinite;
}

.float-card-1 {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
  color: var(--primary-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.float-icon.bg-green {
  background: var(--green-light);
  color: var(--green);
}

.hero-float-card strong {
  display: block;
  font-family: var(--head);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-float-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Stats bar */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--head);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  font-size: 2.8rem;
}

.stat-num sup {
  font-size: 1.3rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

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

.about-images {
  position: relative;
  padding: 24px 0 24px 24px;
}

.about-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

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

.about-img-small {
  position: absolute;
  bottom: -8px;
  right: -24px;
  width: 200px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  z-index: 3;
}

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

.about-exp {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--dark);
  padding: 18px 22px;
  border-radius: var(--r);
  z-index: 3;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.exp-number {
  font-family: var(--head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.exp-number sup { font-size: 1rem; }

.exp-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-dots {
  position: absolute;
  top: 60px;
  left: -12px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: 1;
}

.about-text h2 { margin-bottom: 20px; }

.about-lead {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.about-text > p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.feat {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--gray-50);
  border-radius: var(--r);
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
}

.feat:hover {
  background: var(--primary-light);
  border-color: rgba(212,169,15,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feat-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 10px;
  color: var(--primary-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.feat h4 {
  font-family: var(--head);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.feat p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.about-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s var(--ease);
}

.value-chip i { color: var(--primary); font-size: 0.85rem; }

.value-chip:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* =====================
   SERVICES — Mosaic
   ===================== */
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.45s var(--ease);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,169,15,0.3);
}

.svc-main {
  grid-column: span 1;
}

.svc-img {
  position: relative;
  overflow: hidden;
}

.svc-main .svc-img { height: 200px; }
.svc-card:not(.svc-main):not(.svc-dark):not(.svc-accent) .svc-img { height: 200px; }

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

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

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.05) 100%);
}

.svc-body { padding: 26px; }

.svc-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 14px;
  transition: all 0.3s var(--ease);
}

.svc-card:hover .svc-icon {
  background: var(--primary);
  color: var(--dark);
}

.svc-card h3 {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.svc-tags span {
  padding: 5px 13px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s var(--ease);
}

.svc-card:hover .svc-tags span {
  background: var(--primary-light);
  border-color: rgba(212,169,15,0.2);
}

/* Dark card */
.svc-dark {
  background: var(--dark);
  border-color: var(--dark);
}
.svc-dark h3 { color: var(--white); }
.svc-dark p { color: rgba(255,255,255,0.6); }
.svc-icon-dark { background: rgba(212,169,15,0.12); color: var(--primary); }
.svc-dark:hover .svc-icon-dark { background: var(--primary); color: var(--dark); }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  transition: gap 0.3s var(--ease);
}
.svc-link:hover { gap: 12px; }

/* Accent card */
.svc-accent {
  background: var(--primary);
  border-color: var(--primary);
}
.svc-accent h3 { color: var(--dark); }
.svc-accent p { color: rgba(21,21,21,0.7); }
.svc-icon-accent { background: rgba(21,21,21,0.1); color: var(--dark); }
.svc-link-dark { color: var(--dark); }

/* =====================
   FLEET — Horizontal Scroll
   ===================== */
.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.fleet-header h2 { margin-bottom: 0; }

.fleet-sub {
  max-width: 380px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: right;
}

.fleet-scroll {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.fleet-scroll::-webkit-scrollbar { display: none; }

.fleet-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.fleet-item {
  scroll-snap-align: start;
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.fleet-item:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.fleet-img {
  height: 180px;
  overflow: hidden;
}

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

.fleet-item:hover .fleet-img img { transform: scale(1.05); }

.fleet-info { padding: 22px; }

.fleet-info h4 {
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.fleet-info p {
  color: var(--gray-400);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.fleet-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  border: 1px solid rgba(212,169,15,0.2);
  border-radius: var(--r-full);
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =====================
   DIFFERENTIALS (dark bg)
   ===================== */
.diff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.diff-left h2 { margin-bottom: 16px; }
.diff-left > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.diff-cta-row { margin-bottom: 32px; }

.diff-img-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.diff-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.diff-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  transition: all 0.4s var(--ease);
}

.diff-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,169,15,0.2);
  transform: translateX(8px);
}

.diff-number {
  font-family: var(--head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity 0.3s var(--ease);
}

.diff-card:hover .diff-number { opacity: 1; }

.diff-card h4 {
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.diff-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =====================
   PARTNERS — Marquee
   ===================== */
.partners-marquee {
  overflow: hidden;
  position: relative;
  margin-top: -8px;
}

.partners-marquee::before, .partners-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-marquee::before { left: 0; background: linear-gradient(to right, var(--gray-50), transparent); }
.partners-marquee::after { right: 0; background: linear-gradient(to left, var(--gray-50), transparent); }

.marquee-inner {
  display: flex;
  gap: 14px;
  animation: marquee 30s linear infinite;
  width: max-content;
  padding: 20px 0;
}
.marquee-inner:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-family: var(--head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--ease);
}

.partner-pill i { color: var(--primary); font-size: 1rem; }

.partner-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* =====================
   CTA / CONTACT
   ===================== */
.cta-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), transparent);
}

.cta-left h2 { margin-bottom: 14px; }
.cta-left > p {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.cta-right { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
}

.info-card:hover {
  border-color: rgba(212,169,15,0.3);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
  color: var(--primary-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-card h5 {
  font-family: var(--head);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.info-card p {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.5;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo { height: 42px; margin-bottom: 14px; filter: brightness(10); }

.footer-brand > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

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

.social-row a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--primary); }

.footer-contact {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer-contact i { color: var(--primary); margin-right: 8px; width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

/* =====================
   ANIMATIONS
   ===================== */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-anim="up"] { transform: translateY(50px); }
[data-anim="right"] { transform: translateX(-50px); }
[data-anim="left"] { transform: translateX(50px); }
[data-anim].is-visible { opacity: 1; transform: translate(0,0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hero-inner, .about-wrap, .diff-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-mosaic { grid-template-columns: 1fr 1fr; }
  .svc-main { grid-row: span 1; }
  .fleet-header { flex-direction: column; align-items: flex-start; }
  .fleet-sub { text-align: left; max-width: none; }
  .cta-block { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 0; }
  .hero-float-card { display: none; }
  .hero-img-accent { display: none; }
  .about-img-small { display: none; }
  .about-dots { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .services-mosaic { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 100px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-block { padding: 28px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { justify-content: center; }
}
