/* ═══════════════════════════════════════════════════
   BEACHFRONT WINDOW CLEANING — DESIGN SYSTEM
   Palette:  Navy #0B2545 | Teal #2EC4C4 | White #F7F9FB
             Sand #E8DCC8 | Coral #FF6B47 | Slate #4A6172
   Type:     Barlow Condensed (display) / Inter (body)
═══════════════════════════════════════════════════ */

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

:root {
  --navy:       #0B2545;
  --navy-mid:   #163660;
  --teal:       #2EC4C4;
  --teal-dark:  #1EA8A8;
  --white:      #F7F9FB;
  --sand:       #E8DCC8;
  --sand-dark:  #D4C5AD;
  --coral:      #FF6B47;
  --slate:      #4A6172;
  --slate-light:#7A95A8;
  --text-dark:  #0F1E2E;
  --text-body:  #2D3E4E;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-width: 1200px;
  --section-pad: 6rem 0;
  --radius: 12px;
  --radius-sm: 6px;

  --shadow-sm: 0 2px 8px rgba(11,37,69,0.08);
  --shadow-md: 0 6px 24px rgba(11,37,69,0.12);
  --shadow-lg: 0 16px 48px rgba(11,37,69,0.16);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-primary:hover {
  background: #e8562e;
  border-color: #e8562e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,71,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg  { padding: 0.9rem 2.25rem; font-size: 1.05rem; }
.btn-xl  { padding: 1.1rem 2.75rem; font-size: 1.15rem; }

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}
.section-eyebrow-light { color: var(--teal); }

.section-heading-light {
  color: var(--white);
}

.section-subhead {
  font-size: 1.1rem;
  color: rgba(247,249,251,0.85);
  max-width: 660px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-subhead a { color: inherit; text-decoration: underline; }

/* ── WAVE DIVIDERS ── */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; display: block; }
.wave-divider-top svg { fill: var(--navy-mid); }
.wave-divider-bottom svg { fill: var(--navy-mid); }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  color: rgba(247,249,251,0.85);
  font-size: 0.82rem;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-cta {
  background: var(--coral);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.top-bar-cta:hover { background: #e8562e; color: #fff; }
.phone-icon { font-style: normal; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(247,249,251,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,37,69,0.08);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-mark {
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}
.logo-mark-sm { font-size: 1.2rem; }
.logo-text { line-height: 1.15; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: block;
  color: var(--navy);
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--navy); background: rgba(46,196,196,0.08); }

.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover { background: #e8562e !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 8rem;
}

/* Animated ocean waves */
.hero-ocean-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  border-radius: 40%;
}
.wave-1 {
  height: 280px;
  background: rgba(46,196,196,0.06);
  animation: wave-roll 8s infinite linear;
}
.wave-2 {
  height: 200px;
  background: rgba(46,196,196,0.04);
  animation: wave-roll 11s infinite linear reverse;
  bottom: 20px;
}
.wave-3 {
  height: 140px;
  background: rgba(46,196,196,0.03);
  animation: wave-roll 14s infinite linear;
  bottom: 40px;
}

@keyframes wave-roll {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: normal;
  color: var(--teal);
}

.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(247,249,251,0.78);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: 0.82rem;
  color: rgba(247,249,251,0.5);
  letter-spacing: 0.05em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247,249,251,0.35);
  font-size: 1.3rem;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar {
  background: var(--sand);
  border-bottom: 3px solid var(--teal);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.75rem 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2.5rem;
  text-align: left;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--sand-dark);
}

