:root {
  --zd-dark: #050914;
  --zd-navy: #091527;
  --zd-blue: #0d9fe8;
  --zd-blue-2: #36c2ff;
  --zd-white: #ffffff;
  --zd-muted: #a9b6c8;
  --zd-card: rgba(255, 255, 255, 0.08);
  --zd-border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--zd-white);
  background: var(--zd-dark);
}

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

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

.zd-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(5, 9, 20, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zd-nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zd-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zd-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--zd-blue), #0047ff);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 12px 28px rgba(13, 159, 232, 0.3);
}

.zd-brand-text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.zd-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.zd-nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.zd-nav-links a:hover {
  color: var(--zd-blue-2);
}

.zd-admin-link {
  padding: 10px 16px;
  border: 1px solid var(--zd-border);
  border-radius: 999px;
}

.zd-hero {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.95) 0%, rgba(5, 9, 20, 0.75) 42%, rgba(5, 9, 20, 0.25) 100%),
    url("/images/login.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
}

.zd-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(54, 194, 255, 0.18), transparent 35%),
    linear-gradient(180deg, transparent, rgba(5, 9, 20, 0.95));
  pointer-events: none;
}

.zd-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.zd-kicker,
.zd-kicker-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--zd-blue-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.zd-kicker::before,
.zd-kicker-dark::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--zd-blue-2);
  border-radius: 99px;
}

.zd-hero h1 {
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 900;
  margin: 0 0 24px;
}

.zd-hero p {
  max-width: 640px;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
}

.zd-hero-actions,
.zd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.zd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.zd-btn:hover {
  transform: translateY(-2px);
}

.zd-btn-primary {
  background: linear-gradient(135deg, var(--zd-blue), #006dff);
  color: white;
  box-shadow: 0 16px 36px rgba(13, 159, 232, 0.35);
}

.zd-btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid var(--zd-border);
}

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

.zd-hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 88px;
  z-index: 2;
  width: 250px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(5, 9, 20, 0.72);
  border: 1px solid var(--zd-border);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.zd-hero-card span,
.zd-hero-card small {
  display: block;
  color: var(--zd-muted);
  font-size: 13px;
}

.zd-hero-card strong {
  display: block;
  font-size: 30px;
  margin: 8px 0;
}

.zd-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.zd-section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.zd-section-head span {
  color: var(--zd-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.zd-section-head h2,
.zd-benefits h2,
.zd-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -1.8px;
  margin: 10px 0 12px;
}

.zd-section-head p,
.zd-benefits p,
.zd-cta p {
  font-family: "Roboto Slab", serif;
  color: var(--zd-muted);
  font-size: 17px;
  line-height: 1.7;
}

.zd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.zd-car-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.zd-car-img {
  height: 230px;
  overflow: hidden;
  background: #dce4ee;
}

.zd-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zd-car-card:hover .zd-car-img img {
  transform: scale(1.06);
}

.zd-car-body {
  padding: 24px;
}

.zd-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f6ff;
  color: #0076bb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.zd-car-body h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.zd-car-body p {
  color: #64748b;
  line-height: 1.6;
  min-height: 52px;
}

.zd-car-body a {
  display: inline-flex;
  margin-top: 8px;
  color: #0076bb;
  font-weight: 900;
}

.zd-categories {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
}

.zd-category-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--zd-border);
  color: white;
  transition: transform 0.2s ease, background 0.2s ease;
}

.zd-category-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

.zd-category-card.dark {
  background: linear-gradient(135deg, #0d9fe8, #0047ff);
  border: none;
}

.zd-category-card span {
  color: var(--zd-blue-2);
  font-size: 13px;
  font-weight: 900;
}

.zd-category-card.dark span {
  color: white;
}

.zd-category-card h2,
.zd-category-card h3 {
  font-weight: 900;
  margin: 16px 0 12px;
}

.zd-category-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

.zd-benefits {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.zd-benefit-list {
  display: grid;
  gap: 14px;
}

.zd-benefit-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--zd-border);
}

.zd-benefit-list strong {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(54, 194, 255, 0.14);
  color: var(--zd-blue-2);
}

.zd-benefit-list span {
  font-weight: 800;
}

.zd-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto 80px;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(13, 159, 232, 0.94), rgba(0, 71, 255, 0.88)),
    url("/images/4.JPG") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zd-cta h2 {
  margin: 0;
}

.zd-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0 0;
}

.zd-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--zd-muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

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

  .zd-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .zd-hero-content {
    margin: 0 auto;
  }

  .zd-hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 36px auto 0;
    width: min(320px, calc(100% - 32px));
  }

  .zd-grid,
  .zd-categories,
  .zd-benefits {
    grid-template-columns: 1fr;
  }

  .zd-cta,
  .zd-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .zd-hero h1 {
    letter-spacing: -1.5px;
  }

  .zd-hero-actions,
  .zd-cta-actions {
    width: 100%;
  }

  .zd-btn {
    width: 100%;
  }

  .zd-section {
    padding: 62px 0;
  }
}

/* ZeroDealer cleanup */
.zd-footer span:last-child {
  font-weight: 700;
}

img[alt=""] {
  color: transparent;
}

/* Zero48Dealer WhatsApp floating button */
.zd-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zd-whatsapp-float::before {
  content: "☎";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 15px;
}

.zd-whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(37, 211, 102, 0.48);
  text-decoration: none;
}

@media (max-width: 576px) {
  .zd-whatsapp-float {
    right: 14px;
    bottom: 14px;
    height: 52px;
    padding: 0 18px;
  }
}
