/* =========================================================
   RAZORBACK AUTO TRANSPORT — CORPORATE STYLESHEET
   ========================================================= */

:root {
  /* Brand colors */
  --red: #C8102E;            /* Razorback primary red */
  --red-deep: #9E0C24;       /* Hover / pressed */
  --red-bright: #E5142F;
  --charcoal: #1A1D23;       /* Dark sections / nav */
  --slate: #2C313A;
  --ink: #0F1216;
  --graphite: #4A5260;
  --steel: #6B7280;
  --silver: #D4D8DD;
  --cloud: #F4F6F8;
  --bone: #FAFBFC;
  --white: #FFFFFF;
  --gold: #F2B33A;           /* For stars */

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --pad: 24px;
  --radius: 6px;
  --radius-lg: 10px;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(15, 18, 22, 0.06), 0 1px 2px rgba(15, 18, 22, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 18, 22, 0.08), 0 2px 6px rgba(15, 18, 22, 0.04);
  --shadow-lg: 0 24px 56px rgba(15, 18, 22, 0.14), 0 8px 16px rgba(15, 18, 22, 0.06);
  --shadow-red: 0 8px 24px rgba(200, 16, 46, 0.28);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.45rem; letter-spacing: 0.01em; }
h4 { font-size: 1.1rem; letter-spacing: 0.04em; }

p { margin: 0 0 1rem; color: var(--graphite); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}
.section--dark {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--ink) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 16, 46, 0.14), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 16, 46, 0.08), transparent 50%);
  pointer-events: none;
}
.section--dark .container { position: relative; z-index: 1; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.78); }

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__sub { font-size: 1.125rem; color: var(--graphite); margin-top: 12px; }
.section--dark .section__sub { color: rgba(255, 255, 255, 0.7); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.eyebrow--light { color: var(--red-bright); }

.accent { color: var(--red); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.36);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--silver);
}
.btn--ghost:hover { background: var(--cloud); border-color: var(--graphite); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--red); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--xl { padding: 20px 40px; font-size: 1.15rem; letter-spacing: 0.08em; }
.btn--block { width: 100%; }

/* ===========================
   TOP BAR
   =========================== */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  gap: 20px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.75); }
.topbar__item svg { color: var(--red-bright); }
.topbar__right a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s;
}
.topbar__right a:hover { color: var(--white); }
.topbar__phone {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.topbar__phone svg { color: var(--red-bright); }

/* ===========================
   HEADER
   =========================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--cloud);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 32px;
}
.header__brand img { height: 76px; width: auto; }
.header__nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.header__nav a {
  position: relative;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.15s;
  white-space: nowrap;
}
.header__nav a:hover { color: var(--red); }
.header__nav a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.header__nav a:hover::after { transform: scaleX(1); }
.nav-caret { font-size: 0.7em; opacity: 0.6; margin-left: 4px; }
.header__cta { display: flex; gap: 10px; align-items: center; }
.header__menu {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 18, 22, 0.86) 0%, rgba(15, 18, 22, 0.72) 50%, rgba(15, 18, 22, 0.86) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(15, 18, 22, 0.4) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 110px 24px 90px;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__copy {
  max-width: 920px;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(200, 16, 46, 0.2);
  border: 1px solid rgba(200, 16, 46, 0.55);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(229, 20, 47, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 20, 47, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(229, 20, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 20, 47, 0); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  margin: 0 auto;
  max-width: 18ch;
  line-height: 1.05;
}
.hero__lede {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 28px auto 36px;
  max-width: 720px;
  line-height: 1.55;
}
.hero__bullets {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  margin: 0 auto 44px;
  max-width: 880px;
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.08rem;
  font-weight: 500;
}
.hero__bullets svg { color: var(--red-bright); flex-shrink: 0; }

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 22px 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.hero__trust-item { display: flex; flex-direction: column; align-items: center; }
.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__trust-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
}

/* HERO STRIP */
.hero__strip {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.hero__strip-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__strip span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero__logos {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero__logos span {
  font-family: 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.hero__logos span:hover { color: rgba(255, 255, 255, 0.9); }

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--bone); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--silver);
}
.service-card--feature {
  background: var(--ink);
  color: var(--white);
  border: none;
  position: relative;
}
.service-card--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-card--feature h3 { color: var(--white); }
.service-card--feature p { color: rgba(255, 255, 255, 0.78); }
.service-card--feature ul li { color: rgba(255, 255, 255, 0.88); }
.service-card--feature ul li::before { color: var(--red-bright); }
.service-card--feature .service-card__icon { color: var(--red-bright); background: rgba(229, 20, 47, 0.14); }

.service-card__badge {
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.service-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(200, 16, 46, 0.04));
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.98rem; margin-bottom: 16px; }
.service-card ul { margin-bottom: 22px; flex: 1; }
.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--slate);
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}
.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  align-self: flex-start;
  transition: gap 0.2s;
  display: inline-flex;
  gap: 6px;
}
.service-card__link:hover { gap: 12px; }
.service-card--feature .service-card__link { color: var(--red-bright); }

/* ===========================
   HOW IT WORKS
   =========================== */
.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 56px;
}
.how__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.25s;
}
.how__step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-3px);
}
.how__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.how__step h3 { color: var(--white); margin-bottom: 12px; }
.how__step p { font-size: 0.98rem; margin: 0; }

