/* ==========================================================================
   Chery Karahallılar — tasarım sistemi
   Kaynak tasarım yok (plan Bölüm 0.2): Tesla'nın layout grameri + Chery
   kurumsal kimliği. Bkz. Documents/chery-karahallilar-plan.md Bölüm 4.
   ========================================================================== */

:root {
  /* Marka (tenant.css primary/secondary/accent'i bağlar) */
  --chery-red: #c30d23;
  --chery-ink: #0b0b0c;
  --chery-bronze: #a4896c;

  /* Nötr skala */
  --chery-cream: #fffcfa;
  --chery-mist: #f4f0f0;
  --chery-line: #e4dfdc;
  --chery-gray-900: #16171a;
  --chery-gray-700: #333333;
  --chery-gray-600: #4d4d4d;
  --chery-gray-500: #666666;
  --chery-gray-300: #a3a3a3;
  --chery-white: #ffffff;

  --font-sans: 'Poppins', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container-w: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
  --sticky-bar-h: 72px;
}

/* İkon sarmalayıcıları sabit boyutlu div/a'lar — içindeki inline <svg>
   (viewBox var, width/height yok) varsayılan 300x150 intrinsic boyuta değil
   sarmalayıcının boyutuna otursun. */
.feature-tile__icon svg,
.value-card__icon svg,
.dealer-facts__icon svg,
.hero-nav svg,
.socials a svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-nav svg,
.socials a svg {
  width: 44%;
  height: 44%;
}

/* ===================== Reset ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--chery-gray-700);
  background: var(--chery-white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-bar-h);
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--chery-red);
  outline-offset: 3px;
}
main {
  display: block;
}

/* ===================== Layout utilities ===================== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(48px, 8vw, 112px);
}
.section--tight {
  padding-block: clamp(32px, 5vw, 64px);
}
.section--dark {
  background: var(--chery-ink);
  color: var(--chery-white);
}
.section--mist {
  background: var(--chery-mist);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chery-red);
  margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--chery-gray-900);
}
.section--dark .section-heading {
  color: var(--chery-white);
}
.section-text {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--chery-gray-500);
}
.section--dark .section-text {
  color: rgb(255 255 255 / 0.72);
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--chery-red);
  color: var(--chery-white);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--chery-red) 88%, black);
}
.btn-ghost {
  background: rgb(255 255 255 / 0.12);
  color: var(--chery-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.28);
}
.btn-ghost:hover {
  background: rgb(255 255 255 / 0.2);
}
.btn-outline {
  background: transparent;
  color: var(--chery-gray-900);
  border: 1.5px solid var(--chery-line);
}
.btn-outline:hover {
  border-color: var(--chery-red);
  color: var(--chery-red);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ===================== 1. Header ===================== */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.header--solid,
.site-header.header--open {
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--chery-line);
}
.header-inner {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s var(--ease);
}
.header--solid .logo,
.header--open .logo {
  filter: none;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  flex-wrap: wrap;
}
.primary-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chery-white);
  position: relative;
  padding-block: 4px;
  transition: color 0.2s var(--ease);
}
.header--solid .primary-nav a,
.header--open .primary-nav a {
  color: var(--chery-gray-700);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--chery-red);
  transition: right 0.25s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current='page']::after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-cta {
  color: var(--chery-white);
}
.header--solid .header-cta,
.header--open .header-cta {
  color: var(--chery-gray-700);
}
.lang-switcher {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--chery-white);
}
.header--solid .lang-switcher,
.header--open .lang-switcher {
  color: var(--chery-gray-700);
}
.lang-switcher__link[aria-current='true'] {
  color: var(--chery-red);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--chery-white);
  border-radius: 2px;
  transition: background 0.2s var(--ease), transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.header--solid .menu-toggle span,
