/* ========================================
   IDEN — Common Styles
   Quartz-vinyl flooring, Kazan
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --oak: #2c1810;
  --oak-light: #3d2518;
  --warm: #c8956c;
  --warm-light: #e8c9a8;
  --cream: #faf6f1;
  --cream-dark: #f0e8dd;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --accent: #c0572e;
  --accent-hover: #a84820;
  --green: #2d7a4f;
  --green-light: #e8f5e9;
  --gold: #b8953e;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(44,24,16,0.08);
  --shadow-lg: 0 12px 48px rgba(44,24,16,0.12);
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--oak);
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 18px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--oak);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== TIMER BAR ===== */
.timer-bar {
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.timer-bar__text {
  opacity: 0.9;
}

.timer-bar__countdown {
  display: inline-flex;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

.timer-bar__unit {
  background: rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}

.timer-bar__sep {
  opacity: 0.5;
}

/* ===== STICKY HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44,24,16,0.06);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--oak);
  letter-spacing: 3px;
  text-decoration: none;
}

.logo span {
  color: var(--warm);
}

/* Header nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--accent);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Header phone */
.header-phone {
  font-weight: 700;
  font-size: 18px;
  color: var(--oak);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.header-phone:hover { color: var(--accent); }
.header-phone-icon { display: none; }

/* Header CTA */
.header-cta {
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.1s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.header-cta:hover {
  background: #246841;
  transform: translateY(-1px);
}

.header-cta svg {
  flex-shrink: 0;
}

/* Mobile nav burger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--oak);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  padding: 16px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .breadcrumbs__sep {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumbs .breadcrumbs__current {
  color: var(--text);
  font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(44,24,16,0.7), rgba(44,24,16,0.5)),
              url('/images/interior/main-hero.jpg') center/cover no-repeat;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--cream));
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--warm-light);
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 40px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

/* ===== CTA BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  min-height: 48px;
}

.btn:active { transform: scale(0.98); }

/* Primary (accent) */
.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

/* Secondary (outline) */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

/* WhatsApp green */
.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1fb855;
}

/* Small */
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 40px;
}

/* Large */
.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* ===== LEAD FORM ===== */
.lead-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--oak);
}

.lead-form .form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  outline: none;
  background: var(--white);
  color: var(--text);
}

.lead-form input:focus { border-color: var(--warm); }

.lead-form button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.lead-form button:hover { background: var(--accent-hover); }
.lead-form button:active { transform: scale(0.98); }

.lead-form .form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success h3 { color: var(--green); margin-bottom: 8px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

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

/* Advantage cards */
.adv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

/* Product / decor cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.decor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.decor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.decor-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.decor-info { padding: 16px; }
.decor-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; font-family: 'Manrope', sans-serif; }

.decor-info .decor-collection {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.decor-prices { margin-top: 8px; }
.decor-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.decor-price-discount {
  display: inline-block;
  background: #d32f2f;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}
.decor-price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.decor-price-sqm {
  font-size: 22px;
  font-weight: 800;
  color: #d32f2f;
  display: block;
  line-height: 1.3;
}
.decor-price-room { font-size: 13px; color: var(--text-light); display: block; margin-top: 4px; }

/* ===== STEPS / HOW TO ORDER ===== */
.steps-row { display: flex; gap: 0; align-items: stretch; }

.step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; font-family: 'Manrope', sans-serif; }
.step-card p { font-size: 14px; color: var(--text-light); }

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--warm);
  font-size: 28px;
  flex-shrink: 0;
}

/* ===== PROMO BANNER ===== */
.promo {
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  border-radius: 16px;
  padding: 40px;
  margin: 0 auto;
  max-width: 1200px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,149,108,0.2), transparent);
  border-radius: 50%;
}

.promo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 8px;
  position: relative;
  color: white !important;
}

.promo p { font-size: 16px; opacity: 0.85; position: relative; color: white !important; }

.promo-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
  position: relative;
}

.promo-cta:hover { background: var(--accent-hover); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px 16px 0 0; }
.modal-body { padding: 24px; }
.modal-body h2 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 4px; }

