/*
Theme Name: Pipe Savers Child
Theme URI: https://thepipesavers.com
Description: Pipe Savers child theme based on GeneratePress
Author: Pipe Savers
Template: generatepress
Version: 1.0.0
*/

/* ==========================================================================
   BRAND TOKENS
   ========================================================================== */
:root {
  --color-navy:   #1D3557;
  --color-red:    #E63946;
  --color-white:  #FFFFFF;
  --color-slate:  #8D99AE;
  --color-amber:  #F4A261;
  --color-light:  #F1F3F5;
  --color-dark:   #111827;
  --color-text:   #2D3748;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --color-navy-deep: #0d1e33;

  --shadow-sm:       0 1px 4px rgba(0,0,0,.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:       0 8px 32px rgba(0,0,0,.16);
  --shadow-card:     0 2px 8px rgba(29,53,87,.07);
  --shadow-glow-red: 0 4px 14px rgba(230,57,70,.4);

  --max-w:        1160px;
  --section-pad:  80px 24px;
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  padding-top: 80px; /* offset for sticky header */
}

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

a { color: var(--color-red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-red);
}
.btn-primary:hover { background: #c62f3b; color: var(--color-white); }

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); color: var(--color-white); }

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-outline:hover { background: var(--color-navy); color: var(--color-white); }

.btn-amber {
  background: var(--color-amber);
  color: var(--color-dark);
}
.btn-amber:hover { background: #e8924e; }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid rgba(29,53,87,.12);
  box-shadow: var(--shadow-sm);
  height: 80px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-logo img { height: 44px; width: auto; }
.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-white);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.header-nav a {
  color: var(--color-navy);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  transition: color .15s;
}
.header-nav a:hover { color: var(--color-red); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.header-phone {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--color-red); text-decoration: none; }

/* Mobile hamburger — hidden on desktop */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-navy); margin: 5px 0; border-radius: 2px; }

/* ==========================================================================
   MOBILE STICKY CALL BAR
   ========================================================================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--color-red);
  padding: 14px 24px;
  text-align: center;
}
.mobile-call-bar a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
@keyframes ps-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Red top accent line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Diagonal decorative stripes */
.hero::after {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 220px; height: 120%;
  background: linear-gradient(
    to right,
    rgba(230,57,70,.06) 0%,
    rgba(230,57,70,.04) 40%,
    transparent 100%
  );
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,.15);
  border: 1px solid rgba(230,57,70,.35);
  color: #fca5a5;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: ps-pulse 1.8s ease-in-out infinite;
}

.hero-headline {
  color: var(--color-white);
  margin-bottom: 16px;
}
.hero-headline span {
  color: var(--color-red);
  text-shadow: 0 0 30px rgba(230,57,70,.35);
}

.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.hero-bullets li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--color-red);
  color: white;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Lead form card */
.lead-form-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.lead-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--color-navy);
}
.lead-form-card p {
  font-size: .9rem;
  color: var(--color-slate);
  margin-bottom: 20px;
}

.ps-form .form-group { margin-bottom: 14px; }
.ps-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 5px;
}
.ps-form input,
.ps-form select,
.ps-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color .15s;
}
.ps-form input:focus,
.ps-form select:focus,
.ps-form textarea:focus {
  outline: none;
  border-color: var(--color-navy);
}
.ps-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

.form-micro {
  font-size: .78rem;
  color: var(--color-slate);
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--color-navy);
  padding: 0 24px;
}

.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-white);
  font-size: .88rem;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-item:last-child { border-right: none; }
.trust-item .stars { color: #f59e0b; font-size: .9rem; letter-spacing: 1px; }

/* ==========================================================================
   SECTION LABELS & SHARED STYLES
   ========================================================================== */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-navy);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--color-slate);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ==========================================================================
   PROBLEM / SOLUTION SECTION
   ========================================================================== */
.problem-solution {
  background: var(--color-light);
  padding: var(--section-pad);
}

.ps-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.problem-list li .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--color-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-box {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}
.solution-box h3 { color: var(--color-white); margin-bottom: 20px; }

.solution-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.solution-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  line-height: 1.5;
}
.solution-points li .tick {
  color: var(--color-amber);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
  padding: var(--section-pad);
  background: var(--color-white);
}

.services-inner { max-width: var(--max-w); margin: 0 auto; }

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

