/* ===== DESIGN TOKENS ===== */
:root {
  --charcoal: #0F151C;
  --charcoal-mid: #161F29;
  --steel: #2F4A68;
  --steel-light: #4A6E93;
  --orange: #E85D25;
  --orange-light: #FF7E45;
  --orange-pale: #FFEDE2;
  --white: #FFFFFF;
  --off-white: #F5F6F3;
  --text-muted: #8B96A3;
  --text-body: #3C4550;
  --border: rgba(232,93,37,0.2);
  --shadow: 0 8px 40px rgba(15,21,28,0.2);
  --shadow-card: 0 4px 24px rgba(15,21,28,0.1);
  --radius: 12px;
  --radius-sm: 7px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* dashed lane-line divider — the recurring signature motif */
.lane-divider {
  width: 100%; height: 0;
  border-top: 4px dashed rgba(232,93,37,0.35);
  margin: 0 auto;
}
.lane-divider.light { border-top-color: rgba(232,93,37,0.5); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 14px 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title span { color: var(--orange); }
.section-sub { font-size: 17px; line-height: 1.7; color: var(--text-body); max-width: 560px; margin-top: 14px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 6px; border: none; cursor: pointer;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 18px rgba(232,93,37,0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,93,37,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 32px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--orange-light); color: var(--orange-light); transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== DOT DECAL BADGE — signature element, styled like a truck-door USDOT decal ===== */
.dot-decal {
  display: inline-flex; flex-direction: column; align-items: center;
  border: 2px solid currentColor;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}
.dot-decal .decal-row { display: flex; gap: 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.dot-decal .decal-row b { font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.navbar.scrolled { background: rgba(15,21,28,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; max-width: 1280px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; }
.nav-logo-text { display: flex; align-items: center; }
.nav-logo-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 19px; color: var(--white); letter-spacing: 1px; line-height: 1; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; transition: color 0.25s; }
.nav-links a:hover { color: var(--orange-light); }
.nav-cta { margin-left: 12px; }
.nav-cta .btn-primary { padding: 10px 24px; font-size: 13px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.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-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; background: rgba(15,21,28,0.98); border-top: 1px solid var(--border); padding: 24px 32px; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 16px; font-weight: 500; display: block; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu .btn-primary { margin-top: 16px; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(165deg, rgba(15,21,28,0.96) 0%, rgba(22,31,41,0.9) 55%, rgba(47,74,104,0.82) 100%),
    url('img/hero.jpg') center right / cover no-repeat;
  display: flex; align-items: center; padding-top: 90px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,93,37,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-road-lines {
  position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 40px, transparent 40px 80px);
  background-size: 80px 6px; background-repeat: repeat-x; background-position: center;
  opacity: 0.12; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,93,37,0.15); border: 1px solid rgba(232,93,37,0.4);
  border-radius: 100px; padding: 7px 16px; margin-bottom: 26px;
}
.hero-tag-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero-tag-text { font-size: 12px; color: var(--orange-light); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-headline {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: clamp(40px, 5.4vw, 66px); line-height: 1.05; color: var(--white);
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 22px;
}
.hero-headline .orange { color: var(--orange-light); }
.hero-sub { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-decal-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-decal-row .dot-decal { color: rgba(255,255,255,0.55); }
.hero-decal-row .dot-decal span.label { color: rgba(255,255,255,0.4); font-size: 9px; letter-spacing: 2px; }
.hero-decal-row .dot-decal b { color: var(--orange-light); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px 22px; text-align: center;
  backdrop-filter: blur(12px); transition: var(--transition);
  animation: floatCard 4s ease-in-out infinite;
}
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.stat-card:hover { border-color: var(--orange); background: rgba(232,93,37,0.1); }
.stat-icon { font-size: 26px; margin-bottom: 10px; }
.stat-num { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 34px; color: var(--orange-light); letter-spacing: 0.5px; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 6px; letter-spacing: 0.5px; }
.hero-scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(232,93,37,0.7), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%{height:0;opacity:1} 100%{height:40px;opacity:0} }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--off-white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-bg {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--steel) 100%), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=900&q=80') center/cover no-repeat;
  background-blend-mode: multiply; border-radius: 16px; overflow: hidden; position: relative;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius); padding: 20px 24px; text-align: center;
  box-shadow: 0 8px 32px rgba(232,93,37,0.4);
}
.about-badge-num { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 46px; color: var(--white); line-height: 1; }
.about-badge-text { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.about-content { padding-right: 20px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--orange-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.value-text h4 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.value-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.about-location {
  margin-top: 32px; display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid rgba(232,93,37,0.18);
  border-radius: var(--radius); padding: 16px 20px;
}
.about-location .loc-icon { font-size: 22px; }
.about-location h5 { font-size: 13px; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.5px; }
.about-location p { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,93,37,0.09) 0%, transparent 70%); pointer-events: none; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-title { color: var(--white); }
.services-header .section-sub { color: rgba(255,255,255,0.55); margin: 14px auto 0; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px 24px; transition: var(--transition);
  cursor: default; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,93,37,0.08) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
.service-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, rgba(232,93,37,0.2), rgba(255,126,69,0.1));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 23px; margin-bottom: 18px; transition: var(--transition);
}
.service-card:hover .svc-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.svc-title { font-size: 15.5px; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.svc-desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ===== ATRECK APP SPOTLIGHT (signature section) ===== */
.atreck { padding: 100px 0; background: linear-gradient(160deg, var(--steel) 0%, var(--charcoal) 100%); position: relative; overflow: hidden; }
.atreck-inner { display: grid; grid-template-columns: 1fr 0.9fr; gap: 70px; align-items: center; }
.atreck-content .section-tag { border-color: var(--orange-light); color: var(--orange-light); }
.atreck-content .section-title { color: var(--white); }
.atreck-content .section-sub { color: rgba(255,255,255,0.62); }
.atreck-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.atreck-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.8); }
.atreck-list li::before {
  content: '✓'; width: 24px; height: 24px; flex-shrink: 0; background: var(--orange);
  color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.atreck-visual { position: relative; display: flex; justify-content: center; }
.phone-mock {
  width: 260px; background: var(--charcoal); border: 6px solid #222b34; border-radius: 34px;
  padding: 18px 14px; box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.phone-mock-screen { background: var(--off-white); border-radius: 18px; overflow: hidden; }
.phone-header { background: var(--charcoal); color: var(--white); padding: 16px 16px 14px; text-align: center; }
.phone-header .app-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 20px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-light); }
.phone-header .app-tag { font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.phone-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.load-row { background: var(--white); border-radius: 10px; padding: 12px; border: 1px solid rgba(47,74,104,0.15); }
.load-row .lr-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.load-row .lr-route { font-size: 12px; font-weight: 700; color: var(--charcoal); }
.load-row .lr-price { font-size: 13px; font-weight: 700; color: var(--orange); }
.load-row .lr-meta { font-size: 10px; color: var(--text-muted); }
.load-row .lr-bid-btn { margin-top: 8px; background: var(--charcoal); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-align: center; padding: 7px; border-radius: 6px; }
.atreck-badge-free {
  position: absolute; top: -14px; right: 6px;
  background: var(--orange); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 6px 20px rgba(232,93,37,0.5);
  transform: rotate(-4deg);
}

/* ===== WHY CHOOSE ===== */
.why { padding: 100px 0; background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-row { display: flex; align-items: flex-start; gap: 18px; padding: 18px; border-radius: var(--radius); transition: var(--transition); }
.feature-row:hover { background: var(--off-white); }
.feat-icon-num {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
  transition: var(--transition);
}
.feature-row:hover .feat-icon-num { background: var(--orange); color: var(--white); }
.feat-text h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }
.feat-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.why-counters { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.counter-card { background: var(--charcoal); border-radius: var(--radius); padding: 30px 22px; text-align: center; position: relative; overflow: hidden; }
.counter-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.counter-num { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 50px; color: var(--orange-light); line-height: 1; letter-spacing: 0.5px; }
.counter-suffix { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 28px; color: var(--orange); }
.counter-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 8px; letter-spacing: 0.5px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.trust-badge { display: flex; align-items: center; gap: 8px; background: var(--orange-pale); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.5px; }

/* ===== PAYMENT OPTIONS ===== */
.payment { padding: 100px 0; background: var(--off-white); }
.payment-header { text-align: center; margin-bottom: 56px; }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pay-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); border-top: 5px solid var(--steel); }
.pay-card.quick { border-top-color: var(--orange); }
.pay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pay-card-body { padding: 34px 30px; }
.pay-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; background: var(--orange-pale); color: var(--orange); }
.pay-card:not(.quick) .pay-badge { background: rgba(47,74,104,0.1); color: var(--steel); }
.pay-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 28px; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.pay-time { font-size: 14.5px; color: var(--text-muted); margin-bottom: 20px; }
.pay-time b { color: var(--charcoal); }
.pay-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pay-features li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-body); }
.pay-features li::before { content: '✓'; width: 22px; height: 22px; background: var(--orange-pale); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.pay-card:not(.quick) .pay-features li::before { background: rgba(47,74,104,0.1); color: var(--steel); }

/* ===== HOW WE WORK ===== */
.how { padding: 100px 0; background: var(--charcoal); }
.how-header { text-align: center; margin-bottom: 70px; }
.how-header .section-title { color: var(--white); }
.how-header .section-sub { color: rgba(255,255,255,0.5); margin: 14px auto 0; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0 14px, transparent 14px 26px); }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(232,93,37,0.12);
  border: 2px solid rgba(232,93,37,0.35); display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 26px; color: var(--orange);
  margin-bottom: 26px; position: relative; z-index: 1; transition: var(--transition);
}
.step:hover .step-circle { background: var(--orange); color: var(--white); border-color: var(--orange-light); transform: scale(1.1); box-shadow: 0 0 0 8px rgba(232,93,37,0.15); }
.step-icon { font-size: 26px; }
.step-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ===== FORM / CONTACT ===== */
.contact { padding: 100px 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: flex-start; }
.contact-info { padding-top: 16px; }
.contact-info .section-sub { margin-top: 14px; }
.info-blocks { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 18px; box-shadow: 0 2px 12px rgba(15,21,28,0.06); }
.info-block-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--orange-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.info-block-text h5 { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 3px; }
.info-block-text p, .info-block-text a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.info-decal { margin-top: 22px; }
.info-decal .dot-decal { color: var(--steel); width: 100%; }
.form-card { background: var(--white); border-radius: 18px; padding: 40px 38px; box-shadow: var(--shadow); }
.form-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 27px; color: var(--charcoal); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.5px; text-transform: uppercase; }
input, textarea {
  border: 1.5px solid #E0E4EA; border-radius: var(--radius-sm); padding: 13px 16px;
  font-size: 14.5px; font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white);
  transition: var(--transition); outline: none; appearance: none; -webkit-appearance: none; -moz-appearance: none;
}
input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,37,0.12); }
textarea { resize: vertical; min-height: 100px; width: 100%; }