.modal-body .modal-collection {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.modal-spec { background: var(--cream); padding: 10px 14px; border-radius: 8px; font-size: 14px; }
.modal-spec strong { display: block; font-size: 12px; color: var(--text-light); margin-bottom: 2px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CALCULATOR ===== */
.calc-section { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: var(--shadow); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.calc-input-group { margin-bottom: 20px; }
.calc-input-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }

.calc-input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: 18px;
  outline: none;
}

.calc-input-group input:focus { border-color: var(--warm); }

.calc-result { text-align: center; }
.calc-result .calc-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
}

.calc-result .calc-detail { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.calc-result .calc-note { font-size: 13px; color: var(--text-light); margin-top: 16px; font-style: italic; }

.calc-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

.calc-cta:hover { background: var(--accent-hover); }

/* ===== QUIZ ===== */
.quiz-section {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

.quiz-progress { display: flex; gap: 8px; margin-bottom: 36px; }

.quiz-progress-step {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--cream-dark);
  transition: background 0.4s;
}

.quiz-progress-step.active { background: var(--accent); }
.quiz-progress-step.done { background: var(--green); }

.quiz-step {
  display: none;
  animation: quizFadeIn 0.4s ease;
}

.quiz-step.active { display: block; }

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--oak);
  margin-bottom: 24px;
  text-align: center;
}

.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.quiz-option {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 20px 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-weight: 600;
  font-size: 15px;
}

.quiz-option:hover { border-color: var(--warm); transform: translateY(-2px); }
.quiz-option.selected { border-color: var(--accent); background: rgba(192,87,46,0.08); transform: translateY(-2px); }
.quiz-option .quiz-option-icon { font-size: 32px; display: block; margin-bottom: 8px; }

.quiz-form { max-width: 360px; margin: 0 auto; }

.quiz-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 12px;
  outline: none;
}

.quiz-form input:focus { border-color: var(--warm); }

.quiz-form button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.quiz-form button:hover { background: var(--accent-hover); }
.quiz-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

.quiz-result { text-align: center; padding: 16px 0 8px; }

.quiz-result-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.quiz-result-card img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.quiz-result-name { font-weight: 700; font-size: 15px; }
.quiz-result-price { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ===== PRICE TABLE ===== */
.table-scroll-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

.table-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to left, rgba(250,246,241,0.9), transparent);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.table-scroll-wrap.scrolled-end::after { opacity: 0; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--cream-dark);
}

.price-table thead th { background: var(--oak); color: white; font-weight: 700; }
.price-table .row-highlight { background: var(--green-light); }
.price-table .row-highlight td { font-weight: 700; color: var(--green); }
.price-table .row-highlight td:first-child { color: var(--oak); }
.price-table tbody tr:not(.row-highlight):hover { background: var(--cream); }

/* Compare table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--cream-dark);
}

.compare-table thead th { background: var(--oak); color: white; font-weight: 700; }
.compare-table tbody tr:hover { background: var(--cream); }
.compare-table .winner { color: var(--green); font-weight: 700; }
.compare-table .loser { color: var(--text-light); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: white; flex-shrink: 0;
}

.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.6; margin-bottom: 16px; color: var(--text); }
.review-photo { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 14px; }
.review-author { font-weight: 700; font-size: 14px; }
.review-meta { font-size: 13px; color: var(--text-light); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-text p { margin-bottom: 16px; font-size: 16px; color: var(--text-light); }

.about-details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.about-detail:last-child { margin-bottom: 0; }
.about-detail-icon { font-size: 22px; flex-shrink: 0; }
.about-detail-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.about-detail-text span { font-size: 14px; color: var(--text-light); }

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s;
}

.about-gallery-item:hover img { transform: scale(1.05); }

.about-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,24,16,0.8));
  padding: 24px 12px 10px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.about-map {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-map iframe { width: 100%; height: 300px; border: none; }

/* ===== PAYMENT ===== */
.payment-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.payment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.payment-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 14px;
}

.payment-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.payment-card p { font-size: 13px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--warm);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 8px;
}

.cta-section p { font-size: 16px; opacity: 0.85; margin-bottom: 32px; }

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: inherit;
  font-size: 16px;
  flex: 1;
  min-width: 180px;
  outline: none;
}

.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: var(--warm); }

.cta-form button {
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-form button:hover { background: var(--accent-hover); }

/* ===== FOOTER ===== */
.footer {
  background: var(--oak);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--warm); }
