/* ======================================== */
/* Базовые Стили и Сброс          */
/* ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fdfdfd; 
  line-height: 1.65; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}
.container { width: 100%; max-width: 1240px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
main { flex-grow: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bobcat-red); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #c0181f; text-decoration: none; }
:root {
  --bobcat-red: #E41E25;
  --bobcat-black: #222222;
  --bobcat-white: #FFFFFF;
  --bobcat-grey-light: #f8f9fa; 
  --bobcat-grey-medium: #e9ecef;
  --bobcat-grey-dark: #6c757d;
  --text-color: #343a40;
  --link-color: var(--bobcat-red);
  --primary-font: 'Roboto', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}
body { color: var(--text-color); font-family: var(--primary-font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); font-weight: 600; line-height: 1.3; margin-bottom: 0.75em; color: var(--bobcat-black); }
h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.3em; }
/* ======================================== */
/* Стили для Шапки Сайта          */
/* ======================================== */
.site-header {
  background-color: var(--bobcat-white);
  border-bottom: 1px solid var(--bobcat-grey-medium);
  padding: 15px 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.07);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { max-height: 50px; width: auto; display: block; }
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; }
.main-nav li { margin-left: 30px; }
.main-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.05em;
  transition: color 0.2s ease, border-color 0.2s ease;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--bobcat-red); border-bottom-color: var(--bobcat-red); }
