/* ============================================
   TWO4DELIVERY - CSS Variables & Reset
   ============================================ */

:root {
  /* Brand Colors */
  --blue-primary: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-pale: #dbeafe;
  --black: #0f0f0f;
  --black-soft: #1a1a2e;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;

  /* Typography */
  --font-main: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.1);
  --shadow-md: 0 8px 32px rgba(37, 99, 235, 0.15);
  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-mid: 0.4s ease;
  --transition-slow: 0.7s ease;

  /* Z-index layers */
  --z-base: 1;
  --z-nav: 100;
  --z-modal: 200;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

input,
textarea,
select {
  font-family: var(--font-main);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}

.section-title span {
  color: var(--blue-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-top: 12px;
}

/* ============================================
   SKIP LINK — accesibilitate tastatura
   ============================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================
   SCROLL ANIMATIONS BASE
   ============================================ */

.reveal {
  opacity: 0;
}

.reveal-left {
  opacity: 0;
}

.reveal-right {
  opacity: 0;
}

.reveal-scale {
  opacity: 0;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 3px;
}

/* ============================================
   SELECTION
   ============================================ */

::selection {
  background: var(--blue-primary);
  color: var(--white);
}

/* ============================================
   TWO4DELIVERY - Navbar
   ============================================ */

/* ---- Bara fixa ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* ---- Inner ---- */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Logo ---- */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.navbar__logo .logo-white { display: block; }
.navbar__logo .logo-dark  { display: none;  }

/* scrolled: logo inchis */
.navbar.scrolled .navbar__logo .logo-white { display: none;  }
.navbar.scrolled .navbar__logo .logo-dark  { display: block; }

/* ---- Links desktop ---- */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active { color: #fff; }

.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

/* scrolled: links inchise */
.navbar.scrolled .navbar__link       { color: var(--gray-800); }
.navbar.scrolled .navbar__link:hover { color: var(--blue-primary); }
.navbar.scrolled .navbar__link.active { color: var(--blue-primary); }

/* ---- CTA ---- */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--blue-primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.18);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.28);
}

