/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  /* Site geneli %80 ölçek — tarayıcıda Ctrl- %80 zoom etkisi */
  zoom: 0.8;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: #fff;
  color: #050711;
  line-height: 1.5;
  padding-top: 80px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-padding {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 728px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.3;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  letter-spacing: -0.3px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active {
  transform: scale(0.96);
}
.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}
.btn-md {
  padding: 10px 16px;
  font-size: 14px;
}
.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}
.btn-xl {
  padding: 16px 26px;
  font-size: 16px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(#ffffff24 0%, #fff0 100%), #0c5ff4;
  border-color: #0c62f4b3;
}
.btn-primary:hover {
  background: #072149;
  border-color: #0a2a5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12, 95, 244, 0.3);
}
.btn-dark {
  color: #fff;
  background: #090e1d;
  border-color: #1d2a51;
}
.btn-dark:hover {
  background: #102443;
  border-color: #102443;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(9, 14, 29, 0.2);
}
.btn-darkblue {
  color: #fff;
  background: #0b0f25;
  border-color: #272f4e;
}
.btn-darkblue:hover {
  background: #272f4e;
  border-color: #272f4e;
}
.btn-outline {
  color: #050711;
  background: transparent;
  border-color: #e5e5e5;
}
.btn-outline:hover {
  background: #f5f5f5;
}
.btn-reverse {
  flex-direction: row-reverse;
}
.btn-radius-sm {
  border-radius: 8px;
}
.btn-radius-md {
  border-radius: 10px;
}
.btn-radius-lg {
  border-radius: 15px;
}
.btn-radius-max {
  border-radius: 64px;
}
.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da85c;
  border-color: #1da85c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp i {
  font-size: 18px;
}

/* ----- BADGE ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #0c5ff433;
  border: 1px solid #0c5ff4;
  border-radius: 100px;
  padding: 4px 20px 4px 4px;
  width: fit-content;
}
.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2974fb;
  border: 1px solid #0c5ff4;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 12px 46px #00000008;
}
.badge-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.34px;
  color: #0c5ff4;
}

/* ----- HEADING ----- */
.heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.heading-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: -2.25px;
  color: #090e1d;
}
.heading-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.16px;
  color: #090e1db3;
  max-width: 740px;
}
@media (max-width: 1024px) {
  .heading-title {
    font-size: 34px;
    line-height: 48px;
  }
  .heading-text {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 728px) {
  .heading-title {
    font-size: 28px;
    line-height: 40px;
  }
}

/* ----- HEADER ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(10, 15, 30, 0.85);
  border-bottom: 1px solid #111c41;
  padding: 18px 0;
  transition: all 0.3s;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.header-logo:hover {
  opacity: 0.92;
}
.header-logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow:
    0 2px 14px rgba(43, 181, 181, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.header-logo__text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  white-space: nowrap;
}
.header-logo__accent {
  background: linear-gradient(120deg, #3dd6d6 0%, #4da8e8 45%, #9b7fd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(61, 214, 214, 0.35));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav__item {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.header-nav__item:hover,
.header-nav__item.active {
  color: #0c5ff4;
}
.header-nav__item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0c5ff4;
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.locale-switcher {
  position: relative;
}

.locale-switcher .btn {
  background: #0b0f25;
  border: 1px solid #272f4e;
  color: #fff;
}
.locale-switcher .btn:hover {
  background: #1a2345;
}
.locale-switcher .flag {
  font-size: 16px;
  line-height: 1;
}
.locale-switcher .label {
  font-size: 13px;
}
.locale-switcher .chevron {
  font-size: 16px;
  transition: transform 0.2s;
}
.locale-switcher.is-open .chevron {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  min-width: 180px;
  background: #0b0f25;
  border: 1px solid #272f4e;
  border-radius: 12px;
  padding: 6px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(12, 95, 244, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.language-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.language-dropdown .language-option:hover {
  background: linear-gradient(135deg, rgba(12, 95, 244, 0.18) 0%, rgba(12, 95, 244, 0.08) 100%);
  color: #6ea8ff;
  transform: translateX(3px);
}
.language-dropdown .language-option .flag {
  font-size: 18px;
  line-height: 1;
}

.header-toggle {
  display: none !important;
}
.header-menu {
  display: none !important;
}

.badge--center {
  margin: 0 auto;
}
.heading-title--tight {
  margin-bottom: 0;
}
.platforms-item-icon {
  margin-right: 8px;
}
.blog-card-read-btn {
  margin-top: 16px;
}
.blog-detail-back {
  margin-top: 40px;
}
.blog-detail-cta {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(#0c5ff400 0%, #0c5ff41f 100%), #f6f8fa;
  border-radius: 20px;
  border: 1px solid #0c5ff433;
}
.blog-detail-cta__title {
  margin-bottom: 16px;
  color: #090e1d;
}
.blog-detail-cta__text {
  margin-bottom: 20px;
  color: #090e1d;
}
.blog-detail-cta__btn {
  margin-right: 8px;
}
.social-link--facebook {
  background: #1877f2;
}
.social-link--instagram {
  background: #e4405f;
}

/* Tablet / küçük masaüstü — header taşmasını önle */
@media (max-width: 1100px) {
  .header-container {
    gap: 16px;
  }
  .header-left {
    gap: 24px;
    min-width: 0;
    flex: 1;
  }
  .header-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .header-nav__item {
    font-size: 13px;
  }
  .header-actions {
    flex-shrink: 0;
    gap: 6px;
  }
  .header-actions .btn-sm {
    padding: 7px 10px;
    font-size: 12px;
  }
  .locale-switcher .btn-sm {
    padding: 7px 10px;
    font-size: 12px;
  }
  .locale-switcher .label {
    display: none;
  }
  .hero-container {
    flex-wrap: wrap;
  }
  .hero-content {
    max-width: 100%;
    flex: 1 1 320px;
  }
  .hero-image {
    flex: 1 1 280px;
    max-width: 100%;
  }
  .packages-carousel .package-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 900px) {
  .header-left {
    gap: 16px;
  }
  .header-nav {
    gap: 8px;
  }
  .header-nav__item {
    font-size: 12px;
    padding: 3px 0;
  }
  .header-logo__text {
    font-size: 18px;
  }
  .hero-container {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    flex-basis: auto;
    width: 100%;
    max-height: 320px;
  }
  .dealership-cards {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil navbar — logo + menü tek kapsül içinde */
@media (max-width: 728px) {
  .header {
    overflow: visible;
    padding: 12px 0;
  }
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 8px;
  }
  .header-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 0;
    padding: 5px 8px 5px 6px;
    background: linear-gradient(135deg, rgba(12, 95, 244, 0.14) 0%, rgba(61, 214, 214, 0.07) 100%);
    border: 1px solid rgba(12, 95, 244, 0.22);
    border-radius: 16px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 4px 18px rgba(0, 0, 0, 0.14);
  }
  .header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-right: 10px;
    margin-right: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
  }
  .header-logo__icon {
    width: 28px;
    height: 28px;
  }
  .header-logo__text {
    font-size: 14px;
    letter-spacing: -0.3px;
    white-space: nowrap;
  }
  .header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .header-nav__item {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 7px 7px;
    white-space: nowrap;
    letter-spacing: -0.15px;
    color: rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    position: relative;
    transition: color 0.22s ease, background 0.22s ease;
  }
  .header-nav__item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  .header-nav__item.active,
  .header-nav__item.active:hover {
    color: #0c5ff4;
    background: none;
    box-shadow: none;
  }
  .header-nav__item.active::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4px);
    height: 2px;
    background: #0c5ff4;
    border-radius: 2px;
  }
  .header-actions {
    gap: 4px;
    flex-shrink: 0;
  }
  .header-actions .btn-whatsapp {
    display: none !important;
  }
  .header-actions .btn-sm {
    padding: 6px 8px;
    font-size: 11px;
  }
  .locale-switcher .label {
    display: none;
  }
  .locale-switcher .btn {
    padding: 6px 8px;
    gap: 3px;
    border-radius: 12px;
  }
  .locale-switcher .flag {
    font-size: 15px;
  }
  .language-dropdown {
    left: auto;
    right: 0;
    min-width: 158px;
  }
}