.footer p { font-size: 14px; line-height: 1.6; }
.footer h4 { color: white; font-size: 14px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Manrope', sans-serif; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--warm); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

/* ===== FLOATING CONTACTS ===== */
.float-contacts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  font-size: 26px;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

.float-btn:hover { transform: scale(1.1); }
.float-tg { background: #2AABEE; color: white; }
.float-wa { background: #25D366; color: white; }
.float-phone { background: var(--accent); color: white; }

.float-fab-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
  position: relative;
  z-index: 2;
}

.float-fab-toggle.open { transform: rotate(45deg); }

/* ===== STICKY WHATSAPP BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 91;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.wa-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

/* Pulse animation */
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== TELEGRAM FLOAT BUTTON ===== */
.tg-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 91;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0088cc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,136,204,0.35);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.tg-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.tg-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,136,204,0.5);
}
.tg-float svg {
  width: 28px;
  height: 28px;
}

/* ===== EXIT-INTENT POPUP ===== */
.exit-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-overlay.active { display: flex; }

.exit-popup {
  background: var(--white);
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popupBounce 0.4s ease;
}

@keyframes popupBounce {
  0% { opacity: 0; transform: scale(0.9) translateY(-20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.2s;
}

.exit-popup-close:hover { background: var(--cream-dark); }

.exit-popup h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--oak);
  margin-bottom: 8px;
}

.exit-popup p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }

.exit-popup .btn-whatsapp {
  width: 100%;
  padding: 16px;
  font-size: 17px;
}

/* ===== LIVE NOTIFICATION TOAST ===== */
.live-notif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 88;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  font-size: 13px;
  color: var(--text);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-left: 3px solid var(--green);
}

.live-notif.show { transform: translateY(0); opacity: 1; }

.live-notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.live-notif-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1;
}

/* ===== CALLBACK BADGE ===== */
.callback-badge {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 91;
  background: var(--white);
  border-radius: 28px;
  padding: 8px 16px 8px 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.callback-badge.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.callback-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.callback-badge__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.callback-badge__text {
  white-space: nowrap;
}

/* Callback modal */
.callback-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
  z-index: 301;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.callback-overlay.active { display: flex; }

.callback-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 36px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popupBounce 0.4s ease;
}

.callback-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--oak);
  margin-bottom: 6px;
}

.callback-modal p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.callback-modal input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 12px;
  outline: none;
  text-align: center;
}

.callback-modal input:focus { border-color: var(--warm); }

.callback-modal button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.callback-modal button[type="submit"]:hover { background: var(--accent-hover); }

.callback-modal .form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.callback-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* ===== BLOG / ARTICLE STYLES ===== */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  font-family: 'Manrope', -apple-system, sans-serif;
}

.article h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.article h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin-top: 56px;
  margin-bottom: 20px;
}

.article h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 40px;
  margin-bottom: 16px;
}

.article p {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 28px;
  letter-spacing: 0.1px;
}

.article ul,
.article ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

.article ol { counter-reset: list; }
.article ol li { counter-increment: list; }
.article ol li::before {
  content: counter(list) ".";
  font-weight: 700;
  color: var(--accent);
  margin-right: 8px;
}

.article ul li::before {
  content: "—";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 700;
}

.article li {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
  padding-left: 4px;
}

.article strong {
  color: #1a1a1a;
  font-weight: 700;
}

.article a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 87, 46, 0.3);
  transition: border-color 0.2s;
}

.article a:hover {
  border-bottom-color: var(--accent);
}

.article .table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  -webkit-overflow-scrolling: touch;
}

.article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  display: table;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  min-width: 400px;
}

.article th, .article td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
  color: #333;
}

.article th {
  background: var(--cream-dark);
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14px;
}

.article tr:nth-child(even) td {
  background: rgba(250, 246, 241, 0.5);
}

.article-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
}

.article img {
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.article blockquote {
  border-left: 4px solid var(--warm);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

.article-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Blog listing cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body { padding: 20px; }
.blog-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--oak); }
.blog-card__excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.blog-card__date { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ===== SOCIAL PROOF / BADGES ===== */
.social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.social-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-badge svg { flex-shrink: 0; stroke: var(--green); }

.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #b45309;
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 2px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--accent);
  background: #fff3e0;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 4px;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

/* Yandex Maps badge */
.ymaps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-top: 16px;
}

