/* ============================================================
   UNIQUE BATH SEATTLE — TOP-TIER LANDING PAGE
   Type pair: Fraunces (display, refined serif) + Inter (UI/body)
   Body type minimum 16px for 55+ accessibility
   AAA contrast on body, WCAG AA+ on all interactive
   ============================================================ */

:root {
  /* Color tokens */
  --navy:        #0f1f3d;
  --navy-deep:   #08122a;
  --navy-mid:    #142847;
  --navy-elev:   #1b2e54;
  --coral:       #e94f47;
  --coral-soft:  #f06861;
  --coral-dark:  #c93d36;
  --coral-faint: rgba(233, 79, 71, 0.08);
  --cream:       #f5ede0;
  --cream-light: #fbf6ec;
  --cream-warm:  #f0e6d4;
  --white:       #ffffff;
  --ink:         #0b1530;            /* AAA on cream */
  --ink-soft:    #2a3550;
  --muted:       #58657f;            /* AA-large on cream */
  --border-light:rgba(15, 31, 61, 0.10);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Type tokens */
  --serif: 'Fraunces', 'Georgia', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.55;
  font-weight: 400;
  font-size: 17px; /* readable for 55+ */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* Display type uses Fraunces with refined optical sizing */
.lp2-hero-h1,
.lp2-styles-h,
.lp2-preview-h,
.lp2-form-h,
.lp2-testimonial-quote {
  font-family: var(--serif);
  font-feature-settings: "ss01" on, "ss02" on, "ss03" on;
}

em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}

/* ──── Reveal base state — visible by default; .pre-reveal adds the hidden start state ──── */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].pre-reveal {
  opacity: 0;
  transform: translateY(18px);
}
[data-reveal].pre-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal].pre-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.lp2-header {
  background: var(--navy);
  padding: 22px 0 18px;
  position: relative;
  z-index: 10;
}
.lp2-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp2-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp2-brand-icon {
  width: 48px; height: 48px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lp2-brand-icon svg { width: 24px; height: 24px; }
.lp2-brand-text { line-height: 1; }
.lp2-brand-name {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--white);
}
.lp2-brand-tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4.5px;
  color: var(--coral);
  margin-top: 6px;
}
.lp2-header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s var(--ease-soft);
}
.lp2-header-phone:hover { background: rgba(255,255,255,0.06); }
.lp2-header-phone-icon {
  width: 44px; height: 44px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.lp2-header-phone-icon svg { width: 18px; height: 18px; }
.lp2-header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: right;
}
.lp2-header-phone-num {
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.2px;
}
.lp2-header-phone-tag {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--white);
  opacity: 0.85;
  margin-top: 4px;
}

/* ============================================================
   HERO
   ============================================================ */
.lp2-hero {
  background: var(--navy);
  padding: 0 32px 0;
  position: relative;
}
/* Subtle background texture */
.lp2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(233,79,71,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.lp2-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  position: relative;
}
.lp2-hero-card {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
}
/* Cream paper texture */
.lp2-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 80%, rgba(233,79,71,0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(15,31,61,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.lp2-hero-card > * { position: relative; }

.lp2-hero-eyebrow {
  color: var(--coral);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3.5px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.lp2-hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
}
.lp2-hero-h1 {
  font-weight: 700;
  font-size: 54px;
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -1.6px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.lp2-hero-h1 em {
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--navy);
}
.lp2-hero-aslowas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3.5px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.lp2-hero-aslowas::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--coral);
}
.lp2-hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.lp2-hero-price {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 62px;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -2px;
  font-variation-settings: "opsz" 144;
}
.lp2-hero-price-anchor {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.lp2-hero-price-anchor-strike {
  font-weight: 700;
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  letter-spacing: -0.5px;
}
.lp2-hero-price-anchor-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
  font-weight: 500;
}
.lp2-hero-finance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 30px;
  background: rgba(233,79,71,0.08);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(233,79,71,0.18);
  align-self: flex-start;
}
.lp2-hero-finance svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; }
.lp2-hero-finance strong { color: var(--coral); font-weight: 800; }

