/* ============================================================
   Funchal Car Hub - Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #1a2332;
  background: #fff;
  line-height: 1.65;
}

/* ---------- CSS Variables ---------- */
:root {
  --pri: #0c2d5a;
  --pri-light: #1e60a5;
  --accent: #0891b2;
  --accent-hover: #0e7490;
  --accent-light: #22d3ee;
  --bg: #f0fdfa;
  --bg-alt: #e0f2fe;
  --text: #1a2332;
  --muted: #5a6a7e;
  --border: #99d5e8;
  --white: #fff;
  --shadow: 0 2px 16px rgba(12, 45, 90, .08);
  --shadow-lg: 0 8px 36px rgba(12, 45, 90, .15);
  --r: 14px;
  --wrap: 1200px;
}

/* LocalRent widget overrides */
.search-cigarette__wrap, .vehicle-card-footer__view, .search__button-more {
  background: var(--accent) !important;
}

/* ============================================================
   Layout
   ============================================================ */
.ch-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.ch-sect { padding: 60px 0; }
.ch-sect--alt { background: var(--bg-alt); }
.ch-sect--light { background: var(--bg); }
.ch-sect__head { text-align: center; margin-bottom: 44px; }
.ch-sect__head h2 { margin-bottom: 10px; }
.ch-sect__head p { color: var(--muted); max-width: 680px; margin: 0 auto; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { color: var(--pri); line-height: 1.3; }
h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); margin-bottom: .8rem; }
h3 { font-size: clamp(1rem, 1.8vw, 1.3rem); }
p { color: #374151; margin-bottom: .9rem; }
a { color: var(--pri-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   Buttons
   ============================================================ */
.ch-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}
.ch-btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 16px rgba(8, 145, 178, .35);
}
.ch-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 145, 178, .45);
  text-decoration: none;
  color: #fff;
}
.ch-btn--outline { background: transparent; color: var(--pri); border: 2px solid var(--pri); }
.ch-btn--outline:hover { background: var(--pri); color: #fff; text-decoration: none; }
.ch-btn--sm { padding: 9px 18px; font-size: .9rem; }
.ch-btn--mt { margin-top: 12px; }
.ch-btn--mt-lg { margin-top: 28px; }

/* ============================================================
   Utility
   ============================================================ */
.ch-card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px; transition: box-shadow .2s; }
.ch-card:hover { box-shadow: var(--shadow-lg); }
.ch-icon--sm { font-size: 18px !important; }
.ch-icon--inline { font-size: 16px; }

/* ============================================================
   Avatar color variants
   ============================================================ */
.ch-av--cyan { background: #0891b2; }
.ch-av--teal { background: #0d9488; }
.ch-av--navy { background: #1e60a5; }
.ch-av--sky { background: #0284c7; }
.ch-av--dark { background: #0c2d5a; }

/* ============================================================
   Rating bar - uses CSS custom property --w set inline
   ============================================================ */
.ch-rating__bar-fill { height: 100%; background: #fbbf24; border-radius: 3px; width: var(--w, 0%); }

/* ============================================================
   HEADER
   ============================================================ */
.ch-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
}
.ch-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ch-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.ch-logo__img { height: 40px; width: auto; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3)); }
.ch-nav { display: flex; align-items: center; gap: 3px; list-style: none; }
.ch-nav li a {
  display: block;
  padding: 8px 13px;
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.ch-nav li a:hover,
.ch-nav li a.active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
}
.ch-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px;
  background: rgba(255, 255, 255, .15);
  border-radius: 8px;
  border: none;
}
.ch-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.ch-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-burger.is-open span:nth-child(2) { opacity: 0; }
.ch-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Home page)
   ============================================================ */
.ch-hero {
  position: relative;
  background: url('/img/hero.webp') center / cover no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.ch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.68) 50%, rgba(0, 0, 0, 0.45) 100%);
}
.ch-hero__body { position: relative; z-index: 2; padding: 120px 0 40px; text-align: center; max-width: 1160px; }
.ch-hero__body h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
.ch-hero__desc {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  margin-bottom: 22px;
}
.ch-hero__tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.ch-hero__tag {
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ch-hero__tag .chk { color: #4ade80; font-weight: 800; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.ch-page-hero {
  background: linear-gradient(135deg, var(--pri) 0%, var(--accent) 60%, var(--accent-hover) 100%);
  padding: 110px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ch-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero.webp') center / cover no-repeat;
  opacity: .14;
  pointer-events: none;
}
.ch-page-hero .ch-wrap { position: relative; }
.ch-page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
}
.ch-page-hero p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BOOKING WIDGET
   ============================================================ */