.service-card {
  background: var(--color-white);
  border: 1.5px solid #e2e8f0;
  border-left: 3px solid var(--color-red);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(29,53,87,.14);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(29,53,87,.12), rgba(29,53,87,.06));
  border: 1px solid rgba(29,53,87,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: var(--color-slate); }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
  background: var(--color-navy);
  padding: var(--section-pad);
}

.how-it-works .section-heading { color: var(--color-white); }
.how-it-works .section-label { color: var(--color-amber); }

.how-inner { max-width: var(--max-w); margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 64px; right: 64px;
  height: 2px;
  background: rgba(255,255,255,.15);
}

.step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 { color: var(--color-white); font-size: 1rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.7); font-size: .88rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--color-light);
}

.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--color-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars-row { color: #f59e0b; font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--color-navy);
  font-size: .9rem;
}
.testimonial-author span {
  font-size: .82rem;
  color: var(--color-slate);
}

/* ==========================================================================
   GUARANTEES / CREDENTIALS
   ========================================================================== */
.guarantees {
  padding: var(--section-pad);
  background: var(--color-white);
}

.guarantees-inner { max-width: var(--max-w); margin: 0 auto; }

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

.guarantee-item {
  text-align: center;
  padding: 32px 20px;
  border: 1.5px solid #e2e8f0;
  border-left: 3px solid var(--color-red);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.guarantee-icon { font-size: 2.5rem; margin-bottom: 14px; }
.guarantee-item h3 { font-size: 1rem; margin-bottom: 8px; }
.guarantee-item p { font-size: .85rem; color: var(--color-slate); }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  background: var(--color-light);
  padding: var(--section-pad);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img { width: 100%; height: 380px; object-fit: cover; }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  padding: var(--section-pad);
  background: var(--color-white);
}

.faq-inner { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #e9ecef;
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 4px 0;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-red);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding-top: 12px;
  color: var(--color-text);
  font-size: .95rem;
  line-height: 1.7;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--color-red), #c62f3b);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  padding: 72px 24px;
  text-align: center;
}

.cta-strip-inner { max-width: 700px; margin: 0 auto; }

.cta-strip h2 { color: var(--color-white); margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }

.cta-strip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand .footer-logo img { height: 36px; }
.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-white);
}
.footer-brand p { font-size: .9rem; max-width: 280px; }

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  margin-bottom: 10px;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-white); }

/* License badge */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .78rem;
}

/* ==========================================================================
   CITY-SPECIFIC INTRO BLOCK
   ========================================================================== */
.city-intro {
  background: var(--color-light);
  padding: 48px 24px;
}

.city-intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.city-intro-text h2 { margin-bottom: 16px; }
.city-intro-text p { font-size: 1rem; color: var(--color-text); }

.city-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.city-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
}
.city-service-list li::before {
  content: '→';
  color: var(--color-red);
  font-weight: 700;
}

/* ==========================================================================
   SERVICE AREAS LIST (FOOTER / BOTTOM OF HOME PAGE)
   ========================================================================== */
.service-areas-section {
  background: var(--color-light);
  padding: 48px 24px;
}

.service-areas-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.city-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.city-link {
  background: var(--color-white);
  border: 1px solid #dee2e6;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: .88rem;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.city-link:hover { background: var(--color-navy); color: var(--color-white); text-decoration: none; }

/* ==========================================================================
   RESPONSIVE — TABLET (≤ 900px)
   ========================================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .lead-form-card { max-width: 480px; }

  .ps-grid,
  .about-inner,
  .city-intro-inner { grid-template-columns: 1fr; }
  .about-img { order: -1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  .header-nav { display: none; }
  .hamburger { display: block; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ========================================================================== */
@media (max-width: 600px) {
  body { padding-top: 70px; padding-bottom: 70px; }

  .site-header { height: 70px; }
  .header-inner { height: 70px; }

  .mobile-call-bar { display: block; }

  .hero { padding: 56px 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }

  .cta-strip-buttons { flex-direction: column; align-items: center; }
  .cta-strip-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  :root { --section-pad: 56px 20px; }
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ========================================================================== */
.legal-page {
  padding: 60px 24px 80px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-navy);
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--color-slate);
  font-size: .88rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-light);
}

.legal-inner h2 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-inner p,
.legal-inner li {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: .75em;
}

.legal-inner ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.legal-inner li {
  margin-bottom: .4em;
}

.legal-inner a {
  color: var(--color-red);
}
