:root {
  --red: #cd2327;
  --red-dark: #a81b1e;
  --red-light: #e8393c;
  --blue: #45529e;
  --blue-dark: #333e82;
  --blue-light: #5a68b8;
  --white: #ffffff;
  --text: #535353;
  --text-dark: #535353;
  --text-light: #7a7a7a;
  --text-xlight: #a8a8a8;
  --bg: #ffffff;
  --bg-off: #f7f7f5;
  --bg-dark: #1a1a1a;
  --bg-section: #f8f9fa;
  --border: #e8e8e5;
  --border-dark: #d0d0cc;
  --accent-red: rgba(205, 35, 39, 0.08);
  --accent-blue: rgba(69, 82, 158, 0.08);

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 5rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 500ms;
  --dur-xslow: 800ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

main {
  padding-top: 80px;
}

.home-page main,
.about-page main,
.service-page main {
  padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

h1.hero-heading {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: var(--text-4xl);
  line-height: 1.1;
  color: var(--white);
}

@media (min-width: 768px) {
  h1.hero-heading {
    font-size: var(--text-6xl);
  }
  
  .hidden-mobile {
    display: inline !important;
  }
}

.text-justify {
  text-align: justify;
}

.hidden-mobile {
  display: none !important;
}

h2.section-heading {
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h2.section-heading {
    font-size: var(--text-4xl);
  }
}

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

img, svg, video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-12);
  }
}

.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container-wide {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1200px) {
  .container-wide {
    padding: 0 var(--space-12);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  transition: all var(--dur-base);
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  border: none;
  font-size: var(--text-base);
}

.btn-red {
  background-color: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background-color: var(--red-dark);
  transform: scale(1.02);
}

.btn-white-red {
  background-color: var(--white);
  color: var(--red);
}

.btn-white-red:hover {
  transform: scale(1.02);
}

.btn-white-blue {
  background-color: var(--white);
  color: var(--blue);
}

.btn-white-blue:hover {
  transform: scale(1.02);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
}

.hero-line {
  overflow: hidden;
}

.hero-line span {
  display: block;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

.hero-line.in-view span {
  opacity: 1;
}

/* TOP BAR & NAVBAR */
.top-bar {
  background: var(--blue);
  color: var(--white);
  height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
}

.top-bar .container {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .top-bar .phone-item {
    display: none;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 300ms var(--ease-out);
  background: var(--bg);
  padding: var(--space-4) 0;
}

.home-page .navbar:not(.scrolled),
.about-page .navbar:not(.scrolled),
.service-page .navbar:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

.navbar.scrolled {
  top: 0;
  background: var(--white);
  color: var(--text-dark);
  padding: var(--space-2) 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px; /* Make navbar wider than standard container on desktop */
  width: 90%;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-top {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.logo-stf {
  color: var(--red);
}

.navbar:not(.scrolled) .logo-transport {
  color: var(--white);
}

.navbar.scrolled .logo-transport {
  color: var(--blue);
}

.logo-inc {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.2em;
  align-self: flex-end;
}

.navbar:not(.scrolled) .logo-inc {
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  color: var(--text-dark); /* Default scrolled color */
  transition: all 300ms var(--ease-out);
}

.home-page .navbar:not(.scrolled) .nav-link,
.about-page .navbar:not(.scrolled) .nav-link,
.service-page .navbar:not(.scrolled) .nav-link {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 250ms var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 320px;
  background: var(--white);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: all var(--dur-base);
  padding: var(--space-4) 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--bg-off);
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background: var(--bg-off);
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.dropdown-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-light);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
    color: var(--white);
    transition: color 300ms var(--ease-out);
  }

  .navbar.scrolled .hamburger {
    color: var(--text-dark);
  }

  .navbar {
    background: var(--white);
    padding: var(--space-3) 0;
    box-shadow: var(--shadow-md);
  }

  .home-page .navbar:not(.scrolled),
  .about-page .navbar:not(.scrolled),
  .service-page .navbar:not(.scrolled) {
    background: transparent;
    box-shadow: none;
  }

  .navbar:not(.scrolled) .logo-transport {
    color: var(--white) !important;
  }
  .navbar:not(.scrolled) .logo-inc {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .navbar.scrolled .logo-transport {
    color: var(--blue) !important;
  }
  .navbar.scrolled .logo-inc {
    color: var(--text-light) !important;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: right 400ms var(--ease-out);
  padding: var(--space-6);
  color: var(--text-dark);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  font-size: 32px;
  text-align: right;
  cursor: pointer;
  margin-bottom: var(--space-8);
  color: var(--text-light);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

.mobile-sub-links {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-left: var(--space-4);
  border-left: 2px solid var(--border);
}

.mobile-sub-link {
  font-size: var(--text-lg);
  display: flex;
  gap: var(--space-3);
  color: var(--text);
  align-items: center;
}

.mobile-sub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  background: var(--bg-off);
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  color: var(--blue);
  flex-shrink: 0;
}

.mobile-ctas {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 var(--space-8);
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    text-align: left;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-logo {
  margin-bottom: var(--space-4);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-logo {
    justify-content: flex-start;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-links {
    align-items: flex-start;
  }
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    justify-content: space-between;
    text-align: left;
  }
}

/* COMMON SECTIONS */
section {
  padding: var(--space-12) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-20) 0;
  }
}

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.15em;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--blue); 
  padding: 0px 8px;
  border-radius: 5px;
}

/* FLOATING INDICATORS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  width: 0%;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  padding: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transform: translateY(100%);
  transition: transform var(--dur-slow);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  font-size: var(--text-sm);
  min-width: 280px;
}

/* UTILS */
.bg-section {
  background: var(--bg-section);
}

.bg-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.bg-blue {
  background: var(--blue);
  color: var(--white);
}

.bg-red {
  background: var(--red);
  color: var(--white);
}

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

.max-w-3xl {
  max-width: 48rem;
  margin-inline: auto;
}

.max-w-6xl {
  max-width: 72rem;
  margin-inline: auto;
}

/* SHARED HERO UTILITIES */

.hero-sub {
  font-size: var(--text-lg);
  max-width: 560px;
  opacity: 0.9;
  margin: var(--space-4) 0 var(--space-8);
}



/* NEW HERO SECTION */
.hero-new {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url('./assets/hero/hero-desktop.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--white);
  padding-top: 80px; /* Offset for navbar in hero content if needed, but flex centered is usually better */
}

.hero-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.hero-new-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-new-content {
  max-width: 650px;
  text-align: left;
}

.hero-heading-main {
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-new .hero-sub {
  font-size: var(--text-xl);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
}

@media (max-width: 1024px) {
  .hero-new {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
    background-image: url('./assets/hero/hero-tablet.webp');
    background-position: center bottom;
    align-items: flex-start;
  }
  
  .hero-new::before {
    display: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 100%);
  }
  
  .hero-new-content {
    text-align: left;
    margin: 0;
    width: 100%;
  }

  h1.hero-heading-main {
    font-size: clamp(3rem, 8vw, 4.5rem);
    margin-bottom: var(--space-4);
  }

  .hero-new .hero-sub {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 100px 0 60px;
    background-image: url('./assets/hero/hero-mobile.webp');
  }

  h1.hero-heading-main {
    font-size: 3.4rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* SERVICES */
.services-overview {
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: min(45rem, 80vw);
  height: min(45rem, 80vw);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.services-overview::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(45rem, 80vw);
  height: min(45rem, 80vw);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.services-overview > .container {
  position: relative;
  z-index: 1;
}

/* CARDS */
.card-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.cols-3, .card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8);
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transition: transform var(--dur-base) var(--ease-out);
}




.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  z-index: 1;
  transition: transform 6s linear;
}

.service-card:hover .service-card-bg {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
  z-index: 2;
}

.service-card-content {
  position: relative;
  z-index: 3;
  width: 100%;

  h3 {
    margin-bottom: 0px;
  }
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--white);
}

.service-card p {
  display: none;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .service-card {
    height: 350px;
  }

  .service-card p {
    display: block;
  }
}

/* STATS */
.stats-strip {
  background-color: var(--white);
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  padding: var(--space-20) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}



.stat-card {
  position: relative;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  padding: var(--space-5);
  color: var(--text-dark);
  transition: transform var(--dur-base) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-8px);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    height: 180px;
    padding: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    perspective: 1500px;
    gap: var(--space-12);
  }
  
  .stat-card {
    transform: rotateY(8deg);
  }

  .stat-card:hover {
    transform: rotateY(0) translateY(-10px);
  }
}

