/* ============================================================
   Local Cleaning Pro — Main Stylesheet
   ============================================================
   Color Palette:
   --white:      #FFFFFF
   --gray-light: #F4F7FA
   --gray-mid:   #E2E8F0
   --blue:       #2E7BC4  (trust / primary)
   --blue-light: #EBF4FF
   --green:      #2DA868  (accent / CTA)
   --green-dark: #1F8652
   --navy:       #1A2744  (text / headings)
   --navy-light: #2D3F6B
   --body-text:  #3D4B5C

   TO CUSTOMIZE:
   - Change colors in the :root block below
   - Change font stack in :root
   ============================================================ */

:root {
  --white:       #FFFFFF;
  --gray-light:  #F4F7FA;
  --gray-mid:    #E2E8F0;
  --blue:        #2E7BC4;
  --blue-light:  #EBF4FF;
  --blue-dark:   #1E5A9C;
  --green:       #2DA868;
  --green-dark:  #1F8652;
  --navy:        #1A2744;
  --navy-light:  #2D3F6B;
  --body-text:   #3D4B5C;
  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 4px rgba(26,39,68,0.08);
  --shadow-md:   0 4px 16px rgba(26,39,68,0.12);
  --shadow-lg:   0 8px 32px rgba(26,39,68,0.16);
  --transition:  0.2s ease;
  --max-w:       1140px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--body-text);
  line-height: 1.75;
}

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

section { padding: 72px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--body-text); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }

.bg-gray { background: var(--gray-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p, .bg-navy li { color: rgba(255,255,255,0.82); }
.bg-blue-light { background: var(--blue-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(45,168,104,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}

.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--navy);
  padding: 7px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  text-align: right;
}

.header-top a { color: var(--white); font-weight: 600; }
.header-top a:hover { color: var(--green); }

.header-main { padding: 16px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo span { color: var(--green); }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-light);
  color: var(--blue);
}

/* Services dropdown */
.nav-item { position: relative; }
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 200;
  padding: 8px 0;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { 
  display: block; 
}

/* Keep dropdown open while moving mouse to it */
.nav-item .dropdown {
  margin-top: 0;
  padding-top: 8px;
}

/* Invisible bridge fills the gap between nav link and dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown li a {
  padding: 9px 18px;
  font-size: 0.9rem;
  color: var(--body-text);
  border-radius: 0;
  display: block;
}
.dropdown li a:hover { background: var(--gray-light); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.header-phone a { color: var(--navy); }
.header-phone a:hover { color: var(--blue); }

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

.hamburger {
  width: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.25s;
}
.menu-toggle.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1E5A9C 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content .lead { color: rgba(255,255,255,0.85); margin-bottom: 32px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.15rem; }

.hero-form .form-row { display: flex; flex-direction: column; gap: 12px; }

.hero-form select,
.hero-form input {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition);
}
.hero-form select:focus,
.hero-form input:focus {
  outline: none;
  border-color: var(--blue);
}

.hero-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ---- Trust badges row ---- */
.trust-row {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 28px 0;
}

.trust-row-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid var(--gray-mid);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-text strong { display: block; font-size: 0.88rem; color: var(--navy); }
.trust-text span { font-size: 0.78rem; color: var(--body-text); }

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--body-text); margin-bottom: 18px; }
.service-card .link-arrow { font-size: 0.88rem; font-weight: 600; color: var(--blue); }
.service-card .link-arrow:hover { color: var(--blue-dark); }

/* ---- Why choose us ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 22px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: 0.92rem; color: var(--body-text); }

.why-visual {
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.stat-block { }
.stat-block .stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-block .stat-label {
  font-size: 0.88rem;
  color: var(--body-text);
  margin-top: 4px;
}

/* ---- How it works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(33% - 16px);
  right: calc(33% - 16px);
  height: 2px;
  background: var(--gray-mid);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 28px 20px;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: var(--body-text); }

/* ---- Recurring plans ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.plan-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45,168,104,0.12);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-card h3 { margin-bottom: 8px; }
.plan-card .plan-freq {
  font-size: 0.85rem;
  color: var(--body-text);
  margin-bottom: 20px;
}

.plan-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.plan-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Service areas ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.area-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}

.area-pill:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p { font-size: 0.93rem; color: var(--body-text); margin-bottom: 18px; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--body-text);
  font-weight: 600;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.reviewer-location { font-size: 0.78rem; color: var(--body-text); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1.5px solid var(--gray-mid);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--blue);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.93rem;
  color: var(--body-text);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #1a8050 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; display: flex; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.7); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-contact-item strong { color: rgba(255,255,255,0.5); font-size: 0.75rem; display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

/* ---- Forms ---- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,123,196,0.15);
}

textarea { resize: vertical; min-height: 120px; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

/* ---- Content prose ---- */
.content-prose h2 { margin-top: 36px; margin-bottom: 12px; }
.content-prose h3 { margin-top: 24px; margin-bottom: 8px; }
.content-prose ul, .content-prose ol {
  list-style: initial;
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-prose ul li, .content-prose ol li { margin-bottom: 6px; }

/* ---- Check list ---- */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Related services ---- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.related-card {
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.related-card:hover { border-color: var(--blue); }
.related-card h4 { margin-bottom: 6px; }
.related-card p { font-size: 0.85rem; color: var(--body-text); margin-bottom: 12px; }
.related-card a { font-size: 0.85rem; font-weight: 600; color: var(--blue); }

/* ---- About page ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: 0.88rem; color: var(--body-text); }

/* ---- Service areas page ---- */
.areas-intro-text { max-width: 680px; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .header-cta .btn { display: none; }
  .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-mid);
    box-shadow: var(--shadow-md);
    z-index: 200;
    padding: 16px 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; }
  .main-nav a { padding: 12px 24px; border-radius: 0; }
  .nav-item .dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 20px; }
  .nav-item:hover .dropdown { display: block; }
  .header-main .container { position: relative; }

  .hero { padding: 56px 0; }
  .hero-inner { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .trust-row-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-mid); width: 100%; }
  .trust-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row-2 { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .three-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.75rem; }
  .plans-grid { max-width: 100%; }
}

/* ---- Print / reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
