/* ============================================================
   CarTips KZ — style.css
   Theme: Garage / Workshop — dark-gray #1F2937 + yellow #FBBF24
   Font: Barlow Condensed
   Prefix: ct-
   ============================================================ */

/* ---------- 1. VARIABLES & RESET ---------- */
:root {
  --ct-dark: #1F2937;
  --ct-dark-2: #111827;
  --ct-dark-3: #0F172A;
  --ct-gray: #374151;
  --ct-gray-2: #4B5563;
  --ct-gray-3: #6B7280;
  --ct-gray-light: #9CA3AF;
  --ct-gray-lighter: #D1D5DB;
  --ct-yellow: #FBBF24;
  --ct-yellow-hover: #F59E0B;
  --ct-yellow-light: #FDE68A;
  --ct-yellow-dark: #D97706;
  --ct-white: #F9FAFB;
  --ct-bg: #1F2937;
  --ct-bg-card: #283344;
  --ct-bg-card-hover: #2E3B4E;
  --ct-text: #E5E7EB;
  --ct-text-muted: #9CA3AF;
  --ct-border: #374151;
  --ct-radius: 8px;
  --ct-radius-lg: 12px;
  --ct-radius-xl: 16px;
  --ct-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --ct-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --ct-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --ct-transition: 0.3s ease;
  --ct-font: 'Barlow Condensed', sans-serif;
  --ct-container: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--ct-font);
  background-color: var(--ct-dark-2);
  color: var(--ct-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--ct-yellow);
  text-decoration: none;
  transition: color var(--ct-transition);
}

a:hover {
  color: var(--ct-yellow-hover);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

main {
  flex: 1;
}

/* ---------- 2. UTILITIES ---------- */
.ct-container {
  max-width: var(--ct-container);
  margin: 0 auto;
  padding: 0 20px;
}

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

.ct-section--alt {
  background-color: var(--ct-dark);
}

.ct-section--darker {
  background-color: var(--ct-dark-3);
}

.ct-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.ct-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--ct-yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ct-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ct-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ct-section__title span {
  color: var(--ct-yellow);
}

.ct-section__subtitle {
  font-size: 1.1rem;
  color: var(--ct-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- 3. BUTTONS ---------- */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--ct-radius);
  transition: all var(--ct-transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.ct-btn--primary {
  background: var(--ct-yellow);
  color: var(--ct-dark-2);
  border-color: var(--ct-yellow);
}

.ct-btn--primary:hover {
  background: var(--ct-yellow-hover);
  border-color: var(--ct-yellow-hover);
  color: var(--ct-dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.ct-btn--outline {
  background: transparent;
  color: var(--ct-yellow);
  border-color: var(--ct-yellow);
}

.ct-btn--outline:hover {
  background: var(--ct-yellow);
  color: var(--ct-dark-2);
  transform: translateY(-2px);
}

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

.ct-btn--dark:hover {
  background: var(--ct-gray);
  transform: translateY(-2px);
}

.ct-btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.ct-btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.ct-btn--full {
  width: 100%;
}

/* ---------- 4. HEADER ---------- */
.ct-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ct-border);
  transition: all var(--ct-transition);
}

.ct-header--scrolled {
  background: rgba(17, 24, 39, 0.98);
  box-shadow: var(--ct-shadow);
}

.ct-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.ct-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ct-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ct-header__logo:hover {
  color: var(--ct-white);
}

.ct-header__logo-icon {
  font-size: 2rem;
  color: var(--ct-yellow);
}

.ct-header__logo-text {
  background: linear-gradient(135deg, var(--ct-yellow), var(--ct-yellow-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-header__nav {
  display: flex;
  align-items: center;
}

.ct-header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ct-header__link {
  color: var(--ct-gray-lighter);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.ct-header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ct-yellow);
  transition: width var(--ct-transition);
}

.ct-header__link:hover,
.ct-header__link--active {
  color: var(--ct-yellow);
}

.ct-header__link:hover::after,
.ct-header__link--active::after {
  width: 100%;
}

.ct-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.ct-header__burger span {
  width: 24px;
  height: 2px;
  background: var(--ct-white);
  transition: all var(--ct-transition);
  border-radius: 2px;
}

.ct-header__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ct-header__burger--active span:nth-child(2) {
  opacity: 0;
}

.ct-header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- 5. BANNER / INTRO ---------- */
.ct-banner {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--ct-dark-3) 0%, var(--ct-dark) 50%, var(--ct-dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.ct-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fbbf24' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ct-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ct-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ct-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--ct-yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.ct-banner__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ct-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ct-banner__title span {
  color: var(--ct-yellow);
  position: relative;
}

.ct-banner__desc {
  font-size: 1.15rem;
  color: var(--ct-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.ct-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-banner__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ct-border);
}

.ct-banner__stat {
  text-align: center;
}

.ct-banner__stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ct-yellow);
  display: block;
}

.ct-banner__stat-label {
  font-size: 0.85rem;
  color: var(--ct-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-banner__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ct-banner__garage {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--ct-bg-card), var(--ct-dark));
  border-radius: var(--ct-radius-xl);
  border: 1px solid var(--ct-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.ct-banner__garage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ct-yellow), var(--ct-yellow-hover), var(--ct-yellow));
}

.ct-banner__garage-icon {
  font-size: 6rem;
  color: var(--ct-yellow);
  filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.3));
}