@media (max-width: 728px) and (prefers-color-scheme: light) {
  .header-left {
    background: linear-gradient(135deg, rgba(12, 95, 244, 0.08) 0%, rgba(12, 95, 244, 0.03) 100%);
    border-color: rgba(12, 95, 244, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 4px 14px rgba(12, 95, 244, 0.08);
  }
  .header-logo {
    border-right-color: rgba(12, 95, 244, 0.15);
  }
  .header-nav__item {
    color: rgba(10, 15, 30, 0.72);
  }
  .header-nav__item:hover {
    color: #0a0f1e;
    background: rgba(12, 95, 244, 0.08);
  }
  .header-nav__item.active,
  .header-nav__item.active:hover {
    color: #0c5ff4;
    background: none;
  }
}

/* Işık teması */
@media (prefers-color-scheme: light) {
  .header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: #e5e5e5;
  }
  .header-logo__text {
    color: #0a0f1e;
  }
  .header-nav__item {
    color: #0a0f1e;
  }
  .header-nav__item:hover,
  .header-nav__item.active {
    color: #0c5ff4;
  }
  .locale-switcher .btn {
    background: #fff;
    border-color: #d0d5dd;
    color: #0a0f1e;
  }
  .locale-switcher .btn:hover {
    background: #f0f2f5;
  }
  .language-dropdown {
    background: #fff;
    border-color: #d0d5dd;
    box-shadow: 0 12px 40px rgba(9, 14, 29, 0.12), 0 0 0 1px rgba(12, 95, 244, 0.06);
  }
  .language-dropdown .language-option {
    color: #0a0f1e;
  }
  .language-dropdown .language-option:hover {
    background: linear-gradient(135deg, rgba(12, 95, 244, 0.1) 0%, rgba(12, 95, 244, 0.04) 100%);
    color: #0c5ff4;
  }
  .btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
  }
  .btn-whatsapp:hover {
    background: #1da85c;
    border-color: #1da85c;
  }
}

/* ----- HERO ----- */
.hero {
  position: relative;
  width: 100%;
  min-height: 757px;
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 575px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 55px;
  font-weight: 500;
  line-height: 65px;
  letter-spacing: -1.65px;
  color: #090e1d;
}
.hero-title span {
  color: #0c5ff4;
}
.hero-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.16px;
  color: #333;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  position: relative;
  z-index: 3;
}
.hero-actions a.btn {
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}
.hero-btn-packages {
  box-shadow: 0 6px 20px rgba(12, 95, 244, 0.35);
  font-weight: 600;
}
.hero-btn-packages:hover {
  box-shadow: 0 10px 28px rgba(12, 95, 244, 0.45);
}
.hero-btn-packages:active {
  transform: scale(0.96);
}
.hero-actions .btn-test-al {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  font-weight: 600;
}
.hero-actions .btn-test-al:active {
  transform: scale(0.96);
}
.hero-image {
  flex: 0 0 640px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12, 95, 244, 0.15);
}
.hero-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Masaüstü hero düzeni — mobil/tablet etkilenmez */
@media (min-width: 729px) {
  .hero {
    min-height: 680px;
    padding: 32px 0;
  }
  .hero-container {
    gap: 32px;
  }
  .hero-content {
    margin-left: -20px;
    flex-shrink: 0;
  }
  .hero-image {
    margin-left: 32px;
    margin-right: -24px;
  }
}

