:root {
  --bg: #ffffff;
  --bg2: #f5f6f8;
  --bg3: #ebedf0;
  --surface: #ffffff;
  --surface-border: #e2e5ea;
  --text: #1a1f2e;
  --text2: #5c6577;
  --gold: #b8952e;
  --gold-light: #d4ad3a;
  --gold-dark: #8c6f1e;
  --blue: #2563eb;
  --green: #16a34a;
  --red: #dc2626;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.08);
  --transition: .3s ease;
  --font: 'Inter', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border: none; border-radius: var(--radius-sm); font-family: var(--font); font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,149,46,.25); }
.btn--outline { background: transparent; color: var(--gold-dark); border: 2px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: #fff; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--full { width: 100%; }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--surface-border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header__logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--text); text-decoration: none; }
.header__logo:hover { color: var(--gold-dark); }
.header__nav { display: flex; gap: 28px; align-items: center; }
.header__nav > a { color: var(--text2); font-size: 14px; font-weight: 500; }
.header__nav > a:hover { color: var(--gold-dark); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone { color: var(--text); font-weight: 600; font-size: 14px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }

/* === NAV DROPDOWN === */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 4px; color: var(--text2); font-size: 14px; font-weight: 500; cursor: pointer; }
.nav-dropdown__trigger:hover { color: var(--gold-dark); }
.nav-dropdown__trigger svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); min-width: 220px; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; z-index: 100; box-shadow: var(--shadow-lg); }
.nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; }
.nav-dropdown__menu a { display: block; padding: 10px 20px; color: var(--text2); font-size: 14px; transition: color .2s, background .2s; }
.nav-dropdown__menu a:hover { color: var(--gold-dark); background: var(--bg2); }