.ct-banner__garage-text {
  font-size: 1.2rem;
  color: var(--ct-text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.ct-banner__garage-line {
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ct-yellow), transparent);
}

/* ---------- 6. FEATURES / SERVICES GRID ---------- */
.ct-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-feature {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  padding: 32px;
  transition: all var(--ct-transition);
  position: relative;
  overflow: hidden;
}

.ct-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ct-yellow);
  transform: scaleX(0);
  transition: transform var(--ct-transition);
}

.ct-feature:hover {
  background: var(--ct-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}

.ct-feature:hover::before {
  transform: scaleX(1);
}

.ct-feature__icon {
  width: 56px;
  height: 56px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--ct-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ct-feature__icon iconify-icon {
  font-size: 1.6rem;
  color: var(--ct-yellow);
}

.ct-feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 12px;
}

.ct-feature__text {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
  line-height: 1.7;
}

/* ---------- 7. PRICING ---------- */
.ct-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-pricing-card {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--ct-transition);
  position: relative;
}

.ct-pricing-card--featured {
  border-color: var(--ct-yellow);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.05), var(--ct-bg-card));
}

.ct-pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ct-yellow), var(--ct-yellow-hover));
  border-radius: var(--ct-radius-lg) var(--ct-radius-lg) 0 0;
}

.ct-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
}

.ct-pricing-card__label {
  display: inline-block;
  background: var(--ct-yellow);
  color: var(--ct-dark-2);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ct-pricing-card__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 8px;
}

.ct-pricing-card__price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ct-yellow);
  margin-bottom: 4px;
}

.ct-pricing-card__period {
  font-size: 0.9rem;
  color: var(--ct-text-muted);
  margin-bottom: 24px;
}

.ct-pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.ct-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--ct-text);
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.ct-pricing-card__features li:last-child {
  border-bottom: none;
}

.ct-pricing-card__features iconify-icon {
  color: var(--ct-yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- 8. TEAM ---------- */
.ct-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-team-card {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--ct-transition);
}

.ct-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
  border-color: rgba(251, 191, 36, 0.3);
}

.ct-team-card__avatar {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--ct-yellow), var(--ct-yellow-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ct-team-card__avatar iconify-icon {
  font-size: 2.5rem;
  color: var(--ct-dark-2);
}

.ct-team-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 4px;
}

.ct-team-card__role {
  font-size: 0.9rem;
  color: var(--ct-yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-team-card__text {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
  line-height: 1.6;
}

/* ---------- 9. REVIEWS ---------- */
.ct-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-review {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  padding: 32px;
  position: relative;
}

.ct-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--ct-yellow);
  border-radius: 0 0 4px 4px;
}

.ct-review__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.ct-review__stars iconify-icon {
  color: var(--ct-yellow);
  font-size: 1.1rem;
}