/* Hero arka planı – sadece statik gradient, animasyon yok */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(48.79% 57.89% at 72.76% 46.27%, #0c5ff480 0%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

/* Hero duman efekti – alttan yukarı, hafif açık tonlar */
.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-smoke::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(12, 95, 244, 0.14) 0%,
    rgba(140, 185, 255, 0.08) 35%,
    transparent 100%
  );
}
.hero-smoke::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 120%;
  height: 45%;
  margin-left: -60%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(12, 95, 244, 0.12) 0%,
    rgba(180, 210, 255, 0.06) 45%,
    transparent 70%
  );
  filter: blur(20px);
}
.hero-smoke__wisp {
  position: absolute;
  bottom: -12%;
  left: var(--wisp-x, 50%);
  width: var(--wisp-w, 280px);
  height: var(--wisp-h, 180px);
  margin-left: calc(var(--wisp-w, 280px) / -2);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 65%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(140, 185, 255, 0.55) 30%,
    rgba(12, 95, 244, 0.28) 55%,
    rgba(12, 95, 244, 0.08) 75%,
    transparent 88%
  );
  filter: blur(22px);
  opacity: 0;
  animation: heroSmokeRise var(--wisp-dur, 20s) var(--wisp-delay, 0s) ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-smoke__wisp--1 {
  --wisp-x: 10%;
  --wisp-w: 320px;
  --wisp-h: 220px;
  --wisp-dur: 20s;
  --wisp-delay: 0s;
  --wisp-drift: 22px;
}
.hero-smoke__wisp--2 {
  --wisp-x: 28%;
  --wisp-w: 420px;
  --wisp-h: 280px;
  --wisp-dur: 16s;
  --wisp-delay: -4s;
  --wisp-drift: -32px;
}
.hero-smoke__wisp--3 {
  --wisp-x: 48%;
  --wisp-w: 380px;
  --wisp-h: 250px;
  --wisp-dur: 18s;
  --wisp-delay: -8s;
  --wisp-drift: 18px;
}
.hero-smoke__wisp--4 {
  --wisp-x: 65%;
  --wisp-w: 460px;
  --wisp-h: 300px;
  --wisp-dur: 14s;
  --wisp-delay: -2s;
  --wisp-drift: -26px;
}
.hero-smoke__wisp--5 {
  --wisp-x: 82%;
  --wisp-w: 340px;
  --wisp-h: 230px;
  --wisp-dur: 19s;
  --wisp-delay: -10s;
  --wisp-drift: 24px;
}
.hero-smoke__wisp--6 {
  --wisp-x: 38%;
  --wisp-w: 300px;
  --wisp-h: 200px;
  --wisp-dur: 13s;
  --wisp-delay: -6s;
  --wisp-drift: -20px;
}
.hero-smoke__wisp--7 {
  --wisp-x: 72%;
  --wisp-w: 400px;
  --wisp-h: 260px;
  --wisp-dur: 17s;
  --wisp-delay: -12s;
  --wisp-drift: 30px;
}
@keyframes heroSmokeRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.85);
    opacity: 0;
  }
  6% {
    opacity: 0.75;
  }
  40% {
    transform: translate3d(var(--wisp-drift, 20px), -48vh, 0) scale(1.08);
    opacity: 0.65;
  }
  100% {
    transform: translate3d(calc(var(--wisp-drift, 20px) * -0.6), -115vh, 0) scale(1.35);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-smoke__wisp {
    animation: none;
    opacity: 0.45;
    bottom: 8%;
    transform: none;
  }
}

