/* ================================================================
   EWDC Landing Pages — Shared Stylesheet
   Design System: Navy #172852, Gold #b79f6f, Teal #8bb7ad
   Fonts: Playfair Display (headings), Outfit (body)
   /* LP Redesign 2026-04-12 */
   ================================================================ */

/* ==========================================================
   1. CSS Variables
   ========================================================== */
:root {
    --lp-navy: #172852;
    --lp-navy-dark: #0f1c3d;
    --lp-gold: #b79f6f;
    --lp-gold-light: #c9b48a;
    --lp-gold-glow: rgba(183, 159, 111, 0.15);
    --lp-teal: #8bb7ad;
    --lp-teal-light: #a8cec5;
    --lp-white: #ffffff;
    --lp-off-white: #f9f9f9;
    --lp-gray-light: #f5f5f5;
    --lp-gray: #e8e8e8;
    --lp-text: #222222;
    --lp-text-light: #555555;
    --lp-red: #c23a3a;
    --lp-red-dark: #a02e2e;
    --lp-green: #2e7d5b;
    --lp-green-light: #3da86c;
    --lp-font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    --lp-font-heading: 'Playfair Display', Georgia, serif;
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --lp-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --lp-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --lp-radius: 16px;
    --lp-radius-sm: 10px;
    --lp-radius-full: 50px;
    /* New: Gradients */
    --lp-gradient-gold: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-light));
    --lp-gradient-navy: linear-gradient(135deg, var(--lp-navy), var(--lp-navy-dark));
    --lp-gradient-teal: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-light));
    --lp-gradient-card-border: linear-gradient(135deg, var(--lp-gold), var(--lp-teal));
    /* New: Glassmorphism */
    --lp-glass-bg: rgba(255, 255, 255, 0.12);
    --lp-glass-border: rgba(255, 255, 255, 0.2);
    --lp-glass-blur: blur(12px);
    /* New: Timeline */
    --lp-timeline-line: var(--lp-gray);
    --lp-timeline-dot: var(--lp-gold);
    --lp-timeline-dot-size: 16px;
}

/* ==========================================================
   2. Reset / Base
   ========================================================== */
.ewdc-lp * {
    box-sizing: border-box;
}

.ewdc-lp {
    font-family: var(--lp-font-body);
    color: var(--lp-text);
    font-size: 1.05rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.ewdc-lp h1,
.ewdc-lp h2,
.ewdc-lp h3,
.ewdc-lp h4 {
    font-family: var(--lp-font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--lp-navy);
    margin: 0 0 1rem;
}

.ewdc-lp h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.ewdc-lp h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.ewdc-lp h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--lp-gold);
    font-family: var(--lp-font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.lp-subtitle {
    color: var(--lp-gold);
    font-family: var(--lp-font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
}

.ewdc-lp h4 {
    font-size: 1.1rem;
}

.ewdc-lp p {
    margin: 0 0 1.25rem;
    font-weight: 300;
}

.ewdc-lp img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================
   3. Layout
   ========================================================== */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-section {
    padding: 80px 0;
}

.lp-section-sm {
    padding: 50px 0;
}

/* ==========================================================
   4. Header — sticky, frosted glass on scroll
   ========================================================== */
.lp-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lp-gray);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--lp-transition);
}

.lp-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-header-logo {
    font-family: var(--lp-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-header-logo img {
    height: 40px;
    width: auto;
}

.lp-header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--lp-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-navy);
    text-decoration: none;
    transition: var(--lp-transition);
}

.lp-header-phone:hover {
    color: var(--lp-gold);
}

.lp-header-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--lp-gold);
}

/* ==========================================================
   5. Footer — dark navy, gold links
   ========================================================== */
