@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@600;700;800&display=swap');

:root {
  --orange: #e07b16;
  --orange-hot: #ff9800;
  --ink: #121212;
  --muted: #5c5c5c;
  --line: rgba(0,0,0,.08);
  --paper: #f6f5f3;
  --white: #fff;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: Unbounded, Manrope, sans-serif; line-height: 1.15; margin: 0; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1rem 0;
}
.site-header.is-solid {
  position: sticky;
  top: 0;
  background: rgba(12,12,12,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: .95rem;
}
.logo img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.nav {
  margin-left: auto;
  display: flex;
  gap: .35rem;
  align-items: center;
}
.nav a {
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: .88rem;
  padding: .55rem .8rem;
  border-radius: 10px;
  transition: .15s;
}
.nav a:hover, .nav a.is-active { color: #fff; background: rgba(255,255,255,.08); }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffb347, var(--orange));
  color: #111 !important;
  font-weight: 800;
  font-size: .82rem;
}
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}

/* Hero video */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.78) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(224,123,22,.25), transparent 45%);
}
.hero-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 7.5rem 0 4rem;
}
.hero-kicker {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: .9rem;
}
.hero h1 em {
  font-style: normal;
  color: #ffb347;
}
.hero-lead {
  max-width: 42ch;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 48px;
  padding: .75rem 1.2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: .9rem;
  transition: .15s;
}
.btn-primary {
  background: linear-gradient(135deg, #ffb347, var(--orange));
  color: #111 !important;
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff !important;
  background: rgba(255,255,255,.06);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-dark {
  background: #111;
  color: #fff !important;
}
.btn-dark:hover { background: var(--orange); color: #111 !important; }

/* Sections */
.section { padding: 4rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.section-head p { margin: .4rem 0 0; color: var(--muted); max-width: 42ch; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.fleet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  transition: .2s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}
.fleet-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e8e8;
}
.fleet-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.fleet-card:hover .fleet-card__media img { transform: scale(1.04); }
.fleet-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(0,0,0,.8); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .55rem; border-radius: 999px;
}
.fleet-card__price {
  position: absolute; right: .75rem; bottom: .75rem;
  background: linear-gradient(135deg, #ffb347, var(--orange));
  color: #111; font-weight: 800; font-size: .82rem;
  padding: .45rem .7rem; border-radius: 10px;
}
.fleet-card__body { padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.fleet-card__title { font-size: 1.1rem; }
.fleet-card__specs { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.fleet-card__specs li {
  display: flex; justify-content: space-between; gap: .5rem;
  padding: .35rem 0; border-bottom: 1px solid #f0f0f0;
  font-size: .86rem; color: #666;
}
.fleet-card__specs li:last-child { border-bottom: 0; }
.fleet-card__specs strong { color: #222; }
.fleet-card__actions { display: grid; grid-template-columns: 1fr auto; gap: .5rem; margin-top: auto; }

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
}
.feature h3 { font-size: 1rem; margin-bottom: .45rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.stat {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 1.35rem 1rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 1.6rem;
  color: #ffb347;
  margin-bottom: .25rem;
}
.stat span { font-size: .88rem; color: rgba(255,255,255,.75); }

.band {
  background:
    linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,0,0,.55)),
    url('/assets/img/geely.jpg') center/cover;
  color: #fff;
  border-radius: 22px;
  padding: 2.5rem 1.75rem;
}
.band h2 { margin-bottom: .6rem; }
.band p { margin: 0 0 1.2rem; color: rgba(255,255,255,.85); max-width: 50ch; }
.band-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}
.review p { margin: 0 0 .8rem; color: #333; }
.review cite { font-style: normal; font-weight: 800; color: var(--orange); }

.seo-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
}
.seo-box h2 { margin-bottom: .7rem; font-size: 1.35rem; }
.seo-box p { color: #444; }
.seo-box ul { margin: 1rem 0; padding-left: 1.1rem; color: #444; }
.seo-box li { margin: .4rem 0; }

/* Inner pages */
.page-hero {
  background: #111;
  color: #fff;
  padding: 7rem 0 2.5rem;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .5rem; }
.page-hero p { margin: 0; color: rgba(255,255,255,.7); max-width: 50ch; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 1rem; }
.crumbs a { color: #ffb347; }
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  margin-top: -1.5rem;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.content-card h2 { font-size: 1.15rem; margin: 1.4rem 0 .6rem; }
.content-card h2:first-child { margin-top: 0; }
.content-card ul { padding-left: 1.1rem; }
.content-card li { margin: .35rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
}
.contact-list { display: grid; gap: .75rem; }
.contact-item {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .9rem 1rem; border-radius: 14px; background: #f7f7f8; border: 1px solid var(--line);
}
.contact-item small { display: block; color: var(--muted); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .68rem; }
.contact-item strong { font-size: 1.05rem; }
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  margin-top: -1.5rem;
}
.product-gallery {
  background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
}
.product-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-info {
  background: #fff; border-radius: 18px; border: 1px solid var(--line); padding: 1.4rem;
}
.price-row {
  display: flex; gap: .75rem; flex-wrap: wrap; margin: 1rem 0 1.2rem;
}
.price-pill {
  background: #111; color: #fff; border-radius: 12px; padding: .7rem .9rem;
}
.price-pill strong { color: #ffb347; display: block; font-size: 1.15rem; }
.price-pill span { font-size: .75rem; opacity: .75; }

/* Footer */
.site-footer {
  background: #0b0b0d;
  color: rgba(255,255,255,.72);
  margin-top: 3rem;
  border-top: 1px solid rgba(224,123,22,.35);
}
.footer-cta {
  background: #121216;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-cta-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.2rem 0;
}
.footer-cta strong { color: #fff; display: block; font-size: 1.05rem; }
.footer-cta span { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-main { padding: 2.75rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.2fr;
  gap: 1.5rem;
}
.footer-mark {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--orange); color: #111; font-weight: 800; font-family: Unbounded, sans-serif;
}
.footer-brand-top { display: flex; gap: .75rem; align-items: center; margin-bottom: .9rem; color: #fff; }
.footer-brand p { margin: 0 0 1rem; max-width: 34ch; color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-social { display: flex; gap: .45rem; }
.fs {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px;
  background: #1a1a1f; border: 1px solid rgba(255,255,255,.1); color: #fff;
}
.fs:hover { background: var(--orange); color: #111; }
.footer-col h3 {
  color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 .85rem;
}
.footer-col a { display: block; padding: .25rem 0; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: #ffc57a; }
.footer-line {
  display: grid; grid-template-columns: 36px 1fr; gap: .65rem; padding: .35rem 0; color: rgba(255,255,255,.85);
}
.footer-line small { display: block; color: rgba(255,179,71,.75); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.fi {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: #1a1a1f; border: 1px solid rgba(255,255,255,.1); color: #ffb347;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); background: #08080a; padding: 1rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: #ffb347; }

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.1rem;
}
.dev-credit {
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255,255,255,.38) !important;
  transition: color .15s ease;
}
.dev-credit:hover {
  background: none;
  color: rgba(255,255,255,.62) !important;
  transform: none;
}
.dev-credit__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  opacity: 1;
}
.dev-credit:hover .dev-credit__label { opacity: 1; color: inherit; }
.dev-credit__brand {
  font-family: Manrope, system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,179,71,.55);
}
.dev-credit:hover .dev-credit__brand { color: rgba(255,179,71,.85); }


@media (max-width: 980px) {
  .fleet-grid, .features, .stats, .reviews, .footer-grid, .product-layout, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 1rem; right: 1rem;
    background: rgba(12,12,12,.96); padding: .75rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.1);
  }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .header-call span { display: none; }
}


/* Richer page blocks */
.page-section { padding: 0 0 3.5rem; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-top: -1.5rem;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: -1.5rem;
}
.promo-card, .term-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}
.promo-card h3, .term-card h3 {
  font-size: 1.05rem;
  margin: 0 0 .55rem;
}
.promo-card p, .term-card p, .term-card li { color: #555; }
.promo-card .tag {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: #fff3e4;
  color: #b35d00;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.term-card ul { margin: .6rem 0 0; padding-left: 1.05rem; }
.term-card li { margin: .35rem 0; }
.soft-panel {
  margin-top: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
}
.soft-panel h2 { font-size: 1.2rem; margin: 0 0 .7rem; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .65rem;
  align-items: start;
  padding: .75rem .85rem;
  border-radius: 12px;
  background: #f7f7f8;
}
.checklist .mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: #111; color: #ffb347; font-weight: 800; font-size: .85rem;
}
.related { margin-top: 2rem; }
.related h2 { margin-bottom: 1rem; font-size: 1.3rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.how-step {
  background: #f7f7f8;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid var(--line);
}
.how-step strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: .85rem;
  color: var(--orange);
  margin-bottom: .35rem;
}
@media (max-width: 980px) {
  .info-grid, .promo-grid, .how-steps { grid-template-columns: 1fr; }
}
