/* ============================================
   AutoDrive KZ — Sporty Red & Black Theme
   Font: Exo 2 | Prefix: ad-
   Colors: #DC2626 (red), #0A0A0A (black)
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: #0A0A0A;
  color: #E5E5E5;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #DC2626;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #EF4444;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

/* --- UTILITY --- */
.ad-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ad-section {
  padding: 80px 0;
}

.ad-section--dark {
  background: #0A0A0A;
}

.ad-section--red {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
}

.ad-section--carbon {
  background: #111111;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.02) 2px,
    rgba(255,255,255,0.02) 4px
  );
}

.ad-section--stripe {
  background: #0F0F0F;
  position: relative;
  overflow: hidden;
}

.ad-section--stripe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #DC2626 0px,
    #DC2626 20px,
    transparent 20px,
    transparent 40px
  );
}

.ad-text-center {
  text-align: center;
}

.ad-mb-20 { margin-bottom: 20px; }
.ad-mb-30 { margin-bottom: 30px; }
.ad-mb-40 { margin-bottom: 40px; }
.ad-mb-60 { margin-bottom: 60px; }
.ad-mt-20 { margin-top: 20px; }
.ad-mt-40 { margin-top: 40px; }

/* --- SPEED LINES DECORATION --- */
.ad-speed-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.06;
}

.ad-speed-lines::before,
.ad-speed-lines::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 3px;
  background: #DC2626;
  transform: rotate(-25deg);
}

.ad-speed-lines::before {
  top: 30%;
  right: -100px;
}

.ad-speed-lines::after {
  top: 60%;
  right: -50px;
}

/* --- HEADER --- */
.ad-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #DC2626;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.ad-header--scrolled {
  box-shadow: 0 4px 30px rgba(220, 38, 38, 0.3);
}

.ad-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

.ad-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ad-logo iconify-icon {
  font-size: 2rem;
  color: #DC2626;
}

.ad-logo span {
  color: #DC2626;
}

/* --- NAVIGATION --- */
.ad-nav {
  display: flex;
  align-items: center;
}

.ad-nav__list {
  display: flex;
  gap: 5px;
}

.ad-nav__link {
  color: #CCCCCC;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: transparent;
}

.ad-nav__link:hover,
.ad-nav__link--active {
  color: #FFFFFF;
  background: #DC2626;
}

/* --- BURGER MENU --- */
.ad-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

.ad-burger__line {
  width: 28px;
  height: 3px;
  background: #DC2626;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.ad-burger--active .ad-burger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ad-burger--active .ad-burger__line:nth-child(2) {
  opacity: 0;
}

.ad-burger--active .ad-burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- BANNER (index top section) --- */
.ad-banner {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A0505 50%, #0A0A0A 100%);
  overflow: hidden;
}

.ad-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(220,38,38,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ad-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #0A0A0A, transparent);
  pointer-events: none;
}

.ad-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.ad-banner__tag {
  display: inline-block;
  background: #DC2626;
  color: #FFFFFF;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  margin-bottom: 20px;
}

.ad-banner__title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.ad-banner__title span {
  color: #DC2626;
  display: block;
}

.ad-banner__desc {
  font-size: 1.15rem;
  color: #AAAAAA;
  margin-bottom: 35px;
  max-width: 550px;
}

.ad-banner__race-stripe {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 6px;
  height: 80%;
  background: repeating-linear-gradient(
    to bottom,
    #DC2626 0px,
    #DC2626 20px,
    transparent 20px,
    transparent 40px
  );
  opacity: 0.4;
}

.ad-banner__checker {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: repeating-conic-gradient(
    #1A1A1A 0% 25%, transparent 0% 50%
  ) 0 0 / 30px 30px;
  opacity: 0.15;
}

/* --- BUTTONS --- */
.ad-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ad-btn--primary {
  background: #DC2626;
  color: #FFFFFF;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.ad-btn--primary:hover {
  background: #EF4444;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  color: #FFFFFF;
}

.ad-btn--outline {
  background: transparent;
  color: #DC2626;
  border: 2px solid #DC2626;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.ad-btn--outline:hover {
  background: #DC2626;
  color: #FFFFFF;
}

.ad-btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.ad-btn iconify-icon {
  font-size: 1.2em;
}

/* --- SECTION HEADINGS --- */
.ad-heading {
  position: relative;
  margin-bottom: 50px;
}