.lp-footer {
    background: var(--lp-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 100px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    font-size: 0.9rem;
}

.lp-footer a {
    color: var(--lp-gold);
    text-decoration: none;
    transition: var(--lp-transition);
}

.lp-footer a:hover {
    color: var(--lp-gold-light);
}

.lp-footer-logo {
    font-family: var(--lp-font-heading);
    color: var(--lp-white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lp-footer-address {
    margin: 0.5rem 0;
}

.lp-footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================
   6. Buttons — gold gradient primary, variants, sizes
   ========================================================== */
.ewdc-lp .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    min-height: 48px;
    font-family: var(--lp-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--lp-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--lp-transition);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.lp-btn-primary {
    background: var(--lp-gradient-gold);
    color: var(--lp-white);
    border-color: var(--lp-gold);
}

.lp-btn-primary:hover {
    background: var(--lp-gold-light);
    border-color: var(--lp-gold-light);
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 159, 111, 0.35), 0 0 20px var(--lp-gold-glow);
}

.lp-btn-navy {
    background: var(--lp-navy);
    color: var(--lp-white);
    border-color: var(--lp-navy);
}

.lp-btn-navy:hover {
    background: var(--lp-navy-dark);
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 40, 82, 0.35);
}

.lp-btn-white {
    background: var(--lp-white);
    color: var(--lp-navy);
    border-color: var(--lp-white);
    font-weight: 600;
}

.lp-btn-white:hover {
    background: transparent;
    color: var(--lp-white);
    border-color: var(--lp-white);
    transform: scale(1.02);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-navy);
    border-color: var(--lp-navy);
}

.lp-btn-outline:hover {
    background: var(--lp-navy);
    color: var(--lp-white);
    transform: scale(1.02);
}

.lp-btn-red {
    background: var(--lp-red);
    color: var(--lp-white);
    border-color: var(--lp-red);
}

.lp-btn-red:hover {
    background: var(--lp-red-dark);
    border-color: var(--lp-red-dark);
    transform: scale(1.02) translateY(-2px);
}

.lp-btn-green {
    background: var(--lp-green);
    color: var(--lp-white);
    border-color: var(--lp-green);
}

.lp-btn-green:hover {
    background: var(--lp-green-light);
    border-color: var(--lp-green-light);
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 91, 0.3);
}

.lp-btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    min-height: 56px;
}

.lp-btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
    min-height: 40px;
}

.lp-btn-block {
    width: 100%;
}

/* ==========================================================
   7. Hero — full viewport, gradient overlays, entrance animation
   ========================================================== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.lp-hero-navy {
    background: linear-gradient(135deg, rgba(23, 40, 82, 0.95) 0%, rgba(15, 28, 61, 0.92) 100%);
}

.lp-hero-red {
    background: linear-gradient(135deg, rgba(194, 58, 58, 0.95) 0%, rgba(160, 46, 46, 0.92) 100%);
}

.lp-hero-gold {
    background: linear-gradient(135deg, rgba(23, 40, 82, 0.92) 0%, rgba(23, 40, 82, 0.85) 50%, rgba(183, 159, 111, 0.15) 100%);
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    color: var(--lp-white);
    animation: fadeInUp 0.8s ease-out both;
}

.lp-hero h1 {
    color: var(--lp-white);
    margin-bottom: 1rem;
}

.lp-hero h1 span {
    color: var(--lp-gold);
}

.lp-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 650px;
}

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

.lp-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.lp-hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.lp-hero-bullets li svg {
    width: 20px;
    height: 20px;
    fill: var(--lp-gold);
    flex-shrink: 0;
}

.lp-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lp-glass-bg);
    backdrop-filter: var(--lp-glass-blur);
    -webkit-backdrop-filter: var(--lp-glass-blur);
    color: var(--lp-white);
    padding: 8px 20px;
    border-radius: var(--lp-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--lp-glass-border);
    animation: fadeInUp 0.6s ease-out both;
}

.lp-hero-phone {
    display: block;
    font-family: var(--lp-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lp-white);
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.lp-hero-phone:hover {
    color: var(--lp-gold);
}

/* ==========================================================
   Toggle / Segmented Control
   ========================================================== */
.lp-toggle {
    display: inline-flex;
    background: var(--lp-glass-bg);
    backdrop-filter: var(--lp-glass-blur);
    -webkit-backdrop-filter: var(--lp-glass-blur);
    border-radius: var(--lp-radius-full);
    padding: 5px;
    margin-bottom: 2rem;
    border: 1px solid var(--lp-glass-border);
}