/* ════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════ */
.problem-section {
  padding: var(--section-pad);
  background: var(--white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.problem-text p {
  color: var(--text-body);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.problem-text p:last-of-type { margin-bottom: 2rem; }

.problem-threats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.threat-card {
  background: var(--white);
  border: 1.5px solid rgba(11,37,69,0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.threat-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.threat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.threat-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.threat-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services-section {
  background: var(--navy-mid);
  padding: 2rem 0;
  position: relative;
}
.services-section .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
.services-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
  margin-top: 3rem;
}

.service-card {
  background: rgba(247,249,251,0.05);
  border: 1px solid rgba(247,249,251,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(247,249,251,0.09);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.service-card-featured {
  border-color: var(--teal);
  background: rgba(46,196,196,0.06);
}
.service-card-featured:hover {
  background: rgba(46,196,196,0.1);
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(247,249,251,0.06);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  user-select: none;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.92rem;
  color: rgba(247,249,251,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-includes {
  border-top: 1px solid rgba(247,249,251,0.08);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-includes li {
  font-size: 0.82rem;
  color: var(--teal);
  padding-left: 1rem;
  position: relative;
}
.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.service-badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.75rem;
}

.services-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services-cta p {
  color: rgba(247,249,251,0.65);
  font-size: 0.95rem;
}
.services-cta .btn { display: inline-flex; }
.services-cta > div { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.services-cta .btn:nth-child(2) { margin-right: 0; }
/* Fix: display buttons in a row */
.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services-cta .btn + .btn {
  margin-top: 0;
}
/* Override to show both buttons on same line */
.services-cta .btn-primary,
.services-cta .btn-ghost-light {
  display: inline-flex;
}

/* Wrap the two buttons in a flex row */
.services-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ════════════════════════════════════════
   WHY US SECTION
════════════════════════════════════════ */
.why-us-section {
  padding: var(--section-pad);
  background: var(--white);
}
.why-us-section > .container > .section-eyebrow { text-align: center; }
.why-us-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 3rem;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(11,37,69,0.07);
  transition: all var(--transition);
  background: var(--white);
}
.why-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.partner-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: rgba(247,249,251,0.85);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.95rem;
}
.partner-link {
  color: var(--teal);
  font-weight: 600;
}
.partner-link:hover { color: var(--sand); }

/* ════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════ */
.process-section {
  padding: var(--section-pad);
  background: var(--sand);
}
.process-section > .container > .section-eyebrow { text-align: center; }
.process-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
}
.step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
}
.process-step p a { color: var(--teal-dark); font-weight: 600; }

.process-arrow {
  font-size: 1.5rem;
  color: var(--teal-dark);
  padding-top: 1rem;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1.2rem;
}
.process-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ════════════════════════════════════════
   AREAS SECTION
════════════════════════════════════════ */
.areas-section {
  background: var(--navy);
  padding: 2rem 0;
}
.areas-section .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
.areas-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.areas-link { color: var(--teal); font-weight: 700; }
.areas-link:hover { color: var(--coral); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3rem 0 2rem;
  text-align: left;
}
.area-card {
  background: rgba(247,249,251,0.04);
  border: 1px solid rgba(247,249,251,0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: all var(--transition);
}
.area-card:hover {
  background: rgba(46,196,196,0.08);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.area-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.area-card p {
  font-size: 0.8rem;
  color: rgba(247,249,251,0.6);
  line-height: 1.5;
}
.areas-note {
  color: rgba(247,249,251,0.65);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.areas-note strong { color: var(--white); }

/* ════════════════════════════════════════
   TIPS SECTION
════════════════════════════════════════ */
.tips-section {
  padding: var(--section-pad);
  background: var(--white);
}
.tips-section > .container > .section-eyebrow { text-align: center; }
.tips-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
}
.tips-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--slate);
  font-size: 1.02rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tip-card {
  border-left: 4px solid var(--teal);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.tip-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-left-color: var(--coral);
}
.tip-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.tip-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.tips-cta {
  text-align: center;
}
.tips-cta p {
  margin-bottom: 1.25rem;
  color: var(--slate);
  font-size: 1.02rem;
}

/* ════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════ */
.faq-section {
  background: var(--navy-mid);
  padding: 2rem 0;
}
.faq-section .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: var(--radius);
  background: rgba(247,249,251,0.04);
  border: 1px solid rgba(247,249,251,0.08);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  background: rgba(247,249,251,0.08);
  border-color: var(--teal);
}
.faq-question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover { color: var(--teal); }

.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: rgba(247,249,251,0.75);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-answer a { color: var(--teal); font-weight: 500; }
.faq-answer a:hover { color: var(--coral); }
.faq-answer strong { color: var(--white); }

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section {
  padding: var(--section-pad);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.contact-text .section-eyebrow { margin-bottom: 0.5rem; }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.contact-text p {
  color: var(--slate);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}
.contact-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-detail {
  font-size: 0.9rem;
  color: var(--slate);
}
.contact-detail strong { color: var(--navy); }

.contact-card {
  min-width: 280px;
  flex-shrink: 0;
}
.contact-card-inner {
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card-inner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(46,196,196,0.08);
}
.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.contact-card-inner > p {
  font-size: 0.8rem;
  color: rgba(247,249,251,0.6);
  margin-bottom: 1.5rem;
}
.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.25rem;
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--coral); }
.contact-card-sub {
  font-size: 0.75rem;
  color: rgba(247,249,251,0.5);
  margin-bottom: 1.5rem !important;
}
.contact-card-divider {
  height: 1px;
  background: rgba(247,249,251,0.1);
  margin: 1.25rem 0;
}
.contact-card-affiliate {
  font-size: 0.78rem;
  color: rgba(247,249,251,0.5);
}
.affiliate-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.25rem;
}
.affiliate-link:hover { color: var(--sand); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,249,251,0.08);
}
.footer-brand .logo-mark { color: var(--teal); font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 0.35rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(247,249,251,0.55);
  margin-bottom: 0.75rem;
}
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}
.footer-phone:hover { color: var(--coral); }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,249,251,0.45);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(247,249,251,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247,249,251,0.4);
}
.footer-bottom a { color: rgba(247,249,251,0.6); }
.footer-bottom a:hover { color: var(--teal); }
.footer-affiliate-note { text-align: right; }

/* ════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-card { min-width: unset; max-width: 360px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }

  .top-bar { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    z-index: 800;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { padding: 0.75rem 1rem; font-size: 1rem; display: block; }

  .hero { min-height: 85vh; padding: 4rem 0 6rem; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .trust-bar-inner { justify-content: flex-start; }
  .trust-item { padding: 0.5rem 1rem; }
  .trust-divider { display: none; }

  .problem-threats { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-affiliate-note { text-align: center; }

  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); margin: 0; padding: 0; }
  .process-step { max-width: 320px; width: 100%; }

  .services-cta-buttons { flex-direction: column; align-items: center; }
  .contact-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
}
