/* ============================================================
   Car Rental Keflavik Airport - Main Stylesheet
   Design: Tailwind + Apple modern design
   Class prefix: hnd- (Car Rental Keflavik Airport)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.hnd-modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* ─── CSS Variables ─── */
:root {
  --pri: #0f3a5f;
  --pri-light: #2563eb;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-light: #e0f2fe;
  --bg: #f0f9ff;
  --bg-alt: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #bae6fd;
  --white: #fff;
  --shadow-sm: 0 1px 2px rgba(6, 40, 63, .04), 0 2px 8px rgba(6, 40, 63, .06);
  --shadow: 0 1px 3px rgba(6, 40, 63, .05), 0 4px 16px rgba(6, 40, 63, .08);
  --shadow-lg: 0 4px 6px rgba(6, 40, 63, .05), 0 12px 40px rgba(6, 40, 63, .12);
  --r: 16px;
  --r-sm: 12px;
  --wrap: 1200px;
}

/* ════════════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════════════ */
.hnd-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.hnd-sect { padding: 80px 0; }
.hnd-sect--alt { background: var(--white); }
.hnd-sect--light { background: var(--bg); }
.hnd-sect__head { text-align: center; margin-bottom: 48px; }
.hnd-sect__head h2 {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hnd-sect__head p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: .97rem; }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 { color: var(--pri); line-height: 1.3; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .8rem; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
p { color: #334155; margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.hnd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  text-decoration: none;
  letter-spacing: .01em;
}
.hnd-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 128, 255, .3);
}
.hnd-btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 128, 255, .4);
  text-decoration: none;
  color: #fff;
}
.hnd-btn--outline {
  background: transparent;
  color: var(--pri);
  border: 2px solid var(--border);
}
.hnd-btn--outline:hover {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff;
  text-decoration: none;
}
.hnd-btn--sm { padding: 9px 20px; font-size: .88rem; }
.hnd-btn--lg { padding: 14px 34px; font-size: 1.05rem; }

/* ════════════════════════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════════════════════════ */
.hnd-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ─── Rating bar ─── */
.hnd-rating__bar-fill { height: 100%; background: var(--accent); border-radius: 3px; width: var(--w, 0%); }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.hnd-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
}
.hnd-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hnd-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.hnd-logo__img { height: 42px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
.hnd-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.hnd-nav li a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all .25s;
  white-space: nowrap;
}
.hnd-nav li a:hover,
.hnd-nav li a.active {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  text-decoration: none;
}
.hnd-lang {
  position: relative;
  flex-shrink: 0;
  color: rgba(255,255,255,.92);
}
.hnd-lang summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
}
.hnd-lang summary::-webkit-details-marker { display: none; }
.hnd-lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  min-width: 198px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(18, 28, 42, .96);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.hnd-lang:not([open]) .hnd-lang__menu { display: none; }
.hnd-lang__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,.88);
  padding: 7px 8px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.hnd-lang__menu a:hover,
.hnd-lang__menu a.active {
  background: rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
}
.hnd-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
}
.hnd-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hnd-burger.is-open { display: none; }
/* Close button inside mobile menu */
.hnd-nav__close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 102;
}
.hnd-nav__close::before,
.hnd-nav__close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  left: 50%;
  top: 50%;
}
.hnd-nav__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.hnd-nav__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO (Home page)
   ════════════════════════════════════════════════════════════ */
.hnd-hero {
  position: relative;
  background: url('/img/hero.webp') center / cover no-repeat;
  min-height: 610px;
  display: flex;
  flex-direction: column;
}
.hnd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 63, .75) 0%, rgba(0,0,0,.50) 100%);
}
.hnd-hero__body {
  position: relative;
  z-index: 4;
  padding: 104px 20px 64px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hnd-hero__body h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  letter-spacing: -.02em;
}
.hnd-hero__desc {
  color: rgba(255,255,255,.9);
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  margin-bottom: 24px;
  line-height: 1.7;
}
.hnd-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 4px; }
.hnd-hero__tag {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .25s;
}
.hnd-hero__tag:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.hnd-hero__tag .hnd-chk { color: #34d399; font-weight: 700; font-size: .9rem; }
.hnd-hero__widget {
  width: 100%;
  max-width: 1100px;
  margin: 44px auto 0;
  text-align: left;
  position: relative;
  z-index: 5;
  border-radius: var(--r);
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
}
.hnd-hero__widget iframe,
.hnd-hero__widget > div { max-width: 100%; }
/* Hero wave */
.hnd-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0,48 L0,18 Q360,0 720,18 Q1080,36 1440,18 L1440,48 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 3;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO (Sub-pages)
   ════════════════════════════════════════════════════════════ */
.hnd-page-hero {
  background: url('/img/hero.webp') center / cover no-repeat;
  padding: 120px 0 52px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.hnd-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 63, .75) 0%, rgba(0,0,0,.50) 100%);
  pointer-events: none;
}
.hnd-page-hero .hnd-wrap { position: relative; z-index: 2; }
.hnd-page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.hnd-page-hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.hnd-page-hero .hnd-hero__widget { margin-top: 28px; }

/* ════════════════════════════════════════════════════════════
   STEPS (How to Rent)
   ════════════════════════════════════════════════════════════ */
.hnd-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
.hnd-steps__card {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}
.hnd-steps__card:last-child { border-right: none; }
.hnd-steps__card:hover { background: var(--bg); }
.hnd-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hnd-steps__card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--pri);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hnd-steps__card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   ADVANTAGES / PERKS
   ════════════════════════════════════════════════════════════ */