/* === HERO === */
.hero { padding: 140px 0 80px; position: relative; overflow: hidden; background: var(--bg2); }
.hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,149,46,.1) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184,149,46,.06) 0%, transparent 70%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; }
.hero__content { max-width: 700px; }
.hero__badge { display: inline-block; padding: 6px 16px; background: rgba(184,149,46,.1); border: 1px solid rgba(184,149,46,.2); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--gold-dark); margin-bottom: 24px; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--text); }
.text-gold { color: var(--gold); }
.hero__subtitle { font-size: 18px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 48px; }
.hero__stat { text-align: center; }
.hero__stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); }
.hero__stat-label { font-size: 13px; color: var(--text2); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section--dark { background: var(--bg2); }
.section--page { padding-top: 100px; }
.section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; text-align: center; margin-bottom: 12px; color: var(--text); }
.section__subtitle { text-align: center; color: var(--text2); font-size: 16px; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === CARDS === */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); border-radius: var(--radius); padding: 32px; transition: all var(--transition); border: 1px solid var(--surface-border); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card__icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(184,149,46,.08); border-radius: var(--radius-sm); margin-bottom: 20px; color: var(--gold); }
.card:hover .card__icon { background: rgba(184,149,46,.15); }
.card__title { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.card__text { color: var(--text2); font-size: 14px; line-height: 1.6; }
.card--horizontal { display: flex; gap: 20px; align-items: flex-start; }
.card--horizontal .card__icon { flex-shrink: 0; }
.card--post { padding: 0; }
.card--post img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.card--post .card__title, .card--post .card__text { padding: 0 24px; }
.card--post .card__title { padding-top: 20px; }
.card--post .card__text { padding-bottom: 24px; }

/* === PROCESS === */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process__step { background: var(--surface); border-radius: var(--radius); padding: 32px 24px; position: relative; border: 1px solid var(--surface-border); }
.process__step:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.process__num { font-size: 2.5rem; font-weight: 800; color: var(--gold); opacity: .25; margin-bottom: 12px; }
.process__step h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.process__step p { color: var(--text2); font-size: 14px; line-height: 1.6; }
.process__time { display: inline-block; margin-top: 16px; padding: 4px 12px; background: rgba(184,149,46,.08); border-radius: 12px; font-size: 12px; color: var(--gold-dark); font-weight: 500; }

/* === CTA === */
.section--cta-light { background: var(--bg2); padding: 80px 0; border-top: 1px solid var(--surface-border); border-bottom: 1px solid var(--surface-border); }
.cta__inner { text-align: center; padding: 20px 0; }
.cta__inner h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--text); }
.cta__inner p { color: var(--text2); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* === FAQ === */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--surface-border); }
.faq__q { width: 100%; background: none; border: none; color: var(--text); font-family: var(--font); font-size: 16px; font-weight: 500; padding: 20px 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq__arrow { font-size: 24px; color: var(--gold); transition: transform var(--transition); }
.faq__q.active .faq__arrow { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p { color: var(--text2); font-size: 15px; line-height: 1.7; padding-bottom: 20px; }

/* === COMPARE === */
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.compare-card { background: var(--surface); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--surface-border); transition: all var(--transition); }
.compare-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.compare-card__label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 12px; }
.compare-card__value { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; color: var(--gold-dark); }
.compare-card__note { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* === IMAGE BREAK === */
.section--image { min-height: 360px; background-size: cover; background-position: center; background-attachment: fixed; position: relative; display: flex; align-items: center; }
.section--image__overlay { width: 100%; padding: 80px 0; background: rgba(255,255,255,.85); }
.section--image__overlay h2 { color: var(--text); }
.section--image__overlay p { color: var(--text2); }

/* === CONTACTS === */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contacts-info { display: flex; flex-direction: column; gap: 24px; }
.contacts-card { background: var(--surface); border-radius: var(--radius); padding: 24px; border: 1px solid var(--surface-border); }
.contacts-card h4 { font-size: 13px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.contacts-card a { font-size: 18px; font-weight: 600; }
.contacts-messengers { display: flex; gap: 12px; margin-top: 8px; }
.badge-messenger { padding: 6px 16px; background: rgba(184,149,46,.08); border: 1px solid rgba(184,149,46,.2); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--gold-dark); }
.badge-messenger:hover { background: var(--gold); color: #fff; }
.contacts-form { background: var(--surface); border-radius: var(--radius); padding: 32px; border: 1px solid var(--surface-border); }
.contacts-form h3 { margin-bottom: 24px; }

/* === FORMS === */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text2); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg2); border: 1px solid var(--surface-border); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 15px; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }

/* === MODAL === */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.modal-overlay.active { display: flex; }
.modal { background: var(--surface); border-radius: var(--radius); padding: 40px; max-width: 440px; width: 90%; position: relative; border: 1px solid var(--surface-border); box-shadow: var(--shadow-lg); }
.modal h3 { margin-bottom: 8px; font-size: 1.4rem; }
.modal p { color: var(--text2); font-size: 14px; margin-bottom: 24px; }
.modal__close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text2); font-size: 28px; cursor: pointer; }

/* === PROSE === */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--gold-dark); }
.prose p { color: var(--text2); line-height: 1.8; margin-bottom: 1rem; }
.prose ul, .prose ol { color: var(--text2); padding-left: 24px; margin-bottom: 1rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.prose th, .prose td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--surface-border); }
.prose th { color: var(--gold-dark); font-weight: 600; background: var(--bg2); }
.prose tr:hover td { background: var(--bg2); }

