*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1A73E8;
  --secondary: #0D47A1;
  --accent: #E3F2FD;
  --text: #1C1C1C;
  --white: #FFFFFF;
  --gray-100: #F8FAFB;
  --gray-200: #EEF2F7;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --border: #D1E3F8;
  --shadow: 0 4px 24px rgba(13,71,161,0.10);
  --shadow-lg: 0 8px 40px rgba(13,71,161,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font);
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,115,232,0.35);
}
.btn-primary:hover {
  background: var(--secondary);
  box-shadow: 0 6px 20px rgba(13,71,161,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--secondary);
}
.btn-white:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-title-white { color: var(--white); }
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}
.section-desc-white { color: rgba(255,255,255,0.8); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,71,161,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--secondary);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-link:hover { background: var(--accent); color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-dropdown-toggle:hover { background: var(--accent); color: var(--primary); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  transition: all 0.15s;
}
.dropdown-item:hover { background: var(--accent); color: var(--primary); font-weight: 500; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--secondary);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--white);
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-link:hover { background: var(--accent); color: var(--primary); }
.mobile-nav-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 20px 16px 8px;
}
.mobile-nav-close {
  position: fixed;
  top: 18px;
  right: 20px;
  background: var(--gray-200);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary);
  z-index: 1000;
}

@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .header-phone { font-size: 14px; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1565C0 50%, var(--primary) 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.hero-badge-dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; flex-shrink: 0; }
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: #90CAF9; }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  max-width: 380px;
  width: 100%;
}
.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-checklist { display: flex; flex-direction: column; gap: 12px; }
.hero-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}
.hero-check-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-check-icon svg { width: 14px; height: 14px; stroke: #90CAF9; }
.hero-card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 20px 0;
}
.hero-contact {
  text-align: center;
}
.hero-contact-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.hero-phone-big {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--secondary);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: #90CAF9; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--accent); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13,71,161,0.1);
}
.why-feature-icon svg { width: 24px; height: 24px; stroke: var(--primary); }
.why-feature-title { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.why-feature-desc { font-size: 14px; color: var(--gray-500); }
.why-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.why-visual-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}
.stat-list { display: flex; flex-direction: column; gap: 20px; }
.stat-item { }
.stat-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.stat-item-label { font-size: 14px; font-weight: 600; color: var(--text); }
.stat-item-value { font-size: 14px; font-weight: 700; color: var(--primary); }
.stat-bar { height: 6px; background: var(--gray-200); border-radius: 100px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: var(--primary); border-radius: 100px; }

@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } .why-visual { display: none; } }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
}
.process-step-title { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.process-step-desc { font-size: 14px; color: var(--gray-500); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #1565C0 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars span { font-size: 16px; }
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: 14px; }
.testimonial-location { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ===== SERVICE AREA ===== */
.area-section { background: var(--gray-100); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.area-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-item svg { width: 14px; height: 14px; stroke: var(--primary); flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  transition: background 0.15s;
  gap: 12px;
}
.faq-question:hover { background: var(--accent); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}
.cta-title { font-size: clamp(24px, 4vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: #0A1628;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--white); }
.footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom-left { color: rgba(255,255,255,0.5); }
.footer-bottom-right { color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== SERVICE PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1565C0 100%);
  padding: 80px 0 100px;
}
.page-hero-inner { max-width: 800px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.5; }
.page-hero-title {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 600px;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-body { }
.content-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
  margin-top: 40px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.content-body ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A73E8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar-card {
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.sidebar-card-title { font-size: 18px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.sidebar-card-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
}
.sidebar-phone svg { width: 22px; height: 22px; stroke: var(--primary); }
.sidebar-address {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.sidebar-address svg { width: 16px; height: 16px; stroke: var(--primary); flex-shrink: 0; margin-top: 1px; }

.related-services { padding: 64px 0; background: var(--gray-100); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.related-card-title { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.related-card-desc { font-size: 13px; color: var(--gray-500); }

@media (max-width: 800px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.seo-content-inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-content-inner > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.seo-content-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.seo-content-inner h3:first-of-type {
  margin-top: 32px;
}
.seo-content-inner .seo-intro {
  background: var(--accent);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.seo-content-inner .seo-intro p {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}
.seo-content-inner .seo-intro p:last-child { margin-bottom: 0; }
.seo-content-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  text-align: center;
}
.seo-content-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: var(--secondary);
  padding: 10px 0;
  text-align: center;
}
.emergency-banner-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.emergency-banner-text a { color: #90CAF9; font-weight: 700; }
.emergency-banner-text a:hover { text-decoration: underline; }
