/* ============================================================
   DRYWALL CLINIC — STYLESHEET
   Colors: Navy #001440 | Green #00A24C | White #ffffff
   Fonts: Sora (headlines) | Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy:        #001440;
  --navy-dark:   #090f1e;
  --navy-mid:    #0c1e4a;
  --green:       #00A24C;
  --white:       #ffffff;
  --gray:        #8899aa;
  --gray-light:  #e8edf5;
  --border:      rgba(255,255,255,0.08);
  --shadow:      0 4px 24px rgba(0,0,0,0.3);
  --font-head:   'Sora', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --max-width:   1200px;
  --radius:      8px;
  --radius-lg:   16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(0,162,76,0.4); opacity: 1; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--white); opacity: 1; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ── Sections ── */
.section { padding: 88px 0; }
.section-dark { background: var(--navy-dark); }
.section-mid { background: var(--navy-mid); }

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-green { color: var(--green); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9,15,30,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); opacity: 1; }
.nav-cta { padding: 10px 22px !important; font-size: 0.9rem !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-dark);
  padding: 24px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
#mobile-menu.open { display: block; }
#mobile-menu ul { list-style: none; }
#mobile-menu ul li { border-bottom: 1px solid var(--border); }
#mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}
#mobile-menu .btn { width: 100%; text-align: center; margin-top: 20px; justify-content: center; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — PARALLAX
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-parallax-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  background: url('/assets/images/hero-bg.png') center/cover no-repeat;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 40, 0.52);
  z-index: 1;
}
.hero-inner {
  max-width: 760px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,162,76,0.15);
  border: 1px solid rgba(0,162,76,0.35);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#trust-bar {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.trust-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VALUE PROPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.prop-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.prop-card:hover { transform: translateY(-6px); border-color: var(--green); }
.prop-icon {
  width: 52px; height: 52px;
  background: rgba(0,162,76,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 1.4rem;
}
.prop-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.prop-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS STEPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(0,162,76,0.15) 100%);
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 62px; height: 62px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(0,162,76,0.15);
}
.step-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-text { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }
.process-cta { text-align: center; margin-top: 52px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DUST CONTROL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}
.dust-intro { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
.dust-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dust-tool {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.2s;
}
.dust-tool:hover { border-color: rgba(0,162,76,0.3); }
.dust-tool-icon {
  width: 32px; height: 32px;
  background: rgba(0,162,76,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.9rem;
}
.dust-tool-name { font-weight: 700; font-size: 0.85rem; line-height: 1.3; }
.dust-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(0,162,76,0.25);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px;
}
.dust-visual img { width: 100%; height: 100%; object-fit: contain; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GUARANTEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.guarantee-card:hover { border-color: rgba(0,162,76,0.35); transform: translateY(-3px); }
.guarantee-icon {
  width: 48px; height: 48px;
  background: rgba(0,162,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.3rem;
}
.guarantee-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.guarantee-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.guarantee-cta { text-align: center; margin-top: 44px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE AREA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
  justify-content: center;
}
.city-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: rgba(255,255,255,0.85);
}
.city-tag:hover {
  background: rgba(0,162,76,0.12);
  border-color: rgba(0,162,76,0.45);
  color: var(--white);
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-city { font-size: 0.8rem; color: var(--gray); margin-top: 3px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list { max-width: 820px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--green); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,162,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 22px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#final-cta {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #001a60 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 0;
}
#final-cta .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
#final-cta .section-sub { margin: 0 auto 44px; }
.final-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-logo img { height: 44px; margin-bottom: 18px; }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 20px; }
.footer-hours { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-hours strong { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-email a { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-email a:hover { color: var(--white); opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INNER PAGE HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.inner-hero {
  background: linear-gradient(135deg, #060d1a 0%, #001440 100%);
  padding: 148px 0 88px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.inner-hero .section-title { margin-bottom: 16px; }
.inner-hero .section-sub { margin: 0 auto; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GET STARTED PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.cta-path {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.cta-path:hover { border-color: rgba(0,162,76,0.4); transform: translateY(-4px); }
.cta-path-icon {
  width: 72px; height: 72px;
  background: rgba(0,162,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--green);
}
.cta-path h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-path p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.cta-path-note { font-size: 0.82rem; color: var(--gray); margin-top: 12px; }

.form-embed-area {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 60px;
  min-height: 400px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OUR PROCESS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process-steps-full { margin-top: 64px; }
.process-step-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.process-step-full:last-child { border-bottom: none; }
.process-step-num {
  width: 72px; height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(0,162,76,0.1);
}
.process-step-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step-content p { font-size: 0.97rem; color: rgba(255,255,255,0.7); line-height: 1.75; }
.process-add-on {
  background: rgba(0,162,76,0.08);
  border: 1px solid rgba(0,162,76,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}
.process-add-on h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.process-add-on p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OUR GUARANTEE PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.guarantee-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.guarantee-full-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.guarantee-full-card .icon { font-size: 2rem; margin-bottom: 16px; }
.guarantee-full-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.guarantee-full-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; }
.warranty-note {
  background: rgba(0,162,76,0.08);
  border: 1px solid rgba(0,162,76,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.warranty-note strong { color: var(--green); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CITY PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.city-hero { text-align: left; }
.city-hero .section-sub { max-width: 600px; }
.city-details {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.city-detail-tag {
  background: rgba(0,162,76,0.12);
  border: 1px solid rgba(0,162,76,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.city-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.city-sidebar {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.city-sidebar h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.city-sidebar p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 20px; }
.city-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROPERTY MANAGERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pm-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pm-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pm-feature .icon { font-size: 1.8rem; margin-bottom: 14px; }
.pm-feature h3 { font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; }
.pm-feature p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WATER DAMAGE PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.water-warning {
  background: rgba(0,162,76,0.08);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 40px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.water-steps { margin-top: 48px; }
.water-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.water-step:last-child { border-bottom: none; }
.water-step-num {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.water-step h3 { font-family: var(--font-head); font-weight: 700; margin-bottom: 6px; }
.water-step p { font-size: 0.93rem; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .steps-row::before { display: none; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .city-content-grid { grid-template-columns: 1fr; }
  .city-sidebar { position: static; }
  .pm-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { text-align: center; max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .props-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .dust-layout { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-paths { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; justify-content: flex-start; }
  .pm-features { grid-template-columns: 1fr; }
  .process-step-full { grid-template-columns: 1fr; }
  .process-step-num { width: 52px; height: 52px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
  .dust-tools { grid-template-columns: 1fr; }
  .final-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-title { font-size: 2.1rem; }
}