.lp-toggle-btn {
    padding: 12px 32px;
    font-family: var(--lp-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: var(--lp-radius-full);
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-toggle-btn:hover {
    color: var(--lp-white);
}

.lp-toggle-btn.active {
    background: var(--lp-white);
    color: var(--lp-navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ==========================================================
   8. Form Card — heavy shadow, glassmorphism, gold focus
   ========================================================== */
.lp-form-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem;
    box-shadow: var(--lp-shadow-xl);
    position: relative;
    animation: fadeInUp 0.8s 0.2s ease-out both;
}

.lp-form-card--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--lp-glass-blur);
    -webkit-backdrop-filter: var(--lp-glass-blur);
    border: 1px solid var(--lp-glass-border);
    color: var(--lp-white);
}

.lp-form-card--glass .ewdc-lp-form label {
    color: rgba(255, 255, 255, 0.9);
}

.lp-form-card--glass .ewdc-lp-form input,
.lp-form-card--glass .ewdc-lp-form select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--lp-white);
}

.lp-form-card h3 {
    color: var(--lp-navy);
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--lp-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.lp-form-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gradient-gold);
    color: var(--lp-white);
    padding: 6px 20px;
    border-radius: var(--lp-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(183, 159, 111, 0.3);
}

.lp-form-progress {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.lp-form-progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--lp-gray-light);
    color: var(--lp-text-light);
    border: 2px solid var(--lp-gray);
    transition: var(--lp-transition);
}

.lp-form-progress-step.active {
    background: var(--lp-gradient-gold);
    color: var(--lp-white);
    border-color: var(--lp-gold);
    box-shadow: 0 0 0 4px var(--lp-gold-glow);
}

.lp-form-progress-step.complete {
    background: var(--lp-green);
    color: var(--lp-white);
    border-color: var(--lp-green);
}

.lp-form-progress-line {
    width: 40px;
    height: 2px;
    background: var(--lp-gray);
    transition: var(--lp-transition);
}

.lp-form-progress-line.active {
    background: var(--lp-gold);
}

.ewdc-lp-form .ewdc-form-row {
    margin-bottom: 1rem;
}

.ewdc-lp-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-navy);
    margin-bottom: 0.35rem;
}

.ewdc-lp-form label .required {
    color: var(--lp-red);
}

.ewdc-lp-form input[type="text"],
.ewdc-lp-form input[type="tel"],
.ewdc-lp-form input[type="email"],
.ewdc-lp-form select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    border: 1.5px solid var(--lp-gray);
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition);
    background: var(--lp-white);
    color: var(--lp-text);
}

/* Autoresearch 2026-04-12 run #7 day #7 swarm — WCAG 2.4.7: visible gold outline */
.ewdc-lp-form input:focus,
.ewdc-lp-form select:focus {
    outline: 2px solid var(--lp-gold);
    outline-offset: 1px;
    border-color: var(--lp-gold);
    box-shadow: 0 0 0 3px var(--lp-gold-glow);
}

.ewdc-lp-form .ewdc-form-consent {
    margin-top: 0.5rem;
}

.ewdc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--lp-text-light);
    line-height: 1.5;
    cursor: pointer;
}

.ewdc-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.ewdc-checkbox-label a {
    color: var(--lp-gold);
}

.ewdc-form-phi-note {
    color: var(--lp-text-light);
    font-size: 0.75rem;
    margin: 0.25rem 0 0.75rem;
}

/* Button base used by form handler mu-plugin */
.ewdc-btn {
    display: inline-block;
    font-family: var(--lp-font-body);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--lp-radius);
    cursor: pointer;
    transition: var(--lp-transition);
    line-height: 1.4;
}

.ewdc-btn-primary {
    background: var(--lp-gold);
    color: var(--lp-white);
}

