/* ============================================
   Giaohang123.vn - Main Stylesheet
   ============================================ */

:root {
  --color-primary: #f5a623;
  --color-primary-dark: #e09410;
  --color-primary-light: #fff8eb;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-white: #ffffff;
  --color-gray-50: #f7f8fa;
  --color-gray-100: #eef0f3;
  --color-gray-200: #e2e5ea;
  --color-border: #e8eaed;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;
  --transition: 0.25s ease;
  --container-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.text-primary { color: var(--color-primary); }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: #ccc;
}
.btn--outline:hover { background: var(--color-gray-50); }

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn--white:hover { background: var(--color-primary-light); }

.btn--white-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn--white-outline:hover { background: rgba(255, 255, 255, 0.15); }

.btn__icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ===== Logo ===== */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  display: block;
  max-width: none;
}

.header .logo {
  width: 210px;
  height: 54px;
  overflow: hidden;
}

.header .logo__img {
  height: 80px;
  width: auto;
  transform: scale(2.0);
  transform-origin: 30% 50%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--header-height);
}

.nav {
  margin-left: auto;
  flex-shrink: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
  line-height: 1.4;
}

.nav__link:hover,
.nav__link--active { color: var(--color-primary); }

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.nav__link i { font-size: 9px; opacity: 0.55; flex-shrink: 0; }

.nav__dropdown { position: relative; }

.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}

.nav__dropdown:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--color-text);
}
.nav__submenu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 4px;
}

.nav__mobile-actions { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 0;
  --hero-bg: #fdfbf5;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__desc {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--color-text-light);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: -4px -8px -4px -32px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(100deg, var(--hero-bg) 0%, rgba(253, 251, 245, 0.92) 12%, transparent 30%),
    linear-gradient(to top, var(--hero-bg) 0%, rgba(253, 251, 245, 0.88) 14%, transparent 28%),
    linear-gradient(to right, transparent 82%, rgba(253, 251, 245, 0.75) 94%, var(--hero-bg) 100%),
    linear-gradient(to bottom, transparent 78%, rgba(253, 251, 245, 0.6) 92%, var(--hero-bg) 100%);
}

.hero__image {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  -webkit-mask-image: radial-gradient(
    ellipse 98% 96% at 58% 46%,
    #000 38%,
    rgba(0, 0, 0, 0.92) 52%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.2) 86%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 98% 96% at 58% 46%,
    #000 38%,
    rgba(0, 0, 0, 0.92) 52%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.2) 86%,
    transparent 100%
  );
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 32px 0 48px;
  position: relative;
  z-index: 2;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hero__feature-icon {
  width: 52px;
  height: 52px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.hero__feature span {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.35;
}

/* ===== Tracking ===== */
.tracking {
  padding: 40px 0 64px;
  background: #eef0f3;
}

.tracking__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 56px);
  border: none;
}

.tracking__content { flex: 1; min-width: 0; }

.tracking__title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.tracking__desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.tracking__input-group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 520px;
}

.tracking__input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  font-size: 14px;
  font-family: var(--font-family);
  border: 1px solid #d8dce2;
  border-radius: 10px;
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.tracking__input::placeholder {
  color: var(--color-text-muted);
}

.tracking__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.tracking__btn {
  border-radius: 10px;
  border: none;
  padding: 14px 36px;
  flex-shrink: 0;
  font-size: 15px;
}

.tracking__visual { flex-shrink: 0; }

.tracking__illus {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.tracking__scooter-wrap { position: relative; }

.tracking__scooter {
  width: 72px;
  height: 72px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-primary);
}

.tracking__phone {
  width: 64px;
  background: #222;
  border-radius: 14px;
  padding: 5px;
  box-shadow: var(--shadow-md);
}

.tracking__phone-notch {
  width: 24px;
  height: 4px;
  background: #444;
  border-radius: 4px;
  margin: 4px auto 6px;
}

.tracking__phone-screen {
  height: 90px;
  background: linear-gradient(160deg, #dbeafe, #bfdbfe);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.tracking__map-line {
  position: absolute;
  width: 70%;
  height: 2px;
  background: var(--color-primary);
  top: 55%;
  left: 15%;
  transform: rotate(-20deg);
  opacity: 0.6;
}

.tracking__map-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 40%;
  left: 30%;
}

.tracking__map-pin {
  position: absolute;
  color: var(--color-primary);
  font-size: 18px;
  top: 25%;
  right: 25%;
  animation: bounce 2s infinite;
}

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

/* ===== Sections ===== */
.section { padding: clamp(48px, 8vw, 80px) 0; }
.section--gray { background: var(--color-gray-50); }