.ch-booking { background: var(--white); padding: 32px 0 40px; }

/* ============================================================
   HOW TO RENT - STEPS
   ============================================================ */
.ch-steps { position: relative; }
.ch-steps__line {
  position: absolute;
  top: 46px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  z-index: 0;
}
.ch-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.ch-steps__card { text-align: center; padding: 18px 14px; }
.ch-steps__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(8, 145, 178, .35);
  border: 3px solid #fff;
}
.ch-steps__card h3 { font-size: .97rem; margin-bottom: 7px; color: var(--pri); }
.ch-steps__card p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ============================================================
   ADVANTAGES / PERKS
   ============================================================ */
.ch-perks__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ch-perks__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: transform .2s, box-shadow .2s;
}
.ch-perks__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ch-perks__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bg), #b8e8f5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.ch-perks__icon .material-icons-outlined { font-size: 26px; }
.ch-perks__card h3 { font-size: 1rem; margin-bottom: 8px; }
.ch-perks__card p { color: var(--muted); font-size: .91rem; margin: 0; }

/* ============================================================
   WHY RENT
   ============================================================ */
.ch-why__grid { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; }
.ch-why__img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.ch-why__img img { width: 100%; height: auto; margin: 0 auto; display: block; }
.ch-why__list { list-style: none; margin: 14px 0 20px; }
.ch-why__list li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 10px; color: #374151; font-size: .95rem; }
.ch-why__list li .material-icons-outlined { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PRICES
   ============================================================ */
.ch-prices__intro { margin-bottom: 24px; }
.ch-prices__subtitle { margin-bottom: 16px; }
.ch-prices__types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.ch-prices__type {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  text-align: center;
  border-top: 3px solid var(--accent-light);
}
.ch-prices__type .type-emoji { font-size: 2.2rem; margin-bottom: 7px; }
.ch-prices__type h3 { font-size: .92rem; margin-bottom: 5px; }
.ch-prices__type .from { font-size: 1.55rem; font-weight: 800; color: var(--accent); }
.ch-prices__type .perday { font-size: .75rem; color: var(--muted); }
.ch-prices__tips {
  background: var(--bg);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 32px;
  border-left: 4px solid var(--accent);
}
.ch-prices__tips h3 { margin-bottom: 11px; }
.ch-prices__tiplist { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.ch-prices__tiplist li { display: flex; align-items: center; gap: 9px; font-size: .91rem; color: #374151; }
.ch-prices__tiplist li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.ch-tbl-wrap { overflow-x: auto; border-radius: var(--r); box-shadow: var(--shadow); }
.ch-tbl { width: 100%; border-collapse: collapse; font-size: .9rem; }
.ch-tbl th {
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.ch-tbl th:first-child { border-radius: 14px 0 0 0; }
.ch-tbl th:last-child { border-radius: 0 14px 0 0; }
.ch-tbl td { padding: 10px 15px; border-bottom: 1px solid var(--border); color: #374151; }
.ch-tbl tr:nth-child(even) td { background: var(--bg); }
.ch-tbl tr:last-child td { border-bottom: none; }
.ch-tbl .pl { color: var(--accent); font-weight: 600; }
.ch-tbl .ph { color: var(--pri); font-weight: 700; }

/* ============================================================
   REVIEWS
   ============================================================ */
.ch-rating {
  text-align: center;
  background: linear-gradient(135deg, var(--pri), var(--accent));
  color: #fff;
  border-radius: var(--r);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ch-rating__score { font-size: 4rem; font-weight: 800; line-height: 1; }
.ch-rating__stars { font-size: 1.7rem; color: #fbbf24; margin: 4px 0; }
.ch-rating__count { font-size: .9rem; opacity: .85; }
.ch-rating__bars { text-align: left; }
.ch-rating__bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; font-size: .83rem; color: rgba(255, 255, 255, .85); }
.ch-rating__bar-bg { width: 110px; height: 6px; background: rgba(255, 255, 255, .25); border-radius: 3px; overflow: hidden; }
.ch-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ch-reviews__card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 20px; }
.ch-reviews__head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.ch-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ch-reviews__name { font-weight: 600; font-size: .93rem; color: var(--pri); }
.ch-reviews__loc { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 3px; }
.ch-reviews__loc .material-icons-outlined { font-size: 13px; color: var(--accent); }
.ch-reviews__stars { color: #fbbf24; font-size: .85rem; margin-bottom: 7px; }
.ch-reviews__card p { font-size: .88rem; color: #374151; line-height: 1.55; margin: 0; }

/* ============================================================
   TRAFFIC RULES
   ============================================================ */
.ch-traffic__main {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 26px;
  margin-bottom: 22px;
}
.ch-traffic__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 14px;
}
.ch-traffic__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .91rem;
  color: #374151;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.ch-traffic__list li .material-icons-outlined { color: var(--accent); font-size: 19px; flex-shrink: 0; }
.ch-traffic__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ch-traffic__col { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 22px 20px; }
.ch-traffic__col-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.ch-traffic__col-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pri-light), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ch-traffic__col-icon .material-icons-outlined { font-size: 26px; }
.ch-traffic__col h3 { font-size: 1.15rem; font-weight: 800; margin: 0; color: var(--pri); line-height: 1.2; }
.ch-traffic__col p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ============================================================
   ATTRACTIONS / PLACES
   ============================================================ */
.ch-places__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ch-places__card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform .2s, box-shadow .2s;
}
.ch-places__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ch-places__icon { font-size: 2rem; margin-bottom: 8px; }
.ch-places__card h3 { font-size: 1rem; margin-bottom: 7px; }
.ch-places__card p { font-size: .87rem; color: var(--muted); margin: 0 0 11px; }
.ch-places__meta { display: flex; gap: 10px; flex-wrap: wrap; }
.ch-places__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  padding: 3px 9px;
  border-radius: 12px;
  font-size: .78rem;
  color: var(--muted);
}
.ch-places__meta span .material-icons-outlined { font-size: 13px; color: var(--accent); }

/* ============================================================
   TOP CARS
   ============================================================ */
.ch-cars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ch-cars__card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.ch-cars__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ch-cars__img { position: relative; height: 195px; overflow: hidden; }
.ch-cars__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; padding: 20px; }
.ch-cars__card:hover .ch-cars__img img { transform: scale(1.05); }
.ch-cars__tag {
  position: absolute;
  top: 11px;
  left: 11px;
  background: rgba(8, 145, 178, .88);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 600;
}
.ch-cars__body { padding: 18px 20px; }
.ch-cars__body h3 { font-size: 1.1rem; margin-bottom: 13px; }
.ch-cars__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 15px; }
.ch-cars__spec { display: flex; align-items: center; gap: 6px; font-size: .83rem; color: #374151; }
.ch-cars__spec .material-icons-outlined { font-size: 17px; color: var(--accent); }
.ch-cars__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--border); }
.ch-cars__price { color: var(--accent); font-size: 1.35rem; font-weight: 800; }
.ch-cars__price small { font-size: .72rem; color: var(--muted); font-weight: 400; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.ch-faq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.ch-faq__item { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; border-left: 3px solid transparent; transition: border-color .3s; }
.ch-faq__item.open { border-left-color: var(--accent); }
.ch-faq__q {
  padding: 17px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--pri);
  transition: background .2s;
  user-select: none;
}
.ch-faq__q:hover { background: var(--bg); }
.ch-faq__q .material-icons-outlined { flex-shrink: 0; color: var(--accent); transition: transform .3s; }
.ch-faq__item.open .ch-faq__q { background: var(--bg); }
.ch-faq__item.open .ch-faq__q .material-icons-outlined { transform: rotate(180deg); }
.ch-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ch-faq__a-inner { padding: 0 18px 16px; font-size: .9rem; color: #374151; line-height: 1.6; }
.ch-faq__item.open .ch-faq__a { max-height: 400px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ch-footer { background: linear-gradient(160deg, #071a30, #0c2d5a); color: rgba(255, 255, 255, .75); padding: 52px 0 0; }
.ch-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.ch-footer__logo { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.ch-footer__desc { color: rgba(255, 255, 255, .6); font-size: .88rem; margin-bottom: 16px; }
.ch-footer__contact a {
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  margin-bottom: 8px;
}
.ch-footer__contact a:hover { color: #fff; text-decoration: none; }
.ch-footer__contact .material-icons-outlined { font-size: 18px; }
.ch-footer__col h4 { color: #fff; font-size: .93rem; margin-bottom: 14px; font-weight: 600; }
.ch-footer__links { list-style: none; }
.ch-footer__links li { margin-bottom: 8px; }
.ch-footer__links a { color: rgba(255, 255, 255, .6); font-size: .88rem; transition: color .2s; }
.ch-footer__links a:hover { color: #fff; text-decoration: none; }
.ch-footer__bottom { padding: 18px 0; }
.ch-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ch-footer__copy { font-size: .82rem; color: rgba(255, 255, 255, .5); }
.ch-footer__seo { font-size: .78rem; color: rgba(255, 255, 255, .38); max-width: 560px; text-align: center; line-height: 1.5; }
.ch-footer__legal { display: flex; gap: 18px; list-style: none; }
.ch-footer__legal a { color: rgba(255, 255, 255, .5); font-size: .82rem; }
.ch-footer__legal a:hover { color: #fff; text-decoration: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ch-about__intro { max-width: 780px; margin: 0 auto; text-align: center; font-size: 1.06rem; line-height: 1.8; color: #334; }
.ch-about__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.ch-about__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.ch-about__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ch-about__card-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.ch-about__card-icon span { font-size: 28px; color: #fff; }
.ch-about__card h3 { font-size: 1rem; font-weight: 700; color: var(--pri); margin: 0 0 10px; }
.ch-about__card p { font-size: .9rem; color: #556; line-height: 1.6; margin: 0; }

/* ============================================================
   HOW IT WORKS (About page)
   ============================================================ */
.ch-howto__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ch-howto__step {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.ch-howto__step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -13px;
  translate: 0 -50%;
  width: 26px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.ch-howto__step:last-child::before { display: none; }
.ch-howto__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--accent));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(12, 45, 90, .3);
}
.ch-howto__step h3 { font-size: .97rem; font-weight: 700; color: var(--pri); margin: 0 0 10px; }
.ch-howto__step p { font-size: .88rem; color: #556; line-height: 1.6; margin: 0; }

/* ============================================================
   MISSION (About page)
   ============================================================ */
.ch-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ch-mission__img img { width: 400px; display: block; margin: 0 auto; border-radius: 16px; box-shadow: var(--shadow-lg); }
.ch-mission__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--pri); margin: 0 0 16px; }
.ch-mission__text p { color: #445; line-height: 1.8; margin: 0 0 14px; }
.ch-mission__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.ch-mission__stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
}
.ch-mission__stat-num { font-size: 1.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.ch-mission__stat-label { font-size: .78rem; color: #667; margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.ch-contacts__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.ch-contacts__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.ch-contacts__card h2 { font-size: 1.4rem; font-weight: 800; color: var(--pri); margin: 0 0 24px; }
.ch-contacts__row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--bg-alt); }
.ch-contacts__row:last-child { border-bottom: none; padding-bottom: 0; }
.ch-contacts__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ch-contacts__icon span { font-size: 22px; color: #fff; }
.ch-contacts__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: #889; font-weight: 600; margin-bottom: 4px; }
.ch-contacts__val { font-size: 1rem; font-weight: 600; color: var(--pri); }
.ch-contacts__val a { color: var(--pri); text-decoration: none; }
.ch-contacts__val a:hover { color: var(--accent); text-decoration: underline; }
.ch-contacts__sub { font-size: .85rem; color: #667; margin-top: 2px; }
.ch-contacts__action { margin-top: 28px; }
.ch-map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.ch-map iframe { display: block; width: 100%; height: 480px; border: 0; }
.ch-map__hint {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--r) var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: #445;
}
.ch-map__hint a { color: var(--accent); font-weight: 600; text-decoration: none; }
.ch-map__hint a:hover { text-decoration: underline; }
.ch-map__hint .material-icons-outlined { color: var(--accent); flex-shrink: 0; }
.ch-info__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ch-info__box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.ch-info__icon { font-size: 36px; margin-bottom: 12px; display: block; }
.ch-info__box h3 { font-size: .97rem; font-weight: 700; color: var(--pri); margin: 0 0 8px; }
.ch-info__box p { font-size: .88rem; color: #556; line-height: 1.6; margin: 0; }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.ch-privacy { max-width: 840px; margin: 0 auto; }
.ch-privacy__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .85rem;
  color: #667;
  margin-bottom: 36px;
}
.ch-privacy__updated span { color: var(--accent); font-weight: 600; }
.ch-privacy__updated .material-icons-outlined { font-size: 18px; color: var(--accent); }
.ch-privacy__toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.ch-privacy__toc h3 { font-size: 1rem; font-weight: 700; color: var(--pri); margin: 0 0 14px; }
.ch-privacy__toc ol { margin: 0; padding-left: 20px; color: var(--accent); }
.ch-privacy__toc ol li { margin-bottom: 8px; }
.ch-privacy__toc ol li a { color: var(--accent); text-decoration: none; font-size: .94rem; }
.ch-privacy__toc ol li a:hover { text-decoration: underline; }
.ch-privacy__sect { margin-bottom: 40px; }
.ch-privacy__sect h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pri);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ch-privacy__sect h2 .material-icons-outlined { font-size: 22px; color: var(--accent); }
.ch-privacy__sect p { color: #445; line-height: 1.8; margin: 0 0 12px; font-size: .97rem; }
.ch-privacy__sect p:last-child { margin-bottom: 0; }
.ch-privacy__sect ul { color: #445; line-height: 1.8; margin: 0 0 12px; padding-left: 22px; font-size: .97rem; }
.ch-privacy__sect ul li { margin-bottom: 6px; }
.ch-privacy__sect a { color: var(--accent); text-decoration: none; }
.ch-privacy__sect a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ch-why__grid { grid-template-columns: 1fr; }
  .ch-why__img { order: -1; }
  .ch-footer__grid { grid-template-columns: 1fr 1fr; }
  .ch-steps__line { display: none; }
  .ch-about__cards { grid-template-columns: repeat(2, 1fr); }
  .ch-howto__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-howto__step::before { display: none; }
  .ch-mission__grid { gap: 32px; }
  .ch-contacts__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .ch-sect { padding: 44px 0; }
  .ch-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-perks__grid { grid-template-columns: 1fr; }
  .ch-prices__types { grid-template-columns: repeat(2, 1fr); }
  .ch-prices__tiplist { grid-template-columns: 1fr; }
  .ch-reviews__grid { grid-template-columns: 1fr; }
  .ch-traffic__list { grid-template-columns: 1fr; }
  .ch-traffic__cols { grid-template-columns: 1fr; }
  .ch-places__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-cars__grid { grid-template-columns: 1fr; }
  .ch-faq__grid { grid-template-columns: 1fr; }
  .ch-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .ch-footer__bottom-inner { flex-direction: column; text-align: center; }
  .ch-footer__seo { text-align: center; }
  .ch-rating { gap: 20px; }
  .ch-about__cards { grid-template-columns: 1fr 1fr; }
  .ch-mission__grid { grid-template-columns: 1fr; }
  .ch-mission__img { order: -1; }
  .ch-info__grid { grid-template-columns: 1fr; }
  .ch-map iframe { height: 320px; }

  /* Mobile Nav */
  .ch-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 42, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 200;
    padding: 30px 20px;
  }
  .ch-nav.open { display: flex; }
  .ch-nav li { width: 100%; max-width: 280px; }
  .ch-nav li a { display: block; padding: 13px 20px; font-size: 1rem; border-radius: 8px; }
  .ch-burger { display: flex; margin-left: auto; }
  .ch-burger.is-open {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 201;
    background: rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 8px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .ch-prices__types { grid-template-columns: 1fr; }
  .ch-places__grid { grid-template-columns: 1fr; }
  .ch-steps__grid { grid-template-columns: 1fr; }
  .ch-hero__body h1 { font-size: 1.35rem; }
  .ch-about__cards { grid-template-columns: 1fr; }
  .ch-howto__grid { grid-template-columns: 1fr; }
  .ch-mission__stats { grid-template-columns: repeat(3, 1fr); }
  .ch-mission__stat-num { font-size: 1.4rem; }
}