.ad-heading__title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ad-heading__title span {
  color: #DC2626;
}

.ad-heading__line {
  display: block;
  width: 80px;
  height: 4px;
  background: #DC2626;
  margin-top: 15px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.ad-heading--center {
  text-align: center;
}

.ad-heading--center .ad-heading__line {
  margin: 15px auto 0;
}

.ad-heading__sub {
  font-size: 1.05rem;
  color: #999999;
  margin-top: 12px;
  font-weight: 400;
}

/* --- FEATURE GRID (services/features) --- */
.ad-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ad-feature {
  background: #141414;
  border: 1px solid #222222;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.ad-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #DC2626;
  transition: height 0.4s ease;
}

.ad-feature:hover {
  transform: translateY(-5px);
  border-color: #DC2626;
}

.ad-feature:hover::before {
  height: 100%;
}

.ad-feature__icon {
  font-size: 2.5rem;
  color: #DC2626;
  margin-bottom: 20px;
  display: block;
}

.ad-feature__title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ad-feature__text {
  color: #999999;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- PRICING TIERS --- */
.ad-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ad-pricing__card {
  background: #141414;
  border: 2px solid #222222;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.ad-pricing__card:hover {
  transform: translateY(-5px);
  border-color: #DC2626;
}

.ad-pricing__card--featured {
  border-color: #DC2626;
  background: linear-gradient(180deg, #1A0505 0%, #141414 100%);
}

.ad-pricing__card--featured::after {
  content: 'ХИТ';
  position: absolute;
  top: 15px;
  right: -25px;
  background: #DC2626;
  color: #FFFFFF;
  padding: 4px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.ad-pricing__name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #DC2626;
  margin-bottom: 15px;
}

.ad-pricing__price {
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.ad-pricing__currency {
  font-size: 1rem;
  font-weight: 400;
  color: #999999;
}

.ad-pricing__list {
  margin: 30px 0;
  text-align: left;
}

.ad-pricing__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #1F1F1F;
  color: #CCCCCC;
  font-size: 0.95rem;
}

.ad-pricing__item iconify-icon {
  color: #DC2626;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- REVIEWS --- */
.ad-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ad-review {
  background: #141414;
  border: 1px solid #222222;
  padding: 30px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.ad-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #DC2626;
}

.ad-review__stars {
  color: #DC2626;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  gap: 3px;
}

.ad-review__text {
  color: #CCCCCC;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.ad-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ad-review__avatar {
  width: 45px;
  height: 45px;
  background: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
}

.ad-review__name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.ad-review__role {
  font-size: 0.8rem;
  color: #777777;
}

/* --- FAQ --- */
.ad-faq {
  max-width: 800px;
  margin: 0 auto;
}

.ad-faq__item {
  border-bottom: 1px solid #222222;
}

.ad-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  transition: color 0.3s ease;
  gap: 15px;
}

.ad-faq__question:hover {
  color: #DC2626;
}

.ad-faq__question iconify-icon {
  font-size: 1.3rem;
  color: #DC2626;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ad-faq__item--active .ad-faq__question iconify-icon {
  transform: rotate(180deg);
}

.ad-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.ad-faq__item--active .ad-faq__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.ad-faq__answer p {
  color: #AAAAAA;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CONTACT FORM --- */
.ad-form {
  max-width: 600px;
  margin: 0 auto;
}

.ad-form__group {
  margin-bottom: 20px;
}

.ad-form__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #CCCCCC;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-form__input,
.ad-form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: #141414;
  border: 2px solid #222222;
  color: #FFFFFF;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.ad-form__input:focus,
.ad-form__textarea:focus {
  outline: none;
  border-color: #DC2626;
}

.ad-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.ad-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.ad-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.ad-form__consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #DC2626;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ad-form__consent label {
  font-size: 0.85rem;
  color: #999999;
  line-height: 1.5;
}

.ad-form__consent a {
  color: #DC2626;
}

/* --- FOOTER --- */
.ad-footer {
  background: #050505;
  border-top: 3px solid #DC2626;
  padding: 60px 0 0;
}

.ad-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ad-footer__brand {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.ad-footer__brand span {
  color: #DC2626;
}

.ad-footer__desc {
  color: #777777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ad-footer__heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.ad-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #DC2626;
}

.ad-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ad-footer__link {
  color: #888888;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ad-footer__link:hover {
  color: #DC2626;
  padding-left: 8px;
}

.ad-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888888;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.ad-footer__contact-item iconify-icon {
  color: #DC2626;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ad-footer__contact-item a {
  color: #888888;
}

.ad-footer__contact-item a:hover {
  color: #DC2626;
}

.ad-footer__bottom {
  border-top: 1px solid #1A1A1A;
  padding: 20px 0;
  text-align: center;
}

.ad-footer__copy {
  color: #555555;
  font-size: 0.85rem;
}

.ad-footer__bin {
  color: #444444;
  font-size: 0.8rem;
  margin-top: 5px;
}

/* --- BREADCRUMBS --- */
.ad-breadcrumbs {
  padding: 15px 0;
  background: #0F0F0F;
  border-bottom: 1px solid #1A1A1A;
}

.ad-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ad-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666666;
}

.ad-breadcrumbs__link {
  color: #888888;
  transition: color 0.3s ease;
}

.ad-breadcrumbs__link:hover {
  color: #DC2626;
}

.ad-breadcrumbs__sep {
  color: #DC2626;
  font-size: 0.7rem;
}

.ad-breadcrumbs__current {
  color: #DC2626;
  font-weight: 600;
}

/* --- PAGE TOP --- */
.ad-page-top {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A0505 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.ad-page-top::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.1), transparent 70%);
  pointer-events: none;
}

.ad-page-top__title {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.ad-page-top__title span {
  color: #DC2626;
}

.ad-page-top__desc {
  color: #999999;
  font-size: 1.1rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* --- TABLE --- */
.ad-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
}

.ad-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.ad-table thead {
  background: #DC2626;
}

.ad-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.ad-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #1F1F1F;
  font-size: 0.95rem;
  color: #CCCCCC;
}

.ad-table tbody tr {
  transition: background 0.3s ease;
}

.ad-table tbody tr:hover {
  background: rgba(220, 38, 38, 0.05);
}

.ad-table tbody tr:nth-child(even) {
  background: #111111;
}

.ad-table tbody tr:nth-child(even):hover {
  background: rgba(220, 38, 38, 0.08);
}

/* --- TEAM --- */
.ad-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ad-team__member {
  background: #141414;
  border: 1px solid #222222;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.ad-team__member:hover {
  transform: translateY(-5px);
  border-color: #DC2626;
}

.ad-team__avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ad-team__avatar iconify-icon {
  font-size: 2rem;
  color: #FFFFFF;
}

.ad-team__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.ad-team__role {
  font-size: 0.85rem;
  color: #DC2626;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ad-team__bio {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- COOKIE BANNER --- */
.ad-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #141414;
  border-top: 2px solid #DC2626;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.ad-cookie--visible {
  transform: translateY(0);
}

.ad-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ad-cookie__text {
  color: #CCCCCC;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ad-cookie__text a {
  color: #DC2626;
}

.ad-cookie__btn {
  background: #DC2626;
  color: #FFFFFF;
  border: none;
  padding: 10px 25px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.ad-cookie__btn:hover {
  background: #EF4444;
}

/* --- CONTENT BLOCKS --- */
.ad-content {
  color: #CCCCCC;
  line-height: 1.8;
}

.ad-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.ad-content h3 {
  font-size: 1.3rem;
  margin: 30px 0 15px;
  color: #DC2626;
}

.ad-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.ad-content ul {
  margin: 15px 0;
  padding-left: 0;
}

.ad-content li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 0.95rem;
}

.ad-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 3px;
  background: #DC2626;
}