/* Native select is visually replaced by custom dropdown UI */
select.custom-select-native {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1.5px solid #E0E4EA; border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--white);
  font-size: 14.5px; font-family: 'Inter', sans-serif;
  color: var(--charcoal); text-align: left;
  cursor: pointer; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.custom-select-trigger.is-placeholder { color: var(--text-muted); }
.custom-select-trigger:hover { border-color: rgba(232,93,37,0.45); }
.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,37,0.12);
}
.custom-select.invalid .custom-select-trigger { border-color: #dc3545; }
.custom-select-chevron {
  width: 12px; height: 8px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23E85D25' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s ease;
}
.custom-select.open .custom-select-chevron { transform: rotate(180deg); }
.custom-select-menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  margin: 0; padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1.5px solid rgba(232,93,37,0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(15,21,28,0.12);
  max-height: 240px; overflow-y: auto;
  display: none;
}
.custom-select.open .custom-select-menu { display: block; }
.custom-select-option {
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 14.5px; font-family: 'Inter', sans-serif;
  color: var(--charcoal); cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.custom-select-option:hover,
.custom-select-option.is-active {
  background: var(--orange-pale);
  color: var(--orange);
}
.custom-select-option.is-selected {
  background: rgba(232,93,37,0.12);
  color: var(--orange);
  font-weight: 600;
}
.custom-select-option[data-value=""] {
  color: var(--text-muted); font-weight: 500;
}

.form-submit { margin-top: 24px; width: 100%; padding: 16px; font-size: 15px; border-radius: var(--radius-sm); }
.field-error { font-size: 11px; color: #dc3545; font-weight: 500; display: none; }
input.invalid, textarea.invalid { border-color: #dc3545; }
.loading-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.4); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 2000;
  display: flex; align-items: stretch; gap: 0;
  min-width: min(360px, calc(100vw - 40px)); max-width: 420px;
  background: var(--charcoal); color: var(--white);
  border: 1px solid rgba(232,93,37,0.35);
  border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(20px); opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.toast.show {
  transform: none; opacity: 1; pointer-events: auto;
}
.toast-bar { width: 4px; flex-shrink: 0; background: var(--orange); }
.toast.success .toast-bar { background: linear-gradient(180deg, var(--orange), var(--orange-light)); }
.toast.error .toast-bar { background: #dc3545; }
.toast-body { display: flex; align-items: flex-start; gap: 12px; padding: 16px 8px 16px 16px; flex: 1; }
.toast-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  background: rgba(232,93,37,0.18); color: var(--orange-light);
}
.toast.error .toast-icon { background: rgba(220,53,69,0.18); color: #ff8a95; }
.toast-message {
  font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.88);
  font-weight: 500; padding-top: 3px;
}
.toast-close {
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 12px 14px 0 0;
  transition: color 0.2s; align-self: flex-start;
}
.toast-close:hover { color: var(--orange-light); }
@media (max-width: 480px) {
  .toast { bottom: 16px; right: 16px; left: 16px; min-width: 0; max-width: none; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { flex: 0 0 100%; padding: 0 40px; }
.testimonial-card { background: var(--off-white); border-radius: 18px; padding: 42px 46px; max-width: 860px; margin: 0 auto; border: 1px solid rgba(232,93,37,0.14); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 22px; left: 38px; font-family: 'Oswald', sans-serif; font-size: 90px; color: rgba(232,93,37,0.1); line-height: 1; }
.testimonial-stars { color: var(--orange); font-size: 18px; margin-bottom: 20px; }
.testimonial-text { font-size: 17.5px; line-height: 1.75; color: var(--charcoal); font-style: italic; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--charcoal), var(--steel)); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--orange-light); }
.author-name { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.author-meta { font-size: 13px; color: var(--text-muted); }
.carousel-controls { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 34px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--charcoal); transition: var(--transition); }
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.carousel-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 100px; background: #E0E4EA; cursor: pointer; transition: var(--transition); }
.dot.active { width: 24px; background: var(--orange); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--charcoal); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-title { color: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(232,93,37,0.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; color: var(--white); transition: var(--transition); }
.faq-q:hover { color: var(--orange-light); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid rgba(232,93,37,0.4); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--orange); transition: transform 0.35s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); border-color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 14.5px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(15,21,28,0.96) 0%, rgba(47,74,104,0.92) 100%), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1800&q=80') center/cover no-repeat;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,93,37,0.12) 0%, transparent 70%); }
.cta-banner-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(38px, 5.6vw, 62px); color: var(--white); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.cta-banner h2 span { color: var(--orange-light); }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 40px; }
.cta-banner .btn-primary { font-size: 16px; padding: 18px 48px; }

/* ===== FOOTER ===== */
footer { background: #0A0F14; border-top: 1px solid rgba(255,255,255,0.06); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 38px; height: 38px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: var(--transition); }
.social-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--orange-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item p, .footer-contact-item a { font-size: 13.5px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-decal { margin-top: 6px; }
.footer-decal .dot-decal { color: rgba(255,255,255,0.35); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .atreck-inner { grid-template-columns: 1fr; gap: 50px; }
  .atreck-visual { order: -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-headline { font-size: clamp(34px, 9vw, 48px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-badge { right: 0; bottom: -16px; }
  .about-content { padding-right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
  .why-counters { order: -1; }
  .payment-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .form-card { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 0 16px; }
  .testimonial-card { padding: 30px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
