/* ===== Design Tokens ===== */
:root {
  --primary: #B91C1C;
  --primary-dark: #7F1D1D;
  --primary-light: #FEF2F2;
  --accent: #F97316;
  --accent-light: #FFF7ED;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --dark-bg: #1E293B;
  --dark-surface: #334155;
  --footer-bg: #0F172A;
  --success: #16A34A;
  --success-light: #DCFCE7;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --transition: 0.25s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }

address { font-style: normal; }

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

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

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

a {
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== Layout ===== */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-block {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.logo-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.logo { display: none; }

.header-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.nav-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.header-list a {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text);
}

.header-list a:hover { color: var(--primary); }

.header-list a#copy-email {
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.header-list a#copy-email:hover { color: var(--primary); }

.header-list a#phone-number {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
}
.header-list a#phone-number:hover {
  background: var(--primary-dark);
}

.header-list-policy { flex-basis: 100%; text-align: right; }
.header-list-policy a {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.header-list-policy a:hover { color: var(--primary); }

.notification {
  display: none;
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}

/* ===== H-1 Hero ===== */
.h-1 {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, #475569 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.h-1::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(185,28,28,0.12), transparent);
}

.h-1 .container { position: relative; }

.h-1 h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.h-1-bloc-text { margin-bottom: 28px; }

.h-1-tagline {
  color: #CBD5E1;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.h-1-bloc-text-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.h-1-bloc-text-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E2E8F0;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.h-1-bloc-text-points span::before {
  content: '';
  display: flex;
  width: 22px; height: 22px;
  min-width: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.h-1-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.h-1-buttons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}

.h-1-btn-primary {
  background: var(--primary);
  color: #fff;
}
.h-1-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185,28,28,0.35);
}

.h-1-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.h-1-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

/* ===== H-2 Services ===== */
.h-2 {
  padding: 80px 0;
  background: var(--bg);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.services-container h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 8px 0 12px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.services-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  transition: all 0.3s ease;
}

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

.service-card img {
  width: 56px; height: 56px;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  transition: background 0.3s;
}

.service-card:hover img {
  background: var(--primary);
  filter: brightness(0) invert(1);
}

.service-card span {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* ===== About Section ===== */
.about-section {
  padding: 64px 20px;
  background: var(--surface);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-container p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-align: left;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Reviews Section ===== */
.reviews-section, section .h5-wrap {
  padding: 64px 20px;
  background: var(--surface);
}

.reviews-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: -0.02em;
}

#review + h2,
section .h5-wrap h2 {
  text-align: center;
}

/* ===== CTA Box ===== */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #DC2626 100%);
  border-radius: var(--radius-2xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto 24px;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-box h2 {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-box p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.cta-box .h-1-buttons {
  background: white;
  color: var(--primary);
}
.cta-box .h-1-buttons:hover {
  background: var(--accent);
  color: white;
}

/* ===== Footer ===== */
footer {
  background-color: var(--footer-bg);
  color: #94A3B8;
  padding: 48px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 0.85rem;
  color: #64748B;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
}

.footer-copy p { color: #CBD5E1; }