/* Autoresearch 2026-04-12 run #7 day #7 swarm — WCAG 2.4.7 keyboard focus */
.ewdc-btn-primary:focus {
    background: var(--lp-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(183, 159, 111, 0.35);
    outline: 3px solid var(--lp-gold);
    outline-offset: 2px;
}

.ewdc-btn-primary:hover,
.ewdc-btn-primary:focus-visible {
    background: var(--lp-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(183, 159, 111, 0.35);
}

.ewdc-form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    background: var(--lp-gradient-gold);
    position: relative;
    overflow: hidden;
}

.ewdc-form-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

.ewdc-form-errors {
    background: rgba(194, 58, 58, 0.08);
    border: 1px solid rgba(194, 58, 58, 0.25);
    border-radius: var(--lp-radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
}

.ewdc-form-errors p {
    color: var(--lp-red);
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==========================================================
   9. Trust Bar — scroll-snap mobile, flex-wrap desktop
   ========================================================== */
.lp-trust-row {
    background: var(--lp-white);
    border-bottom: 1px solid var(--lp-gray);
    padding: 20px 0;
}

.lp-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--lp-text);
    font-weight: 500;
    flex-shrink: 0;
}

.lp-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-trust-icon-gold {
    background: var(--lp-gold-glow);
    color: var(--lp-gold);
}

.lp-trust-icon-navy {
    background: rgba(23, 40, 82, 0.08);
    color: var(--lp-navy);
}

.lp-trust-stars {
    color: #f5a623;
    letter-spacing: 2px;
}

/* ==========================================================
   10. Cards — hover lift + gradient border effect
   ========================================================== */
.lp-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem;
    box-shadow: var(--lp-shadow);
    transition: var(--lp-transition);
    position: relative;
}

.lp-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--lp-radius) + 2px);
    background: var(--lp-gradient-card-border);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.lp-card:hover::before {
    opacity: 1;
}

.lp-card-highlight {
    border: 2px solid var(--lp-gold);
    position: relative;
}

.lp-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gold);
    color: var(--lp-white);
    padding: 4px 20px;
    border-radius: var(--lp-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.lp-service-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid var(--lp-gray);
    transition: var(--lp-transition);
    text-decoration: none;
    display: block;
    color: var(--lp-text);
}

.lp-service-card:hover {
    border-color: var(--lp-gold);
    box-shadow: var(--lp-shadow);
    transform: translateY(-3px);
}

.lp-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--lp-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.lp-service-card h4 {
    font-size: 1rem;
}

.lp-service-card p {
    font-size: 0.9rem;
    color: var(--lp-text-light);
    margin: 0;
}

/* ==========================================================
   Offer Card
   ========================================================== */
.lp-offer {
    background: var(--lp-gradient-navy);
    border-radius: var(--lp-radius);
    padding: 3rem;
    color: var(--lp-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(183, 159, 111, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-offer h2 {
    color: var(--lp-white);
}

.lp-offer h3 {
    color: var(--lp-gold);
}

.lp-offer-price {
    font-family: var(--lp-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--lp-gold);
    line-height: 1;
    margin: 1rem 0;
}

.lp-offer-items {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto;
    max-width: 400px;
    text-align: left;
}

.lp-offer-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.lp-offer-items li svg {
    width: 20px;
    height: 20px;
    fill: var(--lp-gold);
    flex-shrink: 0;
}

/* ==========================================================
   Accordion / Terms
   ========================================================== */
.lp-accordion {
    margin-top: 1.5rem;
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
}

.lp-accordion-toggle {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--lp-radius-sm);
    transition: var(--lp-transition);
}

.lp-accordion-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lp-accordion-toggle svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.6);
    transition: var(--lp-transition);
}

.lp-accordion-toggle.open svg {
    transform: rotate(180deg);
}

.lp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.lp-accordion-body.open {
    max-height: 500px;
}

.lp-accordion-content {
    padding: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 var(--lp-radius-sm) var(--lp-radius-sm);
}

/* Light variant */
.lp-accordion-light .lp-accordion-toggle {
    background: var(--lp-gray-light);
    border-color: var(--lp-gray);
    color: var(--lp-text-light);
}

.lp-accordion-light .lp-accordion-toggle svg {
    fill: var(--lp-text-light);
}

.lp-accordion-light .lp-accordion-content {
    background: var(--lp-gray-light);
    color: var(--lp-text-light);
}