.navbar.scrolled .navbar__cta {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.navbar.scrolled .navbar__cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

/* ---- Hamburger ---- */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  flex-shrink: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.navbar.scrolled .navbar__hamburger {
  background: #f1f5f9;
}

.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span { background: #0f0f0f; }

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Meniu mobil fullscreen ---- */
.navbar__mobile-menu {
  position: fixed;
  inset: 0;
  background: #1a1a2e;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar__mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile-menu .navbar__link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar__mobile-menu.open .navbar__link { opacity: 1; transform: translateY(0); }
.navbar__mobile-menu.open .navbar__link:nth-child(1) { transition-delay: 0.08s; }
.navbar__mobile-menu.open .navbar__link:nth-child(2) { transition-delay: 0.14s; }
.navbar__mobile-menu.open .navbar__link:nth-child(3) { transition-delay: 0.20s; }

.navbar__mobile-menu .navbar__cta {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.26s, transform 0.3s ease 0.26s;
}

.navbar__mobile-menu.open .navbar__cta { opacity: 1; transform: translateY(0); }

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

@media (max-width: 768px) {
  .navbar__menu { display: none; }

  .navbar__hamburger { display: flex; }

  /* Inaltime fixa 60px pe mobile — identica pe orice pagina, orice stare */
  .navbar,
  .navbar.scrolled {
    padding: 0;
  }

  .navbar__inner {
    height: 60px;
    padding: 0 16px;
  }
}

/* ── Pagini cu fundal deschis (GDPR, etc.) ────────────────
   Navbar vizibil de la inceput, fara scroll               */
.page-light .navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.page-light .navbar .logo-white { display: none !important; }
.page-light .navbar .logo-dark  { display: block !important; }

.page-light .navbar .navbar__link       { color: var(--gray-800, #1e293b); }
.page-light .navbar .navbar__link:hover { color: var(--blue-primary, #2563eb); }
.page-light .navbar .navbar__link.active { color: var(--blue-primary, #2563eb); }

.page-light .navbar .navbar__cta {
  background: var(--blue-primary, #2563eb);
  color: #fff;
}

.page-light .navbar .navbar__hamburger span {
  background: #0f172a;
}

/* ============================================
   TWO4DELIVERY - Hero Section
   ============================================ */

.hero {
  position: relative;
  /* 100dvh foloseste viewport-ul real (fara bara browser) pe mobile/tablet */
  min-height: 100dvh;
  min-height: 100vh; /* fallback pentru browsere vechi */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--black-soft);
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.85) 0%,
    rgba(37, 99, 235, 0.75) 40%,
    rgba(15, 15, 15, 0.7) 100%
  );
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 40%);
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* Platform badges floating */
.hero__platforms {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.platform-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  animation: floatBadge 6s ease-in-out infinite;
}

.platform-badge img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.platform-badge--bolt {
  top: 28%;
  left: 6%;
  animation-delay: 0s;
}

.platform-badge--glovo {
  top: 18%;
  right: 8%;
  animation-delay: -2s;
}


@keyframes floatBadge {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 900px;
  width: 100%;
}

/* Logo SVG integrat */
.hero__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.hero-logo-svg {
  width: min(960px, 95vw);
  height: auto;
  overflow: visible;
  display: block;
  margin: 0 auto;
}

.hero-logo-img {
  width: min(720px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(37,99,235,0.3));
}

/* SVG logo complet cu biciclist — overflow hidden ca biciclistul
   sa nu fie vizibil cand e in afara ecranului */
.hero__logo-wrapper {
  overflow: hidden;
  width: 100%;
}

.hero-logo-svg {
  width: min(860px, 92vw);
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}

/* Hero tagline */
.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  margin-bottom: 20px;
}

.hero__tagline strong {
  color: var(--white);
  font-weight: 700;
}

/* Stats bar */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
  color: var(--white);
}

.hero__stat-number {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-indicator .scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   FORM OVERLAP SECTION
   ============================================ */

.hero-form-section {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding: 0 24px 80px;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
              0 8px 32px rgba(37, 99, 235, 0.12);
  padding: 56px 64px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-light), var(--blue-primary));
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.hero-form-card__header {
  text-align: center;
  margin-bottom: 40px;
}

.hero-form-card__header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.hero-form-card__header p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
  padding: 100px 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--white);
  border-radius: 0 0 60px 60px;
}

.steps-section__header {
  text-align: center;
  margin-bottom: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-light), var(--blue-primary));
  z-index: 0;
}

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

.step-card__icon-wrap {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.step-card__icon-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(37, 99, 235, 0.3);
  animation: rotateDash 12s linear infinite;
}

@keyframes rotateDash {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.step-card:hover .step-card__icon-wrap {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.45);
}

.step-card__number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 2px solid var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--blue-primary);
}

.step-card__icon-wrap svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.step-card__desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   DESCRIPTION SECTION (CURIER INFO)
   ============================================ */

.courier-info-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.courier-info-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-pale) 0%, transparent 70%);
  pointer-events: none;
}

.courier-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.courier-info__text .section-title {
  margin-bottom: 20px;
}

.courier-info__text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

.courier-info__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.highlight-item__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
}

.highlight-item__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

.courier-info__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.earnings-card {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  margin: auto;
}

/* Decoratiunile circulare eliminate - causau pata luminoasa pe mobile */

