:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #f8f9fc;
  --text: #11141b;
  --muted: #5f6674;
  --line: #d9dfe8;
  --line-strong: #bcc6d5;
  --dark: #0f131b;
  --kion-red: #d21f26;
  --kion-gold: #f7c324;
  --kion-black: #11141b;
  --accent: var(--kion-red);
  --accent-strong: #a41419;
  --shadow: 0 18px 44px rgba(12, 17, 27, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --ff-body: 'Lato', sans-serif;
  --anim-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--ff-body);
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, var(--bg));
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
blockquote,
summary {
  margin: 0;
}

:where(h1, h2, h3, h4, p, a, blockquote, span, summary, strong, small) {
  overflow-wrap: anywhere;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 42px 0;
}

.section--tight {
  padding-top: 0;
}

.section--dark {
  background: linear-gradient(180deg, #111722, #0b0f17);
}

.eyebrow,
.card__eyebrow,
.footer__eyebrow,
.service-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading--centered {
  text-align: center;
  place-items: center;
  max-width: 800px;
  margin-inline: auto;
}

.section-heading h2,
.page-hero h1,
.hero-home h1,
.panel h2,
.article-layout h2,
.cta-banner h2,
.detail-layout h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero__lead,
.hero-home__lead,
.panel p,
.content-block p,
.news-card__body p,
.service-card__body p,
.faq-item p,
.article-layout__body p,
.cta-banner p,
.review-card blockquote {
  color: var(--muted);
  line-height: 1.75;
}

.section--dark .section-heading h2,
.section--dark .section-heading p,
.section--dark .section-heading .eyebrow {
  color: #ffffff;
}

.flash,
.inline-message {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #fff5e7;
  border: 1px solid #f1d39b;
  color: #7c5617;
}

.flash--error {
  background: #fff0f0;
  border-color: #f1bbbb;
  color: #8b2024;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  min-height: 48px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.08), 0 20px 30px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.08);
}

.btn--accent {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 5px 0 #8b1016, 0 15px 32px rgba(210, 31, 38, 0.22);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #8b1016, 0 20px 40px rgba(210, 31, 38, 0.35);
}
.btn--accent:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 #8b1016, 0 5px 10px rgba(210, 31, 38, 0.22);
}

.btn--light {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 5px 0 var(--line-strong), 0 15px 25px rgba(0, 0, 0, 0.06);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--line-strong), 0 20px 30px rgba(0,0,0,0.1);
  background: #fdfdfd;
}
.btn--light:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 var(--line-strong), 0 5px 10px rgba(0, 0, 0, 0.06);
}

.btn--small {
  min-height: 40px;
  padding: 11px 16px;
  font-size: 11px;
}

.text-link {
  color: var(--accent);
  font-weight: 900;
}