.ct-review__text {
  font-size: 0.95rem;
  color: var(--ct-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.ct-review__author-avatar {
  width: 44px;
  height: 44px;
  background: var(--ct-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-review__author-avatar iconify-icon {
  color: var(--ct-yellow);
  font-size: 1.2rem;
}

.ct-review__author-name {
  font-weight: 600;
  color: var(--ct-white);
  font-size: 0.95rem;
}

.ct-review__author-desc {
  font-size: 0.8rem;
  color: var(--ct-text-muted);
}

/* ---------- 10. FAQ ---------- */
.ct-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.ct-faq-item {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--ct-transition);
}

.ct-faq-item--active {
  border-color: rgba(251, 191, 36, 0.3);
}

.ct-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ct-white);
  text-align: left;
  transition: color var(--ct-transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.ct-faq-item__question:hover {
  color: var(--ct-yellow);
}

.ct-faq-item__icon {
  font-size: 1.2rem;
  color: var(--ct-yellow);
  transition: transform var(--ct-transition);
}

.ct-faq-item--active .ct-faq-item__icon {
  transform: rotate(180deg);
}

.ct-faq-item__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.ct-faq-item--active .ct-faq-item__answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

.ct-faq-item__answer p {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
  line-height: 1.7;
}

/* ---------- 11. CONTACT FORM ---------- */
.ct-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ct-contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ct-contact__info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--ct-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-contact__info-icon iconify-icon {
  font-size: 1.4rem;
  color: var(--ct-yellow);
}

.ct-contact__info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 4px;
}

.ct-contact__info-text {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
}

.ct-contact__info-text a {
  color: var(--ct-yellow);
}

.ct-form {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  padding: 40px;
}

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

.ct-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-form__input,
.ct-form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--ct-dark);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  color: var(--ct-text);
  font-size: 1rem;
  transition: border-color var(--ct-transition);
}

.ct-form__input:focus,
.ct-form__textarea:focus {
  outline: none;
  border-color: var(--ct-yellow);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.ct-form__input::placeholder,
.ct-form__textarea::placeholder {
  color: var(--ct-gray-3);
}

.ct-form__textarea {
  min-height: 120px;
  resize: vertical;
}

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

.ct-form__consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--ct-yellow);
  width: 18px;
  height: 18px;
}

.ct-form__consent label {
  font-size: 0.85rem;
  color: var(--ct-text-muted);
  line-height: 1.5;
}

.ct-form__consent a {
  color: var(--ct-yellow);
  text-decoration: underline;
}

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

/* ---------- 12. BREADCRUMBS ---------- */
.ct-breadcrumbs {
  padding: 100px 0 20px;
  background: var(--ct-dark-3);
}

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

.ct-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.ct-breadcrumbs__link {
  color: var(--ct-text-muted);
  transition: color var(--ct-transition);
}

.ct-breadcrumbs__link:hover {
  color: var(--ct-yellow);
}

.ct-breadcrumbs__sep {
  color: var(--ct-gray-3);
  font-size: 0.75rem;
}

.ct-breadcrumbs__current {
  color: var(--ct-yellow);
  font-weight: 500;
}

/* ---------- 13. PAGE BANNER ---------- */
.ct-page-banner {
  padding: 20px 0 60px;
  background: var(--ct-dark-3);
  text-align: center;
}

.ct-page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ct-white);
  margin-bottom: 12px;
}

.ct-page-banner__title span {
  color: var(--ct-yellow);
}

.ct-page-banner__desc {
  font-size: 1.1rem;
  color: var(--ct-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- 14. CONTENT BLOCKS ---------- */
.ct-content {
  padding: 60px 0;
}

.ct-content__block {
  max-width: 800px;
  margin: 0 auto;
}

.ct-content__block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ct-white);
  margin: 32px 0 16px;
}

.ct-content__block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ct-white);
  margin: 24px 0 12px;
}