/* ==========================================================
   11. Steps / Process — numbered steps + vertical timeline
   ========================================================== */
.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.lp-step-num {
    width: 50px;
    height: 50px;
    background: var(--lp-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.lp-step h4 {
    text-align: center;
}

.lp-step p {
    color: var(--lp-text-light);
    font-size: 0.95rem;
    text-align: center;
}

/* Process Timeline — vertical connected dots */
.lp-process-timeline {
    position: relative;
    padding-left: 40px;
    margin: 2rem 0;
}

.lp-process-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--lp-timeline-line);
}

.lp-timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.lp-timeline-step:last-child {
    margin-bottom: 0;
}

.lp-timeline-step::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 4px;
    width: var(--lp-timeline-dot-size);
    height: var(--lp-timeline-dot-size);
    border-radius: 50%;
    background: var(--lp-timeline-dot);
    border: 3px solid var(--lp-white);
    box-shadow: 0 0 0 2px var(--lp-gold);
}

.lp-timeline-step h4 {
    margin-bottom: 0.5rem;
}

.lp-timeline-step p {
    color: var(--lp-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================
   12. Expert Box — callout with gold left border
   ========================================================== */
.lp-expert-box {
    background: linear-gradient(135deg, rgba(183, 159, 111, 0.08) 0%, rgba(183, 159, 111, 0.02) 100%);
    border-left: 4px solid var(--lp-gold);
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
    padding: 1.5rem;
    margin: 2rem 0;
}

.lp-expert-box h4 {
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.lp-expert-box p {
    margin: 0;
}

/* ==========================================================
   13. Why Grid — icon cards with hover
   ========================================================== */
.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lp-why-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--lp-radius);
    transition: var(--lp-transition);
}

.lp-why-card:hover {
    background: var(--lp-white);
    box-shadow: var(--lp-shadow);
    transform: translateY(-4px);
}

.lp-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--lp-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    transition: var(--lp-transition);
}

.lp-why-card:hover .lp-why-icon {
    background: var(--lp-gradient-gold);
    color: var(--lp-white);
}

.lp-why-card h4 {
    text-align: center;
}

.lp-why-card p {
    color: var(--lp-text-light);
    font-size: 0.95rem;
}

/* ==========================================================
   14. FAQ — accordion with smooth transition
   ========================================================== */
.lp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.lp-faq-item {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    transition: var(--lp-transition);
    border: 1px solid var(--lp-gray);
    cursor: pointer;
    overflow: hidden;
}

.lp-faq-item:hover {
    box-shadow: var(--lp-shadow);
    border-color: var(--lp-gold);
}

.lp-faq-item.active {
    border-left: 4px solid var(--lp-gold);
    border-color: var(--lp-gold);
    box-shadow: var(--lp-shadow);
}