.topbar {
  background: var(--kion-red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.topbar__inner {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
}

.topbar__languages,
.topbar__message,
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__message {
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.topbar__actions {
  justify-content: flex-end;
}

.topbar__actions a {
  color: #ffffff;
  font-weight: 700;
}

.topbar__label {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(210, 31, 38, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar__links a {
  color: #ffffff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--kion-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header__inner {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 8px 0;
}

.brand {
  display: block;
  flex-shrink: 0;
}

.brand__logo {
  width: 140px; /* Slightly larger logo if text is gone */
  object-fit: contain;
}

.brand__copy span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.header__cta {
  flex-shrink: 0;
  background: var(--kion-red);
  box-shadow: 0 5px 0 #a41419, 0 15px 32px rgba(210, 31, 38, 0.22);
}

.header__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #a41419, 0 20px 40px rgba(210, 31, 38, 0.35);
}

.site-nav__link,
.site-nav__contact,
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.site-nav__link,
.site-nav__contact {
  color: var(--text);
  border: 1px solid transparent;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__contact:hover,
.site-nav__contact.is-active {
  background: #ffffff;
  color: var(--kion-red);
  border-color: var(--kion-gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 0 var(--kion-gold), 0 15px 25px rgba(247, 195, 36, 0.15);
}

.site-nav__link:active,
.site-nav__contact:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 var(--kion-gold);
}

.site-nav__cta.is-active {
  box-shadow: 0 0 0 3px rgba(210, 31, 38, 0.12), 0 18px 32px rgba(210, 31, 38, 0.22);
}

.site-nav__group {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.site-nav__dropdown a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav__dropdown a:hover {
  background: var(--surface-soft);
  color: var(--accent);
}

.site-nav__group:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-strip {
  border-top: 1px solid var(--kion-gold);
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
  padding: 4px 0;
}

.header-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 4px 0;
}

.header-strip__inner span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-home {
  position: relative;
  background:
    linear-gradient(90deg, rgba(10, 14, 22, 0.92) 0%, rgba(10, 14, 22, 0.74) 52%, rgba(10, 14, 22, 0.38) 100%),
    url('suv.jpg') center center / cover no-repeat;
}

.hero-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.8fr);
  gap: 30px;
  align-items: stretch;
  padding: 86px 0 78px;
}

.hero-home__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  color: #ffffff;
}

.hero-home__content .eyebrow {
  color: #ffffff;
}

.hero-home__badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(199, 154, 75, 0.18);
  border: 1px solid rgba(199, 154, 75, 0.34);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-home__lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.hero-home__chips,
.hero-home__actions,
.hero-booking-form__actions,
.page-hero__actions,
.action-row,
.action-stack,
.form-actions,
.cta-banner__actions,
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-card__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.catalog-card__actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 42px;
  white-space: nowrap;
}

.catalog-card__actions .btn svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.icon--whatsapp { color: #25d366; }
.icon--email { color: #ea4335; }

.btn:hover .icon--whatsapp,
.btn:hover .icon--email {
  color: #ffffff;
}

.hero-home__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-enquiry {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-enquiry h2,
.page-hero__card h2,
.panel h3,
.content-block h3,
.news-card__body h3,
.service-card__body h3,
.review-card blockquote,
.faq-item summary,
.article-layout__body h2 {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-enquiry__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 2px;
}

.hero-enquiry__footer a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.hero-booking-form {
  display: grid;
  gap: 14px;
}

.hero-booking-form__grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -34px;
}

.value-strip__item {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.value-strip__item strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-strip__item span {
  color: var(--muted);
  line-height: 1.65;
}

.two-panel,
.detail-layout,
.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 26px;
}

.panel,
.split-showcase__content,
.article-layout,
.catalog-card,
.service-card,
.news-card,
.review-card,
.faq-item,
.cta-banner {
  min-width: 0;
}

.panel,
.split-showcase__content,
.cta-banner,
.article-layout {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel,
.split-showcase__content {
  padding: 32px;
}

.panel--dark,
.section--dark .review-card,
.cta-banner {
  color: #ffffff;
  background: linear-gradient(180deg, var(--dark), var(--dark-soft));
  border-color: var(--dark-border);
}

.panel--dark p,
.panel--dark .section-heading p,
.panel--dark .contact-list span,
.panel--dark .content-block p,
.cta-banner p,
.section--dark .review-card p,
.section--dark .review-card span {
  color: rgba(255, 255, 255, 0.76);
}

.panel--dark .section-heading h2,
.panel--dark h3,
.panel--dark .eyebrow,
.cta-banner h2,
.cta-banner .eyebrow,
.section--dark .review-card blockquote,
.section--dark .stars {
  color: #ffffff;
}

.panel--media,
.split-showcase__media,
.article-layout__media,
.news-card__media,
.service-card__media,
.catalog-card__media {
  overflow: hidden;
}

.panel--media,
.split-showcase__media {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.detail-image,
.split-showcase__media img,
.article-layout__media img,
.news-card__media img,
.service-card__media img,
.catalog-card__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.detail-image,
.split-showcase__media img {
  min-height: 520px;
}

.feature-list,
.tag-row,
.contact-list,
.story-stack,
.footer__links,
.footer__contact,
.page-hero__facts,
.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-pill,
.tag-row span,
.catalog-card__locations span,
.payment-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.panel--dark .feature-pill,
.cta-banner .feature-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.content-block,
.article-layout__body,
.news-card__body,
.service-card__body,
.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.catalog-grid,
.service-grid,
.news-grid,
.review-grid {
  display: grid;
  gap: 20px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  justify-content: center;
}

.fleet-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.fleet-filter {
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 0 var(--line-strong), 0 10px 18px rgba(0, 0, 0, 0.06);
}

.fleet-filter:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 var(--line-strong), 0 14px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--line-strong);
}

.fleet-filter:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 var(--line-strong);
}

.fleet-filter.is-active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent-strong);
  box-shadow: 0 4px 0 var(--accent-strong), 0 10px 20px rgba(210, 31, 38, 0.2);
}

.fleet-filter.is-active:hover {
  box-shadow: 0 6px 0 var(--accent-strong), 0 14px 28px rgba(210, 31, 38, 0.3);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-card,
.service-card,
.news-card,
.review-card {
  height: 100%;
}

.catalog-card,
.service-card,
.news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.catalog-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, box-shadow;
}

