/* ============================================================
   Star Plumbing Co. LLC — main.css
   Consolidated stylesheet for all pages
   ============================================================ */

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

/* ── Variables ── */
:root {
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --red: #DC2626;
  --green: #16A34A;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
}

/* ── Base ── */
body { font-family: var(--font); color: var(--gray-700); line-height: 1.7; font-size: 1rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--gray-900); }
h1 { font-size: clamp(1.85rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
ul { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--gray { background: var(--gray-50); }
.section--alt  { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }
.text-center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, opacity 0.15s;
  text-decoration: none;
  border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); opacity: 0.9; }
.btn--primary  { background: var(--amber); color: var(--gray-900); }
.btn--primary:hover { background: var(--amber-dark); }
.btn--outline  { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--blue); }
.btn--blue     { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--amber    { background: var(--amber); color: #1a1a00; }
.btn--amber:hover { background: var(--amber-dark); }
.btn--red      { background: var(--red); color: var(--white); }
.btn--red:hover { background: #B91C1C; }
.btn--green    { background: var(--green); color: var(--white); }
.btn--green:hover { background: #15803D; }
.btn--large    { padding: 1.1rem 2.25rem; font-size: 1.15rem; }
.btn--xl       { padding: 1.25rem 2.75rem; font-size: 1.25rem; font-weight: 800; }

/* ── Header ── */
.site-header { background: var(--white); border-bottom: 2px solid var(--gray-200); position: sticky; top: 0; z-index: 200; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-logo { font-size: 1.2rem; font-weight: 800; color: var(--blue-dark); line-height: 1.2; }
.site-logo span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--gray-600); }
.site-logo a { color: inherit; text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.phone-link { font-weight: 700; font-size: 1.1rem; color: var(--blue-dark); white-space: nowrap; text-decoration: none; }
.phone-link:hover { color: var(--blue); text-decoration: none; }

/* Nav */
.site-nav { display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.site-nav a { color: var(--gray-700); font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover { color: var(--blue); text-decoration: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  border-radius: 10px;
  min-width: 230px;
  padding: 0.5rem 0;
  z-index: 300;
  list-style: none;
  margin: 0;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu li a:hover { background: #F0F4FF; color: var(--blue); }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--gray-100); padding: 0.65rem 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: var(--gray-600); }
.breadcrumb li::after { content: "›"; margin-left: 0.35rem; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--blue); text-decoration: none; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: var(--white); padding: 5rem 0 4rem; }
.hero h1 { color: var(--white); margin-bottom: 1.1rem; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; }
.hero p, .hero .hero-sub { font-size: 1.1rem; opacity: 0.92; margin-bottom: 1.6rem; max-width: 640px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-proof { margin-top: 2.5rem; display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-proof-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; opacity: 0.88; }
.hero-proof-check { color: var(--amber); font-weight: 800; }

/* ── Trust Bar ── */
.trust-bar { background: var(--gray-900); color: var(--white); padding: 1rem 0; }
.trust-bar .container { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }

/* ── Section Labels ── */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 1rem; color: var(--gray-900); }
.section-intro { max-width: 700px; color: var(--gray-600); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ── Service Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.service-card h3 { color: var(--blue-dark); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card h3 a { color: var(--gray-900); text-decoration: none; }
.service-card h3 a:hover { color: var(--blue); }
.service-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.75rem; line-height: 1.55; }
.service-card a { font-size: 0.9rem; font-weight: 600; }

/* ── Why/Reasons Grid ── */
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.reason-card { text-align: center; padding: 1.75rem 1.25rem; background: var(--white); border-radius: 10px; border: 1px solid var(--gray-200); }
.reason-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.reason-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.reason-card p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* ── Process (homepage / location style) ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.process-step { padding: 1.5rem; background: var(--white); border-radius: 12px; border: 1px solid var(--gray-200); text-align: center; }
.step-number, .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.9rem;
  margin: 0 auto 0.75rem;
}
/* homepage variant: amber step number */
.process-step--amber .step-number,
.process-step--amber .step-num { background: var(--amber); color: var(--gray-900); }
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.88rem; color: var(--gray-600); margin: 0; line-height: 1.5; }

/* ── Process (service page style) ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 1.75rem; }
.process-card { background: var(--white); border-radius: 8px; border-left: 4px solid var(--amber); padding: 1.25rem; }
.process-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--amber);
  color: var(--gray-900);
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  margin-left: 0;
}
.process-card h3 { font-size: 0.95rem; }
.process-card p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ── Signs Grid (service pages) ── */
.signs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.sign-item { display: flex; gap: 0.75rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 1rem; }
.sign-icon { font-size: 1.35rem; flex-shrink: 0; }
.sign-item h3 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.sign-item p { font-size: 0.83rem; color: var(--gray-600); margin: 0; }

/* ── Types Grid (service pages) ── */
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.type-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 1.35rem; }
.type-card h3 { color: var(--blue-dark); font-size: 1.05rem; margin-bottom: 0.5rem; }
.type-card p { font-size: 0.92rem; color: var(--gray-600); margin: 0; }

/* ── Issues List (location pages) ── */
.issues-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.issue-item { background: var(--white); border-left: 4px solid var(--amber); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; }
.issue-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.issue-item p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }

/* ── DIY vs Pro Table ── */
.diy-table-wrap { overflow-x: auto; margin-top: 2rem; }
.diy-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.diy-table th { padding: 0.85rem 1rem; text-align: left; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.diy-table th:first-child { background: var(--gray-100); color: var(--gray-700); }
.diy-table th.th-diy { background: var(--amber); color: var(--gray-900); }
.diy-table th.th-pro { background: var(--blue); color: var(--white); }
.diy-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.diy-table tr:last-child td { border-bottom: none; }
.diy-table tr:nth-child(even) td { background: var(--gray-50); }
.diy-table td:first-child { font-weight: 600; color: var(--gray-900); }
.badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.78rem; font-weight: 700; }
.badge--ok   { background: #D1FAE5; color: #065F46; }
.badge--warn { background: #FEF3C7; color: #92400E; }
.badge--stop { background: #FEE2E2; color: #991B1B; }

/* ── Health Benefits ── */
.health-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.health-card { background: var(--white); border-radius: 10px; border: 1px solid var(--gray-200); padding: 1.5rem; border-top: 4px solid var(--green); }
.health-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.health-card h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 0.5rem; }
.health-card p { font-size: 0.92rem; color: var(--gray-600); margin: 0; }

/* ── Neighborhoods / Tags ── */
.neighborhoods-list, .tag-list { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.neighborhood-tag, .tag { background: var(--blue); color: var(--white); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.875rem; font-weight: 500; }
.city-list { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.city-tag, .tag--gray { background: var(--gray-100); color: var(--gray-700); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--gray-200); }

/* ── FAQ (service page style — border separator) ── */
.faq-list { margin-top: 1.75rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 1.2rem 0; }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q, .faq-question { font-weight: 700; font-size: 1rem; color: var(--gray-900); margin-bottom: 0.5rem; }
.faq-a, .faq-answer { font-size: 0.93rem; color: var(--gray-600); margin: 0; }

/* FAQ (location page style — card) */
.faq-list--cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.faq-item--card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 1.25rem 1.5rem; border-bottom: none; padding-bottom: 1.25rem; }
.faq-item--card:first-child { border-top: 1px solid var(--gray-200); }
.faq-item--card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gray-900); }
.faq-item--card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card { background: var(--white); border-radius: 10px; padding: 1.5rem; border: 1px solid var(--gray-200); }
.testimonial-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-style: italic; color: var(--gray-700); margin-bottom: 0.75rem; font-size: 0.95rem; }
.testimonial-author { font-weight: 600; font-size: 0.875rem; color: var(--gray-600); }

/* ── Common Problems ── */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.problem-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1.1rem; background: var(--white); border-radius: 8px; border: 1px solid var(--gray-200); }
.problem-icon { font-size: 1.4rem; flex-shrink: 0; }
.problem-item h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.problem-item p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* ── About ── */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img-placeholder { background: var(--gray-100); border-radius: 12px; height: 340px; display: flex; align-items: center; justify-content: center; color: var(--gray-600); font-size: 0.9rem; border: 2px dashed var(--gray-200); }

/* ── Callout ── */
.callout { border-radius: 6px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.callout h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.callout p { font-size: 0.9rem; margin: 0; }
/* Amber/warning variant (service pages) */
.callout--amber, .callout:not(.callout--info) {
  background: #FEF3C7;
  border-left: 4px solid var(--amber);
  color: var(--gray-700);
}
/* Blue/info variant (location pages) */
.callout--info {
  background: #EFF6FF;
  border-left: 4px solid var(--blue);
  color: var(--gray-700);
}
/* Highlight box (used in Wellington page) */
.highlight-box { background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 10px; padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.highlight-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #92400E; }
.highlight-box p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* ── Dan Kennedy CTA ── */
.dk-cta { background: #1a0a00; color: var(--white); padding: 4rem 0; border-top: 6px solid var(--red); border-bottom: 6px solid var(--red); }
.dk-inner { max-width: 820px; margin: 0 auto; padding: 0 1.25rem; }
.dk-warning { display: inline-block; background: var(--red); color: var(--white); font-weight: 900; font-size: 0.8rem; letter-spacing: 0.15em; padding: 0.3rem 0.9rem; border-radius: 3px; margin-bottom: 1.25rem; text-transform: uppercase; }
.dk-headline { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--amber); line-height: 1.2; margin-bottom: 1.25rem; text-transform: uppercase; }
.dk-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.dk-body strong { color: var(--amber); }
.dk-bullets { list-style: none; padding: 0; margin: 1.25rem 0; }
.dk-bullets li { padding: 0.5rem 0 0.5rem 2rem; position: relative; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
.dk-bullets li::before { content: "▶"; position: absolute; left: 0; color: var(--red); }
.dk-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 1.25rem; font-style: italic; }
.dk-cta-box { background: var(--red); border-radius: 8px; padding: 2rem; margin-top: 2rem; text-align: center; }
.dk-cta-box p { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem; }
.dk-big-phone { display: block; font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 900; color: var(--white); letter-spacing: 0.02em; margin: 0.75rem 0; text-decoration: none; }
.dk-big-phone:hover { text-decoration: none; color: var(--amber); }
.dk-timer { background: rgba(0,0,0,0.35); border-radius: 6px; padding: 0.75rem 1.25rem; display: inline-block; margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* ── Alex Hormozi CTA ── */
.ah-cta { background: var(--gray-50); padding: 4.5rem 0; border-top: 1px solid var(--gray-200); }
.ah-inner { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
.ah-eyebrow { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 0.75rem; }
.ah-headline { font-size: clamp(1.75rem, 4.5vw, 2.6rem); font-weight: 900; color: var(--gray-900); line-height: 1.15; margin-bottom: 0.5rem; }
.ah-sub { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 2rem; max-width: 640px; }
.ah-stack { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.ah-stack-item { display: flex; align-items: flex-start; gap: 0.85rem; background: var(--white); border-radius: 10px; padding: 1.1rem 1.25rem; border: 1.5px solid var(--gray-200); }
.ah-check { background: var(--green); color: var(--white); font-weight: 800; width: 1.6rem; height: 1.6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; margin-top: 0.1rem; }
.ah-stack-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--gray-900); }
.ah-stack-item p { font-size: 0.875rem; color: var(--gray-600); margin: 0; }
.ah-total { background: var(--blue); color: var(--white); border-radius: 10px; padding: 1.75rem 2rem; margin-bottom: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.ah-total-text h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.35rem; }
.ah-total-text p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin: 0; }
.ah-total-price { text-align: right; }
.ah-price-strike { font-size: 1rem; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.ah-price-free { font-size: 2rem; font-weight: 900; color: var(--amber); }
.ah-guarantee { display: flex; gap: 1rem; align-items: flex-start; background: #F0FDF4; border: 1.5px solid #BBF7D0; border-radius: 10px; padding: 1.25rem; margin-bottom: 2rem; }
.ah-guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.ah-guarantee h4 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.3rem; }
.ah-guarantee p { font-size: 0.9rem; color: var(--gray-700); margin: 0; }
.ah-cta-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.ah-social-proof { font-size: 0.875rem; color: var(--gray-600); }

/* ── CTA Sections ── */
/* Service page CTA block */
.cta-block { background: var(--blue); color: var(--white); padding: 3.5rem 0; text-align: center; }
.cta-block h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-block p { color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 1.75rem; }
.cta-block .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* Homepage / location CTA section */
.cta-section { background: var(--blue-dark); color: var(--white); padding: 3.5rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; }
.cta-section p { font-size: 1.05rem; opacity: 0.88; margin-bottom: 1.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-phone { display: block; font-size: 1.9rem; font-weight: 800; color: var(--amber); text-decoration: none; margin-bottom: 1.25rem; }
.cta-phone:hover { text-decoration: none; color: var(--amber-dark); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #0F172A; color: rgba(255,255,255,0.75); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col li { margin-bottom: 0; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.875rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; }
.footer-phone { font-size: 1.2rem; font-weight: 700; color: var(--amber); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ── Popup ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.is-open { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--white);
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.popup-overlay.is-open .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-close:hover { background: var(--gray-200); }
.popup-badge { display: inline-block; background: var(--amber); color: var(--gray-900); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1rem; }
.popup-headline { font-size: 1.55rem; font-weight: 900; color: var(--gray-900); line-height: 1.2; margin-bottom: 0.75rem; }
.popup-body { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.65; }
.popup-body strong { color: var(--gray-900); }
.popup-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-dismiss { background: none; border: none; color: var(--gray-600); font-size: 0.85rem; cursor: pointer; text-decoration: underline; padding: 0; text-align: center; }
.popup-dismiss:hover { color: var(--gray-900); }
.popup-trust { display: flex; gap: 1.25rem; margin-top: 1.25rem; flex-wrap: wrap; justify-content: center; }
.popup-trust-item { font-size: 0.78rem; color: #6B7280; display: flex; align-items: center; gap: 0.3rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-header .container { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .header-cta { width: 100%; justify-content: space-between; }
  .about-content { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .ah-total { flex-direction: column; text-align: left; }
  .ah-total-price { text-align: left; }
}
@media (max-width: 480px) {
  .hero { padding: 3rem 0 2.5rem; }
  .section { padding: 2.75rem 0; }
  .btn { padding: 0.75rem 1.35rem; }
  .dk-headline { font-size: 1.5rem; }
  .popup-box { padding: 2rem 1.25rem; }
  .about-hero { grid-template-columns: 1fr; }
  .stats-band .container { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .philosophy-points { grid-template-columns: 1fr; }
  .about-cta-strip .container { flex-direction: column; gap: 1.25rem; }
  .about-cta-strip__actions { width: 100%; }
  .about-cta-strip__actions .btn { width: 100%; justify-content: center; }
}

/* ── About Section ───────────────────────────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-hero__left em { font-style: italic; color: var(--blue); }
.about-hero__left p { color: var(--gray-600); line-height: 1.75; }

.standout-line {
  border-left: 4px solid var(--amber);
  margin: 1.75rem 0;
  padding: 0.85rem 1.25rem;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.about-phone-link:hover { background: var(--blue-dark); transform: translateY(-1px); text-decoration: none; color: var(--white); }

/* Trust cards */
.about-hero__right { display: flex; flex-direction: column; gap: 0.85rem; }
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s;
}
.trust-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.trust-card__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.trust-card__text { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-card__text strong { font-size: 0.95rem; color: var(--gray-900); }
.trust-card__text span { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; }

/* Stats Band */
.stats-band {
  background: var(--gray-900);
  color: var(--white);
  padding: 2rem 0;
}
.stats-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0.5rem 2rem; }
.stat-item__number {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item__label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Philosophy Block */
.philosophy-label { max-width: 620px; margin-bottom: 2.5rem; }
.philosophy-label h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 800; margin-bottom: 0.75rem; }
.philosophy-label em { color: var(--blue); font-style: italic; }
.philosophy-label .section-intro { margin-bottom: 0; }

.philosophy-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.philosophy-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.5rem;
}
.pp-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.pp-body strong { display: block; font-size: 0.975rem; color: var(--gray-900); margin-bottom: 0.4rem; }
.pp-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* About CTA Strip */
.about-cta-strip {
  background: var(--blue-dark);
  padding: 2rem 0;
}
.about-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.about-cta-strip__copy h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.25rem; }
.about-cta-strip__copy p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin: 0; }
.about-cta-strip__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.about-cta-strip__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