.how__connector {
  align-self: center;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(200, 16, 46, 0.2));
  position: relative;
}
.how__connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 8px solid var(--red);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity: 0.5;
}

.how__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   WHY US
   =========================== */
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.why__copy p {
  font-size: 1.05rem;
  color: var(--slate);
}
.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.why__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.why__feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.why__feature p { font-size: 0.9rem; margin: 0; color: var(--graphite); }

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why__stat-card {
  background: var(--bone);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s;
}
.why__stat-card:hover { transform: translateY(-4px); }
.why__stat-card--accent {
  background: linear-gradient(145deg, var(--ink), var(--charcoal));
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}
.why__stat-card--accent::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.3), transparent 70%);
}
.why__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.why__stat-card--accent .why__stat-num { color: var(--white); }
.why__stat-num span {
  font-size: 1.4rem;
  color: var(--red);
  margin-left: 4px;
}
.why__stat-label {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
}
.why__stat-card--accent .why__stat-label { color: rgba(255, 255, 255, 0.65); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--bone); }
.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  color: var(--slate);
}
.testimonials__rating .stars { font-size: 1.3rem; }
.stars { color: var(--gold); letter-spacing: 2px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  transition: all 0.25s;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: 'Georgia', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200, 16, 46, 0.12);
}
.testimonial .stars { font-size: 1rem; margin-bottom: 14px; }
.testimonial p {
  font-size: 1rem;
  color: var(--slate);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial footer strong { color: var(--ink); font-weight: 700; }
.testimonial footer span { font-size: 0.88rem; color: var(--steel); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 21px);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255, 255, 255, 0.9); margin: 8px 0 0; font-size: 1.1rem; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn--primary { background: var(--white); color: var(--red); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
.cta-banner .btn--primary:hover { background: var(--ink); color: var(--white); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 56px;
}
.footer__brand img {
  height: 90px;
  width: auto;
  margin-bottom: 18px;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 340px;
}
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer__contact a, .footer__contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer__contact a:hover { color: var(--white); }
.footer__contact svg { color: var(--red-bright); flex-shrink: 0; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: color 0.15s, padding-left 0.15s;
}
.footer__col a:hover { color: var(--white); padding-left: 4px; }

.footer__bar {
  background: #0A0C0F;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer__legal { display: flex; gap: 18px; color: rgba(255, 255, 255, 0.5); flex-wrap: wrap; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: rgba(255, 255, 255, 0.6); transition: color 0.15s; }
.footer__links a:hover { color: var(--white); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .how__steps { grid-template-columns: 1fr; }
  .how__connector { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 800px) {
  .topbar__left .topbar__item:first-child { display: none; }
  .topbar__right a:not(.topbar__phone) { display: none; }
  .topbar { font-size: 0.82rem; }
  .topbar__inner { min-height: 40px; gap: 12px; }
  .topbar__phone { font-size: 1rem; white-space: nowrap; }
  .topbar__item { font-size: 0.82rem; }
  .header__nav { display: none; }
  .header__menu { display: flex; }
  .header__brand img { height: 52px; }
  .header__inner { min-height: 68px; gap: 12px; }
  .header__cta .btn { padding: 9px 14px; font-size: 0.78rem; letter-spacing: 0.04em; }

  /* Compact mobile hero — CTAs above the fold */
  .hero__copy { display: flex; flex-direction: column; }
  .hero__eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .hero__lede { order: 3; }
  .hero__actions { order: 4; }
  .hero__bullets { order: 5; }
  .hero__trust { order: 6; }

  .hero__inner { padding: 26px 18px 36px; min-height: 0; }
  .hero__eyebrow {
    font-size: 0.7rem;
    padding: 6px 14px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    gap: 8px;
    align-self: center;
  }
  .hero__dot { width: 7px; height: 7px; }
  .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.4rem);
    max-width: 100%;
    line-height: 1.05;
  }
  .hero__lede {
    font-size: 1rem;
    margin: 14px auto 22px;
    line-height: 1.45;
  }
  .hero__actions { gap: 10px; margin-bottom: 24px; }
  .hero__actions .btn { width: 100%; }
  .btn--xl { padding: 15px 24px; font-size: 0.98rem; letter-spacing: 0.06em; }
  .hero__bullets {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 8px;
    margin-bottom: 22px;
  }
  .hero__bullets li { font-size: 0.92rem; gap: 10px; }
  .hero__bullets svg { width: 18px; height: 18px; }
  .hero__trust { flex-wrap: wrap; gap: 16px 24px; justify-content: center; padding: 14px 20px; }
  .hero__trust-divider { display: none; }
  .hero__trust-item strong { font-size: 1.4rem; }
  .hero__trust-item span { font-size: 0.7rem; margin-top: 4px; }

  .services__grid { grid-template-columns: 1fr; }
  .why__features { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px 40px; }
  .footer__bar-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 500px) {
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; width: 100%; }
  .cta-banner__actions .btn { flex: 1; min-width: 0; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * {
    animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  }
  .hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
  .hero__copy > *:nth-child(2) { animation-delay: 0.15s; }
  .hero__copy > *:nth-child(3) { animation-delay: 0.25s; }
  .hero__copy > *:nth-child(4) { animation-delay: 0.35s; }
  .hero__copy > *:nth-child(5) { animation-delay: 0.45s; }
  .hero__copy > *:nth-child(6) { animation-delay: 0.55s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
