/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #001a1a;
  --blue-800: #002d2d;
  --blue-700: #004444;
  --blue-600: #005c5c;
  --blue-500: #006e6e;
  --blue-400: #008080;
  --blue-300: #009a9a;
  --blue-200: #7dcfcf;
  --blue-100: #e0f4f4;
  --accent:   #f97316;
  --accent-h: #ea580c;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --radius:   12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: var(--blue-100);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-top: 12px;
  max-width: 580px;
}

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(0,26,26,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.nav-logo:hover img { opacity: .85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-nav:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-nav-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-nav-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-cta {
  color: var(--blue-200) !important;
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--blue-900);
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 45%;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 60px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,10,10,.92) 0%, rgba(0,55,55,.84) 55%, rgba(0,30,30,.88) 100%);
  z-index: 0;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-shapes::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,160,160,.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Search card inside hero */
.hero-search-wrapper {
  width: 100%;
  max-width: 980px;
  margin-top: 40px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-200);
  margin-bottom: 24px;
}

.hero-badge i { color: var(--accent); font-size: .7rem; }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 780px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--blue-200), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 8px;
  justify-content: center;
}

.hero-stat-item { text-align: center; }

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ===========================
   SEARCH SECTION (NEW)
=========================== */
#search {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1800&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 60%;
  padding: 70px 0;
}

#search::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,26,26,.88) 0%, rgba(0,68,68,.82) 100%);
}

.search-section-inner {
  position: relative;
  z-index: 1;
}

.search-section-title {
  text-align: center;
  margin-bottom: 32px;
}

.search-section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.search-section-title p {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
}

.search-horizontal-card {
  background: rgba(255,255,255,.97);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

/* Row 1: fields */
.search-fields-row {
  display: grid;
  grid-template-columns: 200px 1fr 170px 170px;
  gap: 14px;
  align-items: end;
  margin-bottom: 20px;
}

.search-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-400);
  font-size: .85rem;
  pointer-events: none;
}

.search-input-wrap select,
.search-input-wrap input[type="text"],
.search-input-wrap input[type="date"] {
  width: 100%;
  padding: 11px 12px 11px 36px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

/* ===========================
   CUSTOM COUNTRY DROPDOWN
=========================== */
.country-select-wrapper {
  position: relative;
}

.country-select-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: left;
}

.country-select-btn:focus,
.country-select-btn:hover,
.country-select-wrapper.open .country-select-btn {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(0,128,128,.14);
  background: var(--white);
  outline: none;
}

.country-select-btn img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.country-select-btn span {
  flex: 1;
}

.country-chevron {
  font-size: .7rem;
  color: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.country-select-wrapper.open .country-chevron {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  overflow: hidden;
  display: none;
}

.country-select-wrapper.open .country-dropdown {
  display: block;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--gray-700);
  transition: background var(--transition);
}

.country-option:hover { background: var(--gray-100); }

.country-option.active {
  background: var(--blue-100);
  color: var(--blue-600);
  font-weight: 600;
}

.country-option img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-input-wrap select:focus,
.search-input-wrap input:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(0,128,128,.14);
  background: var(--white);
}

.search-input-wrap input.input-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.18);
  background: #fff5f5;
  animation: shake .35s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  60%      { transform: translateX(6px); }
  80%      { transform: translateX(-3px); }
}

.btn-search-main {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(0,128,128,.3);
  height: 44px;
  align-self: end;
}

.btn-search-main:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,128,128,.4);
}

/* Row 3: Search button */
.search-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.search-btn-row .btn-search-main {
  padding: 14px 48px;
  height: auto;
  font-size: 1rem;
}

/* Row 2: vehicle type icons */
.vtype-row-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.vtype-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vtype-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  min-width: 80px;
}

.vtype-btn i {
  font-size: 1.4rem;
}

.vtype-btn span {
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}

.vtype-btn:hover {
  border-color: var(--blue-300);
  color: var(--blue-500);
  background: var(--blue-100);
}

.vtype-btn.active {
  border-color: var(--blue-400);
  color: var(--blue-500);
  background: var(--blue-100);
  box-shadow: 0 0 0 2px rgba(0,128,128,.18);
}

