/* ═══════════════════════════════════════════════════════════
   PeakShield Roofing — Plain HTML/CSS
   Fonts: Barlow Condensed (display) + Inter (body)
   Colors: #C0001A (emergency red), #1A0508 (near-black), #F7F0F1 (cream), #2A0A0E (text)
   ═══════════════════════════════════════════════════════════ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2A0A0E;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Typography */
.font-display { font-family: 'Barlow Condensed', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #F7F0F1;
  transition: all 0.3s;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar-logo img { height: 40px; width: 40px; }
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-logo-text .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #2A0A0E;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.navbar-logo-text .brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  color: #8A6066;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-links a {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  color: #2A0A0E;
}
.navbar-links a:hover { background: #F7F0F1; }
.navbar-links a.active { background: #1A0508; color: #fff; }
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2A0A0E;
  transition: color 0.2s;
}
.navbar-phone:hover { color: #C0001A; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C0001A;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary:hover { background: #A0001A; }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C0001A;
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary-lg:hover { background: #A0001A; }
.btn-primary-lg:active { transform: scale(0.97); }

/* Mobile menu */
.mobile-toggle { display: none; background: none; padding: 0.5rem; }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; }

@media (max-width: 768px) {
  .navbar-links, .navbar-right { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open {
    display: block;
    border-top: 1px solid #F7F0F1;
    padding: 1rem;
    background: #fff;
  }
  .mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #2A0A0E;
  }
  .mobile-menu a.active { background: #1A0508; color: #fff; }
  .mobile-menu .mobile-cta {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .mobile-menu .mobile-cta a {
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
  }
  .mobile-menu .mobile-cta .btn-call {
    border: 1px solid #2A0A0E;
    color: #2A0A0E;
  }
  .mobile-menu .mobile-cta .btn-inspect {
    background: #C0001A;
    color: #fff;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,5,8,0.95), rgba(26,5,8,0.85), rgba(26,5,8,0.5));
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 3fr 2fr; }
}
.hero-label {
  color: #C0001A;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 0.88;
  margin-bottom: 1.25rem;
}
.hero-subhead {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #C0001A;
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.hero-desc { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 32rem; margin-bottom: 0.75rem; line-height: 1.7; }
.hero-desc-sm { color: rgba(255,255,255,0.5); font-size: 0.875rem; max-width: 32rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-risk {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.hero-risk span { display: flex; align-items: center; gap: 0.25rem; }
.hero-risk .dot { width: 6px; height: 6px; border-radius: 50%; background: #C0001A; }
.hero-social {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero-stars { display: flex; gap: 2px; }
.hero-stars svg { width: 16px; height: 16px; fill: #facc15; color: #facc15; }
.hero-social span { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.hero-social .rating { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-left: 0.25rem; }

/* Hero badges (desktop) */
.hero-badges { display: none; flex-direction: column; align-items: flex-end; gap: 0.75rem; padding-top: 2rem; }
@media (min-width: 1024px) { .hero-badges { display: flex; } }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
}
.hero-badge .badge-icon { width: 16px; height: 16px; color: #C0001A; }
.hero-badge span { color: #fff; font-size: 0.875rem; font-weight: 500; }
.hero-stat-card {
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 14rem;
  text-align: center;
}
.hero-stat-card .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
}
.hero-stat-card .stat-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.25rem; }

/* ─── URGENCY STRIP ─── */
.urgency-strip {
  background: #C0001A;
  padding: 1rem 0;
}
.urgency-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .urgency-strip-inner { flex-direction: row; } }
.urgency-strip p { color: #fff; font-size: 0.875rem; font-weight: 500; text-align: center; }
@media (min-width: 640px) { .urgency-strip p { text-align: left; } }
.urgency-strip .btn-white {
  flex-shrink: 0;
  background: #fff;
  color: #C0001A;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
}
.urgency-strip .btn-white:hover { background: rgba(255,255,255,0.9); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #F7F0F1;
  padding: 1.5rem 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .trust-strip-inner { gap: 3rem; } }
.trust-strip span {
  color: #8A6066;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) { .trust-strip span { font-size: 0.875rem; } }

/* ─── SECTION HEADERS ─── */
.section-label {
  color: #C0001A;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #2A0A0E;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-title-white { color: #fff; }
.section-subtitle { color: #8A6066; font-size: 1rem; }
.section-subtitle-white { color: rgba(255,255,255,0.5); }

/* ─── REVIEWS ─── */
.reviews-section { background: #fff; padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .reviews-section { padding: 6rem 0; } }
.reviews-grid {
  column-count: 1;
  column-gap: 1rem;
}
@media (min-width: 768px) { .reviews-grid { column-count: 2; } }
@media (min-width: 1024px) { .reviews-grid { column-count: 3; } }
.review-card {
  break-inside: avoid;
  background: #F7F0F1;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(192,0,26,0.2); }
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars svg { width: 14px; height: 14px; fill: #facc15; color: #facc15; }
.review-text { color: #2A0A0E; font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.review-meta { display: flex; align-items: center; justify-content: space-between; }
.review-name { color: #2A0A0E; font-size: 0.875rem; font-weight: 600; }
.review-area { color: #8A6066; font-size: 0.75rem; }

/* ─── HOW IT WORKS ─── */
.how-section { background: #1A0508; padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .how-section { padding: 6rem 0; } }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.how-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: background 0.2s;
}
.how-card:hover { background: rgba(255,255,255,0.08); }
.how-card .watermark {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  color: rgba(192,0,26,0.2);
  line-height: 1;
}
.how-card .step-circle {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #C0001A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.how-card .step-circle span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.125rem;
}
.how-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.how-card p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.75rem; }
.how-card .time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #C0001A;
  background: rgba(192,0,26,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* ─── SERVICES CATALOG ─── */
.services-section {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .services-section { padding: 6rem 0; } }
.services-section .bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.services-section .bg-overlay {
  position: absolute; inset: 0;
  background: rgba(26,5,8,0.92);
}
.services-grid-wrapper {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .services-grid-wrapper { grid-template-columns: 2fr 3fr; } }
.services-stats { margin-bottom: 2rem; }
.services-stats .stat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.services-stats .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #C0001A;
}
.services-stats .stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .service-cards-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(192,0,26,0.3); }
.service-card .card-num {
  position: absolute;
  top: 0.5rem; right: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  transition: color 0.2s;
}
.service-card:hover .card-num { color: rgba(192,0,26,0.15); }
.service-card .card-icon { width: 20px; height: 20px; color: #C0001A; margin-bottom: 0.75rem; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.service-card p { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.6; }
.service-card .accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #C0001A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover .accent-line { transform: scaleX(1); }

/* ─── WHY US ─── */
.why-section { background: #fff; padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .why-section { padding: 6rem 0; } }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-image-wrap { position: relative; }
.why-image-wrap img { border-radius: 1rem; width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.why-image-wrap .bbb-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 1rem;
  border: 1px solid #F7F0F1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bbb-badge .bbb-icon {
  width: 2.5rem; height: 2.5rem;
  background: #C0001A;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bbb-badge .bbb-icon svg { width: 20px; height: 20px; fill: #fff; color: #fff; }
.bbb-badge .bbb-text .grade {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: #2A0A0E;
}
.bbb-badge .bbb-text .label { color: #8A6066; font-size: 0.75rem; }
.why-reasons { display: flex; flex-direction: column; gap: 1.5rem; }
.why-reason {
  display: flex;
  gap: 1rem;
}
.why-reason .reason-icon {
  flex-shrink: 0;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(192,0,26,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-reason .reason-icon svg { width: 20px; height: 20px; color: #C0001A; }
.why-reason h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2A0A0E;
  margin-bottom: 0.25rem;
}
.why-reason p { color: #8A6066; font-size: 0.875rem; line-height: 1.6; }

/* ─── FAQ ─── */
.faq-section {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .faq-section { padding: 6rem 0; } }
.faq-section .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.faq-section .bg-overlay { position: absolute; inset: 0; background: rgba(26,5,8,0.93); }
.faq-grid {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; } }
.faq-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .toggle {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.faq-item[open] summary .toggle { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }

/* ─── QUOTE FORM ─── */
.quote-section { background: #fff; padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .quote-section { padding: 6rem 0; } }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
.quote-checklist { display: flex; flex-direction: column; gap: 1rem; }
.quote-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #2A0A0E;
}
.quote-checklist .check-icon { flex-shrink: 0; width: 20px; height: 20px; color: #C0001A; margin-top: 2px; }
.quote-note {
  margin-top: 2rem;
  padding: 1rem;
  background: #F7F0F1;
  border-radius: 0.75rem;
  border-left: 4px solid #C0001A;
  font-size: 0.75rem;
  color: #8A6066;
  line-height: 1.7;
}
.quote-note strong { color: #2A0A0E; }
.quote-form-wrap {
  background: #F7F0F1;
  border-radius: 1rem;
  padding: 2rem;
  border-top: 4px solid #C0001A;
}
.quote-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quote-form-wrap .form-group { margin-bottom: 1rem; }
.quote-form-wrap label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2A0A0E;
  margin-bottom: 0.375rem;
}
.quote-form-wrap input,
.quote-form-wrap select,
.quote-form-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5dfe0;
  background: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
}
.quote-form-wrap input:focus,
.quote-form-wrap select:focus,
.quote-form-wrap textarea:focus {
  border-color: #C0001A;
  box-shadow: 0 0 0 3px rgba(192,0,26,0.1);
}
.quote-form-wrap textarea { resize: none; }
.quote-form-wrap .submit-btn {
  width: 100%;
  background: #C0001A;
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
.quote-form-wrap .submit-btn:hover { background: #A0001A; }
.quote-form-wrap .submit-btn:active { transform: scale(0.98); }
.form-risk {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #8A6066;
}
.form-risk span { display: flex; align-items: center; gap: 0.25rem; }
.form-risk .dot { width: 6px; height: 6px; border-radius: 50%; background: #C0001A; }

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 1024px) { .final-cta { padding: 6rem 0; } }
.final-cta .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.final-cta .bg-overlay { position: absolute; inset: 0; background: rgba(26,5,8,0.93); }
.final-cta-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.final-cta .sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: #C0001A;
  margin-bottom: 2rem;
}
.final-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.final-cta-risk {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.final-cta-risk span { display: flex; align-items: center; gap: 0.25rem; }
.final-cta-risk .dot { width: 6px; height: 6px; border-radius: 50%; background: #C0001A; }

/* ─── FOOTER ─── */
.footer { background: #1A0508; color: #fff; padding: 4rem 0 5rem; }
@media (min-width: 1024px) { .footer { padding: 5rem 0; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand p { color: #8A6066; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-brand .status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #8A6066; }
.footer-brand .status .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.625rem; }
.footer ul li a,
.footer ul li span { color: #8A6066; font-size: 0.875rem; transition: color 0.2s; }
.footer ul li a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; }
.footer-contact svg { width: 16px; height: 16px; color: #C0001A; flex-shrink: 0; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { color: #8A6066; font-size: 0.75rem; }
.footer-bottom .legal { display: flex; gap: 1rem; color: #8A6066; font-size: 0.75rem; }

/* ─── SERVICES PAGE ─── */
.services-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.services-hero .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.services-hero .bg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #1A0508, rgba(26,5,8,0.85), rgba(26,5,8,0.6)); }
.services-hero-content { position: relative; z-index: 10; padding: 8rem 0 3.5rem; }
.services-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1.25rem;
  max-width: 48rem;
}
.services-hero .hero-desc { margin-bottom: 2.5rem; }
.services-hero .stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.services-hero .stat-bar .stat-item .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #C0001A;
}
.services-hero .stat-bar .stat-item .stat-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* Catalog list */
.catalog-section { background: #fff; padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .catalog-section { padding: 6rem 0; } }
.catalog-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid #F7F0F1;
  border-radius: 0.75rem;
  transition: background 0.2s;
}
@media (min-width: 1024px) { .catalog-item { grid-template-columns: 2fr 7fr 3fr; align-items: center; } }
.catalog-item:hover { background: rgba(247,240,241,0.5); }
.catalog-item .item-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(192,0,26,0.15);
  line-height: 1;
  transition: color 0.2s;
}
.catalog-item:hover .item-num { color: rgba(192,0,26,0.3); }
.catalog-item .item-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.catalog-item .item-title-row svg { width: 20px; height: 20px; color: #C0001A; }
.catalog-item .item-title-row h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #2A0A0E;
  line-height: 1.1;
}
@media (min-width: 1024px) { .catalog-item .item-title-row h3 { font-size: 1.875rem; } }
.catalog-item .item-desc { color: rgba(42,10,14,0.7); font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.75rem; max-width: 36rem; }
.catalog-item .item-who { color: #8A6066; font-size: 0.75rem; }
.catalog-item .item-who strong { color: #2A0A0E; font-weight: 600; }
.catalog-item .item-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 1024px) { .catalog-item .item-cta { justify-content: flex-end; } }
.catalog-item .item-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,0,26,0.05);
  color: #C0001A;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.catalog-item:hover .item-cta a { background: #C0001A; color: #fff; }

/* Pricing section */
.pricing-section { background: #1A0508; padding: 4rem 0 5rem; }
@media (min-width: 1024px) { .pricing-section { padding: 5rem 0; } }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.pricing-card svg { width: 20px; height: 20px; color: #C0001A; margin-bottom: 0.5rem; }
.pricing-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.pricing-card p { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.6; }

/* ─── CONTACT PAGE ─── */
.contact-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-hero .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.contact-hero .bg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #1A0508, rgba(26,5,8,0.85), rgba(26,5,8,0.5)); }
.contact-hero-content { position: relative; z-index: 10; padding: 8rem 0 3rem; }
.contact-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1rem;
  max-width: 40rem;
}

/* Contact form section */
.contact-form-section { background: #fff; padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .contact-form-section { padding: 6rem 0; } }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-form-grid { grid-template-columns: 2fr 3fr; } }
.timeline-step { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.timeline-step .step-indicator { display: flex; flex-direction: column; align-items: center; }
.timeline-step .step-dot {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: #C0001A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.timeline-step .step-line { width: 1px; height: 2rem; background: rgba(192,0,26,0.2); margin-top: 0.25rem; }
.timeline-step .step-content .step-time { color: #C0001A; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.timeline-step .step-content .step-text { color: #2A0A0E; font-size: 0.875rem; margin-top: 0.25rem; }
.guarantees-box {
  background: #F7F0F1;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border-left: 4px solid #C0001A;
  margin-top: 2rem;
}
.guarantees-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2A0A0E;
  margin-bottom: 1rem;
}
.guarantees-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #2A0A0E;
}
.guarantees-box li svg { width: 16px; height: 16px; color: #C0001A; flex-shrink: 0; margin-top: 2px; }

/* Contact info bar */
.contact-info-bar { background: #1A0508; padding: 3rem 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info-item .info-icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(192,0,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item .info-icon svg { width: 20px; height: 20px; color: #C0001A; }
.contact-info-item .info-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-item .info-value { color: #fff; font-size: 0.875rem; font-weight: 500; }
.contact-info-item .info-sub { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.contact-info-item a { color: #fff; transition: color 0.2s; }
.contact-info-item a:hover { color: #C0001A; }

/* Map */
.map-section { background: #F7F0F1; }
.map-section iframe { filter: grayscale(1); opacity: 0.8; }

/* Bottom CTA bar */
.bottom-cta { background: #C0001A; padding: 2.5rem 0; }
.bottom-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .bottom-cta-inner { flex-direction: row; } }
.bottom-cta-inner .cta-left { display: flex; align-items: center; gap: 1rem; }
.bottom-cta-inner .cta-left svg { width: 2rem; height: 2rem; color: #fff; }
.bottom-cta-inner .cta-left p { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.125rem; }
.bottom-cta-inner .cta-left .sub { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-family: 'Inter', sans-serif; font-weight: 400; }
.bottom-cta-inner .cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #C0001A;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
}
.bottom-cta-inner .cta-btn:hover { background: rgba(255,255,255,0.9); }

/* ─── SVG ICONS (inline) ─── */
.icon-sm { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.icon-md { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
