/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #222; line-height: 1.7; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #0066cc; text-decoration: none; transition: color .2s; }
a:hover { color: #004499; }
ul, ol { padding-left: 1.2em; }

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== HEADER ===== */
header {
  background: #fff;
  border-bottom: 2px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo img { height: 55px; width: auto; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: #1a3a5c; line-height: 1.2; }
.logo-text small { display: block; font-size: .75rem; font-weight: 400; color: #666; }

/* ===== NAV ===== */
nav ul { list-style: none; display: flex; gap: 6px; padding: 0; }
nav a {
  display: block;
  padding: 8px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: #333;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active {
  background: #0072ce;
  color: #fff;
}
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #333; padding: 8px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #0072ce;
  color: #fff;
  font-size: .85rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #fff; font-weight: 600; }
.top-bar a:hover { text-decoration: underline; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0072ce 0%, #004e8c 100%);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}
.hero h1 { font-size: 2.4rem; margin-bottom: 16px; line-height: 1.25; }
.hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 30px; opacity: .92; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.btn-primary { background: #ff6b00; color: #fff; }
.btn-primary:hover { background: #e55f00; color: #fff; }
.btn-secondary { background: #fff; color: #0072ce; }
.btn-secondary:hover { background: #f0f0f0; color: #004e8c; }
.btn-outline { background: transparent; color: #0072ce; border: 2px solid #0072ce; }
.btn-outline:hover { background: #0072ce; color: #fff; }
.hero .btn + .btn { margin-left: 12px; }

/* ===== PHONE CTA BAR ===== */
.cta-bar {
  background: #ff6b00;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.cta-bar a { color: #fff; font-size: 1.3rem; text-decoration: underline; }

/* ===== SECTIONS ===== */
section { padding: 60px 0; }
section:nth-child(even) { background: #f7f9fc; }
section.cta-section:nth-child(even) { background: linear-gradient(135deg, #ff6b00, #e55500); }
section.page-hero:nth-child(even) { background: linear-gradient(135deg, #0072ce 0%, #004e8c 100%); }
section.hero:nth-child(even) { background: linear-gradient(135deg, #0072ce 0%, #004e8c 100%); }
section h2 {
  font-size: 1.8rem;
  color: #1a3a5c;
  margin-bottom: 16px;
  line-height: 1.3;
}
section h3 {
  font-size: 1.3rem;
  color: #0072ce;
  margin: 24px 0 10px;
}
section p { margin-bottom: 14px; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}
.service-card {
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .2s;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.service-card .icon { font-size: 2.6rem; margin-bottom: 14px; }
.service-card h3 { margin-top: 0; font-size: 1.15rem; }
.service-card p { font-size: .92rem; color: #555; }

/* ===== ADVANTAGES ===== */
.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.advantage-item {
  text-align: center;
  padding: 20px;
}
.advantage-item .icon { font-size: 2.2rem; margin-bottom: 10px; }
.advantage-item h3 { font-size: 1.05rem; margin-top: 0; }
.advantage-item p { font-size: .9rem; color: #555; }

/* ===== FAQ ===== */
.faq-item { margin-bottom: 16px; border-bottom: 1px solid #e4e9f0; padding-bottom: 16px; }
.faq-item h3 { cursor: pointer; font-size: 1.05rem; color: #1a3a5c; margin: 0 0 8px; }
.faq-item p { color: #555; font-size: .94rem; margin: 0; }

/* ===== ZONES ===== */
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}
.zones-list li {
  background: #e8f0fe;
  color: #0072ce;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 500;
}

/* ===== TWO COLUMNS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-col ul { margin-top: 10px; }
.two-col li { margin-bottom: 8px; }

/* ===== TRUST / AVIS ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trust-badge {
  text-align: center;
  min-width: 140px;
}
.trust-badge .number { font-size: 2.2rem; font-weight: 800; color: #0072ce; }
.trust-badge .label { font-size: .88rem; color: #555; }

/* ===== FOOTER ===== */
footer {
  background: #1a2744;
  color: #ccc;
  padding: 50px 0 20px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
footer ul { list-style: none; padding: 0; }
footer li { margin-bottom: 8px; }
footer a { color: #aaa; }
footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2d3c58;
  padding-top: 18px;
  text-align: center;
  color: #777;
  font-size: .82rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.7rem; }
  .hero { padding: 45px 0 35px; }
  .hero .btn + .btn { margin-left: 0; margin-top: 10px; }
  .hero .btn { display: block; width: 100%; }
  .two-col { grid-template-columns: 1fr; gap: 20px; }
  nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid #e8e8e8; padding: 10px; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
  nav ul.open { display: flex; }
  .menu-toggle { display: block; }
  .top-bar .container { justify-content: center; text-align: center; }
  section { padding: 40px 0; }
  section h2 { font-size: 1.45rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ff6b00;
  padding: 12px;
  text-align: center;
}
.mobile-cta a {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  footer { padding-bottom: 70px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0;
  font-size: .85rem;
  color: #777;
}
.breadcrumb a { color: #0072ce; }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0072ce 0%, #004e8c 100%);
  color: #fff;
  padding: 50px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 12px; color: #fff; }
.page-hero h2 { color: #fff; }
.page-hero p { font-size: 1.05rem; opacity: .9; max-width: 650px; margin: 0 auto; color: #fff; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 50px 0; }
.content-section:nth-child(even) { background: #f7f9fc; }
.content-section h2 { font-size: 1.6rem; color: #1a3a5c; margin-bottom: 14px; }
.content-section h3 { font-size: 1.2rem; color: #0072ce; margin: 20px 0 8px; }
.content-section ul { margin: 10px 0 16px; }
.content-section li { margin-bottom: 6px; }

/* ===== CTA SECTION ===== */
section.cta-section {
  background: linear-gradient(135deg, #ff6b00, #e55500);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
section.cta-section h2 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; }
section.cta-section p { font-size: 1.05rem; color: #fff; opacity: .92; margin-bottom: 24px; }
section.cta-section a { color: #fff; }
section.cta-section .btn { background: #fff; color: #ff6b00; font-size: 1.1rem; }
section.cta-section .btn:hover { background: #f0f0f0; }
section.cta-section .phone-link { display: block; margin-top: 16px; color: #fff; font-size: 1.3rem; font-weight: 700; }

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 28px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: #0072ce;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}
.step h3 { font-size: 1.05rem; margin: 0 0 8px; }
.step p { font-size: .9rem; color: #555; }

/* ===== TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.price-table th, .price-table td {
  padding: 12px 16px;
  border: 1px solid #e4e9f0;
  text-align: left;
}
.price-table th {
  background: #0072ce;
  color: #fff;
  font-weight: 600;
}
.price-table tr:nth-child(even) { background: #f7f9fc; }