/* Responsive search */
@media (max-width: 1024px) {
  .search-fields-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .search-horizontal-card { padding: 24px 20px; }
  .search-fields-row { grid-template-columns: 1fr; }
  .vtype-selector { justify-content: center; }
  .vtype-btn { min-width: 70px; padding: 10px 12px; }
  .search-btn-row { justify-content: stretch; }
  .search-btn-row .btn-search-main { width: 100%; justify-content: center; }
}

/* ===========================
   WHY KARYAXPRESS
=========================== */
#why {
  padding: 100px 0;
  background: var(--gray-50);
}

.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-subtitle { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }

.why-icon-1 { background: #e0f4f4; color: var(--blue-500); }
.why-icon-2 { background: #fce7f3; color: #db2777; }
.why-icon-3 { background: #dcfce7; color: #16a34a; }
.why-icon-4 { background: #fff7ed; color: var(--accent); }

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===========================
   HOW IT WORKS
=========================== */
#how {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.how-header { text-align: center; margin-bottom: 70px; }
.how-header .section-subtitle { margin: 0 auto; }

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--accent));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 1.8rem;
}

.step-number-bg {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 8px 32px rgba(0,128,128,.3);
}

.step-number i {
  position: relative; z-index: 1;
  color: var(--white);
  font-size: 1.4rem;
}

.step-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: var(--white);
  border: 2px solid var(--white);
}

.step-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-item p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===========================
   VEHICLES
=========================== */
#vehicles {
  padding: 100px 0;
  background: var(--white);
}

.vehicles-header { text-align: center; margin-bottom: 56px; }
.vehicles-header .section-subtitle { margin: 0 auto; }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vehicle-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
}

.vehicle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.vehicle-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.vehicle-card:hover .vehicle-img img { transform: scale(1.06); }

.vehicle-info {
  padding: 20px;
}

.vehicle-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-400);
  background: var(--blue-100);
  padding: 3px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 8px;
}

.vehicle-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.vehicle-desc {
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.vehicle-price .from {
  font-size: .75rem;
  color: var(--gray-400);
}

.vehicle-price .amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-500);
}

.vehicle-price .per {
  font-size: .75rem;
  color: var(--gray-400);
}

.vehicle-features {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.vf {
  font-size: .75rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.vf i { color: var(--blue-400); }

/* ===========================
   FAQ
=========================== */
#faq {
  padding: 100px 0;
  background: var(--gray-50);
}

.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-subtitle { margin: 0 auto; }

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(0,128,128,.10);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  gap: 16px;
}

.faq-question:hover { background: var(--gray-50); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-400);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ===========================
   CTA SECTION
=========================== */
#cta {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,.25) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,160,160,.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.cta-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  position: relative; z-index: 1;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative; z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249,115,22,.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* ===========================
   FOOTER
=========================== */
#footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-description {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--blue-300);
  margin-top: 2px;
  font-size: .85rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ===========================
   MOBILE NAV DRAWER
=========================== */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--blue-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 8px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.3);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--white); }

.mobile-menu .btn-primary { margin-top: 16px; justify-content: center; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   APP DOWNLOAD
=========================== */
#app-download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  position: relative;
  overflow: hidden;
}

#app-download::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,160,160,.2) 0%, transparent 70%);
  border-radius: 50%;
}

.app-download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-download-text .section-label {
  background: rgba(255,255,255,.1);
  color: var(--blue-200);
}

.app-download-text .section-title { color: var(--white); margin-bottom: 16px; }

.app-download-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 14px 22px;
  color: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

.app-badge-btn:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,128,128,.35);
}

.app-badge-btn i { font-size: 1.8rem; }

.app-badge-btn .badge-text small {
  display: block;
  font-size: .7rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.app-badge-btn .badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.app-download-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.phone-mockup {
  width: 180px;
  height: 360px;
  background: linear-gradient(180deg, #1e3a3a 0%, #002d2d 100%);
  border-radius: 32px;
  border: 3px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
}

.phone-mockup-screen {
  position: absolute;
  inset: 24px 8px 8px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--blue-700);
}

.phone-mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.phone-mockup.phone-main {
  width: 200px;
  height: 400px;
  margin-bottom: 0;
}

/* ===========================
   CITIES
=========================== */
#cities {
  padding: 100px 0;
  background: var(--white);
}