.header--open .menu-toggle span {
  background: var(--chery-gray-900);
}
.header--open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header--open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header--open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    inset-block-start: var(--header-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--chery-white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
    border-bottom: 1px solid var(--chery-line);
  }
  .header--open .primary-nav {
    max-height: 80vh;
    overflow-y: auto;
  }
  .primary-nav a {
    color: var(--chery-gray-700) !important;
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--chery-line);
  }
  .primary-nav a::after {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ===================== 2. Hero slider ===================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  color: var(--chery-white);
  overflow: hidden;
  background: var(--chery-ink);
}
.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide__media {
  position: absolute;
  inset: 0;
}
.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.5) 0%, rgb(0 0 0 / 0.15) 45%, rgb(0 0 0 / 0.55) 100%);
}
.hero-slide__copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(96px, 14vh, 168px);
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chery-white);
  opacity: 0.85;
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 8px;
  max-width: 52ch;
}
.hero-footnote {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-bottom: 24px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.14);
  color: var(--chery-white);
  transform: translateY(-50%);
  transition: background 0.2s var(--ease);
}
.hero-nav:hover {
  background: rgb(255 255 255 / 0.28);
}
.hero-nav--prev {
  left: clamp(12px, 3vw, 32px);
}
.hero-nav--next {
  right: clamp(12px, 3vw, 32px);
}
.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: clamp(24px, 5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.4);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-dot[aria-current='true'] {
  background: var(--chery-red);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .hero-nav {
    display: none;
  }
  .hero-slide__copy {
    padding-bottom: 88px;
  }
}

/* ===================== 3. Split band ===================== */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
}
.split-band__media {
  position: relative;
  min-height: 320px;
}
.split-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-band--reverse {
  direction: rtl;
}
.split-band--reverse > * {
  direction: ltr;
}
@media (max-width: 860px) {
  .split-band,
  .split-band--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .split-band__media {
    min-height: 260px;
  }
}

/* ===================== 4. Model rail ===================== */
.rail {
  position: relative;
}
.rail-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--chery-white);
  color: var(--chery-gray-900);
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.16);
  transform: translateY(-50%);
  transition: background 0.2s var(--ease);
}
.rail-nav:hover {
  background: var(--chery-mist);
}
.rail-nav svg {
  width: 44%;
  height: 44%;
  display: block;
}
.rail-nav--prev {
  left: 4px;
}
.rail-nav--next {
  right: 4px;
}
@media (max-width: 700px) {
  .rail-nav {
    display: none;
  }
}

.model-rail {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 20px;
  scrollbar-width: none;
}
.model-rail::-webkit-scrollbar {
  display: none;
}
.model-tile {
  position: relative;
  flex: 0 0 min(84vw, 760px);
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--chery-mist);
  color: var(--chery-white);
}
.model-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.05) 0%, rgb(0 0 0 / 0.6) 100%);
}
.model-tile__copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
}
.model-tile__name {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 4px;
}
.model-tile__price {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 16px;
}
.model-tile__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===================== 5. Utility pair ===================== */
.utility-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
}
.utility-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: var(--chery-white);
  display: flex;
  align-items: flex-end;
}
.utility-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.utility-card:hover img {
  transform: scale(1.05);
}
.utility-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.05) 0%, rgb(0 0 0 / 0.68) 100%);
}
.utility-card__copy {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 2.5vw, 28px);
}
.utility-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.utility-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .utility-pair {
    grid-template-columns: 1fr;
  }
}

/* ===================== 6. Dealer map ===================== */
.dealer-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.dealer-map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--chery-mist);
  border: 0;
  width: 100%;
  height: 100%;
}
.dealer-facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dealer-facts__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--chery-gray-600);
}
.dealer-facts__row strong {
  color: var(--chery-gray-900);
}
.dealer-facts__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--chery-red);
}
@media (max-width: 860px) {
  .dealer-map {
    grid-template-columns: 1fr;
  }
}

/* ===================== 7. Service rail ===================== */
.service-rail {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 20px;
  scrollbar-width: none;
}
.service-rail::-webkit-scrollbar {
  display: none;
}
.service-tile {
  position: relative;
  flex: 0 0 min(78vw, 380px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: var(--chery-white);
  background: var(--chery-mist);
}
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.05) 0%, rgb(0 0 0 / 0.72) 100%);
}
.service-tile__badge {
  position: relative;
  z-index: 2;
  margin: 18px;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--chery-red);
  padding: 5px 12px;
  border-radius: 999px;
}
.service-tile__copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}
.service-tile__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-tile__text {
  font-size: 0.86rem;
  opacity: 0.85;
  line-height: 1.45;
}
/* variant: point — ikon + metin, görsel yok (satır 6.11 'variant: point') */
.service-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--chery-mist);
}
.service-point__icon {
  width: 30px;
  height: 30px;
  color: var(--chery-red);
}
.service-point__icon svg {
  width: 100%;
  height: 100%;
}
.service-point__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--chery-gray-900);
}
.service-point__text {
  font-size: 0.9rem;
  color: var(--chery-gray-600);
  line-height: 1.5;
}
.service-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