.ymaps-badge:hover { border-color: var(--warm); box-shadow: var(--shadow); }
.ymaps-badge-star { color: var(--gold); font-size: 16px; }

/* Why cheaper */
.why-cheaper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }

.why-cheaper-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-light);
}

.why-cheaper-num {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--accent);
}

/* Mobile call button */
.mobile-call-btn {
  display: none;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-call-btn:hover { opacity: 0.9; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(44,24,16,0.12);
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.sticky-cta-btn {
  flex: 1;
  padding: 14px 20px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
}

.sticky-cta-btn:hover { background: var(--accent-hover); }

/* ===== SVG ICONS ===== */
.icon-svg { width: 28px; height: 28px; display: inline-block; vertical-align: middle; }

.adv-icon .icon-svg,
.payment-icon .icon-svg,
.step-num .icon-svg,
.quiz-option-icon .icon-svg {
  width: 32px;
  height: 32px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== FOCUS VISIBLE ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 2px;
}

/* ===== CATALOG PAGE STYLES ===== */
.page-header {
  padding: 100px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-intro {
  font-size: 17px;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.7;
}

.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--warm);
  color: var(--accent);
}

.filter-tab.active {
  background: var(--oak);
  color: white;
  border-color: var(--oak);
}

/* Decor card WhatsApp button */
.decor-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.decor-wa:hover { background: #246841; }

/* SEO text block */
.seo-text {
  max-width: 800px;
  margin: 48px 0;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.seo-text h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--oak);
}

.seo-text h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  color: var(--oak);
}

.seo-text p {
  margin-bottom: 12px;
}

.seo-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.seo-text li {
  margin-bottom: 6px;
}

/* CTA block */
.cta-block {
  background: var(--oak);
  color: white;
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0;
}

.cta-block h2,
.cta-block h3 {
  color: white !important;
  margin-bottom: 12px;
  margin-top: 0;
  border: none;
  font-size: 24px;
}

.cta-block p {
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 24px;
  font-size: 16px;
}

.cta-block .btn,
.cta-block .btn-primary,
.cta-block a[class*="btn"] {
  background: white;
  color: var(--oak) !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  margin: 6px;
  border: none;
  transition: background 0.2s, transform 0.1s;
}

.cta-block .btn:hover,
.cta-block .btn-primary:hover,
.cta-block a[class*="btn"]:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 32px 0;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-dark);
}

.compare-table th {
  background: var(--oak);
  color: white;
  font-weight: 700;
}

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

/* Pros/cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.pros-list, .cons-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pros-list h3 { color: var(--green); margin-bottom: 12px; }
.cons-list h3 { color: var(--accent); margin-bottom: 12px; }

.pros-list ul, .cons-list ul {
  list-style: none;
  padding: 0;
}

.pros-list li, .cons-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--cream);
}

.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.cons-list li::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 800;
}

/* Internal links */
.internal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.internal-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  background: var(--cream-dark);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--oak);
  transition: background 0.2s, color 0.2s;
}

.internal-links a:hover {
  background: var(--oak);
  color: white;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 32px 0;
}

.specs-table th,
.specs-table td {
  padding: 12px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-dark);
}

.specs-table th {
  background: var(--cream);
  font-weight: 700;
  color: var(--oak);
  width: 40%;
}

.specs-table tr:last-child td,
.specs-table tr:last-child th { border-bottom: none; }

/* How-to steps */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.howto-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.howto-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}

.howto-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}

.howto-step p {
  font-size: 14px;
  color: var(--text-light);
}