/* === BREADCRUMBS === */
.breadcrumbs { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.breadcrumbs a { color: var(--gold-dark); }

/* === PAGE HERO === */
.page-hero { min-height: 300px; background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; margin: 0 0 40px; border-radius: var(--radius); overflow: hidden; }
.page-hero__overlay { width: 100%; padding: 60px 40px 40px; background: linear-gradient(to top, rgba(255,255,255,.92) 0%, transparent 100%); }
.page-hero h1 { font-size: 2rem; margin-bottom: 8px; color: var(--text); }
.page-hero p { color: var(--text2); font-size: 16px; }

/* === FOOTER === */
.footer { background: var(--bg2); border-top: 1px solid var(--surface-border); padding: 48px 0 0; margin-top: 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer__logo { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.footer__desc { color: var(--text2); font-size: 14px; line-height: 1.6; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text2); font-size: 14px; margin-bottom: 8px; }
.footer__col a:hover { color: var(--gold-dark); }
.footer__socials { display: flex; gap: 12px; margin-top: 12px; }
.footer__social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--surface-border); border-radius: 50%; font-size: 12px; font-weight: 700; color: var(--gold); }
.footer__social:hover { background: var(--gold); color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; margin-top: 40px; border-top: 1px solid var(--surface-border); font-size: 13px; color: var(--text2); }
.footer__bottom a { color: var(--text2); }
.footer__bottom a:hover { color: var(--gold-dark); }

/* === 404 === */
.page-404 { text-align: center; padding: 160px 0 80px; }
.page-404 h1 { font-size: 8rem; font-weight: 800; color: var(--gold); opacity: .3; }


/* === HERO PHOTO === */
.hero--photo { background-size: cover; background-position: center; position: relative; }
.hero--photo::before, .hero--photo::after { display: none; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,31,46,.82) 0%, rgba(26,31,46,.55) 100%); z-index: 0; }
.hero--photo .hero__title { color: #fff; }
.hero--photo .hero__subtitle { color: rgba(255,255,255,.85); }
.hero--photo .hero__badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: #fff; }
.hero--photo .hero__stat-num { color: var(--gold-light); }
.hero--photo .hero__stat-label { color: rgba(255,255,255,.7); }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }

/* === SPLIT SECTION === */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-section__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 16px; color: var(--text); }
.split-section__text p { color: var(--text2); line-height: 1.7; margin-bottom: 12px; }
.split-section__list { list-style: none; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.split-section__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); font-weight: 500; }
.split-section__image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* === CTA PHOTO === */
.section--cta-photo { background-size: cover; background-position: center; position: relative; padding: 80px 0; }
.cta-photo__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,31,46,.85) 0%, rgba(26,31,46,.65) 100%); }
.cta__inner--photo { position: relative; z-index: 1; }
.cta__inner--photo h2 { color: #fff; }
.cta__inner--photo p { color: rgba(255,255,255,.8); }
/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .header__nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--surface-border); box-shadow: var(--shadow-lg); }
  .header__nav.active { display: flex; }
  .header__phone { display: none; }
  .burger { display: block; }
  .cards--3 { grid-template-columns: 1fr; }
  .cards--2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 24px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .section--image { background-attachment: scroll; min-height: 280px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section__image { order: -1; }
  .nav-dropdown__menu { position: static; transform: none; background: var(--bg2); border: 1px solid var(--surface-border); box-shadow: none; padding: 4px 0; margin-top: 8px; border-radius: var(--radius-sm); display: none; opacity: 1; visibility: visible; }
  .nav-dropdown.open .nav-dropdown__menu { display: block; }
  .nav-dropdown.open .nav-dropdown__trigger svg { transform: rotate(180deg); }
  .nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 0 60px; }
  .hero__title { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .process { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .modal { padding: 28px 20px; }
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .compare-card { padding: 20px 16px; }
  .compare-card__value { font-size: 1.8rem; }
  .hero--photo { background-attachment: scroll; }
}

/* === INFOGRAPHICS === */
.infographic { margin: 2rem 0; padding: 0; }
.infographic__title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 1.2rem; text-align: center; }

