/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #FF5900;
  --accent-dark: #e04e00;
  --dark: #1a1a2e;
  --dark-footer: #1e1e2e;
  --gray: #6b7280;
  --light-bg: #f9fafb;
  --card-bg: #fff;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(0,0,0,.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.13);
  --max-w: 1200px;
  --header-h: 76px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--light-bg); }
.split-layout { display: grid; gap: 60px; min-width: 0; }
.split-layout--wide { grid-template-columns: 1fr 1.2fr; align-items: center; }
.split-layout--top { grid-template-columns: 1fr 1fr; align-items: start; }
.split-layout > * { min-width: 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 2px solid transparent; transition: all .2s;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #2d2d4e; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,89,0,.1); color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray);
  max-width: 600px; margin: 0 auto 48px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo .logo-mark {
  width: 40px; height: 40px; background: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.header-logo .logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.header-logo .logo-name { font-size: 20px; font-weight: 800; color: var(--dark); }
.header-logo .logo-name span { color: var(--accent); }

.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav ul { display: flex; gap: 4px; }
.header-nav a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--dark);
  transition: all .15s;
}
.header-nav a:hover, .header-nav a.active { color: var(--accent); background: rgba(255,89,0,.07); }

.header-contacts { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.header-contacts a { color: var(--gray); transition: color .15s; }
.header-contacts a:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 22px; font-size: 14px; }

.header-top { background: var(--dark); color: #d1d5db; font-size: 13px; padding: 10px 0; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px;  }
.header-top-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.header-top-item { display: flex; align-items: center; gap: 8px; transition: color .15s; }
.header-top a { color: #d1d5db; }
.header-top-item:hover { color: #fff; }
.header-top-item svg { width: 16px; height: 16px; fill: none; stroke: var(--accent); stroke-width: 2; flex-shrink: 0; }
.header-top-hours { font-size: 12px; }
.header-top-socials { display: flex; gap: 8px; }
.header-top-socials a { width: 30px; height: 30px; border-radius: 6px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.header-top-socials a:hover { background: rgba(255,255,255,.18); }
.header-top-socials svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .header-top { display: none; } }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; padding: 32px 24px; overflow-y: auto;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px; border-radius: 10px;
  font-size: 17px; font-weight: 500; color: var(--dark);
  transition: all .15s; border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--accent); background: rgba(255,89,0,.05); }
.mobile-menu .mobile-menu-cta { margin-top: 24px; }
.mobile-menu .mobile-contacts { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; color: var(--gray); font-size: 14px; }
.mobile-menu .mobile-contacts a { border-bottom: none; padding: 4px 0; font-size: 14px; color: var(--gray); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fff 0%, #fff6f2 100%);
  overflow: hidden;
}
.hero--inner {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #fff6f2 0%, #fff 100%);
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-inner--center { grid-template-columns: 1fr; text-align: center; max-width: 760px; }
.hero-badge { margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 17px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray); font-weight: 500; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent); fill: none; stroke: var(--accent); stroke-width: 2; }
.hero-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #fff4ee 0%, #ffe8dc 100%);
  padding: 30px; position: relative;
}
.hero-img-wrap img { border-radius: 12px; width: 100%; }
.hero-img-badge {
  position: absolute; top: 20px; right: 20px;
  background: #fff; border-radius: 12px; padding: 10px 14px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--accent);
  gap: 4px;
}
.hero-img-badge svg { width: 22px; height: 22px; fill: var(--accent); }