.ct-content__block p {
  font-size: 1rem;
  color: var(--ct-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ct-content__block ul,
.ct-content__block ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.ct-content__block ul {
  list-style: disc;
}

.ct-content__block ol {
  list-style: decimal;
}

.ct-content__block li {
  font-size: 1rem;
  color: var(--ct-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.ct-content__block a {
  color: var(--ct-yellow);
  text-decoration: underline;
}

.ct-content__block strong {
  color: var(--ct-white);
}

/* ---------- 15. TABLE ---------- */
.ct-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--ct-radius-lg);
  border: 1px solid var(--ct-border);
}

.ct-table {
  width: 100%;
  border-collapse: collapse;
}

.ct-table th,
.ct-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.ct-table th {
  background: var(--ct-dark);
  color: var(--ct-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--ct-yellow);
}

.ct-table td {
  background: var(--ct-bg-card);
  color: var(--ct-text);
  border-bottom: 1px solid var(--ct-border);
}

.ct-table tr:last-child td {
  border-bottom: none;
}

.ct-table tr:hover td {
  background: var(--ct-bg-card-hover);
}

/* ---------- 16. FOOTER ---------- */
.ct-footer {
  background: var(--ct-dark-3);
  border-top: 1px solid var(--ct-border);
  padding: 60px 0 0;
}

.ct-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.ct-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ct-white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.ct-footer__logo:hover {
  color: var(--ct-white);
}

.ct-footer__logo-icon {
  font-size: 1.6rem;
  color: var(--ct-yellow);
}

.ct-footer__desc {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
  line-height: 1.6;
}

.ct-footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-footer__links li {
  margin-bottom: 10px;
}

.ct-footer__links a {
  color: var(--ct-text-muted);
  font-size: 0.95rem;
  transition: color var(--ct-transition);
}

.ct-footer__links a:hover {
  color: var(--ct-yellow);
}

.ct-footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ct-text-muted);
}

.ct-footer__contacts a {
  color: var(--ct-text-muted);
}

.ct-footer__contacts a:hover {
  color: var(--ct-yellow);
}

.ct-footer__icon {
  color: var(--ct-yellow);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ct-footer__bottom {
  border-top: 1px solid var(--ct-border);
  padding: 20px 0;
  text-align: center;
}

.ct-footer__bottom p {
  font-size: 0.85rem;
  color: var(--ct-gray-3);
}

/* ---------- 17. COOKIE BANNER ---------- */
.ct-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ct-dark);
  border-top: 1px solid var(--ct-border);
  padding: 16px 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.ct-cookie__inner {
  max-width: var(--ct-container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ct-cookie__text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ct-cookie__icon {
  font-size: 1.6rem;
  color: var(--ct-yellow);
  flex-shrink: 0;
}

.ct-cookie__text p {
  font-size: 0.9rem;
  color: var(--ct-text-muted);
}

.ct-cookie__text a {
  color: var(--ct-yellow);
  text-decoration: underline;
}

.ct-cookie__btn {
  background: var(--ct-yellow);
  color: var(--ct-dark-2);
  padding: 10px 24px;
  border-radius: var(--ct-radius);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background var(--ct-transition);
}

.ct-cookie__btn:hover {
  background: var(--ct-yellow-hover);
}

/* ---------- 18. 404 PAGE ---------- */
.ct-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 20px;
}

.ct-404__code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--ct-yellow);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(251, 191, 36, 0.2);
}

.ct-404__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 12px;
}

.ct-404__text {
  font-size: 1.05rem;
  color: var(--ct-text-muted);
  margin-bottom: 32px;
}

/* ---------- 19. THANK YOU ---------- */
.ct-thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 20px;
}

.ct-thankyou__icon {
  font-size: 5rem;
  color: var(--ct-yellow);
  margin-bottom: 24px;
}

.ct-thankyou__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ct-white);
  margin-bottom: 12px;
}

