:root {
  --red: #b91c1c;
  --red-dark: #991b1b;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --ink: #1e293b;
  --slate: #475569;
  --light: #f8fafc;
  --sand: #fef3c7;
  --white: #ffffff;
  --green: #16a34a;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--light);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--slate); transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 10px;
  font-weight: 700; transition: transform .15s, box-shadow .2s; cursor: pointer;
  border: none; font-size: 1rem;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(185,28,28,.3); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,158,11,.3); }
.btn-lg { padding: 16px 34px; font-size: 1.1rem; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; cursor: pointer; color: var(--ink); }
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 2.8rem; line-height: 1.15; font-weight: 800; margin-bottom: 18px; }
.hero h1 .accent { color: var(--red); }
.hero p.lead { font-size: 1.2rem; color: var(--slate); margin-bottom: 28px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.hero-badges .badge { text-align: center; }
.hero-badges .badge strong { display: block; font-size: 1.7rem; color: var(--red); }
.hero-badges .badge span { font-size: .9rem; color: var(--slate); }
.hero-card {
  background: #fff; border-radius: 18px; padding: 30px; box-shadow: var(--shadow);
  border: 1px solid #fecaca;
}
.hero-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.hero-card .phone-big { font-size: 1.8rem; font-weight: 800; color: var(--ink); }
.hero-card .phone-big span { color: var(--green); }
.rating-row { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
.stars { color: #fbbf24; font-size: 1.2rem; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 2.1rem; } }

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 10px; }
.section-head p { color: var(--slate); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Service cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
  border: 1px solid #eef2f7; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; margin-bottom: 16px; }
.card .price { font-weight: 700; color: var(--red); }
.card a.more { color: var(--amber-dark); font-weight: 600; font-size: .92rem; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.why-item { text-align: center; padding: 10px; }
.why-item .why-icon { font-size: 2rem; margin-bottom: 10px; }
.why-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.why-item p { color: var(--slate); font-size: .92rem; }

/* Service areas */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.area-card {
  background: #fff; border: 1px solid #eef2f7; border-radius: 12px; padding: 20px;
  text-align: center; transition: border-color .2s, transform .2s;
}
.area-card:hover { border-color: var(--red); transform: translateY(-3px); }
.area-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.area-card span { color: var(--slate); font-size: .85rem; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
}
.testi p { font-style: italic; color: var(--ink); margin-bottom: 14px; }
.testi .who { font-weight: 700; }
.testi .where { color: var(--slate); font-size: .88rem; }

/* FAQ */
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 14px; box-shadow: var(--shadow); overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q .toggle { color: var(--red); font-size: 1.4rem; transition: transform .2s; }
.faq-a { padding: 0 24px 20px; color: var(--slate); display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }

/* CTA bar */
.cta-bar {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; padding: 40px 0; text-align: center;
}
.cta-bar h2 { font-size: 1.9rem; margin-bottom: 8px; }
.cta-bar p { margin-bottom: 18px; opacity: .95; }
.cta-bar .btn { background: #fff; color: var(--red-dark); }
.cta-bar .btn:hover { background: #fef2f2; }

/* Sticky CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; box-shadow: 0 -4px 16px rgba(0,0,0,.2);
}
.sticky-cta .sc-text { font-weight: 600; font-size: .95rem; }
.sticky-cta .sc-phone { font-size: 1.2rem; font-weight: 800; color: #fbbf24; }
.sticky-cta .btn { padding: 10px 20px; font-size: .9rem; }
@media (max-width: 600px) { .sticky-cta .sc-text { font-size: .78rem; } }

/* Footer */
.footer { background: var(--ink); color: #cbd5e1; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 1.05rem; }
.footer a { color: #cbd5e1; display: block; margin-bottom: 8px; font-size: .92rem; transition: color .2s; }
.footer a:hover { color: var(--amber); }
.footer .brand { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer .brand span { color: var(--red); }
.footer-bottom { border-top: 1px solid #334155; padding-top: 18px; text-align: center; font-size: .85rem; color: #94a3b8; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Breadcrumb */
.breadcrumb { padding: 18px 0; font-size: .88rem; color: var(--slate); background: var(--sand); }
.breadcrumb a { color: var(--amber-dark); }
.breadcrumb span { margin: 0 8px; }

/* Inner page hero */
.page-hero { background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%); padding: 50px 0; }
.page-hero h1 { font-size: 2.3rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--slate); font-size: 1.1rem; max-width: 680px; }
.page-hero .breadcrumb { background: transparent; padding: 0 0 16px; }

.content-section { padding: 50px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 860px) { .content-grid { grid-template-columns: 1fr; } }
.content-section h2 { font-size: 1.7rem; margin-bottom: 16px; }
.content-section h3 { font-size: 1.25rem; margin: 22px 0 10px; color: var(--red-dark); }
.content-section p { color: var(--slate); margin-bottom: 14px; }
.content-section ul { color: var(--slate); padding-left: 22px; margin-bottom: 16px; }
.content-section ul li { margin-bottom: 8px; }
.info-box { background: var(--sand); border-radius: 12px; padding: 24px; border: 1px solid #fde68a; }
.info-box h4 { margin-bottom: 10px; }
.info-box .price-tag { font-size: 1.6rem; font-weight: 800; color: var(--red); }

.back-link { display: inline-block; margin-bottom: 20px; color: var(--amber-dark); font-weight: 600; }