.lp2-hero-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.lp2-hero-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp2-hero-callout-icon {
  width: 38px; height: 38px;
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp2-hero-callout-icon svg { width: 100%; height: 100%; }
.lp2-hero-callout-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.lp2-hero-callout-line {
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12.5px;
}
.lp2-hero-callout-accent {
  font-weight: 900;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.lp2-hero-photo {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.lp2-hero-photo #shower-preview-root {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

/* ============================================================
   FEATURE BAR
   ============================================================ */
.lp2-features {
  background: var(--navy);
  padding: 56px 32px 48px;
  position: relative;
}
.lp2-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.lp2-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.lp2-feature {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp2-feature:last-child { border-right: none; }
.lp2-feature-icon {
  width: 60px; height: 60px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(233,79,71,0.25);
  transition: transform 0.3s var(--ease-out);
}
.lp2-feature:hover .lp2-feature-icon { transform: translateY(-2px) scale(1.04); }
.lp2-feature-icon svg { width: 28px; height: 28px; }
.lp2-feature-h {
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.lp2-feature-h.accent { color: var(--coral); }
.lp2-feature-bignum {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 32px;
  color: var(--coral);
  letter-spacing: -1px;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  display: inline-block;
}
.lp2-feature-bignum-sub {
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.6px;
}
.lp2-feature-p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.lp2-trust {
  background: var(--cream-light);
  padding: 56px 32px 48px;
  position: relative;
}
.lp2-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(233,79,71,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 50%, rgba(15,31,61,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.lp2-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.lp2-trust-h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
.lp2-trust-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--coral);
  letter-spacing: 0.3px;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp2-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto 40px;
}
.lp2-trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.lp2-trust-badge-icon {
  width: 56px; height: 56px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(233,79,71,0.22);
}
.lp2-trust-badge-icon svg { width: 24px; height: 24px; }
.lp2-trust-badge-text { text-align: left; }
.lp2-trust-badge-h {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.lp2-trust-badge-p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.lp2-trust-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  max-width: 760px;
  margin: 0 auto;
}
.lp2-trust-cred {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
}
.lp2-trust-cred svg {
  width: 16px; height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}
.lp2-trust-cred-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.5;
}

/* ============================================================
   POPULAR STYLES
   ============================================================ */
.lp2-styles {
  background: var(--white);
  padding: 72px 32px 60px;
}
.lp2-styles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lp2-styles-head {
  text-align: center;
  margin-bottom: 44px;
}
.lp2-styles-h {
  font-weight: 700;
  font-size: 38px;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.lp2-styles-h em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp2-styles-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.lp2-styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lp2-style {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #e0e0e0;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.lp2-style:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 31, 61, 0.25);
}
.lp2-style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.lp2-style:hover img { transform: scale(1.06); }
.lp2-style::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,31,61,0.4) 100%);
  pointer-events: none;
}
.lp2-style-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  padding: 7px 13px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.lp2-testimonial {
  background: var(--cream);
  padding: 72px 32px;
  position: relative;
}
.lp2-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(233,79,71,0.05) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(15,31,61,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.lp2-testimonial-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.lp2-testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 900;
  color: var(--coral);
  line-height: 0.7;
  margin-bottom: 8px;
  opacity: 0.35;
  font-variation-settings: "opsz" 144;
  letter-spacing: -8px;
}
.lp2-testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp2-testimonial-quote em {
  color: var(--coral);
  font-weight: 600;
}
.lp2-testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp2-testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(233,79,71,0.3);
}
.lp2-testimonial-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  text-align: left;
}
.lp2-testimonial-meta {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.2px;
  text-align: left;
  margin-top: 2px;
}
.lp2-testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--coral);
}
.lp2-testimonial-stars svg { width: 16px; height: 16px; }

/* ============================================================
   DESIGN PREVIEW (LAPTOP)
   ============================================================ */