/* --- INFO BLOCK / CTA BANNER --- */
.ad-cta-block {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.ad-cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.03) 30px,
    rgba(255,255,255,0.03) 60px
  );
  pointer-events: none;
}

.ad-cta-block__title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.ad-cta-block__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.ad-cta-block .ad-btn--primary {
  background: #FFFFFF;
  color: #DC2626;
}

.ad-cta-block .ad-btn--primary:hover {
  background: #F5F5F5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- STATS/COUNTERS --- */
.ad-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ad-stat {
  text-align: center;
  padding: 30px 20px;
  background: #141414;
  border: 1px solid #222222;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.ad-stat__number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #DC2626;
  display: block;
}

.ad-stat__label {
  font-size: 0.85rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* --- THANK YOU PAGE --- */
.ad-thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ad-thankyou__icon {
  font-size: 5rem;
  color: #DC2626;
  margin-bottom: 25px;
}

.ad-thankyou__title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ad-thankyou__text {
  color: #999999;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* --- 404 PAGE --- */
.ad-notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ad-notfound__code {
  font-size: 8rem;
  font-weight: 900;
  color: #DC2626;
  line-height: 1;
  text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.ad-notfound__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0;
}

.ad-notfound__text {
  color: #999999;
  margin-bottom: 30px;
}

/* --- TIPS CARDS --- */
.ad-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ad-tip {
  background: #141414;
  border: 1px solid #222222;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ad-tip::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #DC2626, transparent);
}

.ad-tip:hover {
  transform: translateY(-3px);
  border-color: #DC2626;
}

.ad-tip__icon {
  font-size: 2rem;
  color: #DC2626;
  margin-bottom: 15px;
}

.ad-tip__title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.ad-tip__text {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- RULES SECTION --- */
.ad-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.ad-rule {
  background: #141414;
  border-left: 4px solid #DC2626;
  padding: 25px 30px;
  transition: background 0.3s ease;
}

.ad-rule:hover {
  background: #1A1A1A;
}

.ad-rule__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ad-rule__title iconify-icon {
  color: #DC2626;
}

.ad-rule__text {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .ad-features,
  .ad-pricing,
  .ad-reviews,
  .ad-team {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ad-banner__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .ad-burger {
    display: flex;
  }

  .ad-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0A0A0A;
    border-left: 3px solid #DC2626;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1050;
  }

  .ad-nav--open {
    right: 0;
  }

  .ad-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .ad-nav__link {
    clip-path: none;
    padding: 12px 15px;
    display: block;
    border-bottom: 1px solid #1A1A1A;
  }

  .ad-features,
  .ad-pricing,
  .ad-reviews,
  .ad-team,
  .ad-tips,
  .ad-rules-grid {
    grid-template-columns: 1fr;
  }

  .ad-stats {
    grid-template-columns: 1fr 1fr;
  }

  .ad-banner {
    min-height: 70vh;
    padding: 40px 0;
  }

  .ad-banner__title {
    font-size: 2rem;
  }

  .ad-section {
    padding: 50px 0;
  }

  .ad-heading__title {
    font-size: 1.8rem;
  }

  .ad-page-top__title {
    font-size: 2rem;
  }

  .ad-footer__grid {
    grid-template-columns: 1fr;
  }

  .ad-cookie__inner {
    flex-direction: column;
    text-align: center;
  }

  .ad-pricing__card--featured::after {
    display: none;
  }

  .ad-notfound__code {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .ad-banner__title {
    font-size: 1.6rem;
  }

  .ad-heading__title {
    font-size: 1.5rem;
  }

  .ad-stats {
    grid-template-columns: 1fr;
  }

  .ad-pricing__price {
    font-size: 2.2rem;
  }

  .ad-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* --- OVERLAY (mobile nav) --- */
.ad-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ad-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* --- LEGAL PAGES --- */
.ad-legal {
  padding: 60px 0;
}

.ad-legal h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.ad-legal h2 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: #DC2626;
  text-transform: uppercase;
}

.ad-legal p {
  color: #CCCCCC;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.ad-legal ul {
  margin: 10px 0 20px;
}

.ad-legal li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: #CCCCCC;
  font-size: 0.95rem;
}

.ad-legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background: #DC2626;
}

/* --- ANIMATIONS --- */
@keyframes ad-slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ad-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ad-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ad-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- PRINT --- */
@media print {
  .ad-header,
  .ad-footer,
  .ad-cookie,
  .ad-burger {
    display: none !important;
  }

  body {
    background: #FFFFFF;
    color: #000000;
  }

  .ad-section {
    padding: 20px 0;
  }
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === AutoDrive Process === */
.ad-process-section{background:#111}
.ad-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.ad-process-step{padding:2rem;background:#1a1a1a;border-radius:12px;text-align:center;position:relative;border:1px solid #333}
.ad-process-num{position:absolute;top:.75rem;right:.75rem;font-size:1.5rem;font-weight:800;color:#E63946}
.ad-process-step iconify-icon{font-size:1.5rem;color:#E63946;margin-bottom:.75rem}
.ad-process-step h3{color:#fff;margin-bottom:.5rem}
.ad-process-step p{color:#aaa;font-size:.9rem}
@media(max-width:768px){.ad-process-grid{grid-template-columns:repeat(2,1fr)}}