.cities-header { text-align: center; margin-bottom: 56px; }
.cities-header .section-subtitle { margin: 0 auto; }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.city-card:hover img { transform: scale(1.08); }

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,26,26,.85) 0%, rgba(0,26,26,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition);
}

.city-card:hover .city-overlay { background: linear-gradient(to top, rgba(0,68,68,.9) 0%, rgba(0,26,26,.2) 60%); }

.city-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.city-subtitle {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.city-subtitle i { font-size: .65rem; color: var(--accent); }

/* ===========================
   BLOG
=========================== */
#blog {
  padding: 100px 0;
  background: var(--gray-50);
}

.blog-header { text-align: center; margin-bottom: 56px; }
.blog-header .section-subtitle { margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.blog-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-400);
  background: var(--blue-100);
  padding: 3px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.blog-meta i { font-size: .65rem; }

.blog-read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-400);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-read-more { gap: 8px; }

/* ===========================
   NEWSLETTER
=========================== */
#newsletter {
  padding: 80px 0;
  background: var(--white);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--blue-100) 0%, #e0f7f7 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  border: 1.5px solid rgba(0,128,128,.15);
}

.newsletter-text { flex: 1; }

.newsletter-text .section-label { color: var(--blue-500); background: rgba(0,128,128,.12); }

.newsletter-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: .95rem;
  color: var(--gray-500);
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(0,128,128,.14);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--blue-400);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,128,128,.3);
}

/* ===========================
   SCROLL TO TOP BUTTON
=========================== */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue-400);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,128,128,.4);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

#scrollTopBtn.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

#scrollTopBtn:hover {
  background: var(--blue-500);
  box-shadow: 0 8px 28px rgba(0,128,128,.5);
  transform: translateY(-2px);
}

/* ===========================
   AGENCE PAGE – HERO GRID (side-by-side)
=========================== */
.hero-grid {
  display: grid;
  grid-template-columns: 10fr 7fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  line-height: 0;
}

.hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ===========================
   BENEFITS (agence page)
=========================== */
#benefits { padding: 100px 0; background: var(--gray-50); }
.benefits-header { text-align: center; margin-bottom: 60px; }
.benefits-header .section-subtitle { margin: 0 auto; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.7rem;
}
.bi-1 { background: #e0f4f4; color: var(--blue-500); }
.bi-2 { background: #fce7f3; color: #db2777; }
.bi-3 { background: #dcfce7; color: #16a34a; }
.bi-4 { background: #fff7ed; color: var(--accent); }
.bi-5 { background: #ede9fe; color: #7c3aed; }
.bi-6 { background: #fef9c3; color: #ca8a04; }

.benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.benefit-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ===========================
   PRICING (agence page)
=========================== */
#pricing { padding: 100px 0; background: var(--gray-50); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue-400);
  background: linear-gradient(180deg, #e0f4f4 0%, var(--white) 40%);
  box-shadow: 0 8px 32px rgba(0,128,128,.15);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 99px;
}
.pricing-plan { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-400); margin-bottom: 12px; }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.pricing-desc { font-size: .875rem; color: var(--gray-500); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--gray-700); }
.pricing-features li i { color: var(--blue-400); font-size: .8rem; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--gray-400); }
.pricing-features li.disabled i { color: var(--gray-300); }
.btn-pricing { width: 100%; padding: 14px; border-radius: 10px; font-size: .95rem; font-weight: 700; border: none; cursor: pointer; transition: all var(--transition); }
.btn-pricing-primary { background: var(--blue-400); color: var(--white); box-shadow: 0 4px 16px rgba(0,128,128,.25); }
.btn-pricing-primary:hover { background: var(--blue-500); transform: translateY(-1px); }
.btn-pricing-outline { background: transparent; color: var(--blue-400); border: 1.5px solid var(--blue-300); }
.btn-pricing-outline:hover { background: var(--blue-100); }

/* Steps with 4 columns (agence page) */
.steps-wrapper.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps-wrapper.steps-4::before { left: calc(12.5% + 32px); right: calc(12.5% + 32px); }

/* ===========================
   LEGAL PAGES
=========================== */
.legal-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&q=60&auto=format&fit=crop') center/cover;
  opacity: .06;
  pointer-events: none;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.legal-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  position: relative;
  z-index: 1;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}

.legal-breadcrumb a { color: var(--blue-200); text-decoration: none; }
.legal-breadcrumb a:hover { color: var(--white); }
.legal-breadcrumb i { font-size: .6rem; }

#legal-content {
  padding: 60px 0 100px;
  background: var(--white);
}

.legal-content-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal-toc h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.legal-toc a {
  display: block;
  font-size: .875rem;
  color: var(--blue-400);
  padding: 4px 0;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.legal-toc a:hover { color: var(--blue-500); padding-left: 6px; }

.legal-content-wrap h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--blue-400);
  line-height: 1.35;
}