/* ===================== 8. Footnotes + footer ===================== */
.footnotes {
  padding-block: 28px;
  border-top: 1px solid var(--chery-line);
}
.footnotes ol {
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: fn;
}
.footnotes li {
  font-size: 0.76rem;
  color: var(--chery-gray-300);
  line-height: 1.5;
}

.site-footer {
  background: var(--chery-ink);
  color: rgb(255 255 255 / 0.72);
  padding-block: clamp(40px, 5vw, 64px) 24px;
}
.footer-top {
  margin-bottom: 36px;
}
.footer-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}
.footer-grid h6 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chery-white);
  margin-bottom: 16px;
}
.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a,
.footer-grid li {
  font-size: 0.88rem;
  transition: color 0.2s var(--ease);
}
.footer-grid a:hover {
  color: var(--chery-white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  font-size: 0.8rem;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.08);
  transition: background 0.2s var(--ease);
}
.socials a:hover {
  background: rgb(255 255 255 / 0.18);
}
@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================== 9. Sticky bar ===================== */
.sticky-bar {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 55;
  height: var(--sticky-bar-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--chery-white);
  border-top: 1px solid var(--chery-line);
  box-shadow: 0 -6px 24px rgb(0 0 0 / 0.06);
}
.sticky-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s var(--ease);
}
.sticky-bar__item:first-child {
  border-right: 1px solid var(--chery-line);
  color: var(--chery-gray-900);
}
.sticky-bar__item:last-child {
  background: var(--chery-red);
  color: var(--chery-white);
}
.sticky-bar__item:first-child:hover {
  background: var(--chery-mist);
}

/* ===================== 10. Model hero ===================== */
.model-hero {
  position: relative;
  min-height: 88vh;
  color: var(--chery-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--chery-ink);
}
.model-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.35) 0%, rgb(0 0 0 / 0.15) 40%, rgb(0 0 0 / 0.62) 100%);
}
.model-hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(56px, 9vh, 96px);
  max-width: 760px;
}
.model-hero__logo {
  height: 34px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.model-hero__tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}
.model-hero__name {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.model-hero__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 56ch;
  opacity: 0.92;
  margin-bottom: 26px;
}
.model-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 36px);
  margin-bottom: 28px;
}
.model-hero__stat-value {
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
}
.model-hero__stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.model-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===================== 11. Highlight grid ===================== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.highlight-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--chery-mist);
}
.highlight-card__media {
  aspect-ratio: 4 / 3;
}
.highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.highlight-card__copy {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.highlight-card__price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--chery-red);
}
.highlight-card__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.highlight-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--chery-gray-900);
}
.highlight-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--chery-gray-500);
}
@media (max-width: 900px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== 12. Trim switch ===================== */
.trim-switch {
  display: block;
}
.trim-switch__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.trim-switch__tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--chery-line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--chery-gray-600);
  transition: all 0.2s var(--ease);
}
.trim-switch__tab[aria-selected='true'] {
  background: var(--chery-gray-900);
  border-color: var(--chery-gray-900);
  color: var(--chery-white);
}
.trim-switch__panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.trim-switch__panel[hidden] {
  display: none;
}
.trim-switch__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.trim-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.trim-stats__value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--chery-gray-900);
  display: block;
}
.trim-stats__label {
  font-size: 0.78rem;
  color: var(--chery-gray-500);
}
.trim-switch__price {
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--chery-red);
}
@media (max-width: 860px) {
  .trim-switch__panel {
    grid-template-columns: 1fr;
  }
}

/* ===================== 13. Story block ===================== */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.story-block--right {
  direction: rtl;
}
.story-block--right > * {
  direction: ltr;
}
.story-block__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.story-block__title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--chery-gray-900);
  margin-bottom: 14px;
}
.story-block__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--chery-gray-500);
}
.story-block + .story-block {
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 780px) {
  .story-block,
  .story-block--right {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ===================== 14. Feature grid ===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.feature-tile {
  padding: 26px 22px;
  border-radius: var(--radius-md);
  background: var(--chery-mist);
  text-align: center;
}
.feature-tile__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  color: var(--chery-red);
}
.feature-tile__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--chery-gray-900);
  margin-bottom: 6px;
}
.feature-tile__text {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--chery-gray-500);
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================== 15. Spec sheet ===================== */
.spec-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-group {
  background: var(--chery-ink);
  padding: clamp(20px, 2.5vw, 30px);
}
.spec-group__title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chery-bronze);
  margin-bottom: 18px;
}
.spec-group__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-block: 9px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.88rem;
}
.spec-group__row:first-of-type {
  border-top: 0;
}
.spec-group__row dt {
  color: rgb(255 255 255 / 0.6);
}
.spec-group__row dd {
  margin: 0;
  color: var(--chery-white);
  font-weight: 500;
  text-align: right;
}