.earnings-card__label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.earnings-card__amount {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.earnings-card__period {
  font-size: 1rem;
  opacity: 0.75;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.earnings-card__platforms {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.earnings-platform-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.earnings-platform-badge img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

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

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps-grid::before {
    display: none;
  }

  .courier-info__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .courier-info__visual {
    width: 100%;
  }

  .earnings-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 40px 32px;
  }

  .earnings-card__amount {
    font-size: clamp(2rem, 10vw, 3rem);
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 100px 20px 50px;
  }

  .hero-form-card {
    padding: 36px 24px;
  }

  .platform-badge--bolt {
    top: 22%;
    left: 4%;
    bottom: auto;
    font-size: 0.72rem;
    padding: 7px 12px;
    gap: 7px;
  }

  .platform-badge--glovo {
    top: 22%;
    right: 4%;
    font-size: 0.72rem;
    padding: 7px 12px;
    gap: 7px;
  }


  .platform-badge img {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .hero__stats {
    gap: 28px;
  }

  .steps-section::before {
    display: none;
  }

  .hero-form-section {
    margin-top: -40px;
  }

  /* Fix 3: ascunde lumina decorativa din dreapta pe mobile */
  .courier-info-section::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__logo-wrapper {
    margin-bottom: 24px;
  }

  .earnings-card {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .earnings-platform-badge {
    padding: 6px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .earnings-platform-badge img {
    width: 16px;
    height: 16px;
  }

  .earnings-card__platforms {
    gap: 8px;
  }
}

/* ============================================
   RESPONSIVE — Laptop mic / tablet landscape
   (fix: hero content vizibil fara scroll)
   ============================================ */

@media (max-width: 1280px) and (max-height: 800px) {
  .hero__content {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero__logo-wrapper {
    margin-bottom: 20px;
  }

  .hero__tagline {
    margin-bottom: 12px;
  }

  .hero__stats {
    margin-top: 20px;
    gap: 36px;
  }

  .hero__stat-number {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
  }

  .hero-logo-svg {
    width: min(680px, 85vw);
  }
}

@media (max-width: 1024px) and (max-height: 768px) {
  .hero__content {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .hero-logo-svg {
    width: min(600px, 80vw);
  }
}

/* ============================================
   TWO4DELIVERY - Hero Background Animat CSS
   (înlocuiește imaginea hero-bg.jpg)
============================================ */

.hero {
  background: var(--black-soft);
}

.hero__bg-image {
  display: none; /* nu mai avem nevoie de poza */
}

/* Gradient animat de fundal */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0f0f1e 0%,
    #1a1a2e 25%,
    #1d3a6e 55%,
    #2563eb 80%,
    #1d4ed8 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grilă de linii în perspectivă (efect futurist) */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  transform: perspective(500px) rotateX(20deg) scaleY(1.4);
  transform-origin: bottom center;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}

/* Lumini de ambient */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(37, 99, 235, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 50% 100%, rgba(29, 78, 216, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Siluetă skyline în partea de jos */
.hero__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__skyline svg {
  width: 100%;
  height: 100%;
  fill: rgba(0, 0, 0, 0.35);
}
/* ============================================
   FOCUS VISIBLE — accesibilitate tastatura
   ============================================ */

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.navbar__link:focus-visible,
.navbar__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 4px;
}

.navbar.scrolled .navbar__link:focus-visible,
.navbar.scrolled .navbar__cta:focus-visible {
  outline-color: var(--blue-primary);
}

button:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 0;
  border-color: var(--blue-primary);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
}

/* ============================================
   PREFERS-REDUCED-MOTION
   Dezactiveaza animatiile la preferinta sistem
   ============================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .particle {
    animation: none !important;
    display: none;
  }

  .hero__bg-pattern {
    animation: none !important;
  }

  .hero__bg-gradient {
    animation: none !important;
  }

  .platform-badge {
    animation: none !important;
  }

  .step-card__icon-wrap::before {
    animation: none !important;
  }

  .hero-form-card::before {
    animation: none !important;
  }
}

/* ============================================
   BREADCRUMB — navigare vizuala
   ============================================ */

.breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--gray-400);
}

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

.breadcrumb__item::after {
  content: '/';
  color: var(--gray-300);
  font-size: 0.75rem;
}

.breadcrumb__item:last-child::after {
  display: none;
}

.breadcrumb__link {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--blue-primary);
}

.breadcrumb__item--active {
  color: var(--blue-primary);
  font-weight: 500;
}


/* ============================================
   GDPR PAGE — stiluri specifice
   ============================================ */

.gdpr-contact-note {
  margin-top: 1rem;
}

/* ============================================
   HONEYPOT — ascuns vizual pentru utilizatori
   Botii il vad si il completeaza, noi il ignoram
   ============================================ */

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   ORAȘE DESERVITE — sectiune SEO local, compacta pe mobile
============================================================ */
.cities-section {
  padding: var(--section-padding);
  background: var(--gray-100);
}

.cities__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.cities__intro {
  margin-top: 16px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  color: var(--gray-600);
}

.cities__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.city-chip {
  padding: 10px 22px;
  background: var(--white);
  border: 2px solid var(--blue-pale);
  border-radius: var(--radius-xl);
  font-weight: 600;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.city-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue-primary);
}

.cities__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.cities__note a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cities__list {
    gap: 10px;
  }
  .city-chip {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