.section__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.section__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section__title--left { text-align: left; margin-bottom: 0; }

.section__desc {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section__desc--left {
  text-align: left;
  margin: 12px 0 0;
  max-width: 520px;
}

/* ===== Solutions ===== */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.solution-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.solution-card__icon--blue { background: #e8f0fe; color: #4285f4; }
.solution-card__icon--green { background: #e6f4ea; color: #34a853; }
.solution-card__icon--purple { background: #f3e8fd; color: #9334e6; }
.solution-card__icon--orange { background: var(--color-primary-light); color: var(--color-primary); }
.solution-card__icon--red { background: #fce8e6; color: #ea4335; }
.solution-card__icon--teal { background: #e0f7fa; color: #00838f; }

.solution-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.solution-card__desc {
  font-size: 13.5px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ===== Shipper ===== */
.shipper__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.shipper__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  min-height: 320px;
}

.phone-mockup {
  width: clamp(140px, 20vw, 190px);
  background: #1a1a1a;
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.phone-mockup--back {
  transform: rotate(-8deg) translateY(24px);
  z-index: 1;
}

.phone-mockup--front {
  transform: rotate(6deg);
  z-index: 2;
}

.phone-mockup__screen {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/18;
  display: flex;
  flex-direction: column;
}

.phone-mockup__screen--dark { background: #12121f; }

.phone-mockup__status {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px 4px;
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.phone-mockup__screen--dark .phone-mockup__status { color: #aaa; }

.phone-mockup__map {
  flex: 1;
  background: linear-gradient(160deg, #2d3436, #636e72);
  position: relative;
  margin: 4px;
  border-radius: 12px;
}

.phone-mockup__route-line {
  position: absolute;
  width: 60%;
  height: 2px;
  background: var(--color-primary);
  top: 50%;
  left: 20%;
  transform: rotate(-12deg);
}

.phone-mockup__pin {
  position: absolute;
  color: var(--color-primary);
  font-size: 20px;
  top: 35%;
  right: 28%;
}

.phone-mockup__order {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-mockup__order-badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
}

.phone-mockup__order-id,
.phone-mockup__order-addr {
  font-size: 11px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-mockup__order-id i,
.phone-mockup__order-addr i { color: var(--color-primary); font-size: 10px; }

.phone-mockup__order-price {
  font-size: 11px;
  color: var(--color-text);
  margin-top: 4px;
}

.phone-mockup__order-btn {
  margin-top: auto;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.shipper__benefits { margin: 24px 0 28px; }

.shipper__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 14.5px;
}

.shipper__benefits li i {
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.shipper__download {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.store-btn:hover { background: #333; }
.store-btn i { font-size: 26px; }
.store-btn span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.store-btn span small {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.75;
}

.shipper__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.qr-box {
  width: 72px;
  height: 72px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-dark);
}

.shipper__qr span { font-size: 10px; color: var(--color-text-muted); }

/* ===== Testimonials ===== */
.testimonials__wrapper { position: relative; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.testimonial-card__quote {
  font-size: 13.5px;
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.65;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-light);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--color-text-muted);
}

.testimonial-card__stars {
  color: var(--color-primary);
  font-size: 12px;
  display: flex;
  gap: 2px;
}

.testimonials__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.testimonials__dot--active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ===== Media ===== */
.media__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 960px;
  margin: 0 auto;
}

.media__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 24px) clamp(12px, 2vw, 20px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.media__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 166, 35, 0.35);
}

.media__logo-img {
  width: auto;
  max-width: 100%;
  height: clamp(28px, 4vw, 40px);
  object-fit: contain;
  transition: transform var(--transition);
}

.media__item:hover .media__logo-img {
  transform: scale(1.05);
}

/* ===== News ===== */
.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.news__view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.news__view-all:hover { color: var(--color-primary-dark); }

.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.news-card__link { display: block; }

.news-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-gray-100);
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__image img { transform: scale(1.05); }

.news-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  padding: 14px 16px 6px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__date {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  padding: 0 16px 16px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--color-primary);
  padding: clamp(40px, 6vw, 56px) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner__text { flex: 1; min-width: 260px; max-width: 620px; }

.cta-banner__title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.cta-banner__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  z-index: 1;
}

.cta-banner__scooter {
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-size: clamp(80px, 12vw, 140px);
  color: rgba(255, 255, 255, 0.12);
  transform: rotate(-10deg);
  pointer-events: none;
}

/* ===== Footer (light theme) ===== */
.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: clamp(40px, 6vw, 60px) 0 0;
  color: var(--color-text-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: 40px;
}

.footer__about {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer .logo {
  width: 190px;
  height: 48px;
  overflow: hidden;
}

.footer .logo__img {
  height: 70px;
  width: auto;
  transform: scale(2.2);
  transform-origin: 24% 50%;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-primary); }

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.footer__contact i {
  color: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
  width: 14px;
}

.footer__contact a:hover { color: var(--color-primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom-left a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer__bottom-left a:hover { color: var(--color-primary); }

/* ===== Responsive ===== */

/* Tablet landscape */
@media (max-width: 1200px) {
  .nav__link { padding: 8px 9px; font-size: 13px; }
  .nav__link--active::after { left: 9px; right: 9px; }
  .header__actions .btn--sm { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 1100px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* Tablet portrait */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }

  .hero__visual {
    justify-content: center;
    order: -1;
  }

  .hero__visual::after {
    inset: -4px -12px -4px -12px;
    background:
      linear-gradient(to top, var(--hero-bg) 0%, rgba(253, 251, 245, 0.9) 12%, transparent 26%),
      linear-gradient(to bottom, transparent 78%, rgba(253, 251, 245, 0.65) 92%, var(--hero-bg) 100%),
      linear-gradient(to right, transparent 85%, rgba(253, 251, 245, 0.7) 96%, var(--hero-bg) 100%),
      linear-gradient(to left, transparent 85%, rgba(253, 251, 245, 0.7) 96%, var(--hero-bg) 100%);
  }

  .hero__image {
    max-width: 440px;
    margin: 0 auto;
    object-position: center bottom;
    -webkit-mask-image: radial-gradient(
      ellipse 96% 94% at 50% 48%,
      #000 40%,
      rgba(0, 0, 0, 0.9) 54%,
      rgba(0, 0, 0, 0.5) 74%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 96% 94% at 50% 48%,
      #000 40%,
      rgba(0, 0, 0, 0.9) 54%,
      rgba(0, 0, 0, 0.5) 74%,
      transparent 100%
    );
  }

  .hero__features {
    grid-template-columns: repeat(5, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 56px;
  }
  .hero__features::-webkit-scrollbar { display: none; }
  .hero__feature { scroll-snap-align: start; min-width: 100px; }

  .tracking__card {
    flex-direction: column;
    text-align: center;
  }

  .tracking__input-group { margin: 0 auto; width: 100%; }

  .solutions__grid { grid-template-columns: repeat(2, 1fr); }

  .shipper__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section__title--left,
  .section__desc--left { text-align: center; margin-left: auto; margin-right: auto; }

  .shipper__benefits li { justify-content: center; text-align: left; max-width: 400px; margin: 0 auto; }
  .shipper__download { justify-content: center; }

  .cta-banner__inner { justify-content: center; text-align: center; }
  .cta-banner__actions { justify-content: center; width: 100%; }
}

/* Tablet menu */
@media (max-width: 1024px) {
  :root { --header-height: 64px; }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header__actions { display: none; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: 0;
    background: var(--color-white);
    padding: 20px clamp(16px, 4vw, 24px) 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav--open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    padding: 14px 12px;
    font-size: 15px;
    border-bottom: 1px solid var(--color-border);
    justify-content: space-between;
    white-space: normal;
  }

  .nav__link--active::after { display: none; }

  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 16px;
    display: none;
    background: var(--color-gray-50);
    border-radius: var(--radius-sm);
    margin-top: 4px;
  }

  .nav__dropdown--open .nav__submenu { display: block; }

  .nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }

  .nav-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle--active span:nth-child(2) { opacity: 0; }
  .nav-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding-top: calc(var(--header-height) + 24px); }

  .hero__features {
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    gap: 8px;
  }

  .hero__feature-icon { width: 44px; height: 44px; font-size: 17px; }
  .hero__feature span { font-size: 11px; }

  .tracking__input-group {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }

  .tracking__input {
    width: 100%;
    border-radius: 10px;
  }

  .tracking__btn {
    border-radius: 10px;
    width: 100%;
    padding: 14px;
  }

  .tracking__visual { display: none; }

  .solutions__grid { grid-template-columns: 1fr; }

  .shipper__phones { min-height: 260px; }
  .phone-mockup { width: 130px; }
  .phone-mockup--back { transform: rotate(-6deg) translateY(16px); }
  .phone-mockup--front { transform: rotate(4deg); }

  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }

  .testimonial-card {
    min-width: calc(100% - 32px);
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .testimonials__dots { display: flex; }

  .news__grid { grid-template-columns: 1fr; }
  .news__header { flex-direction: column; align-items: flex-start; }

  .media__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__actions .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-left { justify-content: center; }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .store-btn { flex: 1; min-width: 140px; justify-content: center; }
  .media__logos { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