/* Decor specs line */
.decor-specs {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Tablet small (768px) */
@media (max-width: 768px) {
  .section { padding: 48px 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; padding: 100px 16px 60px; }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-burger { display: flex; }

  .lead-form { padding: 28px 20px; }
  .lead-form h3 { font-size: 20px; }

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

  .steps-row { flex-direction: column; gap: 16px; }
  .step-arrow { justify-content: center; transform: rotate(90deg); padding: 4px 0; }

  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .calc-section { padding: 32px 20px; }

  .quiz-question { font-size: 20px; }
  .quiz-section { padding: 32px 20px; }
  .quiz-options { grid-template-columns: 1fr 1fr; }

  .cta-form { flex-direction: column; }
  .cta-form input, .cta-form button { min-width: 100%; }

  .article { padding: 20px 16px 60px; }
  .article h1 { font-size: 24px; }
  .article h2 { font-size: 20px; margin-top: 40px; }
  .article p, .article li { font-size: 16px; }
  .article table { font-size: 14px; }
  .article th, .article td { padding: 10px 12px; }

  .cta-block { padding: 32px 20px; }
  .cta-block h2, .cta-block h3 { font-size: 20px; }
  .cta-block .btn,
  .cta-block .btn-primary,
  .cta-block a[class*="btn"] { padding: 12px 20px; font-size: 14px; display: block; width: 100%; margin: 8px 0; }

  .about-grid { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery-item img { height: 220px; }
  .review-photo { height: 140px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer { padding-bottom: 100px; }
  .footer-bottom { text-align: center; }

  .why-cheaper { grid-template-columns: 1fr; gap: 12px; }

  .mobile-call-btn { display: flex; }

  .sticky-cta { display: block; }
  .float-contacts { bottom: 80px; }

  .live-notif { left: 12px; right: 12px; max-width: none; bottom: 90px; }

  .pros-cons { grid-template-columns: 1fr; }
  .cta-block { padding: 32px 20px; }
  .page-header { padding: 90px 20px 32px; }
  .page-body { padding: 80px 20px 60px; }
}

/* Phone (600px) */
@media (max-width: 600px) {
  .section { padding: 40px 16px; }
  .section-title { font-size: 24px; }
  .hero-text h1 { font-size: 28px; }
  .grid-2 { grid-template-columns: 1fr; }

  .header-phone-text { display: none; }
  .header-phone-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--cream); font-size: 20px;
  }
  .logo { font-size: 22px; }

  .advantages { grid-template-columns: 1fr; }
  .quiz-options { grid-template-columns: 1fr; }

  .float-contacts .float-btn { width: 48px; height: 48px; font-size: 22px; }
  .float-contacts { gap: 10px; bottom: 16px; right: 16px; }
  .float-fab-toggle { display: flex; width: 48px; height: 48px; font-size: 24px; }
  .float-contacts .float-btn { display: none; }
  .float-contacts.fab-open .float-btn { display: flex; }

  .payment-cards { grid-template-columns: 1fr; gap: 12px; }
  .steps-row { gap: 12px; }
  .adv-card { padding: 24px 16px; }
  .adv-card p { font-size: 14px; }
  .decor-info .decor-collection { font-size: 11px; }

  .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13px; }

  .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
  .tg-float { width: 48px; height: 48px; bottom: 76px; right: 16px; }
  .tg-float svg { width: 26px; height: 26px; }
  .callback-badge { bottom: 76px; right: 16px; font-size: 12px; padding: 6px 12px 6px 8px; }
  .callback-badge__icon { width: 28px; height: 28px; font-size: 14px; }
}

/* Small phone (480px) */
@media (max-width: 480px) {
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-section { padding: 32px 20px; }
}

/* Very small (380px) */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 24px; }
  .lead-form { padding: 24px 16px; }
  .section { padding: 36px 14px; }
}

/* Desktop-only overrides */
@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}

/* ===== GEO LANDING PAGES ===== */
.page-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 8px;
}

.geo-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.geo-cta--final {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  padding: 48px 24px;
  background: var(--cream-dark);
  border-radius: var(--radius);
}

.geo-cta--final h2 {
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background: #246841;
}

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

.btn--outline:hover {
  background: var(--oak);
  color: var(--white);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 18px;
}

.geo-bestsellers {
  margin-bottom: 48px;
}

.geo-bestsellers h2 {
  margin-bottom: 24px;
}

.geo-catalog-link {
  margin-top: 24px;
  text-align: center;
}

.geo-catalog-link a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.geo-catalog-link a:hover {
  text-decoration: underline;
}

.geo-delivery {
  margin-bottom: 48px;
}

.geo-delivery h2 {
  margin-bottom: 24px;
}

.geo-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.geo-delivery-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.geo-delivery-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--oak);
  margin-bottom: 8px;
}

.geo-delivery-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.geo-seo {
  margin-bottom: 48px;
}

.geo-seo h2 {
  margin-bottom: 16px;
}

.geo-seo-text p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.geo-seo-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .geo-delivery-grid {
    grid-template-columns: 1fr;
  }

  .geo-cta {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }

  .page-subtitle {
    font-size: 16px;
  }
}