.catalog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 20px rgba(247, 195, 36, 0.2);
  z-index: 2;
  position: relative;
  border-color: var(--kion-gold);
}

.catalog-card__media {
  position: relative;
  height: 230px;
  background: var(--surface-strong);
}

.service-card__media,
.news-card__media {
  position: relative;
  min-height: 215px;
  background: var(--surface-strong);
}

.catalog-card__badge,
.catalog-card__type {
  position: absolute;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card__badge {
  top: 16px;
  left: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.catalog-card__type {
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  background: rgba(15, 19, 27, 0.88);
}

.catalog-card__body,
.service-card__body,
.news-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
}

.catalog-card__body h3,
.service-card__body h3,
.news-card__body h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.catalog-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.catalog-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.catalog-card__meta strong,
.detail-facts strong,
.page-hero__facts strong,
.contact-list strong,
.footer__contact strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-card__meta span,
.detail-facts span,
.page-hero__facts span,
.review-card span,
.footer__contact span,
.contact-list span {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-card__footer {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.catalog-card__price {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f7f8fb;
  border: 1px solid var(--line);
}

.catalog-card__price span,
.detail-price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card__price strong,
.detail-price strong {
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.catalog-card__price small,
.detail-price small {
  color: var(--muted);
  font-size: 12px;
}

.catalog-card__rating {
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
}

.catalog-card__ratingRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}

.catalog-card__more {
  font-size: 12px;
  font-weight: 900;
  color: var(--kion-red);
  text-decoration: underline;
}

.service-card__tag {
  color: var(--brand-strong);
}

.review-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-card p {
  display: grid;
  gap: 4px;
}

.review-card strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.stars {
  color: #f4c763;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.26em;
}

.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.fleet-filter {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-filter.is-active {
  color: #ffffff;
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(12, 17, 27, 0.92) 0%, rgba(12, 17, 27, 0.84) 48%, rgba(12, 17, 27, 0.52) 100%),
    url('sedan.jpg') center center / cover no-repeat;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 26px;
  align-items: center;
  padding: 76px 0;
}

.page-hero__content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.page-hero__content .eyebrow,
.page-hero__content h1,
.page-hero__lead {
  color: #ffffff;
}

.page-hero__lead {
  max-width: 720px;
}

.page-hero__card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.page-hero__facts,
.detail-facts,
.contact-list,
.footer__contact {
  display: grid;
  gap: 14px;
}

.detail-layout {
  align-items: start;
}

.detail-price {
  display: grid;
  gap: 4px;
  width: fit-content;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff6eb;
  border: 1px solid #f2d8aa;
}

.article-layout {
  overflow: hidden;
}

.article-layout__media {
  min-height: 320px;
}

.article-layout__body {
  padding: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 22px 60px 22px 24px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 26px;
  font-weight: 700;
}

.faq-item[open] {
  border-color: #efc3c5;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 24px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--text);
}

.field textarea {
  resize: vertical;
}

.field small {
  color: #a41419;
  font-size: 12px;
  font-weight: 700;
}

.form-actions {
  grid-column: 1 / -1;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.cta-banner__content {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.contact-list div,
.footer__contact p {
  display: grid;
  gap: 6px;
}

.site-footer {
  margin-top: 48px;
  color: #ffffff;
  background: linear-gradient(180deg, #11141b, #0a0d13);
  border-top: 4px solid var(--kion-gold);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 64px 0 34px;
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer__eyebrow {
  color: var(--kion-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__title {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.footer__logo {
  width: 144px;
}

.footer__text,
.footer__links a,
.footer__contact span,
.footer__bottom,
.footer__payments-label {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__links a {
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: var(--kion-red);
  padding-left: 6px;
}

.footer__links a:hover,
.footer__socials a:hover,
.footer__bottom a:hover {
  color: #ffffff;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  color: var(--kion-black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 0 var(--line-strong), 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer__socials a svg {
  flex-shrink: 0;
  transition: fill 0.3s ease;
}

.footer__socials a:hover {
  transform: translateY(-4px);
  background: var(--kion-red);
  color: #ffffff;
  border-color: #a41419;
  box-shadow: 0 6px 0 #a41419, 0 15px 30px rgba(210, 31, 38, 0.3);
}

.footer__socials a:hover svg {
  fill: #ffffff;
}

.footer__socials a:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 transparent;
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 0 18px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-list span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.payment-list span:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--kion-gold);
}

.two-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.panel {
  padding: 40px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  height: 100%;
}

.panel--dark {
  background: var(--kion-black);
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.panel--dark h3 {
  color: var(--kion-gold);
}

.panel h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link,
  .site-nav__contact,
  .site-nav__cta {
    width: 100%;
  }

  .site-nav__group {
    display: block;
  }

  .site-nav__dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--surface-soft);
  }
}

@media (max-width: 1200px) {
  .catalog-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid,
  .footer__grid,
  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home__grid,
  .page-hero__inner,
  .two-panel,
  .detail-layout,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .hero-home__grid {
    padding: 72px 0 66px;
  }

  .hero-enquiry,
  .page-hero__card {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar__inner,
  .cta-banner,
  .footer__bottom,
  .footer__payments {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__copy {
    display: none;
  }

  .detail-image,
  .split-showcase__media img {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 54px 0;
  }

  .hero-home__grid,
  .page-hero__inner {
    padding: 54px 0 52px;
  }

  .hero-booking-form__grid,
  .form-grid,
  .catalog-grid,
  .service-grid,
  .news-grid,
  .review-grid,
  .footer__grid,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .panel,
  .split-showcase__content,
  .hero-enquiry,
  .page-hero__card,
  .cta-banner,
  .article-layout__body,
  .catalog-card__body,
  .service-card__body,
  .news-card__body,
  .review-card {
    padding: 24px;
  }

  .catalog-card__media,
  .service-card__media,
  .news-card__media,
  .article-layout__media {
    min-height: 210px;
  }

  .detail-image,
  .split-showcase__media img {
    min-height: 280px;
  }

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

  .hero-home__actions .btn,
  .hero-booking-form__actions .btn,
  .page-hero__actions .btn,
  .action-row .btn,
  .action-stack .btn,
  .form-actions .btn,
  .cta-banner__actions .btn,
  .catalog-card__actions .btn {
    width: 100%;
    flex-basis: 100%;
  }

  .header-strip__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .topbar__message,
  .topbar__links,
  .hero-enquiry__footer {
    width: 100%;
  }

  .brand__logo {
    width: 112px;
  }

  .site-nav {
    padding: 14px;
  }

  .hero-home h1,
  .page-hero h1,
  .section-heading h2,
  .panel h2,
  .article-layout__body h2,
  .cta-banner h2,
  .detail-layout h2 {
    font-size: clamp(28px, 9vw, 38px);
  }
}

.catalog-card__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card__body .action-row,
.news-card__body .text-link {
  margin-top: auto;
}

.article-layout {
  display: grid;
}

.topbar--alert {
  background: linear-gradient(90deg, #d21f26, #a41419);
}

.topbar--alert .topbar__message,
.topbar--alert .topbar__socials a,
.topbar--alert .topbar__label {
  color: #ffffff;
}

.topbar--alert .topbar__label {
  background: rgba(255, 255, 255, 0.16);
}

.topbar--meta {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.topbar__inner--meta {
  min-height: 40px;
}

.topbar__socials,
.topbar__languages,
.topbar__markets,
.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__socials a,
.topbar__markets a,
.footer__legal a {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__languages span,
.topbar__markets a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6f7fb;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  background: #ffffff;
}

.header-strip__inner {
  justify-content: flex-start;
}

.header-strip__inner span {
  background: #f5f7fb;
}

.footer__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.footer__links--news a {
  line-height: 1.55;
}

.hero-home {
  position: relative;
  height: min(600px, 80vh);
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--kion-gold);
}

.hero-home__shell {
  position: relative;
  height: 100%;
  z-index: 10;
}

.hero-home__shell * {
  pointer-events: auto;
}

.hero-home__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-home__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 20, 27, 0.85) 0%, rgba(17, 20, 27, 0.4) 50%, transparent 100%);
}

.hero-home__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -2%); }
}

.hero-home__overlay {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: grid;
  gap: 20px;
  width: min(620px, calc(100% - 40px));
  padding: 60px 48px;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 15;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-badge--1 { right: 15%; top: 20%; animation-delay: 0s; }
.hero-badge--2 { right: 10%; top: 45%; animation-delay: 1.5s; background: var(--kion-gold); color: var(--kion-black); border-color: var(--kion-gold); }
.hero-badge--3 { right: 20%; top: 70%; animation-delay: 3s; }

.hero-home h1,
.hero-home__lead,
.hero-home__tagline {
  color: #ffffff !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-home h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-home__lead {
  font-size: 18px;
  opacity: 0.85;
}

@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateX(-40px); filter: blur(10px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-anim--1 { animation-delay: 0.1s; }
.hero-anim--2 { animation-delay: 0.3s; }
.hero-anim--3 { animation-delay: 0.5s; }
.hero-anim--4 { animation-delay: 0.65s; }
.hero-anim--5 { animation-delay: 0.8s; }

.hero-home .eyebrow,
.hero-home h1,
.hero-home__lead {
  color: var(--kion-black);
}

.hero-home h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  max-width: 20ch;
  margin: 0;
}

.hero-home__tagline {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--kion-gold);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 0 var(--accent-strong), 0 10px 20px rgba(247, 195, 36, 0.2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kion-black);
}

.hero-home__lead {
  max-width: 65ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-home__actions .btn--light {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.payment-strip {
  padding-top: 26px;
}

.payment-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.payment-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-strip__list span,
.payment-strip__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f7f8fb;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-strip__rating {
  color: var(--brand-strong);
}

.section--catalogue {
  padding-top: 16px;
}

.catalog-grid {
  gap: 18px;
}



.catalog-card__body {
  gap: 12px;
  padding: 18px;
}

.catalog-card__body h3 {
  font-size: clamp(18px, 1.8vw, 24px);
}

.catalog-card__price {
  gap: 2px;
  padding: 14px 16px;
}

.catalog-card__price strong {
  font-size: 28px;
}

.catalog-card__ratingRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-card__more {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--blog {
  padding-top: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--anim-ease), box-shadow 0.4s var(--anim-ease), border-color 0.4s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.08);
  border-color: var(--kion-gold);
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--kion-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--anim-ease);
  transform-origin: left;
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card__media {
  display: block;
  min-height: 180px;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
  height: 100%;
}

.blog-card__body h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--kion-black);
  margin-bottom: 8px;
}

.blog-card__body h3 a {
  transition: color 0.3s ease;
}

.blog-card:hover h3 a {
  color: var(--kion-red);
}

.blog-card__body .text-link {
  margin-top: auto;
}

.editorial-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: start;
}

.editorial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  background: var(--surface-strong);
  height: 520px;
  border: 1px solid var(--line);
}

.editorial-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.editorial-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.editorial-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-slider__slide.is-active img {
  transform: scale(1);
}

.editorial-slider__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 40px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #ffffff;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.4s ease;
}