.ct-thankyou__text {
  font-size: 1.1rem;
  color: var(--ct-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 20. ABOUT PAGE ---------- */
.ct-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ct-about__image {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-about__image iconify-icon {
  font-size: 6rem;
  color: var(--ct-yellow);
  opacity: 0.6;
}

.ct-about__text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ct-white);
  margin-bottom: 16px;
}

.ct-about__text p {
  font-size: 1rem;
  color: var(--ct-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ct-about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.ct-about__value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: var(--ct-radius);
}

.ct-about__value iconify-icon {
  color: var(--ct-yellow);
  font-size: 1.2rem;
}

.ct-about__value span {
  font-size: 0.95rem;
  color: var(--ct-white);
  font-weight: 500;
}

/* ---------- 21. TIPS / RULES SPECIFIC ---------- */
.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.ct-info-card {
  background: var(--ct-bg-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  padding: 28px;
  transition: all var(--ct-transition);
}

.ct-info-card:hover {
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

.ct-info-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: var(--ct-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ct-info-card__icon iconify-icon {
  font-size: 1.4rem;
  color: var(--ct-yellow);
}

.ct-info-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ct-white);
  margin-bottom: 8px;
}

.ct-info-card__text {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
  line-height: 1.7;
}

/* ---------- 22. CTA BLOCK ---------- */
.ct-action-block {
  background: linear-gradient(135deg, var(--ct-dark) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--ct-radius-xl);
  padding: 60px;
  text-align: center;
  margin: 48px 0;
}

.ct-action-block__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ct-white);
  margin-bottom: 16px;
}

.ct-action-block__text {
  font-size: 1.05rem;
  color: var(--ct-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 23. ANIMATIONS ---------- */
@keyframes ct-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ct-slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes ct-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

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

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

/* ---------- 24. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .ct-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ct-banner__actions {
    justify-content: center;
  }

  .ct-banner__stats {
    justify-content: center;
  }

  .ct-banner__visual {
    display: none;
  }

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

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

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

  .ct-about__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ct-header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ct-dark-2);
    display: none;
    flex-direction: column;
    padding: 32px 20px;
    z-index: 999;
  }

  .ct-header__nav--active {
    display: flex;
  }

  .ct-header__menu {
    flex-direction: column;
    gap: 0;
  }

  .ct-header__link {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--ct-border);
  }

  .ct-header__burger {
    display: flex;
  }

  .ct-section {
    padding: 60px 0;
  }

  .ct-section__title {
    font-size: 2rem;
  }

  .ct-banner {
    padding: 120px 0 60px;
  }

  .ct-banner__title {
    font-size: 2.2rem;
  }

  .ct-features__grid,
  .ct-pricing__grid,
  .ct-team__grid,
  .ct-reviews__grid {
    grid-template-columns: 1fr;
  }

  .ct-contact__grid {
    grid-template-columns: 1fr;
  }

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

  .ct-info-grid {
    grid-template-columns: 1fr;
  }

  .ct-action-block {
    padding: 40px 24px;
  }

  .ct-page-banner__title {
    font-size: 2rem;
  }

  .ct-404__code {
    font-size: 5rem;
  }

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

  .ct-about__values {
    grid-template-columns: 1fr;
  }
}

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

  .ct-banner__stats {
    flex-direction: column;
    gap: 16px;
  }

  .ct-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .ct-section__title {
    font-size: 1.7rem;
  }

  .ct-form {
    padding: 24px;
  }
}

[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}

/* === CarTips Team === */
.ct-team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.ct-team-member{background:#fff;border-radius:12px;padding:2rem;text-align:center;border:1px solid #e5e7eb}
.ct-team-member__initials{width:72px;height:72px;border-radius:50%;background:#0F172A;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:700;margin:0 auto 1rem}
.ct-team-member h3{color:#0F172A;margin-bottom:.25rem}
.ct-team-member__role{color:#3B82F6;font-size:.9rem;margin-bottom:.75rem}
.ct-team-member p{color:#666;font-size:.9rem}
@media(max-width:768px){.ct-team-grid{grid-template-columns:1fr}}
/* === CarTips FAQ === */
.ct-faq-list{max-width:720px;margin:2rem auto 0}
.ct-faq-item{border:1px solid #e5e7eb;border-radius:8px;margin-bottom:1rem;overflow:hidden}
.ct-faq-item summary{padding:1.25rem;font-weight:600;cursor:pointer;display:flex;align-items:center;gap:.75rem;color:#0F172A;list-style:none}
.ct-faq-item summary::-webkit-details-marker{display:none}
.ct-faq-item summary iconify-icon{color:#3B82F6;font-size:1.25rem}
.ct-faq-item[open]{border-color:#3B82F6}
.ct-faq-answer{padding:0 1.25rem 1.25rem;color:#666;line-height:1.6}

/* === CarTips Stats === */
.ct-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.ct-stat-card{text-align:center;padding:2rem;background:#fff;border-radius:12px;border:1px solid #e5e7eb}
.ct-stat-card iconify-icon{font-size:2rem;color:#3B82F6}
.ct-stat-num{font-size:2.5rem;font-weight:800;color:#0F172A;margin:.5rem 0 .25rem}
.ct-stat-label{color:#64748b}
@media(max-width:768px){.ct-stats-grid{grid-template-columns:repeat(2,1fr)}}
