:root {
  --lp-teal: #2A9D8F;
  --lp-teal-dark: #1E7268;
  --lp-teal-light: #3DB8A9;
  --lp-coral: #E76F51;
  --lp-coral-dark: #D5583A;
  --lp-coral-light: #f08a72;
  --lp-text: #2c3e50;
  --lp-text-muted: #6D6875;
  --lp-white: #ffffff;
  --lp-off-white: #f8f9fa;
  --lp-shadow: 0 4px 24px rgba(0,0,0,0.10);
  --lp-shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --lp-radius: 12px;
  --lp-max: 1100px;
}

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

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

body.lp-body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.65;
  color: var(--lp-text);
  background: var(--lp-white);
  -webkit-font-smoothing: antialiased;
}

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

.lp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--lp-white);
  border-bottom: 2px solid var(--lp-teal);
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-topbar-logo img {
  height: 50px;
  width: auto;
}

.lp-topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lp-teal-dark);
  text-decoration: none;
}

.lp-topbar-phone:hover { color: var(--lp-teal); }

.lp-topbar-phone svg { width: 20px; height: 20px; fill: var(--lp-coral); flex-shrink: 0; }

.lp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.lp-hero .lp-tagline {
  display: inline-block;
  background: var(--lp-coral);
  color: var(--lp-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.lp-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.lp-hero .lp-hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.lp-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lp-btn-coral {
  background: var(--lp-coral);
  color: var(--lp-white);
  box-shadow: 0 4px 14px rgba(231,111,81,0.35);
}
.lp-btn-coral:hover {
  background: var(--lp-coral-dark);
  color: var(--lp-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231,111,81,0.45);
}

.lp-btn-teal {
  background: var(--lp-teal);
  color: var(--lp-white);
  box-shadow: 0 4px 14px rgba(42,157,143,0.3);
}
.lp-btn-teal:hover {
  background: var(--lp-teal-dark);
  color: var(--lp-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,157,143,0.4);
}

.lp-btn-outline-white {
  background: transparent;
  color: var(--lp-white);
  border: 2px solid var(--lp-white);
}
.lp-btn-outline-white:hover {
  background: var(--lp-white);
  color: var(--lp-teal-dark);
  transform: translateY(-2px);
}

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

.lp-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.lp-section {
  padding: 5rem 2rem;
}

.lp-section-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}

.lp-section-dark {
  background: #1a2332;
  color: var(--lp-white);
}

.lp-section-teal {
  background: var(--lp-teal);
  color: var(--lp-white);
}

.lp-section-light {
  background: var(--lp-off-white);
}

.lp-section-coral {
  background: var(--lp-coral);
  color: var(--lp-white);
}

.lp-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.lp-section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.lp-problem-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2rem;
  box-shadow: var(--lp-shadow);
  border-top: 4px solid var(--lp-coral);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-problem-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.lp-problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--lp-text);
}

.lp-problem-card p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-solution-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--lp-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.25s ease;
}

.lp-solution-card:hover { transform: translateY(-4px); }

.lp-solution-card .card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.lp-solution-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lp-solution-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-split-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--lp-text-muted);
}

.lp-split-visual {
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-checklist {
  list-style: none;
  margin: 1.5rem 0;
}

.lp-checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.lp-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-teal);
  font-weight: 800;
  font-size: 1.2rem;
}

.lp-dark-checklist li::before { color: var(--lp-coral-light); }

.lp-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.lp-stat .stat-number {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lp-stat .stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

.lp-quote-block {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.lp-quote-block blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lp-quote-block blockquote::before {
  content: '"';
  font-size: 4rem;
  font-weight: 900;
  color: var(--lp-coral);
  display: block;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.lp-quote-block cite {
  font-style: normal;
  font-size: 0.95rem;
  opacity: 0.8;
}

.lp-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2.5rem 2rem;
  background: var(--lp-off-white);
  border-top: 1px solid var(--lp-teal);
  border-bottom: 1px solid var(--lp-teal);
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-teal-dark);
  white-space: nowrap;
}

.lp-trust-item svg { width: 22px; height: 22px; fill: var(--lp-teal); flex-shrink: 0; }

.lp-final-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--lp-teal-dark) 0%, var(--lp-teal) 100%);
  color: var(--lp-white);
}

.lp-final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-final-cta p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.lp-footer {
  text-align: center;
  padding: 1.5rem 2rem;
  background: #1a2332;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

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

.lp-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.lp-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  counter-increment: step;
}

.lp-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-coral);
  color: var(--lp-white);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.lp-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.lp-step p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.lp-myth-fact {
  max-width: 800px;
  margin: 0 auto;
}

.lp-myth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
}