.lp2-preview {
  background: var(--white);
  padding: 32px 32px 72px;
}
.lp2-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
  border-radius: 16px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp2-preview-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(233,79,71,0.06) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(15,31,61,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.lp2-preview-copy { position: relative; }
.lp2-preview-eyebrow {
  color: var(--coral);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp2-preview-h {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.lp2-preview-h em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp2-preview-p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 440px;
}
.lp2-preview-p strong { color: var(--ink); font-weight: 700; }
.lp2-preview-mini {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.lp2-preview-mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp2-preview-mini-icon {
  width: 34px; height: 34px;
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp2-preview-mini-icon svg { width: 100%; height: 100%; }
.lp2-preview-mini-text { line-height: 1.3; }
.lp2-preview-mini-h {
  font-weight: 800;
  font-size: 11.5px;
  color: var(--ink);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.lp2-preview-mini-p {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* SVG laptop frame */
.lp2-laptop {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.lp2-laptop-svg {
  display: block;
  width: 100%;
  height: auto;
}
/* Screen content overlays the SVG screen area */
.lp2-laptop-content {
  position: absolute;
  top: 9.5%;    /* aligns with SVG screen rect y=36/380 */
  left: 9.33%;  /* x=56/600 */
  right: 9.33%;
  bottom: 17.9%; /* (380-36-276)/380 */
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: linear-gradient(135deg, #1b2e54 0%, #0f1f3d 100%);
  border-radius: 4px;
  overflow: hidden;
}
.lp2-laptop-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp2-laptop-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.lp2-laptop-dot:first-child { background: #e94f47; }
.lp2-laptop-dot:nth-child(2) { background: #f0b428; }
.lp2-laptop-dot:nth-child(3) { background: #4ec76f; }
.lp2-laptop-url {
  margin-left: auto;
  margin-right: 20px;
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.lp2-laptop-render {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #c9bda8;
  position: relative;
}
.lp2-laptop-render img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp2-laptop-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  flex-shrink: 0;
}
.lp2-laptop-tab {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 0.6px;
  text-align: center;
  padding: 5px 3px;
  border-radius: 3px;
  text-transform: uppercase;
}
.lp2-laptop-tab.active {
  background: var(--white);
  color: var(--navy);
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lp2-form-sec {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 72px 32px 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lp2-form-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(233,79,71,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(233,79,71,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.lp2-form-wrap {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.lp2-form-head {
  text-align: center;
  margin-bottom: 40px;
}
.lp2-form-eyebrow {
  display: inline-block;
  color: var(--coral);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(233,79,71,0.4);
  border-radius: 999px;
  background: rgba(233,79,71,0.1);
}
.lp2-form-h {
  font-weight: 700;
  font-size: 42px;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.lp2-form-h em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp2-form-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.lp2-form-err {
  display: none;
  color: var(--coral);
  text-align: center;
  font-size: 14px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(233,79,71,0.1);
  border-radius: 6px;
}
.lp2-form-err.active { display: block; }
.lp2-form-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.lp2-form-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp2-form-row-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp2-form-row input,
.lp2-form-row select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 17px 20px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s var(--ease-soft), background 0.2s var(--ease-soft);
}
.lp2-form-row input::placeholder { color: rgba(255, 255, 255, 0.5); }
.lp2-form-row input:focus,
.lp2-form-row select:focus {
  border-color: var(--coral);
  background: rgba(255,255,255,0.07);
}
.lp2-form-row select {
  color: rgba(255, 255, 255, 0.65);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.lp2-form-row select option { color: var(--navy); background: var(--white); }
.lp2-form-select-wrap { position: relative; }
.lp2-form-select-wrap::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-75%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.lp2-form-interests-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.lp2-form-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp2-form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s var(--ease-soft);
}
.lp2-form-check:hover { color: var(--white); }
.lp2-form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s var(--ease-soft);
}
.lp2-form-check input[type="checkbox"]:checked {
  background: var(--coral);
  border-color: var(--coral);
}
.lp2-form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg);
}
.lp2-form-submit {
  width: 100%;
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
  box-shadow: 0 12px 28px -6px rgba(233,79,71,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.lp2-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(233,79,71,0.6);
}
.lp2-form-submit:active { transform: translateY(0); }
.lp2-form-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s var(--ease-soft);
}
.lp2-form-submit:hover svg { transform: translateX(4px); }
.lp2-form-fine {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp2-form-fine svg { width: 14px; height: 14px; }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.lp2-sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  display: none;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}
.lp2-sticky-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lp2-sticky-call-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp2-sticky-call-icon svg { width: 20px; height: 20px; }
.lp2-sticky-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.lp2-sticky-call-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.lp2-sticky-call-text em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp2-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 26px 32px;
}
.lp2-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp2-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.2px;
  color: var(--coral);
}
.lp2-footer-brand svg { width: 16px; height: 16px; }
.lp2-footer-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .lp2-hero-h1 { font-size: 46px; }
  .lp2-hero-price { font-size: 52px; }
  .lp2-features-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .lp2-feature { border-right: none; }
  .lp2-preview-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .lp2-preview-h { font-size: 38px; }
  .lp2-styles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 740px) {
  body { font-size: 16px; }
  .lp2-header-inner { padding: 0 20px; }
  .lp2-header-phone-tag { display: none; }
  .lp2-header-phone-num { font-size: 18px; }

  .lp2-hero { padding: 0 16px; }
  .lp2-hero-inner { grid-template-columns: 1fr; min-height: auto; border-radius: 12px; }
  .lp2-hero-card { padding: 36px 28px; }
  .lp2-hero-h1 { font-size: 40px; letter-spacing: -1.2px; }
  .lp2-hero-price-row { gap: 12px; }
  .lp2-hero-price { font-size: 48px; letter-spacing: -1.4px; }
  .lp2-hero-price-anchor-strike { font-size: 18px; }
  .lp2-hero-photo, .lp2-hero-photo #shower-preview-root { min-height: 380px; }
  .lp2-hero-callouts { grid-template-columns: 1fr; gap: 18px; }

  .lp2-features { padding: 44px 20px 32px; }
  .lp2-features-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .lp2-trust { padding: 44px 20px 36px; }
  .lp2-trust-h { font-size: 24px; }
  .lp2-trust-sub { font-size: 18px; }
  .lp2-trust-badges { grid-template-columns: 1fr; gap: 22px; }
  .lp2-trust-credentials { gap: 12px; }
  .lp2-trust-cred { font-size: 12px; }

  .lp2-styles { padding: 48px 20px 40px; }
  .lp2-styles-h { font-size: 28px; }
  .lp2-styles-sub { font-size: 14px; }
  .lp2-styles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .lp2-testimonial { padding: 48px 24px; }
  .lp2-testimonial-quote { font-size: 19px; line-height: 1.5; }
  .lp2-testimonial-quote-mark { font-size: 80px; }
  .lp2-testimonial-attribution { flex-direction: column; gap: 12px; }
  .lp2-testimonial-name, .lp2-testimonial-meta { text-align: center; }

  .lp2-preview { padding: 24px 16px 48px; }
  .lp2-preview-inner { padding: 32px 24px; }
  .lp2-preview-h { font-size: 32px; }
  .lp2-preview-p { font-size: 15px; }
  .lp2-preview-mini { flex-direction: column; gap: 16px; }

  .lp2-form-sec { padding: 48px 20px 88px; }
  .lp2-form-h { font-size: 30px; }
  .lp2-form-sub { font-size: 15px; }
  .lp2-form-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp2-form-row-pair { grid-template-columns: 1fr; }
  .lp2-form-submit { font-size: 15px; padding: 18px 20px; }

  .lp2-sticky-call { display: flex; }

  .lp2-footer-inner { flex-direction: column; text-align: center; gap: 10px; }
}