/* Comparison bars */
.compare-bars { display: flex; flex-direction: column; gap: 16px; }
.compare-bar { display: flex; flex-direction: column; gap: 6px; }
.compare-bar__label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; font-weight: 600; color: var(--text); }
.compare-bar__label span { font-size: 13px; font-weight: 400; color: var(--text2); }
.compare-bar__track { height: 32px; background: var(--bg3); border-radius: 8px; position: relative; overflow: hidden; }
.compare-bar__fill { height: 100%; border-radius: 8px; display: flex; align-items: center; justify-content: flex-end; padding: 0 12px; font-size: 14px; font-weight: 700; color: #fff; transition: width 1s ease; }
.compare-bar__fill--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.compare-bar__fill--muted { background: linear-gradient(135deg, #8b95a5, #a3adb8); }
.compare-bar__fill--green { background: linear-gradient(135deg, var(--green), #22c55e); }
.compare-bar__fill--blue { background: linear-gradient(135deg, var(--blue), #3b82f6); }

/* Stat cards row */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.stat-card { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: all var(--transition); }
.stat-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.stat-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
.stat-card__value { font-size: 1.6rem; font-weight: 800; color: var(--gold); display: block; }
.stat-card__label { font-size: 13px; color: var(--text2); margin-top: 4px; }
.stat-card--highlight { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: var(--gold); }
.stat-card--highlight .stat-card__value { color: #fff; }
.stat-card--highlight .stat-card__label { color: rgba(255,255,255,.8); }

/* Timeline vertical */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--bg3)); }
.timeline__item { position: relative; padding-bottom: 24px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -24px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--gold); }
.timeline__item--done .timeline__dot { background: var(--green); box-shadow: 0 0 0 2px var(--green); }
.timeline__period { font-size: 12px; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.timeline__text { font-size: 15px; color: var(--text); line-height: 1.5; }
.timeline__text strong { color: var(--text); }
.timeline__amount { display: inline-block; margin-top: 6px; padding: 3px 10px; background: rgba(184,149,46,.1); border-radius: 6px; font-size: 14px; font-weight: 700; color: var(--gold-dark); }

/* Visual checklist */
.checklist-visual { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.checklist-group { background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 20px; }
.checklist-group:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.checklist-group__title { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--bg3); }
.checklist-group__icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(184,149,46,.1); border-radius: 8px; font-size: 1.1rem; flex-shrink: 0; }
.checklist-group__items { list-style: none; padding: 0; margin: 0; }
.checklist-group__items li { position: relative; padding: 6px 0 6px 24px; font-size: 14px; color: var(--text2); line-height: 1.5; }
.checklist-group__items li::before { content: ''; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; border: 2px solid var(--gold); border-radius: 4px; }
.checklist-group__items li.checked::before { background: var(--gold); border-color: var(--gold); }
.checklist-group__items li.checked::after { content: ''; position: absolute; left: 3px; top: 14px; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* Info box */
.info-box { display: flex; gap: 14px; padding: 16px 20px; background: rgba(184,149,46,.06); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; }
.info-box__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-box__text { font-size: 14px; color: var(--text); line-height: 1.6; }

/* Responsive */
@media (max-width: 768px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .checklist-visual { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 14px 10px; }
  .stat-card__value { font-size: 1.3rem; }
}

/* === REVIEWS === */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review { background: var(--surface); border-radius: var(--radius); padding: 28px 28px 24px 32px; display: flex; flex-direction: column; position: relative; border: 1px solid var(--surface-border); border-left: 4px solid var(--gold); transition: box-shadow var(--transition), transform var(--transition); }
.review:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review__stars { color: #f59e0b; letter-spacing: 2px; font-size: 18px; }
.review__date { font-size: 12px; color: var(--text2); text-transform: lowercase; }
.review__text { font-size: 14.5px; line-height: 1.75; color: var(--text); flex: 1; margin-bottom: 20px; }
.review__text strong { color: var(--gold-dark); font-weight: 600; }
.review__author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--surface-border); }
.review__photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--bg3); }
.review__name { font-weight: 700; font-size: 15px; color: var(--text); }
.review__meta { font-size: 13px; color: var(--text2); margin-top: 2px; }
@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; }
  .review { padding: 20px 20px 20px 24px; }
}