.editorial-slider__slide.is-active .editorial-slider__overlay {
  opacity: 1;
  transform: translateY(0);
}

.editorial-slider__overlay h3 {
  color: #ffffff;
  font-size: 34px;
  margin-top: 8px;
}

.editorial-slider__dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
  z-index: 10;
}

.editorial-slider__dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.editorial-slider__dots span.is-active {
  background: var(--kion-gold);
  transform: scale(2);
  box-shadow: 0 0 10px var(--kion-gold);
}

.editorial-article {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.editorial-article h2,
.editorial-article h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.editorial-article p {
  color: var(--muted);
  line-height: 1.78;
}

.editorial-points {
  display: grid;
  gap: 14px;
}

.editorial-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.editorial-point__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff3f4;
  border: 1px solid #f2c4c7;
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
}

.editorial-point h3 {
  font-size: 19px;
}

.editorial-columns {
  padding-top: 0;
}

.editorial-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.capability-band {
  padding-top: 34px;
}

.capability-marquee {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 20px 0;
}

.capability-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.capability-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.capability-card {
  flex: 0 0 320px;
  display: grid;
  gap: 12px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.capability-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--kion-gold);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(247, 195, 36, 0.1);
}

.capability-card h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .blog-grid,
  .editorial-columns__grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-main__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-home__visual,
  .hero-home__visual img {
    height: 260px;
  }

  .hero-home__overlay {
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    gap: 8px;
  }

  .hero-home h1 {
    font-size: 28px;
  }

  .hero-home__lead {
    font-size: 13px;
    line-height: 1.4;
  }

  .payment-strip__inner,
  .topbar__inner--meta {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar__socials,
  .topbar__languages,
  .topbar__markets,
  .footer__legal,
  .payment-strip__list {
    width: 100%;
  }

  .hero-home__visual,
  .hero-home__visual img {
    min-height: 320px;
    border-radius: 20px;
  }

  .hero-home__overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .blog-grid,
  .editorial-columns__grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .editorial-article {
    padding: 24px;
  }

  .catalog-card__ratingRow {
    align-items: flex-start;
  }
}

.section--catalogue {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border-top: 1px solid var(--kion-gold);
  padding-top: 48px;
  padding-bottom: 64px;
}

.btn--light:hover {
  border-color: var(--kion-gold);
  box-shadow: 0 7px 0 var(--line-strong), 0 15px 25px rgba(247, 195, 36, 0.12);
}