.lp-myth {
  background: #fef2f0;
  padding: 1.5rem;
  border-left: 4px solid var(--lp-coral);
}

.lp-fact {
  background: #eef9f7;
  padding: 1.5rem;
  border-left: 4px solid var(--lp-teal);
}

.lp-myth strong, .lp-fact strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.lp-myth strong { color: var(--lp-coral); }
.lp-fact strong { color: var(--lp-teal); }

.lp-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-hero-image {
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-hero-wellness .lp-hero-bg {
  background: linear-gradient(135deg, #e8f5f3 0%, #d4efed 40%, #f0faf9 100%);
}

.lp-hero-protect .lp-hero-bg {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 60%, #1E7268 100%);
}
.lp-hero-protect .lp-hero-bg::after {
  background: radial-gradient(ellipse at 80% 50%, rgba(231,111,81,0.08) 0%, transparent 70%);
}
.lp-hero-protect h1, .lp-hero-protect .lp-hero-sub { color: var(--lp-white); }

.lp-hero-perform .lp-hero-bg {
  background: linear-gradient(160deg, #f8f9fa 0%, #e8f5f3 50%, #d4efed 100%);
}

.lp-hero-hvac .lp-hero-bg {
  background: linear-gradient(135deg, #1a2332 0%, #1E3A4A 55%, #1E7268 100%);
}
.lp-hero-hvac h1,
.lp-hero-hvac .lp-hero-sub { color: var(--lp-white); }

.lp-highlight-white { color: var(--lp-white); opacity: 0.9; }

.lp-hero-checklist-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--lp-radius);
  padding: 2rem 2.25rem;
  color: var(--lp-white);
}

.lp-hero-checklist-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  color: var(--lp-coral-light);
}

.lp-hero-checklist-box .lp-checklist li {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.lp-testimonial-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2rem;
  box-shadow: var(--lp-shadow);
  border-top: 4px solid var(--lp-teal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.lp-testimonial-card blockquote {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--lp-text);
  font-style: italic;
  flex: 1;
}

.lp-testimonial-card cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-text-muted);
}

.lp-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.lp-area-tags span {
  background: var(--lp-white);
  border: 1.5px solid var(--lp-teal);
  color: var(--lp-teal-dark);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.lp-highlight { color: var(--lp-coral); }
.lp-highlight-teal { color: var(--lp-teal); }

.lp-divider {
  width: 60px;
  height: 4px;
  background: var(--lp-coral);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lp-feature-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--lp-shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-feature-card .card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.lp-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--lp-text);
}

.lp-feature-card p {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .lp-hero-split { grid-template-columns: 1fr; gap: 2rem; }
  .lp-hero-image { order: -1; max-width: 550px; margin: 0 auto; }
  .lp-hero-copy { text-align: center; }
  .lp-hero-copy .lp-tagline { margin-left: auto; margin-right: auto; }
  .lp-hero-copy .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-copy h1 { max-width: 100%; }
  .lp-cta-group { justify-content: center; }
  .lp-split { grid-template-columns: 1fr; gap: 2rem; }
  .lp-split-visual { order: -1; }
}

@media (max-width: 768px) {
  .lp-hero { min-height: auto; }
  .lp-hero-inner { padding: 2.5rem 1.25rem; }
  .lp-section { padding: 3rem 1.25rem; }
  .lp-section-title { font-size: 1.5rem; }
  .lp-section-title br { display: none; }
  .lp-myth-row { grid-template-columns: 1fr; }
  .lp-topbar { padding: 0.75rem 1rem; }
  .lp-topbar-logo img { height: 40px; }
  .lp-topbar-phone span { display: none; }
  .lp-cta-group { flex-direction: column; }
  .lp-cta-group .lp-btn { width: 100%; text-align: center; }
  .lp-final-cta { padding: 3rem 1.25rem; }
  .lp-final-cta .lp-cta-group { justify-content: center; }
  .lp-hero-image { max-width: 100%; }
  .lp-hero h1 { font-size: 1.8rem; }
  .lp-hero h1 br { display: none; }
  .lp-hero .lp-hero-sub { font-size: 1rem; }
  .lp-trust-bar { gap: 1rem 1.5rem; padding: 1.5rem 1rem; flex-direction: column; align-items: center; }
  .lp-trust-item { font-size: 0.85rem; }
  .lp-stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-process-steps { grid-template-columns: 1fr; }
  .lp-problem-grid { grid-template-columns: 1fr; }
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-quote-block blockquote { font-size: 1.1rem; }
  .lp-final-cta h2 { font-size: 1.5rem; }
  .lp-final-cta h2 br { display: none; }
  .lp-footer { font-size: 0.8rem; padding: 1.25rem 1rem; }
}