/* ===================== 16. Closing banner ===================== */
.closing-banner {
  position: relative;
  min-height: 60vh;
  color: var(--chery-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.closing-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.closing-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.42);
}
.closing-banner__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 48px var(--gutter);
}
.closing-banner__title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 600;
  max-width: 20ch;
}

/* ===================== Forms ===================== */
.form-page {
  max-width: 560px;
  margin-inline: auto;
}
.form-page--left {
  margin-inline: 0;
  margin-top: 32px;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--chery-gray-600);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--chery-line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--chery-white);
  transition: border-color 0.2s var(--ease);
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--chery-red);
  outline: none;
}
.lead-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--chery-gray-500);
}
.lead-form__consent input {
  margin-top: 3px;
  flex-shrink: 0;
}
.lead-form__consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--chery-gray-700);
}
.compact-form {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
.compact-form label {
  flex: 1 1 180px;
}

/* ===================== Price list ===================== */
.price-group {
  margin-bottom: 48px;
}
.price-group:last-child {
  margin-bottom: 0;
}
.price-group__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--chery-gray-900);
  margin-bottom: 18px;
}
.price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-row {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--chery-mist);
}
.price-row--highlight {
  background: color-mix(in srgb, var(--chery-red) 6%, var(--chery-mist));
  border: 1px solid color-mix(in srgb, var(--chery-red) 30%, transparent);
}
.price-row__grade {
  font-weight: 600;
  color: var(--chery-gray-900);
}
.price-row__code {
  font-size: 0.78rem;
  color: var(--chery-gray-500);
}
.price-row__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 0.85rem;
  color: var(--chery-gray-600);
}
.price-row__price {
  font-weight: 600;
  font-size: 1.05rem;
  text-align: right;
  color: var(--chery-gray-900);
}
.price-row__price--empty {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--chery-red);
}
@media (max-width: 720px) {
  .price-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .price-row__price {
    text-align: left;
  }
}

/* ===================== Campaign / value / stat cards ===================== */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.campaign-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--chery-mist);
}
.campaign-card img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}
.campaign-card__copy {
  padding: 22px;
}
.campaign-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--chery-gray-900);
}
.campaign-card__text {
  font-size: 0.9rem;
  color: var(--chery-gray-500);
  line-height: 1.5;
  margin-bottom: 14px;
}
.explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.explore-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--chery-gray-700);
}
.explore-links a svg {
  width: 16px;
  height: 16px;
  color: var(--chery-red);
}
.empty-state {
  padding: 48px var(--gutter);
  text-align: center;
  color: var(--chery-gray-500);
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--chery-line);
}
.color-swatch {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--chery-line);
  margin-bottom: 14px;
}
.value-card__icon {
  width: 30px;
  height: 30px;
  color: var(--chery-red);
  margin-bottom: 14px;
}
.value-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--chery-gray-900);
}
.value-card__text {
  font-size: 0.9rem;
  color: var(--chery-gray-500);
  line-height: 1.5;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item__value {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--chery-red);
  display: block;
}
.stat-item__label {
  font-size: 0.85rem;
  color: var(--chery-gray-500);
  margin-top: 4px;
}

/* ===================== Page hero (iç sayfalar) ===================== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--chery-white);
  overflow: hidden;
  background: var(--chery-ink);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.3) 0%, rgb(0 0 0 / 0.55) 100%);
}
.page-hero__copy {
  position: relative;
  z-index: 2;
  padding: 48px var(--gutter);
  max-width: 720px;
}
.page-hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.page-hero__lead {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 56ch;
  line-height: 1.55;
}
.page-hero--plain {
  min-height: 30vh;
  background: var(--chery-gray-900);
}

.rich-text {
  max-width: 76ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--chery-gray-600);
}
.rich-text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--chery-gray-900);
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.rich-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chery-gray-900);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.rich-text p {
  margin-bottom: 1em;
}
.rich-text ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 1em;
}
.rich-text li {
  margin-bottom: 0.4em;
}

/* ===================== Responsive: geniş bileşenler ===================== */
@media (max-width: 1024px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