.hnd-perks__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hnd-perks__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.hnd-perks__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hnd-perks__icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.hnd-perks__icon .material-icons-outlined { font-size: 26px; }
.hnd-perks__card h3 { color: var(--pri); font-size: 1.05rem; margin-bottom: 10px; }
.hnd-perks__card p { font-size: .92rem; color: #475569; line-height: 1.75; margin: 0; }
.hnd-perks__card a { color: var(--accent); font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   WHY RENT
   ════════════════════════════════════════════════════════════ */
.hnd-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hnd-why__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 0 0 18px; }
.hnd-why__text p { color: #334155; line-height: 1.8; margin: 0 0 14px; }
.hnd-why__text p a { color: var(--accent); font-weight: 500; }
.hnd-why__list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hnd-why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  flex: 0 1 auto;
  min-width: 200px;
  transition: transform .2s, box-shadow .2s;
}
.hnd-why__list li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hnd-why__list .material-icons-outlined {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  background: var(--bg);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hnd-why__list h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--pri);
  margin: 0;
  line-height: 1.35;
}
.hnd-why__img img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   PRICES
   ════════════════════════════════════════════════════════════ */
.hnd-prices__types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 40px;
}
.hnd-prices__type {
  padding: 14px 12px;
  border-right: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hnd-prices__type:last-child { border-right: none; }
.hnd-prices__type:hover { background: var(--bg); }
.hnd-prices__type-head {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hnd-prices__type-head .material-icons-outlined { font-size: 18px; color: var(--accent); }
.hnd-prices__type-name {
  font-size: .75rem;
  font-weight: 700;
  color: var(--pri);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hnd-prices__type-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hnd-prices__type-from { font-size: .68rem; color: var(--muted); }
.hnd-prices__type-val { font-size: 1rem; font-weight: 800; color: var(--accent); }

.hnd-prices__tips {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  position: relative;
}
.hnd-prices__tips h3 {
  font-size: 1.05rem;
  color: var(--pri);
  margin-bottom: 20px;
}
.hnd-prices__tiplist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
}
.hnd-prices__tiplist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: #334155;
  line-height: 1.5;
}
.hnd-prices__tiplist .material-icons-outlined {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hnd-tbl-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.hnd-tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}
.hnd-tbl thead { background: var(--pri); }
.hnd-tbl th {
  padding: 14px 18px;
  text-align: left;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  white-space: nowrap;
}
.hnd-tbl td {
  padding: 13px 18px;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg);
}
.hnd-tbl tbody tr:last-child td { border-bottom: none; }
.hnd-tbl tbody tr:hover td { background: var(--bg); }
.hnd-tbl td.pl { color: var(--accent); font-weight: 700; }
.hnd-tbl td.ph { color: var(--pri); font-weight: 700; }
.hnd-stars { color: #facc15; letter-spacing: 1px; white-space: nowrap; }

/* ════════════════════════════════════════════════════════════
   AIRPORT MAP & RENTAL COMPANIES
   ════════════════════════════════════════════════════════════ */
.hnd-airport { display: grid; gap: 0; min-width: 0; }
.hnd-airport__map-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: 32px;
  align-items: stretch;
  min-width: 0;
}
.hnd-airport__map-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.hnd-airport__map-head h2 { margin: 0; }
.hnd-airport__details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 20px;
}
.hnd-airport__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--bg);
  color: #334155;
  font-size: .94rem;
  line-height: 1.55;
}
.hnd-airport__detail span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.hnd-airport__detail:last-child { border-bottom: none; }
.hnd-airport__detail .material-icons-outlined {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hnd-airport__detail strong { color: var(--pri); }
.hnd-airport__map {
  min-width: 0;
  min-height: 400px;
}
.hnd-airport__map iframe { height: 320px; }
.hnd-airport__companies { margin-top: 64px; min-width: 0; }
.hnd-airport__companies h2 { margin-bottom: 18px; }
.hnd-companies__table { min-width: 860px; }
.hnd-companies__table th:first-child,
.hnd-companies__table td:first-child {
  width: 52px;
  text-align: center;
}
.hnd-companies__table td:nth-child(2) strong { color: var(--pri); }
.hnd-companies__table td:nth-child(3) { white-space: nowrap; }

/* ════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════ */
.hnd-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.hnd-review__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-review__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hnd-review__card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--bg-alt);
  font-family: Georgia, serif;
}
.hnd-review__stars { display: flex; gap: 2px; color: #f59e0b; }
.hnd-review__stars .material-icons-outlined { font-size: 18px; }
.hnd-review__text { font-size: .92rem; color: #475569; line-height: 1.75; margin: 0; font-style: italic; }
.hnd-review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.hnd-review__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  background: var(--pri);
}
.hnd-review__name { font-size: .92rem; font-weight: 700; color: var(--pri); }
.hnd-review__city { font-size: .78rem; color: var(--muted); }

.hnd-rating {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.hnd-rating__score { text-align: center; min-width: 110px; }
.hnd-rating__big { font-size: 3.4rem; font-weight: 900; color: var(--pri); line-height: 1; }
.hnd-rating__stars-row { display: flex; gap: 2px; justify-content: center; color: #f59e0b; margin: 8px 0 4px; }
.hnd-rating__count { font-size: .82rem; color: var(--muted); }
.hnd-rating__bars { flex: 1; }
.hnd-rating__bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: .82rem; color: var(--muted); }
.hnd-rating__bar-track { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }

/* Alternate rating classes (AI variant) */
.hnd-rating__num { font-size: 3.4rem; font-weight: 900; color: var(--pri); line-height: 1; }
.hnd-rating__stars { display: flex; gap: 2px; justify-content: center; color: #f59e0b; margin: 8px 0 4px; }
.hnd-rating__bar { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: .82rem; color: var(--muted); }
.hnd-bar { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }
.hnd-bar__fill { height: 100%; background: var(--accent); border-radius: 3px; }

/* ════════════════════════════════════════════════════════════
   TRAFFIC RULES
   ════════════════════════════════════════════════════════════ */
.hnd-traffic__main {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hnd-traffic__main h2,
.hnd-traffic__main h3 { font-size: 1.3rem; color: var(--pri); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.hnd-traffic__main h2 .material-icons-outlined,
.hnd-traffic__main h3 .material-icons-outlined { color: var(--accent); }
.hnd-traffic__main p { font-size: .94rem; color: #475569; margin-bottom: 14px; }
.hnd-traffic__list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 10px; }
.hnd-traffic__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: #475569; }
.hnd-traffic__list .material-icons-outlined { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.hnd-traffic__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hnd-traffic__col {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-traffic__col:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hnd-traffic__col-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hnd-traffic__col-icon .material-icons-outlined { font-size: 24px; color: var(--accent); }
.hnd-traffic__col h3 { font-size: 1.05rem; color: var(--pri); margin-bottom: 10px; }
.hnd-traffic__col p { font-size: .9rem; color: #475569; line-height: 1.7; margin: 0 0 10px 0; }

/* ════════════════════════════════════════════════════════════
   PLACES / ATTRACTIONS
   ════════════════════════════════════════════════════════════ */
.hnd-places__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hnd-places__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  position: relative;
}
.hnd-places__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hnd-places__icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hnd-places__icon .material-icons-outlined { font-size: 24px; color: var(--accent); }
.hnd-places__card h3 { font-size: 1rem; color: var(--pri); margin-bottom: 8px; }
.hnd-places__card p { font-size: .88rem; color: #475569; line-height: 1.7; margin: 0 0 12px; }
.hnd-places__meta { display: flex; gap: 14px; flex-wrap: wrap; }
.hnd-places__meta span { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--muted); }
.hnd-places__meta .material-icons-outlined { font-size: 15px; color: var(--accent); }

/* ════════════════════════════════════════════════════════════
   TOP CARS
   ════════════════════════════════════════════════════════════ */
.hnd-cars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hnd-car__card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.hnd-car__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hnd-car__img {
  background: #FFFFFF;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}
.hnd-car__img img { max-width: 100%; max-height: 150px; object-fit: contain; }
.hnd-car__body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.hnd-car__badge {
  display: inline-block;
  background: var(--bg);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hnd-car__name { font-size: 1.15rem; font-weight: 800; color: var(--pri); margin-bottom: 16px; text-align: center; }
.hnd-car__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.hnd-car__spec { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: #475569; justify-content: center; }
.hnd-car__spec .material-icons-outlined { font-size: 18px; color: var(--accent); flex-shrink: 0; }
.hnd-car__price { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--bg); }
.hnd-car__price-from { font-size: .78rem; color: var(--muted); }
.hnd-car__price-val { font-size: 1.5rem; font-weight: 800; color: var(--pri); }
.hnd-car__price-val span { font-size: .78rem; font-weight: 400; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   BOOKING MODAL
   ════════════════════════════════════════════════════════════ */
.hnd-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hnd-modal.open { display: flex; }
.hnd-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hnd-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  padding: 28px;
}
.hnd-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--pri);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.hnd-modal__close:hover {
  background: var(--bg);
  border-color: var(--accent);
  color: var(--accent);
}
.hnd-modal__close .material-icons-outlined { font-size: 22px; }
.hnd-modal__head { padding-right: 52px; margin-bottom: 20px; }
.hnd-modal__head h2 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.hnd-modal__widget .hnd-hero__widget {
  margin: 0;
  max-width: none;
  box-shadow: none;
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.hnd-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.hnd-faq__item {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease;
}
.hnd-faq__item:hover { box-shadow: var(--shadow); }
.hnd-faq__q {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: var(--white);
  font-family: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--pri);
  user-select: none;
  transition: background .2s;
}
.hnd-faq__q:hover { background: var(--bg); }
.hnd-faq__q .material-icons-outlined { color: var(--accent); font-size: 22px; flex-shrink: 0; transition: transform .3s ease; }
.hnd-faq__item.open .hnd-faq__q { background: var(--bg); }
.hnd-faq__item.open .hnd-faq__q .material-icons-outlined { transform: rotate(180deg); }
.hnd-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.hnd-faq__item.open .hnd-faq__a { max-height: 400px; }
.hnd-faq__a-inner { padding: 0 22px 20px; font-size: .92rem; color: #475569; line-height: 1.8; border-top: 1px solid var(--bg); padding-top: 16px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.hnd-footer {
  background: var(--pri);
  padding: 56px 0 0;
  color: rgba(255,255,255,.85);
  position: relative;
}
.hnd-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.hnd-footer__logo { height: 40px; width: auto; margin-bottom: 18px; display: block; }
.hnd-footer__desc { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.hnd-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.hnd-footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.hnd-footer__contact a:hover { color: var(--accent-light); text-decoration: none; }
.hnd-footer__contact .material-icons-outlined { font-size: 18px; color: var(--accent-light); }
.hnd-footer__col h4 { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.hnd-footer__links { list-style: none; }
.hnd-footer__links li { margin-bottom: 10px; }
.hnd-footer__links a { color: rgba(255,255,255,.65); font-size: .9rem; text-decoration: none; transition: color .2s; }
.hnd-footer__links a:hover { color: var(--accent-light); text-decoration: none; }
.hnd-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.hnd-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.hnd-footer__copy { font-size: .82rem; color: rgba(255,255,255,.5); }
.hnd-footer__seo { font-size: .78rem; color: rgba(255,255,255,.35); max-width: 460px; text-align: center; }
.hnd-footer__legal { display: flex; gap: 22px; list-style: none; }
.hnd-footer__legal a { color: rgba(255,255,255,.5); font-size: .82rem; text-decoration: none; transition: color .2s; }
.hnd-footer__legal a:hover { color: var(--accent-light); }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.hnd-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.hnd-about__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 0 0 18px; }
.hnd-about__text p { color: #334155; line-height: 1.8; margin: 0 0 14px; }
.hnd-about__img img { width: 100%; max-width: 420px; border-radius: 20px; box-shadow: var(--shadow-lg); display: block; margin: 0 auto; }

.hnd-about__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.hnd-about__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-about__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hnd-about__card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--r-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.hnd-about__card-icon span { font-size: 28px; color: var(--accent); }
.hnd-about__card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 10px; }
.hnd-about__card p { font-size: .92rem; color: #475569; line-height: 1.65; margin: 0; }

/* ─── HowTo (About page) ─── */
.hnd-howto__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 16px; }
.hnd-howto__step {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.hnd-howto__step::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.hnd-howto__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(0, 128, 255, .25);
}
.hnd-howto__step h3 { font-size: .97rem; font-weight: 700; margin: 0 0 10px; }
.hnd-howto__step p { font-size: .88rem; color: #475569; line-height: 1.65; margin: 0; }
.hnd-howto__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-howto__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hnd-howto__icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--accent);
}
.hnd-howto__icon .material-icons-outlined { font-size: 26px; }
.hnd-howto__card h3 { font-size: .97rem; font-weight: 700; margin: 0 0 10px; }
.hnd-howto__card p { font-size: .88rem; color: #475569; line-height: 1.65; margin: 0; }

/* ─── Mission (About page) ─── */
.hnd-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.hnd-mission__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 0 0 18px; }
.hnd-mission__text p { color: #334155; line-height: 1.8; margin: 0 0 14px; }
.hnd-mission {
  background: var(--white);
  border-radius: var(--r);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hnd-mission h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 0 0 18px; }
.hnd-mission p { color: #334155; line-height: 1.8; margin: 0 0 14px; max-width: 720px; margin-left: auto; margin-right: auto; }
.hnd-mission__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ─── Stats (About page - AI variant) ─── */
.hnd-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hnd-stats__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.hnd-stats__num { font-size: 2.4rem; font-weight: 900; color: var(--pri); line-height: 1.1; margin-bottom: 6px; }
.hnd-stats__num .small { font-size: 1.2rem; font-weight: 600; color: var(--muted); }
.hnd-stats__label { font-size: .85rem; color: var(--muted); font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   CONTACTS PAGE
   ════════════════════════════════════════════════════════════ */
.hnd-contacts__grid,
.hnd-contacts__visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.hnd-contacts__intro { margin-bottom: 44px; }
.hnd-contacts__intro h2,
.hnd-contacts__info h2 { font-size: 1.6rem; font-weight: 800; margin: 0 0 12px; }
.hnd-contacts__intro > p,
.hnd-contacts__info > p { color: #475569; line-height: 1.7; margin-bottom: 24px; max-width: 820px; }
.hnd-contacts__info h3 { font-size: 1.05rem; font-weight: 700; }
.hnd-contacts__visit h2 { font-size: 1.25rem; font-weight: 800; margin: 0 0 18px; }
.hnd-contacts__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 0; }
.hnd-contacts__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hnd-contacts__card h2 { font-size: 1.4rem; font-weight: 800; margin: 0 0 24px; }
.hnd-contacts__rows { display: flex; flex-direction: column; margin-top: 12px; border-top: 1px solid var(--bg); }
.hnd-contacts__map-col { position: relative; }
.hnd-contacts__row { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--bg); }
.hnd-contacts__row:last-child { border-bottom: none; padding-bottom: 0; }
.hnd-contacts__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hnd-contacts__icon span { font-size: 22px; color: var(--accent); }
.hnd-contacts__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.hnd-contacts__val { font-size: 1rem; font-weight: 600; color: var(--pri); }
.hnd-contacts__val a { color: var(--pri); text-decoration: none; }
.hnd-contacts__val a:hover { color: var(--accent); text-decoration: underline; }
.hnd-contacts__sub { font-size: .85rem; color: #64748b; margin-top: 2px; }
.hnd-contacts__action { margin-top: 28px; }
.hnd-map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.hnd-map iframe { display: block; width: 100%; height: 320px; border: 0; }
.hnd-contacts__map-col .hnd-map iframe { height: 450px; }
.hnd-map__hint {
  background: var(--bg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: #334155;
}
.hnd-map__hint a { color: var(--accent); font-weight: 600; text-decoration: none; }
.hnd-map__hint a:hover { text-decoration: underline; }
.hnd-map__hint .material-icons-outlined { color: var(--accent); flex-shrink: 0; }

/* AI variant contacts */
.hnd-contact__card { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--bg); }
.hnd-contact__card:last-of-type { border-bottom: none; margin-bottom: 20px; }
.hnd-contact__icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hnd-contact__icon span { font-size: 22px; color: var(--accent); }
.hnd-contact__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.hnd-contact__val { font-size: 1rem; font-weight: 600; color: var(--pri); }
.hnd-contact__val a { color: var(--pri); text-decoration: none; }
.hnd-contact__val a:hover { color: var(--accent); text-decoration: underline; }
.hnd-contacts__item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--bg); }
.hnd-contacts__item:last-of-type { border-bottom: none; margin-bottom: 24px; }
.hnd-contacts__item strong { display: block; font-size: .88rem; color: var(--pri); margin-bottom: 2px; }
.hnd-contacts__item > div:not(.hnd-contacts__icon) span { font-size: .9rem; color: #475569; line-height: 1.6; }
.hnd-contacts__item a { color: var(--accent); text-decoration: none; }
.hnd-contacts__item a:hover { text-decoration: underline; }
.hnd-contacts__map h2 { font-size: 1.3rem; font-weight: 800; margin: 0 0 10px; }
.hnd-contacts__map h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.hnd-contacts__map p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.hnd-contacts__map-note { font-size: .85rem; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.hnd-map__wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ════════════════════════════════════════════════════════════
   PRIVACY POLICY
   ════════════════════════════════════════════════════════════ */
.hnd-privacy { margin: 0 auto; }
.hnd-privacy h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg);
}
.hnd-privacy h2:first-child { margin-top: 0; }
.hnd-privacy p { color: #334155; line-height: 1.8; margin: 0 0 14px; font-size: .97rem; }
.hnd-privacy ul { color: #334155; line-height: 1.8; margin: 0 0 14px; padding-left: 22px; font-size: .97rem; }
.hnd-privacy ul li { margin-bottom: 6px; }
.hnd-privacy a { color: var(--accent); text-decoration: none; }
.hnd-privacy a:hover { text-decoration: underline; }
.hnd-privacy strong { color: var(--pri); }

/* ════════════════════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════════════════════ */
.hnd-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: .84rem;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.hnd-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 500; }
.hnd-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.hnd-breadcrumb .material-icons-outlined { font-size: 16px; line-height: 1; }
.hnd-breadcrumb span:last-child { color: rgba(255,255,255,.95); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   VEHICLE TYPES CTA
   ════════════════════════════════════════════════════════════ */
.hnd-types__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 16px; }
.hnd-type__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--r);
  padding: 30px 18px 24px;
  text-decoration: none;
  color: var(--pri);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-type__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }
.hnd-type__card .material-icons-outlined { font-size: 38px; color: var(--accent); margin-bottom: 14px; }
.hnd-type__card h3 { font-size: .97rem; font-weight: 700; margin: 0 0 6px; }
.hnd-type__card p { font-size: .88rem; color: #64748b; margin: 0; }
.hnd-type__name { font-size: .97rem; font-weight: 700; margin: 0 0 6px; }
.hnd-type__desc { font-size: .88rem; color: #64748b; margin: 0; }

/* ════════════════════════════════════════════════════════════
   SUB-PAGE COMPONENTS (convertible, suv, van, premium-car)
   ════════════════════════════════════════════════════════════ */
.hnd-sect__title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; text-align: center; margin-bottom: 8px; }
.hnd-sect__sub { text-align: center; color: var(--muted); font-size: .97rem; margin-bottom: 36px; }
.hnd-intro-text { font-size: 1rem; color: #334155; line-height: 1.8; margin-bottom: 28px; }

.hnd-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hnd-perk {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hnd-perk:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hnd-perk__icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 26px !important;
}
.hnd-perk h3 { font-size: 1.05rem; margin-bottom: 10px; }
.hnd-perk p { font-size: .92rem; color: #475569; line-height: 1.75; margin: 0; }

.hnd-table-wrap { overflow-x: auto; border-radius: var(--r); box-shadow: var(--shadow); margin-bottom: 12px; }
.hnd-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px; }
.hnd-table thead { background: var(--pri); }
.hnd-table th { padding: 14px 18px; text-align: left; font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.95); white-space: nowrap; }
.hnd-table td { padding: 13px 18px; font-size: .92rem; color: var(--text); border-bottom: 1px solid var(--bg); }
.hnd-table tbody tr:last-child td { border-bottom: none; }
.hnd-table tbody tr:hover td { background: var(--bg); }
.hnd-table-note { font-size: .82rem; color: var(--muted); margin-top: 10px; line-height: 1.6; }

.hnd-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.hnd-faq .hnd-faq__q { background: none; border: none; font-family: inherit; width: 100%; text-align: left; cursor: pointer; }
.hnd-faq .hnd-faq__q[aria-expanded="true"] { background: var(--bg); }
.hnd-faq .hnd-faq__q[aria-expanded="true"] .material-icons-outlined { transform: rotate(180deg); }
.hnd-faq .hnd-faq__a { max-height: none; overflow: visible; transition: none; }
.hnd-faq .hnd-faq__a[hidden] { display: none; }
.hnd-faq .hnd-faq__a p { padding: 16px 22px 20px; font-size: .92rem; color: #475569; line-height: 1.8; margin: 0; border-top: 1px solid var(--bg); }

/* ─── Hero small variant ─── */
.hnd-hero--sm { min-height: 260px; }
.hnd-hero--sm .hnd-hero__body { padding: 100px 0 30px; }

/* ─── AI variant review header ─── */
.hnd-review__header { display: flex; align-items: center; gap: 12px; }
.hnd-review__header strong { font-size: .92rem; color: var(--pri); }
.hnd-review__header small { font-size: .78rem; color: var(--muted); }

/* ─── AI variant avatar ─── */
.hnd-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: #fff; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hnd-why__grid { grid-template-columns: 1fr; }
  .hnd-why__img { order: -1; }
  .hnd-footer__grid { grid-template-columns: 1fr 1fr; }
  .hnd-about__cards { grid-template-columns: repeat(2, 1fr); }
  .hnd-howto__grid { grid-template-columns: repeat(2, 1fr); }
  .hnd-contacts__grid,
  .hnd-contacts__visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .hnd-contacts__cards { grid-template-columns: repeat(2, 1fr); }
  .hnd-contacts__map-col { position: static; }
  .hnd-types__grid { grid-template-columns: repeat(3, 1fr); }
  .hnd-about__grid { grid-template-columns: 1fr; }
  .hnd-mission__grid { grid-template-columns: 1fr; }
  .hnd-airport__map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hnd-sect { padding: 56px 0; }
  .hnd-hero__body { padding-top: 132px; }
  .hnd-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .hnd-steps__card:nth-child(2) { border-right: none; }
  .hnd-steps__card:nth-child(1),
  .hnd-steps__card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hnd-perks__grid { grid-template-columns: 1fr; }
  .hnd-prices__types { grid-template-columns: repeat(3, 1fr); }
  .hnd-prices__types .hnd-prices__type:nth-child(1),
  .hnd-prices__types .hnd-prices__type:nth-child(2),
  .hnd-prices__types .hnd-prices__type:nth-child(3),
  .hnd-prices__types .hnd-prices__type:nth-child(4) { border-bottom: 1px solid var(--border); }
  .hnd-prices__tiplist { grid-template-columns: 1fr; }
  .hnd-reviews__grid { grid-template-columns: 1fr; }
  .hnd-traffic__list { grid-template-columns: 1fr; }
  .hnd-traffic__cols { grid-template-columns: 1fr; }
  .hnd-places__grid { grid-template-columns: repeat(2, 1fr); }
  .hnd-cars__grid { grid-template-columns: 1fr; }
  .hnd-faq__grid { grid-template-columns: 1fr; }
  .hnd-faq { grid-template-columns: 1fr; }
  .hnd-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hnd-footer__bottom-inner { flex-direction: column; text-align: center; }
  .hnd-footer__seo { text-align: center; }
  .hnd-rating { flex-direction: column; gap: 24px; padding: 28px; }
  .hnd-rating__bars { width: 100% }
  .hnd-about__cards { grid-template-columns: 1fr 1fr; }
  .hnd-map iframe { height: 320px; }
  .hnd-contacts__map-col .hnd-map iframe { height: 450px; }
  .hnd-airport__map { min-height: 400px; }
  .hnd-airport__companies { margin-top: 48px; }
  .hnd-modal { padding: 12px; align-items: flex-start; overflow-y: auto; }
  .hnd-modal__dialog {
    width: 100%;
    max-height: none;
    margin: 12px 0;
    padding: 22px 16px 18px;
  }
  .hnd-modal__head { padding-right: 44px; }
  .hnd-perks { grid-template-columns: 1fr 1fr; }
  .hnd-burger { display: flex; margin-left: auto; }
  .hnd-lang { order: 3; }
  .hnd-lang__menu {
    right: 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .hnd-nav__close { display: none; }
  .hnd-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--pri);
    padding: 72px 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 90;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    border-radius: 0 0 20px 20px;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .hnd-nav.open { display: flex; transform: translateY(0); }
  .hnd-nav.open .hnd-nav__close { display: flex; }
  .hnd-nav li { width: 100%; }
  .hnd-nav li a { padding: 14px 18px; font-size: 1rem; border-radius: var(--r-sm); }
  .hnd-why__list { gap: 10px; }
  .hnd-why__list li { min-width: calc(50% - 10px); }
  .hnd-why__img img { max-width: 100%; height: auto; }
}

@media (max-width: 600px) {
  .hnd-types__grid { grid-template-columns: repeat(2, 1fr); }
  .hnd-contacts__cards { grid-template-columns: 1fr; }
  .hnd-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hnd-sect { padding: 48px 0; }
  .hnd-prices__types { grid-template-columns: repeat(2, 1fr); }
  .hnd-prices__types .hnd-prices__type:nth-child(2),
  .hnd-prices__types .hnd-prices__type:nth-child(4) { border-right: none; }
  .hnd-places__grid { grid-template-columns: 1fr; }
  .hnd-why__list li { min-width: 100%; }
  .hnd-steps__grid { grid-template-columns: 1fr; }
  .hnd-steps__card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hnd-steps__card:last-child { border-bottom: none; }
  .hnd-hero__body { padding: 140px 16px 56px; }
  .hnd-hero__body h1 { font-size: 1.4rem; line-height: 1.22; }
  .hnd-wrap { padding: 0 16px; }
  .hnd-tbl { min-width: 640px; }
  .hnd-companies__table { min-width: 760px; }
  .hnd-airport__detail { padding: 14px 14px; }
  .hnd-modal__close { top: 10px; right: 10px; }
  .hnd-about__cards { grid-template-columns: 1fr; }
  .hnd-howto__grid { grid-template-columns: 1fr; }
  .hnd-types__grid { grid-template-columns: repeat(2, 1fr); }
  .hnd-perks { grid-template-columns: 1fr; }
}

/* Mobile hero guard: keep homepage H1 below the absolute header */
@media (max-width: 768px) {
  .hnd-hero__body {
    padding-top: 100px !important;
  }
}

@media (max-width: 480px) {
  .hnd-hero__body {
    padding: 100px 16px 56px !important;
  }
  .hnd-hero__body h1 {
    font-size: clamp(1.32rem, 6.4vw, 1.62rem) !important;
    line-height: 1.2 !important;
  }
}


/* ============================================================
   Generator v3 compatibility classes
   These keep the data-driven v3 markup styled by the legacy design system.
   ============================================================ */
.hnd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hnd-price-types { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--white); margin-bottom: 40px; }
.hnd-price-type { padding: 14px 12px; border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.hnd-price-type:last-child { border-right: none; }
.hnd-price-type:hover { background: var(--bg); }
.hnd-price-type__name { font-size: .75rem; font-weight: 700; color: var(--pri); text-transform: uppercase; letter-spacing: .05em; }
.hnd-price-type div:last-child { font-size: 1rem; font-weight: 800; color: var(--accent); }
.hnd-price-tips { background: var(--white); border-radius: var(--r); padding: 32px; margin-bottom: 40px; border: 1px solid var(--border); }
.hnd-price-tips h3 { font-size: 1.05rem; color: var(--pri); margin-bottom: 20px; }
.hnd-price-tips ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; list-style: none; padding: 0; margin: 0; }
.hnd-price-tips li { font-size: .9rem; color: #334155; line-height: 1.5; }
.hnd-traffic__details { background: var(--white); border-radius: var(--r); padding: 32px 36px; margin-bottom: 28px; box-shadow: var(--shadow); }
.hnd-traffic__details h3 { font-size: 1.3rem; color: var(--pri); margin-bottom: 12px; }
.hnd-traffic__details ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; padding: 0; margin: 0; }
.hnd-traffic__details li { display: flex; gap: 8px; align-items: flex-start; font-size: .92rem; color: #334155; }
.hnd-traffic__details li::before { content: 'speed'; font-family: 'Material Icons Outlined'; color: var(--accent); font-size: 18px; line-height: 1.4; }
.hnd-airport__map-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: 32px; align-items: stretch; min-width: 0; }
.hnd-airport__map-grid .hnd-map iframe { min-height: 400px; height: 320px; }
.hnd-contacts__visit-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: 32px; align-items: stretch; }
.hnd-contacts__card { background: var(--white); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start; }
.hnd-faq__item summary { width: 100%; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; gap: 14px; font-size: .95rem; font-weight: 600; color: var(--pri); list-style: none; }
.hnd-faq__item summary::-webkit-details-marker { display: none; }
.hnd-faq__item summary::after { content: 'expand_more'; font-family: 'Material Icons Outlined'; color: var(--accent); font-size: 22px; transition: transform .25s; }
.hnd-faq__item[open] summary::after { transform: rotate(180deg); }
.hnd-faq__item p { padding: 0 22px 20px; font-size: .92rem; color: #475569; line-height: 1.8; border-top: 1px solid var(--bg); padding-top: 16px; }
.hnd-modal h2 { margin: 0; }
@media (max-width: 900px) {
  .hnd-grid,
  .hnd-price-types,
  .hnd-traffic__details ul,
  .hnd-airport__map-grid,
  .hnd-contacts__visit-grid { grid-template-columns: 1fr; }
  .hnd-price-type { border-right: 0; border-bottom: 1px solid var(--border); }
}


/* ============================================================
   Generator v3 visual refinements
   ============================================================ */
.hnd-hero__tag .hnd-chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #16a34a;
  font-size: 1rem;
  line-height: 1;
}

.hnd-home-advantages .hnd-about__card-icon {
  margin-bottom: 18px;
}

.hnd-why__list {
  margin-top: 34px;
}

.hnd-why__cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.hnd-prices__type-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.hnd-prices__type-name,
.hnd-price-type__name {
  display: block;
  width: 100%;
  white-space: nowrap;
  line-height: 1.25;
}

.hnd-prices__type-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.hnd-prices__table-title {
  margin: 34px 0 18px;
}

.hnd-traffic__list li .material-icons-outlined {
  display: none;
}

.hnd-car__price .hnd-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 30%, transparent);
}

.hnd-car__price .hnd-btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 40%, transparent);
}

@media (max-width: 768px) {
  .hnd-why__list { margin-top: 26px; }
  .hnd-why__cta { margin-top: 24px; }
  .hnd-prices__type-name,
  .hnd-price-type__name { white-space: normal; }
}

/* ============================================================
   Airport section legacy layout
   ============================================================ */
.hnd-airport.hnd-airport__map-grid {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(520px, 1.12fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 64px;
}

.hnd-airport__details {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.hnd-airport__details h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 900;
  color: var(--pri);
  margin: 0 0 38px;
  letter-spacing: 0;
}

.hnd-airport__details .hnd-airport__detail:nth-of-type(1) {
  border-radius: 14px 14px 0 0;
}

.hnd-airport__details .hnd-airport__detail:last-child {
  border-radius: 0 0 14px 14px;
}

.hnd-airport__detail {
  position: relative;
  display: block;
  min-height: 54px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 0;
  padding: 18px 22px 18px 54px;
  color: #334155;
  font-size: .96rem;
  line-height: 1.55;
  box-shadow: none;
  margin: 0 !important;
}

.hnd-airport__detail:last-child {
  border-bottom: 1px solid var(--border);
}

.hnd-airport__detail::before {
  position: absolute;
  left: 20px;
  top: 19px;
  font-family: 'Material Icons Outlined';
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
}

.hnd-airport__detail:nth-of-type(1)::before { content: 'local_airport'; }
.hnd-airport__detail:nth-of-type(2)::before { content: 'my_location'; }
.hnd-airport__detail:nth-of-type(3)::before { content: 'public'; }

.hnd-airport__detail strong {
  color: var(--pri);
  font-weight: 800;
}

.hnd-airport__detail a {
  color: var(--accent);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.hnd-airport__detail a:hover {
  text-decoration: underline;
}

.hnd-airport__map.hnd-map {
  align-self: start;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(15, 23, 42, .12);
  background: var(--white);
  min-height: 400px;
}

.hnd-airport__map.hnd-map iframe,
.hnd-airport__map-grid .hnd-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  min-height: 400px;
  border: 0;
}

.hnd-airport__map-head {
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hnd-airport__map-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  line-height: 1.18;
  font-weight: 900;
  color: var(--pri);
  margin: 0;
}

.hnd-companies__wrap.hnd-airport__companies {
  margin-top: 0;
}

.hnd-airport__companies .hnd-tbl-wrap {
  border-radius: 14px;
  box-shadow: none;
  overflow-x: auto;
}

.hnd-companies__table thead,
.hnd-airport__companies .hnd-tbl thead {
  background: var(--pri);
}

.hnd-companies__table th,
.hnd-airport__companies .hnd-tbl th {
  padding-top: 18px;
  padding-bottom: 18px;
}

@media (max-width: 1024px) {
  .hnd-airport.hnd-airport__map-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hnd-airport__details h2 {
    margin-bottom: 22px;
  }
}

@media (max-width: 600px) {
  .hnd-airport.hnd-airport__map-grid {
    margin-bottom: 44px;
  }
  .hnd-airport__detail {
    padding: 16px 16px 16px 50px;
  }
  .hnd-airport__map.hnd-map iframe,
  .hnd-airport__map-grid .hnd-map iframe {
    height: 280px;
    min-height: 280px;
  }
}

/* ============================================================
   FAQ details accordion fixes
   ============================================================ */
.hnd-faq .hnd-faq__item {
  border: 0;
  box-shadow: var(--shadow-sm);
}

.hnd-faq .hnd-faq__item[open] {
  box-shadow: var(--shadow);
}

.hnd-faq .hnd-faq__q {
  margin: 0;
  border: 0;
  border-bottom: 0;
  background: var(--white);
}

.hnd-faq .hnd-faq__item[open] > .hnd-faq__q {
  background: var(--bg);
}

.hnd-faq .hnd-faq__a {
  max-height: none;
  overflow: visible;
  border-top: 1px solid var(--bg);
}

.hnd-faq .hnd-faq__a-inner {
  padding: 16px 22px 20px;
  border-top: 0;
}

.hnd-faq .hnd-faq__a-inner p,
.hnd-faq .hnd-faq__item p {
  margin: 0;
  padding: 0;
  border-top: 0;
  color: #475569;
  line-height: 1.8;
  font-size: .92rem;
}

.hnd-faq .hnd-faq__item:not([open]) .hnd-faq__a {
  display: none;
}

/* ============================================================
   Footer legacy polish
   ============================================================ */
.hnd-footer {
  background: #111827;
  color: rgba(255,255,255,.68);
}

.hnd-footer__grid {
  align-items: start;
}

.hnd-footer__logo {
  opacity: .95;
}

.hnd-footer__desc {
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 560px;
}

.hnd-footer__contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  line-height: 1.55;
}

.hnd-footer__contact .material-icons-outlined {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.5;
  flex: 0 0 auto;
}

.hnd-footer__contact a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.hnd-footer__contact a:hover {
  color: var(--accent-light);
}

.hnd-footer__col h4 {
  color: #fff;
  letter-spacing: .08em;
}

.hnd-footer__links a {
  color: rgba(255,255,255,.62);
}

.hnd-footer__links a:hover {
  color: var(--accent-light);
}

.hnd-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
}

.hnd-footer__copy,
.hnd-footer__legal a {
  color: rgba(255,255,255,.46);
}

.hnd-footer__seo {
  color: rgba(255,255,255,.34);
}

/* ============================================================
   Companies heading and traffic icons refinements
   ============================================================ */
.hnd-airport__map-head {
  margin-bottom: 28px;
}

.hnd-traffic__list li::before,
.hnd-traffic__details li::before {
  content: none !important;
}

.hnd-traffic__list li .material-icons-outlined,
.hnd-traffic__details li .material-icons-outlined {
  display: inline-flex;
  color: var(--accent);
  font-size: 19px;
  line-height: 1.35;
  margin-top: 1px;
  flex: 0 0 auto;
}

/* ============================================================
   Category page refinements
   ============================================================ */
.hnd-category__table-title {
  margin: 0 0 28px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  font-weight: 900;
  color: var(--pri);
}

.hnd-perks__icon .material-icons-outlined {
  color: var(--accent);
}

@media (max-width: 600px) {
  .hnd-category__table-title {
    margin-bottom: 22px;
  }
}

/* ============================================================
   About and contacts page refinements
   ============================================================ */
.hnd-about-page__advantages {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnd-contacts__intro {
  margin-bottom: 72px;
}

.hnd-map.hnd-contacts__map-col iframe {
  height: 540px;
  min-height: 540px;
}

@media (max-width: 1024px) {
  .hnd-contacts__intro {
    margin-bottom: 56px;
  }
  .hnd-map.hnd-contacts__map-col iframe {
    height: 460px;
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .hnd-about-page__advantages {
    grid-template-columns: 1fr;
  }
  .hnd-contacts__intro {
    margin-bottom: 44px;
  }
  .hnd-map.hnd-contacts__map-col iframe {
    height: 360px;
    min-height: 360px;
  }
}

/* ============================================================
   Mobile home layout refinements
   ============================================================ */
@media (max-width: 600px) {
  .hnd-why__list li {
    justify-content: center;
    text-align: center;
  }

  .hnd-why__list h4 {
    text-align: center;
    width: 100%;
  }

  .hnd-prices__tiplist,
  .hnd-price-tips ul {
    grid-template-columns: 1fr !important;
  }

  .hnd-prices__tiplist li,
  .hnd-price-tips li {
    width: 100%;
  }

  .hnd-places__card {
    text-align: center;
  }

  .hnd-places__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .hnd-places__card h3 {
    text-align: center;
  }

  .hnd-airport__map.hnd-map {
    min-height: 280px;
    height: auto;
  }

  .hnd-airport__map.hnd-map iframe,
  .hnd-airport__map-grid .hnd-map iframe {
    height: 280px !important;
    min-height: 280px !important;
  }
}

@media (max-width: 420px) {
  .hnd-airport__map.hnd-map {
    min-height: 240px;
  }

  .hnd-airport__map.hnd-map iframe,
  .hnd-airport__map-grid .hnd-map iframe {
    height: 240px !important;
    min-height: 240px !important;
  }
}

/* ============================================================
   Image and contact detail refinements
   ============================================================ */
img.hnd-why__img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.hnd-category__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 48px;
  align-items: center;
  margin-bottom: 44px;
}

.hnd-sect__head--left {
  text-align: left;
  margin-bottom: 20px;
}

.hnd-sect__head--left p,
.hnd-sect__head--left h2 {
  margin-left: 0;
  margin-right: 0;
}

.hnd-contacts__row > .material-icons-outlined {
  color: var(--accent);
  font-size: 20px;
  line-height: 1.45;
  flex: 0 0 auto;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
}

.hnd-contacts__row a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.hnd-contacts__row a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hnd-category__intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hnd-category__img {
    order: -1;
  }

  .hnd-sect__head--left {
    text-align: center;
  }
}

@media (max-width: 600px) {
  img.hnd-why__img {
    max-width: 320px;
    border-radius: 14px;
  }
}

/* ============================================================
   Final spacing refinements
   ============================================================ */
.hnd-why__list li {
  justify-content: center;
  text-align: center;
}

.hnd-why__list h4 {
  width: 100%;
  text-align: center;
}

.hnd-faq .hnd-faq__q,
.hnd-faq__item summary {
  padding-top: 15px;
  padding-bottom: 15px;
}

.hnd-faq .hnd-faq__a-inner {
  padding-top: 12px;
  padding-bottom: 15px;
}

.hnd-faq .hnd-faq__item p {
  padding-top: 0;
  padding-bottom: 0;
}

.hnd-page-hero .hnd-category__hero-desc {
  max-width: none;
  width: 100%;
}