.stat-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 6s linear;
}

.stat-card:hover .stat-card-image {
  transform: scale(1.1);
}

.stat-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Dark tint removed as per request */
}

.stat-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-card-content::after {
  content: '';
  width: 45px;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--blue));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.4), 0 0 10px rgba(37, 99, 235, 0.4);
  margin-top: var(--space-2);
}

.stat-num-large {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label-bold {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* 2 COL LAYOUT */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.split-start {
  align-items: start;
}

@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  .split-section {
    grid-template-columns: 55% 45%;
  }

  .split-section.reverse {
    grid-template-columns: 45% 55%;
  }
}

.split-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-img-cont {

  img {
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed var(--border-dark);
    z-index: 0;
  }
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num-bg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 800;
  color: var(--red);
  opacity: 0.08;
  line-height: 1;
  z-index: -1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-md);
  color: var(--red);
  font-size: 32px;
  font-weight: bold;
  border: 4px solid var(--bg-section);
}

/* BADGES */
.badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}

.badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

/* ACCORDION */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: all var(--dur-base);
}

.faq-item.active {
  border-left-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  padding: 0 var(--space-6);
  transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur-slow) var(--ease-out);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-6) var(--space-6);
  opacity: 1;
}

.faq-icon {
  transition: transform var(--dur-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* CONTACT CARDS */
.contact-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--dur-base);
  color: var(--text-dark);
  display: block;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-section);
  transition: background var(--dur-base);
}

.contact-card-red::before {
  background: var(--red);
}

.contact-card-blue::before {
  background: var(--blue);
}

.cc-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  margin: 0 auto var(--space-6);
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-base);
}

.contact-card-red .cc-icon {
  color: var(--red);
  background: rgba(220, 38, 38, 0.1);
}

.contact-card-blue .cc-icon {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
}

.contact-card-red:hover .cc-icon {
  background: var(--red);
  color: var(--white);
}

.contact-card-blue:hover .cc-icon {
  background: var(--blue);
  color: var(--white);
}

.cc-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.cc-val {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--text-dark);
  font-weight: 800;
  margin: var(--space-1) 0;
}

@media (min-width: 768px) {
  .cc-val {
    font-size: var(--text-4xl);
  }
}

/* PLACEHOLDER */
.img-placeholder {
  background: var(--bg-section);
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border-radius: inherit;
}

/* CUSTOM LISTS */
ul.arrow-list, ul.dash-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

ul.arrow-list li, ul.dash-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
}

ul.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}

ul.dash-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-dark);
}

/* TILTED CARD */
.tilted-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.04);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg) scale(0.98);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
  height: max-content;
}

.tilted-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.01);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}