/* Hero inner page */
.page-hero { padding: 60px 0; background: linear-gradient(135deg, #fff 0%, #fff6f2 100%); text-align: center; }
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.breadcrumb a { color: var(--accent); }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .badge { margin-bottom: 20px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.about-quote {
  background: linear-gradient(135deg, #fff4ee, #ffe8dc);
  border-left: 4px solid var(--accent);
  padding: 20px 24px; border-radius: 0 12px 12px 0;
  font-size: 17px; font-weight: 600; color: var(--dark); margin: 24px 0;
  font-style: italic;
}
.about-img-col {
  background: linear-gradient(135deg, #fff4ee 0%, #ffe8dc 100%);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.stat-card {
  background: #fff; border-radius: 12px; padding: 20px 24px;
  box-shadow: var(--shadow); text-align: center;
}
.stat-card .stat-number { font-size: 36px; font-weight: 900; color: var(--accent); }
.stat-card .stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,89,0,.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--accent); stroke-width: 2; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.65; }

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8040 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 60px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%; background: rgba(255,255,255,.08);
}
.cta-block::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%; background: rgba(255,255,255,.06);
}
.cta-block h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 16px; }
.cta-block p { font-size: 17px; opacity: .9; max-width: 560px; margin: 0 auto 32px; }
.cta-block .btn--white { background: #fff; color: var(--accent); }
.cta-block .btn--white:hover { background: #f3f4f6; }
.cta-block .btn--outline-white { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-block .btn--outline-white:hover { background: rgba(255,255,255,.1); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-item { text-align: center; padding: 32px 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.stats-item .num { font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; }
.stats-item .label { font-size: 14px; color: var(--gray); font-weight: 500; margin-top: 8px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item {
  display: flex; gap: 16px; padding: 24px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .2s;
}
.why-item:hover { transform: translateY(-3px); }
.why-num {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-text h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-text p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; justify-content: center;}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent), #ff8040);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--gray); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--dark); text-align: left; gap: 12px;
  transition: color .15s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s; }
.faq-icon line, .faq-icon path { stroke: var(--accent); stroke-width: 2; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card-top {
  background: linear-gradient(135deg, #fff4ee 0%, #ffe8dc 100%);
  padding: 32px 28px; text-align: center;
}
.service-card-icon { width: 64px; height: 64px; background: var(--accent); border-radius: 16px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.service-card-icon svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2; }
.service-card-top h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.service-card-top .price { font-size: 28px; font-weight: 900; color: var(--accent); }
.service-card-top .price span { font-size: 15px; font-weight: 500; color: var(--gray); }
.service-card-body { padding: 24px 28px; }
.service-card-body p { color: var(--gray); font-size: 15px; margin-bottom: 16px; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #374151; }
.service-feature::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.service-card .btn { width: 100%; justify-content: center; }
.service-card.featured { border: 2px solid var(--accent); }
.service-badge { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; display: inline-block; margin-bottom: 12px; letter-spacing: .06em; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--accent), #ff8040); z-index: 0; }
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 20px; font-weight: 800; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(255,89,0,.12);
}
.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--gray); }

/* ===== CONTACT SECTION ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow);
}
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,89,0,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 2; }
.contact-card-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-card-body p, .contact-card-body a { font-size: 14px; color: var(--gray); line-height: 1.6; }
.contact-card-body a:hover { color: var(--accent); }

.messenger-links { display: flex; gap: 10px; margin-top: 6px; }
.messenger-link {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,89,0,.1); color: var(--accent) !important;
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.messenger-link svg { width: 16px; height: 16px; fill: var(--accent); transition: fill .2s; }
.messenger-link:hover { background: var(--accent); color: #fff !important; }
.messenger-link:hover svg { fill: #fff; }

.opening-hours { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-top: 16px; }
.opening-hours h4 { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.opening-hours h4 svg { fill: none; stroke: var(--accent); stroke-width: 2; width: 20px; height: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { color: var(--gray); }
.hours-row .closed { color: #ef4444; font-weight: 600; }

.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,89,0,.1); display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-link:hover { background: var(--accent); }
.social-link svg { width: 18px; height: 18px; fill: var(--accent); transition: fill .2s; }
.social-link:hover svg { fill: #fff; }

/* ===== CONTACT FORM ===== */
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; color: var(--dark); background: #fff;
  transition: border-color .15s, box-shadow .15s; outline: none;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,89,0,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { display: none; background: #ecfdf5; color: #065f46; border-radius: 10px; padding: 16px 20px; font-weight: 600; margin-top: 16px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark-footer); color: #d1d5db; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-name { color: #fff; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: #9ca3af; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #9ca3af; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #9ca3af; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: none; stroke: var(--accent); stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #9ca3af; transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #6b7280;
}
.footer-bottom a { color: #6b7280; transition: color .15s; }
.footer-bottom a:hover { color: #d1d5db; }
.footer-legal { text-align: center; }
.footer-social { display: flex; gap: 8px; }
.footer-social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social-link:hover { background: var(--accent); }
.footer-social-link svg { width: 16px; height: 16px; fill: #9ca3af; transition: fill .2s; }
.footer-social-link:hover svg { fill: #fff; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.legal-content h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.legal-content .last-updated { color: var(--gray); font-size: 14px; margin-bottom: 40px; }
.legal-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; color: var(--dark); }
.legal-content h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.legal-content p { color: #374151; line-height: 1.75; margin-bottom: 16px; font-size: 15px; }
.legal-content ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-content ul li { color: #374151; font-size: 15px; line-height: 1.75; margin-bottom: 6px; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  html, body { max-width: 100%; overflow-x: clip; }
  .container, .hero-inner { padding-left: 16px; padding-right: 16px; }
  .split-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-img-wrap { display: none; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .features-grid { grid-template-columns: minmax(0, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .testimonials-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .header-inner { padding: 0 16px; gap: 8px; }
  .header-logo { gap: 8px; min-width: 0; }
  .header-logo .logo-mark { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
  .header-logo .logo-mark svg { width: 19px; height: 19px; }
  .header-logo .logo-name { font-size: 18px; white-space: nowrap; }
  .header-nav { display: none; }
  .header-contacts { display: none; }
  .header-cta { margin-left: auto; gap: 2px; }
  .header-cta .btn { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .burger { display: flex; padding: 8px 4px 8px 8px; }
  .header-cta .btn:not(.btn--primary) { display: none; }
  .mobile-menu { top: var(--header-h); padding: 24px 16px; }
  .cta-block { padding: 40px 24px; }
  .section { padding: 60px 0; }
  .hero { padding: 48px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