.lp-faq-item h4 {
    color: var(--lp-navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-faq-item h4::after {
    content: '+';
    font-family: var(--lp-font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--lp-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lp-faq-item.active h4::after {
    transform: rotate(45deg);
}

.lp-faq-item p {
    color: var(--lp-text-light);
    font-size: 0.95rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.lp-faq-item.active p {
    max-height: 500px;
    opacity: 1;
}

/* ==========================================================
   15. CTA Band — full-bleed gradient with animated stripes
   ========================================================== */
.lp-cta-band {
    text-align: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.lp-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: diagonalStripes 20s linear infinite;
}

@keyframes diagonalStripes {
    0% { background-position: 0 0; }
    100% { background-position: 56px 56px; }
}

.lp-cta-navy {
    background: var(--lp-gradient-navy);
}

.lp-cta-gold {
    background: var(--lp-gradient-gold);
}

.lp-cta-red {
    background: linear-gradient(135deg, var(--lp-red), var(--lp-red-dark));
}

.lp-cta-band h2 {
    color: var(--lp-white);
    margin-bottom: 0.5rem;
    position: relative;
}

.lp-cta-band p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.lp-cta-phone {
    display: block;
    font-family: var(--lp-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-white);
    text-decoration: none;
    margin-bottom: 1.5rem;
    position: relative;
}

.lp-cta-phone:hover {
    color: var(--lp-gold);
}

.lp-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ==========================================================
   Section Headings
   ========================================================== */
.lp-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-section-header p {
    color: var(--lp-text-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==========================================================
   Emergency Info Box
   ========================================================== */
.lp-emergency-box {
    background: rgba(194, 58, 58, 0.06);
    border: 1px solid rgba(194, 58, 58, 0.2);
    border-left: 4px solid var(--lp-red);
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.lp-emergency-box h4 {
    color: var(--lp-red);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-emergency-box p {
    margin: 0;
    color: var(--lp-text-light);
}

/* ==========================================================
   Check list
   ========================================================== */
.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.lp-checklist li svg {
    width: 20px;
    height: 20px;
    fill: var(--lp-green);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==========================================================
   16. Sticky Mobile CTA — frosted glass, slide-up
   ========================================================== */
.lp-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--lp-gray);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    animation: slideUp 0.4s ease-out;
}

.lp-sticky-inner {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.lp-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 14px 8px;
    min-height: 48px;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--lp-transition);
    border: none;
    cursor: pointer;
}

.lp-sticky-call {
    background: var(--lp-green);
    color: var(--lp-white);
}

.lp-sticky-call:hover {
    background: var(--lp-green-light);
}

.lp-sticky-form {
    background: var(--lp-gradient-gold);
    color: var(--lp-white);
}

.lp-sticky-form:hover {
    background: var(--lp-gold-light);
}

/* ==========================================================
   17. Testimonials — quote card + horizontal slider
   ========================================================== */
.lp-testimonial-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem;
    box-shadow: var(--lp-shadow);
    position: relative;
    border: 1px solid var(--lp-gray);
}

.lp-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--lp-font-heading);
    font-size: 4rem;
    color: var(--lp-gold);
    line-height: 1;
    opacity: 0.3;
}

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

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

.lp-testimonial-name {
    font-weight: 600;
    color: var(--lp-navy);
    font-size: 0.9rem;
}

.lp-testimonial-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-gold) transparent;
}

.lp-testimonial-slider::-webkit-scrollbar {
    height: 6px;
}

.lp-testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--lp-gold);
    border-radius: 3px;
}

.lp-testimonial-slider .lp-testimonial-card {
    min-width: 320px;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* ==========================================================
   18. Stat Row — large numbers + labels
   ========================================================== */
.lp-stat-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.lp-stat-card {
    text-align: center;
    min-width: 140px;
}

.lp-stat-number {
    font-family: var(--lp-font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--lp-gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.lp-stat-label {
    font-size: 0.9rem;
    color: var(--lp-text-light);
    font-weight: 500;
}

.lp-bg-navy .lp-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.lp-bg-navy .lp-stat-number {
    color: var(--lp-gold);
}

/* ==========================================================
   19. Guarantee Badge — shield icon, bordered box
   ========================================================== */
.lp-guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(46, 125, 91, 0.06);
    border: 2px solid var(--lp-green);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.lp-guarantee-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(46, 125, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--lp-green);
}

.lp-guarantee-badge h4 {
    color: var(--lp-green);
    margin-bottom: 0.25rem;
}

.lp-guarantee-badge p {
    color: var(--lp-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================
   20. Urgency Bar — thin top bar with pulsing dot
   ========================================================== */
.lp-urgency-bar {
    background: var(--lp-red);
    color: var(--lp-white);
    text-align: center;
    padding: 8px 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lp-urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-white);
    animation: pulseGlow 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.lp-urgency-bar a {
    color: var(--lp-white);
    text-decoration: underline;
    font-weight: 700;
}

/* ==========================================================
   21. Comparison Table — green checks, red X, alt rows
   ========================================================== */
.lp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
}

.lp-comparison-table thead th {
    background: var(--lp-navy);
    color: var(--lp-white);
    padding: 14px 16px;
    font-family: var(--lp-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
}

.lp-comparison-table thead th:first-child {
    text-align: left;
}

.lp-comparison-table thead th:not(:first-child) {
    text-align: center;
}

.lp-comparison-table tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--lp-gray);
}

.lp-comparison-table tbody td:not(:first-child) {
    text-align: center;
}

.lp-comparison-table tbody tr:nth-child(even) {
    background: var(--lp-gray-light);
}

.lp-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.lp-comparison-table .lp-check {
    color: var(--lp-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.lp-comparison-table .lp-x {
    color: var(--lp-red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ==========================================================
   22. Video Embed — responsive 16:9
   ========================================================== */
.lp-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    margin: 2rem 0;
}

.lp-video-embed iframe,
.lp-video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--lp-radius);
}

/* ==========================================================
   23. Before / After — side-by-side
   ========================================================== */
.lp-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lp-before-after-panel {
    border-radius: var(--lp-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--lp-shadow);
}

.lp-before-after-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-before-after-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--lp-white);
    padding: 4px 14px;
    border-radius: var(--lp-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================
   24. Doctor Card — horizontal, photo + credentials
   ========================================================== */
.lp-doctor-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-gray);
}

.lp-doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--lp-gold);
}