@media (max-width: 1272px) {
  .hero-image {
    flex-basis: 560px;
    height: 540px;
  }
  .hero-title {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (max-width: 1024px) {
  .hero-container {
    gap: 20px;
  }
  .hero-content {
    max-width: 50%;
  }
  .hero-title {
    font-size: 32px;
    line-height: 44px;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .hero-image {
    flex-basis: 45%;
    height: auto;
    min-height: 250px;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 728px) {
  .hero {
    min-height: auto;
    padding: 30px 0;
  }
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .hero-content {
    max-width: 55%;
    gap: 12px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .btn-lg {
    padding: 10px 14px;
    font-size: 12px;
  }
  .hero-title {
    font-size: 22px;
    line-height: 30px;
  }
  .hero-desc {
    font-size: 12px;
    line-height: 18px;
  }
  .hero-image {
    flex-basis: 40%;
    min-height: 120px;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 16px;
  }
  .hero-image img {
    border-radius: 0;
  }
  .badge {
    padding: 2px 12px 2px 2px;
    gap: 8px;
  }
  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .badge-text {
    font-size: 12px;
    line-height: 20px;
  }
  .btn-lg {
    padding: 10px 16px;
    font-size: 13px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .header-container {
    gap: 6px;
    padding: 0 6px;
  }
  .header-left {
    padding: 4px 6px 4px 5px;
    border-radius: 14px;
  }
  .header-logo {
    gap: 5px;
    padding-right: 7px;
    margin-right: 6px;
  }
  .header-logo__icon {
    width: 24px;
    height: 24px;
  }
  .header-logo__text {
    display: inline;
    font-size: 12px;
  }
  .header-nav {
    gap: 3px;
  }
  .header-nav__item {
    font-size: 10px;
    padding: 4px 5px 6px;
    border-radius: 7px;
  }
  .locale-switcher .btn {
    padding: 5px 6px;
  }
  .hero-title {
    font-size: 18px;
    line-height: 24px;
  }
  .hero-desc {
    font-size: 11px;
    line-height: 16px;
  }
  .hero-image {
    min-height: 80px;
  }
  .badge-text {
    font-size: 10px;
  }
  .badge-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

/* ----- PLATFORMS ----- */
.platforms {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 36px 0;
}
.platforms-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}
.platforms-top {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  color: #000;
}
.platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 38px;
}
.platforms-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  font-size: 20px;
  font-weight: 600;
  color: #555;
  background: #f5f5f5;
  padding: 0 20px;
  border-radius: 8px;
  transition: all 0.3s;
}
.platforms-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  background: #eef0f5;
}
.platforms-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0c5ff433;
  border: 1px solid #0c5ff4;
  border-radius: 100px;
  padding: 5px 20px 5px 5px;
}
.platforms-rating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2974fb;
  border: 1px solid #0c5ff4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.platforms-rating-text {
  font-size: 15px;
  font-weight: 500;
  color: #0c5ff4;
}
.platforms-rating-text strong {
  font-weight: 700;
  color: #2974fb;
}
.platforms-rating-stars {
  color: #e39539;
  font-size: 18px;
}
@media (max-width: 728px) {
  .platforms-list {
    gap: 24px;
  }
  .platforms-item {
    height: 32px;
    font-size: 16px;
    padding: 0 14px;
  }
  .platforms-rating {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 16px;
    gap: 10px;
  }
}

/* ----- PACKAGES ----- */
.packages {
  padding: 80px 0 30px;
}

.package-tab-group {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.package-tab {
  flex: 1;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  letter-spacing: -0.3px;
  background: #fff;
  color: #090e1d;
  position: relative;
}
.package-tab.mavi {
  background: #0c5ff4;
  color: #fff;
  border-radius: 20px 0 0 20px;
}
.package-tab.mavi.active {
  background: #0c5ff4;
  color: #fff;
  box-shadow: inset 0 -2px 10px rgba(255,255,255,0.2);
}
.package-tab.kirmizi {
  background: #e74c3c;
  color: #fff;
  border-radius: 0 20px 20px 0;
}
.package-tab.kirmizi.active {
  background: #e74c3c;
  color: #fff;
  box-shadow: inset 0 -2px 10px rgba(255,255,255,0.2);
}
.package-tab:not(.active) {
  background: #f5f5f5;
  color: #333;
}
.package-tab.mavi:not(.active) {
  background: #e0e7ff;
  color: #0c5ff4;
}
.package-tab.kirmizi:not(.active) {
  background: #fde8e8;
  color: #e74c3c;
}
@media (max-width: 728px) {
  .package-tab {
    padding: 12px 16px;
    font-size: 15px;
  }
}

.packages-group {
  display: none;
}
.packages-group.active {
  display: block;
}

.packages-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.packages-carousel::-webkit-scrollbar {
  display: none;
}
.package-card {
  flex: 0 0 calc(33.33% - 8px);
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.package-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(12, 95, 244, 0.15);
  border-color: #0c5ff4;
}
.package-card.popular {
  background: linear-gradient(#ffffff0f 0%, #fff0 60.64%), linear-gradient(#1b69f5 0% 100%), #fff;
  border-color: #0c5ff4;
}
.package-card.popular:hover {
  box-shadow: 0 20px 60px rgba(12, 95, 244, 0.25);
}
.package-card-inner {
  border-radius: 15px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.popular .package-card-inner {
  border-color: rgba(246, 248, 250, 0.1);
  background: transparent;
}
.package-top {
  font-size: 19px;
  font-weight: 500;
  color: #090e1d;
}
.popular .package-top {
  color: #fff;
}
.package-price {
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  color: #090e1d;
}
.popular .package-price {
  color: #fff;
}
.package-price span {
  font-size: 17px;
  font-weight: 500;
  color: #090e1d6b;
  margin-left: 5px;
}
.popular .package-price span {
  color: #ffffff6b;
}
.package-desc {
  font-size: 14px;
  font-weight: 500;
  color: #090e1d;
}
.popular .package-desc {
  color: #fff;
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.package-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #090e1d;
}
.popular .package-feature {
  color: #fff;
}
.package-feature i {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c5ff4;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s;
}
.package-card:hover .package-feature i {
  transform: rotate(10deg) scale(1.1);
}
.popular .package-feature i {
  background: #fff;
  color: #0c5ff4;
}
.package-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: #090e1d;
  color: #fff;
  padding: 6px 30px;
  font-size: 13px;
  font-weight: 500;
  transform: rotate(30deg);
  border-radius: 4px;
}
.packages-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.packages-actions button {
  width: 54px;
  height: 54px;
  border-radius: 73px;
  border: 1px solid #0c5ff480;
  background: #fff;
  color: #090e1d;
  font-size: 25px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.packages-actions button:hover {
  border-color: #0c5ff4;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(12, 95, 244, 0.15);
}
@media (max-width: 1024px) {
  .package-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 728px) {
  .package-card {
    flex: 0 0 calc(100% - 8px);
    min-width: unset;
  }
  .package-card-inner {
    padding: 20px;
  }
}

/* ----- FEATURES ----- */
.features {
  background: radial-gradient(57.4% 68.44% at 50% 48.43%, #0c5ff426 0%, #f6f8fa00 100%);
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  border-radius: 25px;
  padding: 0;
  background: linear-gradient(#0c5ff400 0%, #0c5ff41f 100%), #f6f8fa;
  border: 1px solid #0c5ff433;
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 360px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(12, 95, 244, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 95, 244, 0.12);
  border-color: #0c5ff4;
}
.feature-card-body {
  position: relative;
  z-index: 2;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0c5ff4 0%, #2974fb 100%);
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(12, 95, 244, 0.25);
  flex-shrink: 0;
}
.feature-icon-wrap--large {
  width: 64px;
  height: 64px;
  font-size: 26px;
  border-radius: 18px;
}
.feature-card.large {
  grid-column: span 6;
  flex-direction: row;
  align-items: stretch;
}
.feature-card.small {
  grid-column: span 4;
  flex-direction: column;
  align-items: stretch;
  min-height: 320px;
}
.feature-card.small .feature-card-body {
  align-items: center;
  text-align: center;
  padding: 28px 32px 36px;
  flex: 1;
}
.feature-card.small .feature-icon-wrap {
  margin-left: auto;
  margin-right: auto;
}
.feature-card-title {
  font-size: 35px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.05px;
  color: #0f1327;
  margin-bottom: 15px;
}
.feature-card-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #0f132766;
  max-width: 310px;
}
.small .feature-card-title {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
}
.small .feature-card-text {
  font-size: 16px;
  line-height: 22px;
  max-width: 100%;
}
.feature-card .btn {
  margin-top: 20px;
  align-self: flex-start;
}
.small .btn {
  align-self: center;
}

/* Feature visuals */
.feature-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  pointer-events: none;
}
.feature-card.large .feature-visual {
  width: 46%;
  min-width: 240px;
  max-width: 340px;
}
.feature-card.small .feature-visual {
  width: 100%;
  height: 160px;
  padding: 20px 24px 0;
  box-sizing: border-box;
}

/* Devices visual */
.feature-visual--devices {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fv-sync-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(12, 95, 244, 0.25);
  border-radius: 50%;
  animation: fvSpin 20s linear infinite;
}
.fv-device {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 95, 244, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 95, 244, 0.12);
  font-size: 11px;
  font-weight: 600;
  color: #0f1327;
  backdrop-filter: blur(8px);
  animation: fvFloat 4s ease-in-out infinite;
}
.fv-device i {
  font-size: 22px;
  color: #0c5ff4;
}
.fv-device--tv { top: 12%; left: 8%; animation-delay: 0s; }
.fv-device--phone { top: 8%; right: 6%; animation-delay: 0.8s; }
.fv-device--tablet { bottom: 18%; left: 12%; animation-delay: 1.6s; }
.fv-device--box { bottom: 12%; right: 10%; animation-delay: 2.4s; }

/* Web browser visual */
.feature-visual--web {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fv-browser {
  width: 100%;
  max-width: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(12, 95, 244, 0.25);
  box-shadow: 0 12px 32px rgba(12, 95, 244, 0.15);
  background: #fff;
}
.fv-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #eef2f8;
  border-bottom: 1px solid rgba(12, 95, 244, 0.1);
}
.fv-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}
.fv-browser-bar span:nth-child(1) { background: #ff5f57; }
.fv-browser-bar span:nth-child(2) { background: #febc2e; }
.fv-browser-bar span:nth-child(3) { background: #28c840; }
.fv-browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 10px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fv-browser-screen {
  position: relative;
  height: 110px;
  background: linear-gradient(135deg, #0a1123 0%, #1a2a4a 50%, #0c5ff4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0c5ff4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fvPulse 2s ease-in-out infinite;
}
.fv-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}
.fv-progress span {
  display: block;
  height: 100%;
  width: 45%;
  background: #0c5ff4;
  border-radius: 0 2px 2px 0;
  animation: fvProgress 3s ease-in-out infinite;
}

/* Quality visual */
.feature-visual--quality {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(12, 95, 244, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(12, 95, 244, 0.1);
}
.fv-quality-badge {
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0c5ff4, #2974fb);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(12, 95, 244, 0.35);
}
.fv-quality-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}
.fv-quality-bars span {
  width: 10px;
  height: var(--h);
  background: linear-gradient(180deg, #2974fb, #0c5ff4);
  border-radius: 4px 4px 2px 2px;
  animation: fvBarPulse 1.5s ease-in-out infinite;
}
.fv-quality-bars span:nth-child(1) { animation-delay: 0s; }
.fv-quality-bars span:nth-child(2) { animation-delay: 0.15s; }
.fv-quality-bars span:nth-child(3) { animation-delay: 0.3s; }
.fv-quality-bars span:nth-child(4) { animation-delay: 0.45s; }
.fv-quality-bars span:nth-child(5) { animation-delay: 0.6s; }
.fv-quality-tags {
  display: flex;
  gap: 8px;
}
.fv-quality-tags em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(12, 95, 244, 0.1);
  color: #0c5ff4;
  border: 1px solid rgba(12, 95, 244, 0.2);
}

/* Support visual */
.feature-visual--support {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fv-support-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  animation: fvPulse 2.5s ease-in-out infinite;
}
.fv-support-badge i { font-size: 12px; }
.fv-chat {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv-chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.fv-chat-bubble--user {
  align-self: flex-end;
  background: #0c5ff4;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.fv-chat-bubble--agent {
  align-self: flex-start;
  background: #fff;
  color: #0f1327;
  border: 1px solid rgba(12, 95, 244, 0.15);
  border-bottom-left-radius: 4px;
}
.fv-chat-bubble--agent i {
  color: #22c55e;
  margin-right: 4px;
}
.fv-chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(12, 95, 244, 0.15);
}
.fv-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0c5ff4;
  animation: fvTyping 1.2s ease-in-out infinite;
}
.fv-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.fv-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
.fv-support-glow {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(12, 95, 244, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes fvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fvSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fvPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes fvProgress {
  0% { width: 20%; }
  50% { width: 70%; }
  100% { width: 45%; }
}
@keyframes fvBarPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fvTyping {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 1024px) {
  .feature-card.large {
    grid-column: span 12;
    flex-direction: column;
  }
  .feature-card.large .feature-visual {
    width: 100%;
    max-width: none;
    height: 220px;
    order: -1;
    border-bottom: 1px solid rgba(12, 95, 244, 0.1);
  }
  .feature-card.small {
    grid-column: span 6;
  }
}
@media (max-width: 728px) {
  .feature-card.small {
    grid-column: span 12;
  }
  .feature-card-body {
    padding: 24px;
  }
  .feature-card.small .feature-card-body {
    padding: 24px;
  }
  .feature-card-title {
    font-size: 24px;
    line-height: 32px;
  }
  .feature-card.large .feature-visual {
    height: 200px;
  }
  .fv-device {
    padding: 10px 12px;
    font-size: 10px;
  }
  .fv-device i { font-size: 18px; }
}

/* ----- CHANNELS ----- */
.channels {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.channels-heading {
  text-align: center;
  max-width: 895px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.channels-heading .heading-text {
  font-size: 19px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.34px;
  color: #000;
}
.channels-flags {
  display: flex;
  gap: 20px;
  font-size: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.channels-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.channels-row {
  display: flex;
  gap: 18px;
  animation: scrollChannels 45s linear infinite;
}
.channels-row.reverse {
  animation-direction: reverse;
}
.channels-item {
  flex: 0 0 200px;
  height: 125px;
  border-radius: 18px;
  background: linear-gradient(#0c5ff400 0%, #0c5ff41f 100%), #f6f8fa;
  border: 1px solid #0c5ff433;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  transition: all 0.3s;
  overflow: hidden;
}
.channels-item img {
  width: 100%;
  height: 52px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: rgba(9, 14, 29, 0.88);
  border-radius: 10px;
  padding: 6px;
  box-sizing: border-box;
}
.channels-item-label {
  font-size: 12px;
  font-weight: 600;
  color: #090e1d;
  letter-spacing: -0.2px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.channels-item:hover {
  transform: scale(1.05);
  border-color: #0c5ff4;
  box-shadow: 0 8px 25px rgba(12, 95, 244, 0.1);
}
@keyframes scrollChannels {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.channels-bottom {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: -1.75px;
  color: #000;
  margin-top: 20px;
}
@media (max-width: 728px) {
  .channels-item {
    flex: 0 0 133px;
    height: 96px;
    padding: 10px 8px;
    gap: 4px;
  }
  .channels-item img {
    height: 40px;
    max-width: 100px;
  }
  .channels-item-label {
    font-size: 10px;
  }
  .channels-bottom {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ----- CTA ----- */
.cta {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.cta-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.cta-hero-image {
  width: 100%;
  aspect-ratio: 980/693;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.cta-hero-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, #080b18 100%);
}
.cta-heading {
  text-align: center;
  max-width: 708px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.cta-heading .heading-text {
  font-size: 25px;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: -0.34px;
  color: #000;
}
.cta-heading .heading-bottom {
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #000;
}
.cta-heading .heading-bottom span {
  color: #0c5ff4;
}
@media (max-width: 1024px) {
  .cta-hero-image {
    font-size: 20px;
  }
  .cta-heading .heading-text,
  .cta-heading .heading-bottom {
    font-size: 18px;
    line-height: 32px;
  }
}

/* ----- COMMENTS ----- */
.comments {
  padding: 80px 0;
  background: #fff;
}
.comments-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 10px 0 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.comments-carousel::-webkit-scrollbar {
  display: none;
}
.comment-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  border-radius: 25px;
  padding: 24px 34px;
  background: linear-gradient(#0c5ff400 0%, #0c5ff41f 100%), #fff;
  border: 2px solid #0c5ff480;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.comment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(12, 95, 244, 0.1);
  border-color: #0c5ff4;
}
.comment-stars {
  color: #e39539;
  font-size: 24px;
}
.comment-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #090e1d;
  overflow-wrap: break-word;
  word-break: break-word;
}
.comment-user {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comment-user-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #090e1d;
}
.comment-user-date {
  font-size: 14px;
  font-weight: 300;
  color: #535862;
}
.comments-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.comments-actions button {
  width: 54px;
  height: 54px;
  border-radius: 73px;
  border: 1px solid #0c5ff480;
  background: #fff;
  color: #090e1d;
  font-size: 25px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments-actions button:hover {
  border-color: #0c5ff4;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(12, 95, 244, 0.15);
}
@media (max-width: 728px) {
  .comment-card {
    flex: 0 0 280px;
    padding: 20px 16px;
  }
}

/* ----- FAQ ----- */
.faq {
  padding: 80px 0;
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s;
  cursor: pointer;
}
.faq-item:hover {
  border-color: #090e1d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}
.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #090e1d;
}
.faq-item-header i {
  transition: transform 0.4s ease;
  font-size: 20px;
  color: #090e1d;
}
.faq-item-body {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              margin-top 0.35s ease;
}
.faq-item-body-inner {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #090e1d;
  padding-top: 0;
}
.faq-item.open .faq-item-body {
  max-height: 400px;
  opacity: 1;
  margin-top: 16px;
}
.faq-item.open .faq-item-header i {
  transform: rotate(180deg);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 728px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- CATEGORIES ----- */
.categories {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.categories-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.categories-list::-webkit-scrollbar {
  display: none;
}
.categories-item {
  flex: 0 0 145px;
  height: 145px;
  border-radius: 18px;
  background: linear-gradient(#0c5ff400 0%, #0c5ff41f 100%), #f6f8fa;
  border: 1px solid #0c5ff433;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.categories-item:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 15px 40px rgba(12, 95, 244, 0.15);
  border-color: #0c5ff4;
}
.categories-item .bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #0a1123ed 100%);
  z-index: 0;
}
.categories-item span {
  position: relative;
  z-index: 1;
}
@media (max-width: 728px) {
  .categories-item {
    flex: 0 0 120px;
    height: 120px;
    font-size: 14px;
  }
}

/* ----- CATEGORIES MARQUEE ----- */
.categories-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.categories-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.categories-marquee-item {
  flex: 0 0 200px;
  height: 125px;
  border-radius: 18px;
  background: linear-gradient(#0c5ff400 0%, #0c5ff41f 100%), #f6f8fa;
  border: 1px solid #0c5ff433;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  transition: all 0.3s ease;
}
.categories-marquee-item:hover {
  transform: scale(1.05);
  border-color: #0c5ff4;
  box-shadow: 0 8px 25px rgba(12, 95, 244, 0.1);
}
.categories-marquee-item img {
  width: 100%;
  height: 52px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: rgba(9, 14, 29, 0.88);
  border-radius: 10px;
  padding: 6px;
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}
.categories-marquee-item span {
  font-size: 12px;
  font-weight: 600;
  color: #090e1d;
  letter-spacing: -0.2px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 728px) {
  .categories-marquee {
    margin-top: 28px;
  }
  .categories-marquee-item {
    flex: 0 0 133px;
    height: 96px;
    padding: 10px 8px;
    gap: 4px;
  }
  .categories-marquee-item img {
    height: 40px;
    max-width: 100px;
  }
  .categories-marquee-item span {
    font-size: 10px;
  }
}

/* ----- SECTION TEST AL CTA ----- */
.section-test-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  padding-bottom: 8px;
}
.hero .section-test-cta {
  position: relative;
  z-index: 5;
  margin-top: 24px;
  padding-bottom: 0;
}
.btn-test-al {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 64px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  letter-spacing: -0.2px;
}
.btn-test-al:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}
.btn-test-al i {
  font-size: 20px;
}
@media (max-width: 728px) {
  .section-test-cta {
    margin-top: 24px;
  }
  .btn-test-al {
    padding: 10px 22px;
    font-size: 14px;
  }
  .hero .section-test-cta {
    margin-top: 16px;
  }
}

/* ----- FOOTER ----- */
.site-footer {
  background: linear-gradient(180deg, #f6f8fa 0%, #e8ecf1 100%);
  padding: 60px 0 0;
  margin-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-col h3 {
  font-size: 18px;
  font-weight: 600;
  color: #090e1d;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  color: #4a4f5e;
  font-size: 15px;
  transition: color 0.3s;
  line-height: 1.4;
}
.footer-col ul li a:hover {
  color: #0c5ff4;
}
.footer-info .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-info .footer-logo img {
  max-height: 42px;
  width: auto;
  display: block;
}
.footer-info .footer-logo svg {
  width: 36px;
  height: 36px;
}
.contact-details p {
  font-size: 15px;
  color: #4a4f5e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details p strong {
  color: #090e1d;
  font-weight: 600;
  min-width: 80px;
}
.contact-details p i {
  color: #0c5ff4;
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #0c5ff4;
}
.social-link.whatsapp-hover {
  background: #25d366;
}
.social-link.telegram-hover {
  background: #0088cc;
}
.social-link:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.footer-middle {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bank-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.bank-logos .bank-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4f5e;
  opacity: 0.7;
  transition: all 0.3s;
}
.bank-logos .bank-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.bank-logos .bank-item i {
  font-size: 28px;
  color: #0c5ff4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
  color: #4a4f5e;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-bottom .footer-links a {
  color: #4a4f5e;
  transition: color 0.3s;
}
.footer-bottom .footer-links a:hover {
  color: #0c5ff4;
}
.footer-bottom .footer-links .separator {
  color: #d0d5dd;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 728px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .bank-logos {
    gap: 16px;
  }
  .bank-logos .bank-item i {
    font-size: 22px;
  }
  .contact-details p {
    font-size: 14px;
    flex-wrap: wrap;
  }
  .contact-details p strong {
    min-width: 60px;
  }
}

/* ----- WHATSAPP WIDGET ----- */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.whatsapp-button {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background: linear-gradient(#ffffff24 0%, #fff0 100%), #0c5ff4;
  border: 1px solid #0c62f4b3;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(12, 95, 244, 0.3);
  transition: all 0.3s;
}
.whatsapp-button:hover {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(12, 95, 244, 0.4);
}
@media (max-width: 1024px) {
  .whatsapp-widget {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    left: 12px;
  }
  .whatsapp-button {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ===== DALGA EFEKTI (Hero hariç) ===== */
.section-wave {
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(12,95,244,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(12,95,244,0.04) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: waveEffect 18s ease-in-out infinite alternate;
}
@keyframes waveEffect {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* ===== SCROLL ANIMATION ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ----- BLOG PAGE STYLES ----- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.blog-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(12, 95, 244, 0.15);
  border-color: #0c5ff4;
}
.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, #0c5ff4, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
}
.blog-card-content {
  padding: 24px;
}
.blog-card-category {
  display: inline-block;
  background: #0c5ff4;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #090e1d;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 14px;
  color: #4a4f5e;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #535862;
}
.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 728px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- BLOG DETAIL PAGE STYLES ----- */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}
.blog-detail-header {
  margin-bottom: 40px;
}
.blog-detail-category {
  display: inline-block;
  background: #0c5ff4;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.blog-detail-title {
  font-size: 36px;
  font-weight: 700;
  color: #090e1d;
  line-height: 1.3;
  margin-bottom: 16px;
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #535862;
}
.blog-detail-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #0c5ff4, #1a1a2e);
  border-radius: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 64px;
}
.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #090e1d;
}
.blog-detail-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #090e1d;
  margin: 40px 0 20px;
}
.blog-detail-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #090e1d;
  margin: 30px 0 16px;
}
.blog-detail-content p {
  margin-bottom: 20px;
}
.blog-detail-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}
.blog-detail-content li {
  margin-bottom: 8px;
}
@media (max-width: 728px) {
  .blog-detail-title {
    font-size: 24px;
  }
  .blog-detail-image {
    height: 250px;
  }
}

/* ----- INSTALLATION PAGE STYLES ----- */
.installation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.installation-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.installation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(12, 95, 244, 0.15);
  border-color: #0c5ff4;
}
.installation-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0c5ff4, #1a1a2e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}
.installation-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #090e1d;
  margin-bottom: 12px;
}
.installation-card-desc {
  font-size: 14px;
  color: #4a4f5e;
  line-height: 1.6;
  margin-bottom: 20px;
}
.installation-steps {
  list-style: none;
  padding: 0;
}
.installation-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #090e1d;
  line-height: 1.6;
}
.installation-steps li span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #0c5ff4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 728px) {
  .installation-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- BAYİLİK (DEALERSHIP) ----- */
.dealership-hero {
  min-height: 420px;
}
.dealership-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.dealership-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(12, 95, 244, 0.08);
  border: 1px solid rgba(12, 95, 244, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #090e1d;
}
.dealership-pill i {
  color: #0c5ff4;
  font-size: 14px;
}
.dealership-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.dealership-card-flag {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.dealership-credit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.dealership-credit-item {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.dealership-credit-item:hover {
  box-shadow: 0 12px 32px rgba(12, 95, 244, 0.1);
  transform: translateY(-2px);
}
.dealership-credit-item.highlight {
  border-color: #0c5ff4;
  background: linear-gradient(#ffffff 0%, #f0f6ff 100%);
}
.dealership-credit-duration {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.dealership-credit-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #090e1d;
  letter-spacing: -0.5px;
}
.dealership-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 20px 24px;
  background: linear-gradient(#0c5ff408 0%, #0c5ff414 100%);
  border: 1px solid #0c5ff433;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.dealership-info-box i {
  color: #0c5ff4;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.dealership-rate {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #0c5ff4;
}
.dealership-cta {
  background: linear-gradient(135deg, #090e1d 0%, #102443 100%);
}
.dealership-cta-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dealership-cta-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0c5ff4 0%, #3dd6d6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}
.dealership-cta-inner h2,
.dealership-cta-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.error-page__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.dealership-cta-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}
.dealership-cta-inner .btn {
  flex-shrink: 0;
  margin-left: auto;
}
.dealership-reqs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dealership-req {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.25s;
}
.dealership-req:hover {
  box-shadow: 0 12px 32px rgba(12, 95, 244, 0.08);
}
.dealership-req-num {
  font-size: 42px;
  font-weight: 700;
  color: #0c5ff4;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.dealership-req-icon {
  font-size: 32px;
  color: #0c5ff4;
  margin-bottom: 12px;
}
.dealership-req p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
.dealership-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.dealership-about-block h2,
.dealership-about-title {
  font-size: 24px;
  font-weight: 600;
  color: #090e1d;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.dealership-about-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.dealership-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dealership-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.dealership-list i {
  color: #0c5ff4;
  margin-top: 3px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .dealership-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .dealership-credit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dealership-reqs {
    grid-template-columns: repeat(2, 1fr);
  }
  .dealership-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dealership-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .dealership-cta-inner .btn {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 728px) {
  .dealership-credit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dealership-reqs {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dealership-hero {
    min-height: 360px;
  }
  .dealership-pill {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 480px) {
  .dealership-reqs {
    grid-template-columns: 1fr;
  }
  .dealership-credit-item {
    padding: 18px 12px;
  }
  .dealership-credit-value {
    font-size: 18px;
  }
}

/* ===== Breadcrumb (minimal SEO nav) ===== */
.breadcrumb-bar {
  padding: 12px 0 0;
  position: relative;
  z-index: 2;
}
.breadcrumb-bar ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-bar li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-bar li + li::before {
  content: "›";
  margin: 0 8px;
  opacity: 0.45;
  font-weight: 400;
}
.breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-bar a:hover {
  color: var(--accent-cyan, #3dd6d6);
}
.breadcrumb-bar [aria-current="page"] {
  color: rgba(255, 255, 255, 0.88);
}