.legal-content-wrap h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-700);
  margin: 24px 0 10px;
}

.legal-content-wrap p {
  font-size: .925rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content-wrap a { color: var(--blue-400); }
.legal-content-wrap a:hover { color: var(--blue-500); }

.legal-content-wrap b, .legal-content-wrap strong { color: var(--gray-900); }

/* ===========================
   HELP PAGE
=========================== */
.help-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1400&q=60&auto=format&fit=crop') center/cover;
  opacity: .07;
  pointer-events: none;
}

.help-hero-inner { position: relative; z-index: 1; }

.help-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.help-hero p { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-bottom: 32px; }

.help-search-box {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.help-search-box input {
  width: 100%;
  padding: 16px 56px 16px 20px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.help-search-box input:focus { outline: 2px solid var(--blue-300); }

.help-search-box button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-400);
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.help-search-box button:hover { background: var(--blue-500); }

.help-quick-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.help-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.help-quick-link:hover { background: var(--blue-400); border-color: var(--blue-400); color: var(--white); }

.help-tabs-section { padding: 60px 0 40px; background: var(--white); }

.help-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.help-tab {
  padding: 12px 28px;
  border-radius: 99px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-tab:hover, .help-tab.active {
  background: var(--blue-400);
  border-color: var(--blue-400);
  color: var(--white);
}

.help-tab-content { display: none; }
.help-tab-content.active { display: block; }

.help-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.help-section-title i { color: var(--blue-400); font-size: 1.1rem; }

.help-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.help-contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.help-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }

.help-contact-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

.help-contact-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.help-contact-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: 20px; }
.help-contact-card a { font-size: .875rem; color: var(--blue-400); font-weight: 600; text-decoration: none; }
.help-contact-card a:hover { color: var(--blue-500); }

/* ---------------------------
   Help – Tip Cards
--------------------------- */
.help-tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }

.help-tip-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.help-tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }
.help-tip-card .tip-icon { font-size: 1.4rem; color: var(--blue-400); margin-bottom: 12px; }
.help-tip-card h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.help-tip-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ---------------------------
   Help – Guide Cards
--------------------------- */
.help-guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.help-guide-card {
  background: linear-gradient(135deg, var(--blue-100) 0%, #f0fafa 100%);
  border: 1.5px solid rgba(0,128,128,.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}
.help-guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.help-guide-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-400);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.help-guide-card h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.help-guide-card p { font-size: .875rem; color: var(--gray-500); }
.help-guide-card a { color: var(--blue-400); font-size: .85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; }
.help-guide-card a:hover { color: var(--blue-500); gap: 8px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .help-contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav, .btn-nav-outline, .nav-auth { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 24px; }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-wrapper::before { display: none; }
  .steps-wrapper.steps-4 { grid-template-columns: 1fr; }

  .cta-box { padding: 48px 28px; }
  .cta-buttons { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .app-download-inner { grid-template-columns: 1fr; text-align: center; }
  .app-badges { justify-content: center; }
  .app-download-visual { display: none; }

  .cities-grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter-box { flex-direction: column; gap: 32px; padding: 40px 28px; }
  .newsletter-form { flex-direction: column; }

  #scrollTopBtn { bottom: 20px; right: 20px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .help-contact-grid { grid-template-columns: 1fr; }
  .help-tips-grid { grid-template-columns: 1fr 1fr; }
  .help-guides-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .help-tips-grid { grid-template-columns: 1fr; }
}