.lp-doctor-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--lp-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--lp-gold);
    border: 3px solid var(--lp-gold);
}

.lp-doctor-info h3 {
    color: var(--lp-navy);
    font-family: var(--lp-font-heading);
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.25rem;
}

.lp-doctor-info .lp-doctor-title {
    color: var(--lp-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.lp-doctor-info p {
    color: var(--lp-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.lp-doctor-credentials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.lp-doctor-credential-tag {
    background: var(--lp-gold-glow);
    color: var(--lp-navy);
    padding: 4px 12px;
    border-radius: var(--lp-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================================
   25. Insurance Logos — grayscale to color hover
   ========================================================== */
.lp-insurance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.lp-insurance-logos img {
    height: 36px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--lp-transition);
}

.lp-insurance-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================
   26. Form Progress (standalone 3-step dots)
   ========================================================== */
/* See section 8 — .lp-form-progress already defined there */

/* ==========================================================
   27. Typography Helpers
   ========================================================== */
.lp-highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(183, 159, 111, 0.25) 60%);
    padding: 0 2px;
}

.lp-eyebrow {
    font-family: var(--lp-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lp-gold);
    margin-bottom: 0.5rem;
    display: block;
}

/* Content Grid (sidebar layout) */
.lp-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Section BG */
.lp-bg-light {
    background: var(--lp-gray-light);
}

.lp-bg-white {
    background: var(--lp-white);
}

.lp-bg-navy {
    background: var(--lp-navy);
    color: var(--lp-white);
}

.lp-bg-navy h2 {
    color: var(--lp-white);
}

.lp-bg-navy h3 {
    color: var(--lp-gold);
}

/* Text Utilities */
.lp-text-center {
    text-align: center;
}

.lp-text-gold {
    color: var(--lp-gold);
}

.lp-text-white {
    color: var(--lp-white);
}

.lp-text-muted {
    color: var(--lp-text-light);
}

.lp-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--lp-text);
}

.lp-mb-0 {
    margin-bottom: 0;
}

/* ==========================================================
   28. Animations
   ========================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandAccordion {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes thankPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================
   Thank You Page
   ========================================================== */
.lp-thankyou {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.lp-thankyou-card {
    max-width: 600px;
    margin: 0 auto;
}

.lp-thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--lp-white);
    animation: thankPulse 0.6s ease;
}

/* ==========================================================
   29. Responsive — mobile-first breakpoints
   ========================================================== */