.header-contacts .phone-link { font-weight: 500; font-size: 1.1em; text-decoration: none; color: var(--text-color); margin-right: 20px; white-space: nowrap; transition: color 0.2s ease; }
.header-contacts .phone-link:hover { color: var(--bobcat-red); }
.mobile-menu-button { display: none; background: none; border: none; font-size: 2em; cursor: pointer; color: var(--text-color); line-height: 1; }
/* ======================================== */
/* Стили для Кнопок             */
/* ======================================== */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  font-family: var(--heading-font);
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.cta-button:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.cta-button.primary-button { background-color: var(--bobcat-red); color: var(--bobcat-white); border: 2px solid var(--bobcat-red); }
.cta-button.primary-button:hover { background-color: #c0181f; border-color: #c0181f; color: var(--bobcat-white); }
.cta-button.secondary-button { background-color: var(--bobcat-white); color: var(--bobcat-red); border: 2px solid var(--bobcat-red); }
.cta-button.secondary-button:hover { background-color: rgba(228, 30, 37, 0.05); color: #c0181f; border-color: #c0181f; }
.cta-button.tertiary-button { background-color: var(--bobcat-grey-medium); color: var(--text-color); border: 2px solid var(--bobcat-grey-medium); }
.cta-button.tertiary-button:hover { background-color: #d8dde2; border-color: #d8dde2; color: var(--text-color); }
/* ======================================== */
/* Стили для Главной Страницы (Hero Section) */
/* ======================================== */
.hero-section {
  position: relative;
  background-color: #333; 
  padding: 100px 0; 
  text-align: center;
  color: var(--bobcat-white);
  overflow: hidden;
}
.hero-section::after { /* Фон */
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-background.webp'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0; 
}
.hero-section::before { /* Затемнение */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55); 
  z-index: 1; 
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px; 
  margin-left: auto;
  margin-right: auto;
}
.hero-content h1 {
  font-size: 3.2em; 
  font-weight: 700;
  margin-bottom: 20px; 
  line-height: 1.25;
  color: var(--bobcat-white);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.75); 
}
/* ОБНОВЛЕННЫЕ СТИЛИ для нового блока с акцентами на главной */
.hero-promo-accent {
    background-color: var(--bobcat-grey-light); 
    color: var(--bobcat-black); 
    border-left: 5px solid var(--bobcat-red); 
    padding: 20px 25px;
    margin: 30px auto 40px auto; 
    border-radius: 8px;
    max-width: 650px; 
    text-align: left; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); 
}
.hero-promo-accent .promo-line {
    font-size: 1.25em; 
    color: var(--text-color); 
    margin-bottom: 14px; 
    line-height: 1.65; 
    font-weight: 500; 
    display: flex; 
    align-items: center;
}
.hero-promo-accent .promo-line strong {
    font-weight: 700; 
}
.hero-promo-accent .promo-line:last-child { margin-bottom: 0; }
.hero-promo-accent .promo-emoji {
    font-size: 1.5em; 
    margin-right: 15px; 
    line-height: 1; 
}
.promo-gift-accent { 
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bobcat-red); 
}
/* Стили для кнопок в Hero на главной */
.hero-buttons {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
}
.hero-main-cta.cta-button.primary-button { 
   background-color: var(--bobcat-red); 
   border-color: var(--bobcat-red);
   color: var(--bobcat-white);
   font-size: 1.25em; 
   padding: 15px 40px; 
   font-weight: 700; 
   width: auto; 
   max-width: 420px; 
   display: inline-block; 
}
.hero-main-cta.cta-button.primary-button:hover {
    background-color: #c0181f; 
    border-color: #c0181f;
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.hero-secondary-buttons {
    display: flex;
    gap: 15px; 
    justify-content: center;
    flex-wrap: wrap; 
}
.hero-secondary-buttons .cta-button.tertiary-button { 
    background-color: var(--bobcat-grey-medium); 
    color: var(--text-color);
    border: 2px solid var(--bobcat-grey-medium);
    font-size: 0.95em; 
    padding: 10px 20px;
}
.hero-secondary-buttons .cta-button.tertiary-button:hover {
    background-color: #d8dde2; 
    border-color: #d8dde2;
}
/* --- Общие стили для Секций (остальные на главной) --- */
.features-section, .popular-models-section, .quiz-section, .cta-section-extra { padding: 80px 0; }
.features-section { background-color: var(--bobcat-white); }
.section-title { text-align: center; font-size: 2.5em; margin-bottom: 50px; font-weight: 700; }
/* --- Секция Преимущества --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; text-align: center; }
.feature-item { padding: 30px 25px; background-color: #fff; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-item:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.feature-item .feature-icon {
  font-size: 3.2em; 
  color: var(--bobcat-white); 
  background-color: var(--bobcat-red); 
  width: 80px;    
  height: 80px;
  line-height: 80px; 
  border-radius: 50%; 
  margin-bottom: 25px; 
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  text-align: center;
  transition: background-color 0.2s ease; 
}
.feature-item h3 { font-size: 1.4em; margin-bottom: 15px; font-weight: 600; }
.feature-item p { color: var(--bobcat-grey-dark); }
/* --- Секция Популярные Модели --- */
.models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 35px; }
.model-card { border: 1px solid var(--bobcat-grey-medium); border-radius: 8px; background-color: var(--bobcat-white); transition: box-shadow 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: relative; }
.model-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: var(--bobcat-grey-dark); }
.model-card picture, .model-card img { height: 220px; display: block; }
.model-card img { width: 100%; height: 100%; object-fit: contain; margin-bottom: 0; background-color: #fdfdfd; padding: 10px; }
.model-card-content { padding: 20px 25px 25px 25px; display: flex; flex-direction: column; flex-grow: 1; }
.model-card h3 { font-size: 1.5em; margin-bottom: 10px; font-weight: 600; }
ul.model-specs-short { font-size: 0.95em; color: var(--bobcat-grey-dark); margin-bottom: 15px; flex-grow: 1; list-style: none; padding: 0; text-align: left; }
ul.model-specs-short li { margin-bottom: 5px; padding-left: 15px; position: relative; }
ul.model-specs-short li::before { content: '•'; color: var(--bobcat-red); position: absolute; left: 0; top: 0; }
.model-price { font-size: 1.4em; font-weight: 700; color: var(--bobcat-red); margin-bottom: 20px; }
.model-card[data-badge]::before {
    content: attr(data-badge); 
    position: absolute;
    top: 18px; 
    left: -40px; 
    width: 160px; 
    padding: 4px 0; 
    background-color: var(--bobcat-red);
    color: var(--bobcat-white);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
    transform: rotate(-45deg);
    transform-origin: center; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 3; 
    display: block;
}
.catalog-link-section { text-align: center; margin-top: 50px; }
/* Стили для блока призыва к квизу на странице каталога */
.quiz-cta-block {
    background-color: var(--bobcat-grey-light);
    padding: 40px 30px;
    margin-top: 60px; 
    margin-bottom: 60px; 
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--bobcat-grey-medium);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.quiz-cta-block h2 {
    font-size: 2em; 
    color: var(--bobcat-black);
    margin-bottom: 15px;
}
.quiz-cta-block p {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.quiz-cta-block .cta-button {
    font-size: 1.1em;
    padding: 12px 35px;
}
/* --- Секция Квиз (на главной) --- */
.quiz-section { background-color: var(--bobcat-grey-light); text-align: center; border-top: 1px solid var(--bobcat-grey-medium); border-bottom: 1px solid var(--bobcat-grey-medium); }
#quiz-section { scroll-margin-top: 90px; }
.quiz-section p { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 30px; color: var(--bobcat-grey-dark); }
[data-marquiz-id] { margin-left: auto; margin-right: auto; max-width: 800px; }
/* --- Дополнительный блок CTA --- */
.cta-section-extra { background-color: var(--bobcat-red); color: var(--bobcat-white); text-align: center; padding: 60px 0; }
.cta-section-extra h2 { color: var(--bobcat-white); font-size: 2em; margin-bottom: 15px; }
.cta-section-extra p { max-width: 650px; margin: 0 auto 30px auto; opacity: 0.9; }
.cta-section-extra .cta-button { background-color: var(--bobcat-white); color: var(--bobcat-red); border-color: var(--bobcat-white); }
.cta-section-extra .cta-button:hover { background-color: var(--bobcat-grey-light); border-color: var(--bobcat-grey-light); color: var(--bobcat-red); }
/* ======================================== */
/* Стили для Подвала Сайта         */
/* ======================================== */
.site-footer { background-color: #212529; color: #adb5bd; padding-top: 50px; padding-bottom: 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-column h3 { font-size: 1.3em; margin-bottom: 20px; color: var(--bobcat-white); font-weight: 600; }
.footer-column p, .footer-column li { margin-bottom: 10px; font-size: 0.95em; }
.footer-links ul { list-style: none; padding: 0; }
.footer-column a { color: #adb5bd; text-decoration: none; transition: color 0.2s ease; }
.footer-column a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid #495057; padding-top: 25px; text-align: center; font-size: 0.9em; }
.footer-bottom p { margin-bottom: 5px; }
.footer-bottom a { color: #adb5bd; text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }
/* ======================================== */
/* Стили для Внутренних Страниц       */
/* ======================================== */
.page-title-section { padding: 40px 0; background-color: var(--bobcat-grey-light); border-bottom: 1px solid var(--bobcat-grey-medium); margin-bottom: 50px; }
.page-title-section .container { text-align: center; }
.page-title-section h1 { font-size: 2.8em; margin-bottom: 8px; font-weight: 700; }
.page-subtitle { font-size: 1.2em; color: var(--bobcat-grey-dark); margin-bottom: 15px; }
.breadcrumbs { font-size: 0.9em; color: #888; }
.breadcrumbs a { color: #555; text-decoration: none; }
.breadcrumbs a:hover { color: var(--bobcat-red); text-decoration: underline; }
.breadcrumbs span { color: #888; }
.breadcrumbs span::before { content: "/"; margin: 0 8px; color: #aaa; }
/* --- Страница Лизинга - Обновления --- */
.leasing-hero-section .page-title-section h1 { 
    font-size: 2.6em; 
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--bobcat-black); 
}
.leasing-page-subtitle { 
    font-size: 1.25em;
    color: var(--text-color);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    line-height: 1.5;
}
.leasing-page-subtitle strong {
    color: var(--bobcat-red);
}
.leasing-promo-accent { 
    background-color: rgba(228, 30, 37, 0.05); 
    color: var(--text-color); 
    border-left: 5px solid var(--bobcat-red); 
    padding: 20px 25px;
    margin: 30px auto 20px auto; 
    border-radius: 8px;
    max-width: 700px; 
    text-align: left; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.leasing-promo-accent .promo-line {
    font-size: 1.15em; 
    color: var(--text-color); 
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 500; 
    display: flex; 
    align-items: center;
}
.leasing-promo-accent .promo-line strong {
    font-weight: 700;
}
.leasing-promo-accent .promo-line:last-child { margin-bottom: 0; }
.leasing-promo-accent .promo-emoji {
    font-size: 1.3em; 
    margin-right: 12px;
    line-height: 1; 
}
.leasing-promo-accent .promo-line-small {
    font-size: 0.85em;
    color: var(--bobcat-grey-dark);
    margin-top: 10px;
    text-align: center;
}
.leasing-main-cta-container {
    text-align: center;
    margin-top: 25px; 
}
.leasing-main-cta-container .hero-main-cta { 
   font-size: 1.25em; 
   padding: 15px 40px; 
}
/* Стили для FOMO-блока на странице лизинга */
.leasing-fomo-statement {
    text-align: center;
    margin: 20px auto 40px auto; 
    padding: 10px 15px; 
    max-width: 650px;
    background-color: transparent; 
    border: none; 
    border-radius: 6px;
}
.leasing-fomo-statement p {
    font-size: 1.1em; 
    font-weight: 500; 
    color: var(--bobcat-grey-dark); 
    line-height: 1.5;
    margin: 0;
}
.leasing-fomo-statement .fomo-emoji {
    font-size: 1.2em; 
    margin-right: 8px;
    vertical-align: middle; 
}
.leasing-fomo-statement strong {
    color: var(--text-color); 
    font-weight: 600; 
}
.leasing-info-section { padding-top: 0; padding-bottom: 60px; }
.leasing-content h2 { font-size: 1.8em; margin-top: 40px; margin-bottom: 20px; font-weight: 600; border-bottom: 2px solid var(--bobcat-red); padding-bottom: 10px; display: inline-block; }
.leasing-content h2:first-child { margin-top: 0; }
.leasing-content ul, .leasing-content ol { margin-bottom: 25px; padding-left: 25px; }
.leasing-content li { margin-bottom: 12px; }
.leasing-content ol { list-style: decimal; }
.leasing-content ul { list-style: none; }
.leasing-content ul li { padding-left: 25px; position: relative; }
.leasing-content ul li::before { content: '✓'; font-weight: bold; color: var(--bobcat-red); position: absolute; left: 0; top: 1px; }
.partner-logos.leasing-partners { margin-top: 30px; padding: 30px 0; border-top: 1px solid var(--bobcat-grey-medium); text-align: center; }
.partner-logos.leasing-partners img { display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto; border: 1px solid #f0f0f0; padding: 10px; background-color: #fdfdfd; border-radius: 5px; }
.quiz-integration-section { margin-top: 60px; padding: 50px 0; border-top: 1px solid var(--bobcat-grey-medium); text-align: center; background-color: var(--bobcat-grey-light); }
.quiz-integration-section .section-title { margin-bottom: 20px; }
.quiz-integration-section p { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 30px; color: var(--bobcat-grey-dark); }
.leasing-content .cta-button.secondary-button { margin-top: 20px; margin-bottom: 30px; }
/* Стили для блока отзыва на странице лизинга */
.client-review-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--bobcat-grey-medium);
}
.client-review-section h3 {
    font-size: 1.6em;
    color: var(--bobcat-black);
    margin-bottom: 20px;
    text-align: center;
}
.client-review {
    background-color: var(--bobcat-grey-light);
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid var(--bobcat-grey-medium);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.client-review p:first-child {
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.client-review p:first-child::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 2em;
    color: var(--bobcat-red);
    position: absolute;
    left: 0;
    top: -2px;
}
.client-review p:last-child {
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
    font-size: 0.95em;
}
/* --- Страница О Компании --- */
.about-content-section { padding-top: 0; padding-bottom: 60px; }
.about-text h2, .about-text h3 { margin-top: 40px; margin-bottom: 20px; font-weight: 600; }
.about-text h2 { font-size: 2em; border-bottom: 2px solid var(--bobcat-red); padding-bottom: 10px; display: inline-block; }
.about-text h3 { font-size: 1.6em; }
.about-text ul { list-style: none; padding-left: 0; margin-bottom: 25px; }
.about-text ul li { padding-left: 25px; position: relative; margin-bottom: 10px; }
.about-text ul li::before { content: '✓'; font-weight: bold; color: var(--bobcat-red); position: absolute; left: 0; top: 1px; }
.company-details { margin-top: 40px; padding: 25px; border-top: 1px solid var(--bobcat-grey-medium); font-size: 0.95em; color: var(--text-color); background-color: var(--bobcat-grey-light); border-radius: 8px; }
.company-details p { margin-bottom: 8px;}
.company-details strong { font-weight: 600; color: var(--bobcat-black); }
.cta-block-bottom { margin-top: 50px; text-align: center; padding: 40px; background-color: var(--bobcat-grey-light); border-radius: 8px; }
.cta-block-bottom p { font-size: 1.3em; font-weight: 500; margin-bottom: 20px; }
/* --- Страница Контактов --- */
.contact-info-section { padding-top: 0; padding-bottom: 60px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 50px; }
.contact-details h2 { font-size: 2em; margin-bottom: 25px; font-weight: 600; }
.contact-item { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px dashed var(--bobcat-grey-medium); }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item strong { display: block; margin-bottom: 5px; font-weight: 600; color: var(--bobcat-black); font-size: 1.1em; }
.contact-item p { margin: 0; line-height: 1.6; color: var(--text-color); }
.contact-item a { color: var(--link-color); }
.contact-item a:hover { color: #c0181f; }
.contact-form-container h2 { font-size: 2em; margin-bottom: 15px; font-weight: 600; }
.contact-form-container p { margin-bottom: 25px; color: var(--bobcat-grey-dark); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.95em; }
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form select, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--bobcat-grey-medium); border-radius: 6px; font-size: 1em; line-height: 1.5; transition: border-color 0.3s ease, box-shadow 0.3s ease; background-color: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--bobcat-red); outline: none; box-shadow: 0 0 0 3px rgba(228, 30, 37, 0.15); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button[type="submit"] { width: 100%; padding: 15px; font-size: 1.1em; }
.privacy-notice { font-size: 0.9em; color: var(--bobcat-grey-dark); margin-top: 15px; text-align: center; line-height: 1.4; }
.privacy-notice a { color: var(--bobcat-grey-dark); text-decoration: underline; }
.map-section { padding: 60px 0; margin-top: 40px; border-top: 1px solid var(--bobcat-grey-medium); background-color: var(--bobcat-grey-light); }
.map-section h2 { text-align: center; font-size: 2.2em; margin-bottom: 35px; font-weight: 700; }
.map-section iframe { display: block; width: 100%; height: 450px; border: 1px solid var(--bobcat-grey-medium); border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
/* --- Страница Продукта (S530 и др.) --- */
.product-page-title { text-align: left; background-color: var(--bobcat-white); border-bottom: none; margin-bottom: 30px; padding: 20px 0 0 0; }
.product-page-title .container { text-align: left; }
.product-page-title h1 { font-size: 2.6em; margin-bottom: 10px; }
.product-main-section { padding-top: 0; padding-bottom: 60px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 50px; }
.product-gallery .main-image a, .product-gallery .main-image img { width: 100%; height: auto; border: 1px solid var(--bobcat-grey-medium); border-radius: 8px; margin-bottom: 15px; aspect-ratio: 4 / 3; object-fit: contain; background-color: var(--bobcat-white); display: block; }
.thumbnail-images { display: flex; flex-wrap: wrap; gap: 12px; }
.thumbnail-images a { width: 100px; height: 75px; display: block; cursor: pointer; border: 2px solid var(--bobcat-grey-medium); border-radius: 5px; transition: border-color 0.2s ease, transform 0.2s ease; overflow: hidden; }
.thumbnail-images img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumbnail-images a:hover, .thumbnail-images a:focus { border-color: var(--bobcat-red); transform: scale(1.05); }
/* Стили для нового информационного блока V2 на странице товара (S530) */
.product-info .product-hero-tagline { 
    font-size: 1.3em; 
    font-weight: 600; 
    color: var(--bobcat-black);
    margin-bottom: 15px; 
    line-height: 1.45; 
    text-align: left; 
}
.product-info .product-hero-features-v2 { 
    list-style: none;
    padding: 0;
    margin: 25px 0; 
}
.product-info .product-hero-features-v2 li {
    font-size: 1.15em; 
    color: var(--text-color);
    margin-bottom: 12px; 
    display: flex;
    align-items: flex-start; 
    font-weight: 500;
    line-height: 1.5;
}
.product-info .product-hero-features-v2 li:last-child { margin-bottom: 0; }
.product-info .product-hero-features-v2 .hero-feature-icon { 
    font-size: 1.4em; 
    margin-right: 10px; 
    color: var(--bobcat-red); 
    min-width: 28px; 
    text-align: center;
    line-height: 1.3; 
}
.product-info .product-hero-features-v2 li strong { 
    font-weight: 700;
    color: var(--bobcat-black);
    margin-left: 0.3em; 
}
/* Стили для блока "Кому подходит" */
.product-usage-block {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px dashed var(--bobcat-grey-medium);
    border-bottom: 1px dashed var(--bobcat-grey-medium);
}
.product-usage-block h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--bobcat-black);
    font-weight: 600;
}
.product-usage-list {
    list-style: none;
    padding: 0;
}
.product-usage-list li {
    font-size: 1.05em;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}
.product-usage-list li:last-child {
    margin-bottom: 0;
}
.product-usage-list .usage-icon {
    font-size: 1.3em;
    margin-right: 10px;
    color: var(--bobcat-red);
    min-width: 25px;
    text-align: center;
    line-height: 1.4;
}
.product-info .product-hero-price-v2 { 
    font-size: 1.7em; 
    font-weight: 700;
    color: var(--bobcat-red);
    margin: 25px 0 5px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product-info .product-hero-price-v2 .hero-price-icon { font-size: 1.3em; margin-right: 8px; }
.product-info .product-hero-price-v2 strong { margin-left: 0.2em; margin-right: 0.2em; }
.product-info .product-hero-price-v2 .hero-price-accent { 
    font-weight: 700; 
    color: #28a745; 
    font-size: 0.8em; 
    margin-left: 0.5em; 
    background-color: rgba(40, 167, 69, 0.1); 
    padding: 4px 10px; 
    border-radius: 4px;
    white-space: nowrap; 
}
/* Стили для блока информации о наличии */
.product-stock-info {
    margin: 10px 0 20px 0; 
    padding: 12px 15px; 
    background-color: rgba(255, 235, 59, 0.15); 
    border-left: 4px solid #FFC107; 
    border-radius: 4px;
}
.product-stock-info .stock-line {
    font-size: 1.1em; 
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.product-stock-info .stock-line:last-child { margin-bottom: 0; }
.product-stock-info .stock-line strong {
    color: var(--bobcat-red); 
    margin-left: 0.3em;
    margin-right: 0.3em;
}
.product-stock-info .stock-line .fas, 
.product-stock-info .stock-line .promo-emoji { 
    margin-right: 8px;
    color: var(--bobcat-red); 
    font-size: 1.2em;
}
.product-info .product-hero-cta-text-v2 { 
    font-size: 1.25em; 
    font-weight: 600;
    color: var(--bobcat-black);
    margin-bottom: 20px; 
    text-align: left; 
    line-height: 1.5;
    display: flex;
    align-items: center;
}
.product-info .product-hero-cta-text-v2 .hero-cta-icon {
    font-size: 1.5em; 
    margin-right: 10px;
    color: var(--bobcat-red);
    line-height: 1;
}
/* Кнопки CTA на странице товара */
.product-info .product-cta-buttons-main {
    margin-top: 0; 
    margin-bottom: 35px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: flex-start; 
}
.product-info .product-cta-buttons-main .cta-button {
    flex-grow: 0; 
    min-width: auto; 
    padding: 12px 25px; 
    position: relative; 
    overflow: hidden; 
}
.product-info .product-cta-buttons-main .cta-button.primary-button { font-size: 1.05em; }
/* Анимация пульсации для основной кнопки */
.cta-button.cta-pulse {
    animation: pulse-animation 2s infinite;
    box-shadow: 0 0 0 0 rgba(228, 30, 37, 0.7); 
}
.cta-button.cta-pulse:hover {
    animation-play-state: paused; 
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}
@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 30, 37, 0); }
    70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(228, 30, 37, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 30, 37, 0); }
}
/* Блок с дополнительной информацией (старые характеристики и цена) */
.product-additional-info { margin-top: 30px; padding-top: 25px; border-top: 2px solid var(--bobcat-grey-light); }
.product-additional-info h3 { font-size: 1.5em; margin-top: 0; margin-bottom: 20px; border-bottom: 1px solid var(--bobcat-grey-medium); padding-bottom: 10px; font-weight: 600; }
.product-additional-info .product-key-specs { list-style: none; padding: 0; margin-bottom: 30px; } 
.product-additional-info .product-key-specs li { margin-bottom: 12px; font-size: 1em; padding-left: 25px; position: relative; }
.product-additional-info .product-key-specs li::before { content: '✓'; font-weight: bold; color: var(--bobcat-red); position: absolute; left: 0; top: 1px; font-size: 1.1em; }
.product-additional-info .product-key-specs strong { font-weight: 600; color: var(--bobcat-black); }
.product-additional-info .product-availability { margin-top: 25px; font-size: 1em; padding-top: 20px; border-top: 1px dashed var(--bobcat-grey-medium); }
.product-additional-info .stock-status { font-weight: bold; color: #198754; }
#quote-form-placeholder { margin-top: 25px; border-top: 1px solid var(--bobcat-grey-medium); padding-top: 25px; }
#quote-form-placeholder p { margin-bottom: 15px; }
.product-details-section { padding: 60px 0; background-color: var(--bobcat-white); border-top: 1px solid var(--bobcat-grey-medium); margin-top: 0; }
.product-detail-block { margin-bottom: 60px; }
.product-detail-block h3 { font-size: 2.1em; margin-bottom: 30px; border-bottom: 2px solid var(--bobcat-red); padding-bottom: 12px; display: inline-block; font-weight: 700; }
.product-detail-block h4 { font-size: 1.5em; font-weight: 600; margin-top: 30px; margin-bottom: 15px; }
.product-detail-block p { margin-bottom: 18px; line-height: 1.75; }
.product-detail-block ul { list-style: disc; padding-left: 25px; margin-bottom: 18px; }
.product-detail-block li { margin-bottom: 10px; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 25px; font-size: 1em; }
.specs-table th, .specs-table td { border: 1px solid #dee2e6; padding: 12px 15px; text-align: left; vertical-align: top; }
.specs-table tr:nth-child(even) { background-color: var(--bobcat-grey-light); }
.specs-table td:first-child { font-weight: 500; width: 45%; color: var(--text-color); }
.specs-table td:last-child { font-weight: 500; }
ul.attachments-list { list-style: none; padding-left: 0; columns: 2; -webkit-columns: 2; -moz-columns: 2; gap: 15px; }
ul.attachments-list li { margin-bottom: 12px; padding-left: 28px; position: relative; }
ul.attachments-list li::before { content: '⚙️'; color: var(--bobcat-red); position: absolute; left: 0; top: 1px; font-size: 1.1em; }
/* Стили для блока повторного CTA */
.bottom-cta-repeat {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bobcat-grey-light);
    margin: 40px 0; 
    border-radius: 8px;
}
.bottom-cta-repeat p {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--bobcat-black);
    margin-bottom: 20px;
}
.bottom-cta-repeat .cta-button {
    font-size: 1.1em;
}
/* Стили для секции Отзывов */
.testimonial-section {
    padding: 60px 0;
    background-color: var(--bobcat-white); 
}
.testimonial-section h2, 
.testimonial-section h3 { 
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--bobcat-black);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--bobcat-grey-light); 
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--bobcat-grey-medium);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.testimonial-card p:first-child {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 30px; 
}
.testimonial-card p:first-child::before {
    content: '“';
    font-family: Georgia, serif; 
    font-size: 2.5em;
    color: var(--bobcat-red);
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}
.testimonial-card p:last-child { 
    font-weight: 600;
    color: var(--bobcat-black);
    text-align: right;
    margin-bottom: 0;
}
/* Стили для секции FAQ (и .seo-faq-section) */
.faq-section, .seo-faq-section { 
    padding: 60px 0;
    background-color: var(--bobcat-grey-light); 
}
.faq-section h2, .faq-section h3,
.seo-faq-section h2, .seo-faq-section h3 { 
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--bobcat-black);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item { 
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bobcat-grey-medium);
    padding-bottom: 20px;
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-list dt { 
    font-size: 1.2em;
    font-weight: 600;
    color: var(--bobcat-black);
    margin-bottom: 10px;
    cursor: default; 
    position: relative;
}
.faq-list dd { 
    font-size: 1em;
    color: var(--text-color);
    line-height: 1.7;
    padding-left: 0; 
    margin-left: 0; 
}
.related-models-section { padding: 70px 0; background-color: var(--bobcat-grey-light); border-top: 1px solid var(--bobcat-grey-medium); }
.related-models-section .section-title { margin-bottom: 50px; }
/* ======================================== */
/* Стили для Модальных Окон           */
/* ======================================== */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.65); z-index: 1040; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; padding: 35px 45px; border-radius: 8px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); z-index: 1050; width: 90%; max-width: 550px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; transform: translate(-50%, -55%) scale(0.95); max-height: 90vh; overflow-y: auto; }
.modal.is-visible, .modal-overlay.is-visible { opacity: 1; visibility: visible; }
.modal.is-visible { transform: translate(-50%, -50%) scale(1); }
.modal-content { position: relative; }
.modal-close-btn { position: absolute; top: -15px; right: -10px; background: none; border: none; font-size: 2.8em; line-height: 1; color: #aaa; cursor: pointer; padding: 0; transition: color 0.2s ease; }
.modal-close-btn:hover { color: #333; }
.modal-content h3 { margin-top: 0; margin-bottom: 20px; font-size: 1.8em; color: var(--bobcat-black); text-align: center; font-weight: 600; }
.modal-content p { margin-bottom: 30px; color: var(--text-color); text-align: center; line-height: 1.6; }
.modal-form .form-group { margin-bottom: 18px; }
.modal-form label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.95em; }
.modal-form input[type="text"], .modal-form input[type="tel"], .modal-form input[type="email"] { width: 100%; padding: 12px 15px; border: 1px solid var(--bobcat-grey-medium); border-radius: 6px; font-size: 1em; }
.modal-form input:focus { border-color: var(--bobcat-red); outline: none; box-shadow: 0 0 0 3px rgba(228, 30, 37, 0.15); }
.modal-form .form-group-checkbox { 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.modal-form .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal; 
    font-size: 0.95em;
    color: var(--text-color);
}
.modal-form .form-group-checkbox input[type="checkbox"] {
    width: auto; 
    margin-right: 10px;
    transform: scale(1.2); 
}
.modal-form .form-group-checkbox span {
    line-height: 1.4;
}
.form-expert-note { 
    font-size: 0.9em !important; 
    color: var(--bobcat-grey-dark) !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important; 
    text-align: center;
    line-height: 1.4 !important;
}
.modal-form button[type="submit"] { width: 100%; padding: 14px; margin-top: 15px; font-size: 1.1em; }
.privacy-notice-modal { font-size: 0.85em !important; color: var(--bobcat-grey-dark) !important; margin-top: 18px; margin-bottom: 0 !important; text-align: center; line-height: 1.4 !important; white-space: normal; overflow: visible; text-overflow: clip; }
.privacy-notice-modal a { color: var(--bobcat-grey-dark); text-decoration: underline; }
/* ======================================== */
/* Стили для мобильной плашки CTA (Lollypop) */
/* ======================================== */
.mobile-sticky-cta, .sticky-cta { 
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bobcat-white);
    padding: 12px 15px;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.12);
    z-index: 990; 
    border-top: 1px solid var(--bobcat-grey-medium);
}
.mobile-sticky-cta-container, .sticky-cta .container { 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 10px; 
}
.mobile-sticky-cta .cta-button, .sticky-cta .cta-button { 
    flex-grow: 1; 
    margin: 0;
    padding: 10px 12px; 
    font-size: 0.9em; 
    white-space: nowrap; 
}
.mobile-sticky-cta .cta-button.secondary-button.mobile-cta-phone,
.sticky-cta .cta-button.secondary-button.mobile-cta-phone { 
    flex-grow: 0; 
    min-width: auto; 
    padding: 10px 15px;
    background-color: var(--bobcat-grey-light); 
    color: var(--bobcat-black);
    border-color: var(--bobcat-grey-medium);
}
.mobile-sticky-cta .cta-button.secondary-button.mobile-cta-phone:hover,
.sticky-cta .cta-button.secondary-button.mobile-cta-phone:hover { background-color: var(--bobcat-grey-medium); }
.mobile-sticky-cta .cta-button.secondary-button.mobile-cta-phone i,
.sticky-cta .cta-button.secondary-button.mobile-cta-phone i { margin-right: 6px; }
.sticky-cta .cta-button { 
    width: 100%;
    font-size: 1.05em; 
}
/* ======================================== */
/* Стили для плавающей кнопки WhatsApp */
/* ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366; 
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px; 
    box-shadow: 2px 2px 8px rgba(0,0,0,0.25);
    z-index: 998; 
    display: flex; 
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
    animation: whatsapp-pulse 2s infinite; 
}
.whatsapp-float:hover {
    background-color: #1DAE52; 
    transform: scale(1.1); 
    animation-play-state: paused; 
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* ======================================== */
/* Адаптивность Общая           */
/* ======================================== */
@media (max-width: 992px) {
    /* Шапка */
    .header-container { justify-content: space-between; align-items: center; position: relative; }
    .logo { flex-grow: 0; flex-shrink: 1; }
    .logo img { max-height: 45px; }
    .main-nav { display: none; }
    .mobile-menu-button { display: block; order: 3; margin-left: 15px; }
    .header-contacts { display: none; }
    /* Мобильное меню */
    .main-nav.is-active { display: block; position: absolute; top: 100%; left: 0; right: 0; background-color: #343a40; padding: 15px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-top: 1px solid #495057; z-index: 999; }
    .main-nav ul { flex-direction: column; align-items: center; }
    .main-nav li { margin-left: 0; width: 100%; text-align: center; }
    .main-nav a { display: block; padding: 12px 15px; color: var(--bobcat-white); border-bottom: 1px solid #495057; font-size: 1.1em; }
    .main-nav li:last-child a { border-bottom: none; }
    .main-nav a.active, .main-nav a:hover { background-color: rgba(255, 255, 250, 0.1); color: var(--bobcat-white); border-bottom-color: #495057; }
    /* Общие */
    .hero-content h1 { font-size: 2.8em; } 
    .hero-promo-accent { max-width: 90%; } 
    .product-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { margin-bottom: 30px; }
    ul.attachments-list { columns: 1; -webkit-columns: 1; -moz-columns: 1; }
    h1 { font-size: 2.4em; } h2 { font-size: 1.9em; } h3 { font-size: 1.5em; }
    /* Адаптивность для S530 нового блока */
    .product-info .product-hero-tagline { text-align: center; } 
    .product-info .product-hero-features-v2 { margin: 20px auto; padding: 15px 0; max-width: 480px;  }
    .product-info .product-hero-price-v2 { justify-content: center; font-size: 1.4em; }
    .product-stock-info { text-align: center; margin-left: auto; margin-right: auto; max-width: 480px; }
    .product-stock-info .stock-line { justify-content: center; }
    .product-info .product-hero-cta-text-v2 { justify-content: center; text-align: center; }
    .product-info .product-cta-buttons-main { justify-content: center; }
    /* Адаптивность для страницы лизинга */
    .leasing-hero-section .page-title-section h1 { font-size: 2.2em; }
    .leasing-page-subtitle { font-size: 1.15em; }
    .leasing-promo-accent { max-width: 100%; }
    .leasing-fomo-statement p { font-size: 1.1em; }
}
@media (max-width: 768px) {
    body { font-size: 15px; }
    .container { padding-left: 15px; padding-right: 15px; }
    .features-grid, .models-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1, .page-title-section h1 { font-size: 2.2em; line-height: 1.3; } 
    .section-title, .product-detail-block h3, 
    .testimonial-section h2, .testimonial-section h3, 
    .faq-section h2, .faq-section h3, 
    .seo-faq-section h2, .seo-faq-section h3 { 
        font-size: 1.9em; margin-bottom: 35px; 
    }
    /* Кнопки на главной Hero */
    .hero-promo-accent .promo-line { font-size: 1.15em; line-height: 1.75; }
    .hero-promo-accent .promo-emoji { font-size: 1.3em; }
    .hero-main-cta.cta-button.primary-button { font-size: 1.15em; padding: 14px 30px; width: 90%; max-width: 350px;}
    .hero-secondary-buttons { flex-direction: column; width: 100%; align-items: center; }
    .hero-secondary-buttons .cta-button.tertiary-button { width: 85%; max-width: 300px; text-align: center; }
    .product-cta-buttons .cta-button { margin-right: 0; width: 100%; } 
    .features-section, .popular-models-section, .quiz-section, .catalog-section, .leasing-info-section, .about-content-section, .contact-info-section, .product-main-section, .product-details-section, .related-models-section, .map-section, .cta-section-extra,
    .testimonial-section, .faq-section, .seo-faq-section { 
        padding: 50px 0; 
    }
    .site-footer { padding-top: 40px;}
    .specs-table { display: block; overflow-x: auto; white-space: nowrap;}
    .specs-table td:first-child { width: auto; }
    .thumbnail-images { justify-content: flex-start; }
    .thumbnail-images img { width: 80px; height: 60px;} 
    .modal { padding: 25px 20px; max-width: calc(100% - 30px); }
    .modal-content h3 { font-size: 1.5em; }
    .modal-close-btn { font-size: 2.2em; top: -5px; right: 0px;}
    ul.attachments-list { columns: 1; -webkit-columns: 1; -moz-columns: 1; }
    .model-card[data-badge]::before { top: 10px; left: -35px; width: 140px; font-size: 0.75em; padding: 3px 0; }
    /* Мобильная плашка CTA */
    .mobile-sticky-cta, .sticky-cta.mobile-only-sticky-cta { display: flex; justify-content: center; }
    .sticky-cta.mobile-only-sticky-cta .cta-button { flex-grow: 0; width: auto; max-width: 90%; }
    main { padding-bottom: 80px; } 
    .product-cta-buttons-main { margin-bottom: 20px; }
     .product-cta-buttons-main .cta-button { width: 100%; margin-bottom: 10px; }
     .product-cta-buttons-main .cta-button:last-child { margin-bottom: 0; }
     .product-cta-buttons-main { flex-direction: column; }
    /* Кнопка WhatsApp на мобильных */
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 24px; }
    /* Если используется мобильная плашка CTA, поднять кнопку WhatsApp выше */
    /* Например: .whatsapp-float { bottom: 100px; } */
    /* Адаптивность для S530 нового блока */
    .product-info .product-hero-tagline { font-size: 1.15em; }
    .product-info .product-hero-features-v2 li { font-size: 1em; align-items: center; }
    .product-info .product-hero-features-v2 .hero-feature-icon { font-size: 1.3em; }
    .product-info .product-hero-price-v2 { font-size: 1.3em; }
    .product-info .product-hero-price-v2 > * { margin-right: 0.3em; } 
    .product-info .product-hero-price-v2 > *:last-child { margin-right: 0; }
    .product-info .product-hero-price-v2 .hero-price-accent { font-size: 0.8em; margin-left: 0.3em; }
    .product-stock-info .stock-line { font-size: 1em; }
    .product-info .product-hero-cta-text-v2 { font-size: 1.05em; margin-bottom: 20px; }
    .product-info .product-hero-cta-text-v2 .hero-cta-icon { font-size: 1.3em; }
    .product-additional-info { margin-top: 25px; padding-top: 20px; }
    .product-additional-info h3 { font-size: 1.3em; }
    /* Адаптивность для новых блоков на S70 (и других страницах товаров) */
    .testimonial-grid { grid-template-columns: 1fr; }
    .faq-list dt { font-size: 1.1em; }
    .faq-list dd { font-size: 0.95em; }
    .bottom-cta-repeat { margin: 30px 0; padding: 30px 15px; }
    .bottom-cta-repeat p { font-size: 1.15em; }
    /* Адаптивность для страницы лизинга */
    .leasing-hero-section .page-title-section h1 { font-size: 1.9em; }
    .leasing-page-subtitle { font-size: 1.1em; }
    .leasing-promo-accent .promo-line { font-size: 1.05em; line-height: 1.6; }
    .leasing-main-cta-container .hero-main-cta { font-size: 1.1em; padding: 12px 30px; width: 100%; max-width: 320px; }
    .leasing-fomo-statement { margin: 20px auto 30px auto; padding: 12px 15px; }
    .leasing-fomo-statement p { font-size: 1.05em; }
    .client-review-section { margin-top: 40px; padding-top: 25px; }
    .client-review-section h3 { font-size: 1.5em; margin-bottom: 15px; }
    .client-review { padding: 20px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9em; } 
    .hero-promo-accent .promo-line { font-size: 1.05em; line-height: 1.7; } 
    .hero-main-cta.cta-button.primary-button { font-size: 1.05em; padding: 12px 25px; } 
    .leasing-hero-section .page-title-section h1 { font-size: 1.7em; }
    .leasing-page-subtitle { font-size: 1em; }
    .leasing-promo-accent .promo-line { font-size: 1em; }
    .leasing-main-cta-container .hero-main-cta { font-size: 1em; }
    .leasing-fomo-statement p { font-size: 1em; }
}
@media (min-width: 993px) {
    .main-nav { display: block !important; position: static; background-color: transparent; padding: 0; box-shadow: none; border-top: none; }
     .main-nav ul { flex-direction: row; }
     .main-nav li { margin-left: 30px; width: auto; text-align: center; }
     .main-nav a { display: inline; padding: 8px 0; color: var(--text-color); border-bottom: 3px solid transparent; font-size: 1.05em; }
     .main-nav a.active, .main-nav a:hover { background-color: transparent; color: var(--bobcat-red); border-bottom-color: var(--bobcat-red); }
     .main-nav li:last-child a { border-bottom: 3px solid transparent; } 
     .main-nav a.active:hover { border-bottom-color: var(--bobcat-red); }
}
/* Дополнительные стили для текстовой страницы Политики */
.privacy-content { padding: 40px 0 60px 0; background: #fff; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); margin-top: 40px; margin-bottom: 40px; }
.privacy-content h1 { text-align: center; margin-bottom: 30px; font-size: 2.4em; }
.privacy-content h2 { font-size: 1.8em; margin-top: 40px; margin-bottom: 15px; border-bottom: 1px solid var(--bobcat-grey-medium); padding-bottom: 8px; }
.privacy-content p, .privacy-content li { margin-bottom: 15px; line-height: 1.7; color: var(--text-color); }
.privacy-content ul { padding-left: 30px; list-style: disc; }
.privacy-content strong { font-weight: 600; color: var(--bobcat-black); }