@media (max-width: 1024px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero-grid .lp-form-card {
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .lp-content-grid {
        grid-template-columns: 1fr;
    }

    .lp-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-faq-grid {
        grid-template-columns: 1fr;
    }

    .lp-doctor-card {
        flex-direction: column;
        text-align: center;
    }

    .lp-doctor-info h3 {
        text-align: center;
    }

    .lp-doctor-credentials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 60px 0;
    }

    .lp-hero {
        min-height: auto;
        padding: 50px 0;
    }

    .lp-hero-phone {
        font-size: 1.8rem;
    }

    .lp-steps-grid {
        grid-template-columns: 1fr;
    }

    .lp-why-grid {
        grid-template-columns: 1fr;
    }

    .lp-trust-items {
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .lp-trust-item {
        font-size: 0.85rem;
        scroll-snap-align: start;
    }

    .lp-cta-phone {
        font-size: 1.8rem;
    }

    .lp-toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .lp-sticky-bar {
        display: flex;
    }

    .lp-footer {
        padding-bottom: 120px;
    }

    .lp-offer-price {
        font-size: 2.8rem;
    }

    .lp-before-after {
        grid-template-columns: 1fr;
    }

    .lp-stat-row {
        gap: 1.5rem;
    }

    .lp-stat-card {
        min-width: 100px;
    }

    .lp-comparison-table {
        font-size: 0.8rem;
    }

    .lp-comparison-table thead th,
    .lp-comparison-table tbody td {
        padding: 10px 8px;
    }

    .lp-insurance-logos {
        gap: 1rem;
    }

    .lp-insurance-logos img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .lp-hero-btns {
        flex-direction: column;
    }

    .lp-hero-btns .lp-btn {
        width: 100%;
        justify-content: center;
    }

    .lp-container {
        padding: 0 1rem;
    }

    .lp-testimonial-slider .lp-testimonial-card {
        min-width: 280px;
    }
}

/* Desktop: hide sticky bar */
@media (min-width: 769px) {
    .lp-sticky-bar {
        display: none !important;
    }
}

/* ==========================================================
   30. Dark Mode
   ========================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --lp-white: #1a1a2e;
        --lp-off-white: #16162a;
        --lp-gray-light: #1e1e36;
        --lp-gray: #2a2a44;
        --lp-text: #e0e0e8;
        --lp-text-light: #a0a0b4;
        --lp-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        --lp-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.35);
        --lp-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .lp-header {
        background: rgba(26, 26, 46, 0.95);
        border-bottom-color: var(--lp-gray);
    }

    .lp-card,
    .lp-form-card,
    .lp-faq-item,
    .lp-service-card,
    .lp-testimonial-card,
    .lp-doctor-card {
        background: var(--lp-white);
        border-color: var(--lp-gray);
    }

    .lp-trust-row {
        background: var(--lp-white);
        border-bottom-color: var(--lp-gray);
    }

    .ewdc-lp-form input[type="text"],
    .ewdc-lp-form input[type="tel"],
    .ewdc-lp-form input[type="email"],
    .ewdc-lp-form select {
        background: var(--lp-gray-light);
        border-color: var(--lp-gray);
        color: var(--lp-text);
    }

    .lp-sticky-bar {
        background: rgba(26, 26, 46, 0.92);
        border-top-color: var(--lp-gray);
    }

    .lp-comparison-table thead th {
        background: var(--lp-navy-dark);
    }

    .lp-comparison-table tbody tr:nth-child(even) {
        background: var(--lp-gray-light);
    }

    .lp-expert-box {
        background: linear-gradient(135deg, rgba(183, 159, 111, 0.08) 0%, rgba(183, 159, 111, 0.02) 100%);
    }

    .lp-guarantee-badge {
        background: rgba(46, 125, 91, 0.1);
    }

    .lp-btn-white {
        background: var(--lp-gray-light);
        color: var(--lp-text);
        border-color: var(--lp-gray);
    }

    .lp-btn-outline {
        color: var(--lp-text);
        border-color: var(--lp-gray);
    }
}

/* ==========================================================
   31. Print
   ========================================================== */
@media print {
    .lp-sticky-bar,
    .lp-urgency-bar,
    .lp-toggle,
    .lp-hero-btns,
    .lp-cta-btns {
        display: none !important;
    }

    .lp-hero {
        min-height: auto;
        padding: 20px 0;
    }

    .lp-section {
        padding: 20px 0;
    }

    .lp-cta-phone,
    .lp-hero-phone,
    .lp-header-phone {
        color: var(--lp-navy) !important;
        font-size: 1.4rem;
    }

    .lp-cta-phone::after,
    .lp-hero-phone::after {
        content: ' (503) 614-0198';
    }

    .ewdc-lp {
        color: #000;
    }

    .lp-card,
    .lp-form-card,
    .lp-testimonial-card,
    .lp-doctor-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
