/* ========================================
   BREATHESOBER LANDING PAGE - Namespaced
   Embedded in Quiz Funnel SPA
   ======================================== */

/* Scoped CSS Variables */
.landing-page {
    /* Primary Brand Colors */
    --lp-primary: #0066FF;
    --lp-primary-dark: #0052CC;
    --lp-primary-light: #E8F2FF;
    --lp-primary-soft: rgba(0, 102, 255, 0.08);

    /* Success/Wellness Green */
    --lp-success: #00BF6F;
    --lp-success-light: #E6F9F0;

    /* Neutral Palette */
    --lp-dark: #1A1F36;
    --lp-text: #3C4257;
    --lp-text-secondary: #697386;
    --lp-text-muted: #8792A2;
    --lp-border: #E3E8EE;
    --lp-border-light: #F0F3F7;
    --lp-surface: #F7F9FC;
    --lp-white: #FFFFFF;

    /* Accent */
    --lp-gold: #FFB800;
    --lp-gold-light: #FFF8E6;

    /* Spacing Scale */
    --lp-space-xs: 4px;
    --lp-space-sm: 8px;
    --lp-space-md: 16px;
    --lp-space-lg: 20px;
    --lp-space-xl: 24px;
    --lp-space-2xl: 32px;
    --lp-space-3xl: 48px;
    --lp-space-4xl: 64px;

    /* Typography */
    --lp-font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --lp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Radii */
    --lp-radius-sm: 8px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 24px;
    --lp-radius-full: 100px;

    /* Shadows */
    --lp-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --lp-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --lp-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02);
    --lp-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.02);
    --lp-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.04);
    --lp-shadow-glow: 0 0 0 4px var(--lp-primary-soft);

    /* Transitions */
    --lp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --lp-duration-fast: 150ms;
    --lp-duration-normal: 250ms;

    /* Base styles for landing page container */
    font-family: var(--lp-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lp-text);
    background: var(--lp-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.landing-page a {
    color: var(--lp-primary);
    text-decoration: none;
    transition: color var(--lp-duration-fast) ease;
}

.landing-page a:hover {
    color: var(--lp-primary-dark);
}

.landing-page button,
.landing-page input {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.landing-page .hidden {
    display: none !important;
}

/* ==================== TYPOGRAPHY ==================== */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
    font-family: var(--lp-font-display);
    font-weight: 600;
    color: var(--lp-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.landing-page .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--lp-radius-full);
    margin-bottom: var(--lp-space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-page .section-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: var(--lp-space-md);
    text-align: center;
}

.landing-page .section-subtitle {
    font-size: 17px;
    color: var(--lp-text-secondary);
    text-align: center;
    max-width: 480px;
    margin: 0 auto var(--lp-space-xl);
    line-height: 1.6;
}

/* ==================== LAYOUT ==================== */
.landing-page .container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--lp-space-lg);
}

.landing-page .container-wide {
    max-width: 960px;
}

.landing-page section {
    padding: var(--lp-space-3xl) 0;
}

/* ==================== BUTTONS ==================== */
.landing-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--lp-space-sm);
    font-family: var(--lp-font-display);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--lp-radius-xl);
    transition: all var(--lp-duration-normal) var(--lp-ease-out);
    cursor: pointer;
    white-space: nowrap;
}

.landing-page .btn-primary {
    background: var(--lp-primary);
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-sm), 0 4px 12px rgba(0, 102, 255, 0.2);
}

.landing-page .btn-primary:hover {
    background: var(--lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-md), 0 8px 20px rgba(0, 102, 255, 0.25);
}

.landing-page .btn-primary:active {
    transform: translateY(0);
}

.landing-page .btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    border-radius: var(--lp-radius-lg);
}

.landing-page .btn-header {
    background: var(--lp-dark);
    color: var(--lp-white);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--lp-radius-full);
    box-shadow: none;
}

.landing-page .btn-header:hover {
    background: var(--lp-text);
}

/* ==================== HEADER ==================== */
.landing-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border-light);
}

.landing-page .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1120px;
}

.landing-page .logo img {
    height: 72px;
    width: auto;
}

.landing-page .header-right {
    display: flex;
    align-items: center;
    gap: var(--lp-space-lg);
}

.landing-page .countdown {
    display: none;
    align-items: center;
    gap: var(--lp-space-sm);
}

.landing-page .countdown-label {
    font-size: 13px;
    color: var(--lp-text-muted);
}

.landing-page .countdown-timer {
    display: flex;
    align-items: center;
    gap: 2px;
}

.landing-page .countdown-num {
    background: var(--lp-dark);
    color: var(--lp-white);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    min-width: 28px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.landing-page .countdown-sep {
    font-weight: 700;
    color: var(--lp-dark);
    padding: 0 2px;
}

/* ==================== HERO ==================== */
.landing-page .hero {
    padding: calc(64px + var(--lp-space-3xl)) 0 var(--lp-space-3xl);
    background: linear-gradient(180deg, var(--lp-surface) 0%, var(--lp-white) 100%);
}

.landing-page .hero-content {
    text-align: center;
    margin-bottom: var(--lp-space-xl);
}

.landing-page .hero-greeting {
    font-size: 22px;
    font-weight: 500;
    color: var(--lp-text-secondary);
    margin-bottom: var(--lp-space-lg);
}

.landing-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-success-light);
    color: var(--lp-success);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--lp-radius-full);
    margin-bottom: var(--lp-space-lg);
}

.landing-page .hero-badge svg {
    width: 16px;
    height: 16px;
}

.landing-page .hero-title {
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: var(--lp-space-md);
    line-height: 1.15;
}

.landing-page .hero-title span {
    color: var(--lp-primary);
}

.landing-page .hero-subtitle {
    font-size: 18px;
    color: var(--lp-text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-page .hero-subtitle-assessment {
    font-size: 18px;
    color: var(--lp-text-muted);
    font-style: italic;
    margin: 0 auto var(--lp-space-lg);
    max-width: 520px;
}

.landing-page .assessment-details {
    max-width: 580px;
    margin: 0 auto;
    text-align: left;
}

.landing-page .assessment-divider {
    border: none;
    border-top: 1px solid var(--lp-border);
    margin: var(--lp-space-xl) 0;
}

.landing-page .info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--lp-space-lg);
    text-transform: uppercase;
}

.landing-page .assessment-info p {
    font-size: 17px;
    color: var(--lp-text);
    line-height: 1.6;
    margin-bottom: var(--lp-space-lg);
}

/* Transformation Card */
.landing-page .transformation-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    border: 1px solid var(--lp-border-light);
}

.landing-page .transformation-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.landing-page .visual-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.landing-page .visual-label {
    position: absolute;
    top: var(--lp-space-md);
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-dark);
    color: var(--lp-white);
    padding: 6px 16px;
    border-radius: var(--lp-radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.landing-page .visual-side.after .visual-label {
    background: var(--lp-success);
}

.landing-page .visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.landing-page .transformation-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-md);
}

.landing-page .transformation-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--lp-primary);
}

.landing-page .transformation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--lp-border-light);
}

.landing-page .stat-column {
    padding: var(--lp-space-lg);
}

.landing-page .stat-column:first-child {
    border-right: 1px solid var(--lp-border-light);
}

.landing-page .stat-column-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-text-muted);
    margin-bottom: var(--lp-space-md);
}

.landing-page .stat-column.after .stat-column-title {
    color: var(--lp-success);
}

.landing-page .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--lp-space-sm) 0;
}

.landing-page .stat-item:not(:last-child) {
    border-bottom: 1px solid var(--lp-border-light);
}

.landing-page .stat-name {
    font-size: 13px;
    color: var(--lp-text-secondary);
}

.landing-page .stat-value {
    font-size: 14px;
    font-weight: 600;
}

.landing-page .stat-value.negative {
    color: var(--lp-text-muted);
}

.landing-page .stat-value.positive {
    color: var(--lp-success);
}

/* Goals List */
.landing-page .goals-section {
    margin-top: var(--lp-space-xl);
}

.landing-page .goals-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-sm);
    max-width: 400px;
    margin: 0 auto;
}

.landing-page .goals-list li {
    display: flex;
    align-items: center;
    gap: var(--lp-space-md);
    padding: var(--lp-space-md);
    background: var(--lp-white);
    border-radius: var(--lp-radius-md);
    border: 1px solid var(--lp-border);
    font-size: 15px;
    color: var(--lp-text);
    transition: all var(--lp-duration-fast) ease;
}

.landing-page .goals-list li:hover {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-glow);
}

.landing-page .goal-icon {
    width: 24px;
    height: 24px;
    background: var(--lp-success);
    color: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ==================== SOCIAL PROOF ==================== */
.landing-page .social-proof {
    background: var(--lp-dark);
    color: var(--lp-white);
}

.landing-page .social-proof .section-title {
    color: var(--lp-white);
}

.landing-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lp-space-md);
}

.landing-page .stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    padding: var(--lp-space-lg);
    text-align: center;
    transition: all var(--lp-duration-normal) ease;
}

.landing-page .stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.landing-page .stat-number {
    font-family: var(--lp-font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--lp-primary);
    line-height: 1;
    margin-bottom: var(--lp-space-sm);
}

.landing-page .stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.landing-page .stats-footer {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--lp-space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ==================== PRICING ==================== */
.landing-page .pricing {
    background: var(--lp-white);
}

.landing-page .plans {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-md);
    margin-bottom: var(--lp-space-lg);
}

.landing-page .plans-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-space-md);
}

.landing-page .plans-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-space-md);
}

.landing-page .plan-card {
    position: relative;
    background: var(--lp-white);
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    cursor: pointer;
    transition: all var(--lp-duration-normal) ease;
}

.landing-page .plan-card input {
    display: none;
}

.landing-page .plan-card:hover {
    border-color: var(--lp-text-muted);
}

.landing-page .plan-card.featured,
.landing-page .plan-card:has(input:checked) {
    border-color: var(--lp-primary);
    background: var(--lp-primary-light);
    box-shadow: var(--lp-shadow-glow);
}

.landing-page .plan-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-text-muted);
    margin-bottom: var(--lp-space-sm);
}

.landing-page .plan-value {
    font-size: 12px;
    color: var(--lp-success);
    font-weight: 600;
    margin-top: var(--lp-space-xs);
}

.landing-page .plan-name-large {
    font-family: var(--lp-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: var(--lp-space-xs);
}

.landing-page .plan-btn {
    margin-top: var(--lp-space-md);
    width: 100%;
}

.landing-page .plan-social {
    font-size: 12px;
    color: var(--lp-text-muted);
    margin-top: var(--lp-space-sm);
    text-align: center;
}

.landing-page .btn-dark {
    background: var(--lp-dark);
    color: var(--lp-white);
}

.landing-page .btn-dark:hover {
    background: var(--lp-text);
}

.landing-page .badge-success {
    background: var(--lp-success) !important;
}

.landing-page .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-primary);
    color: var(--lp-white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--lp-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    animation: lp-wobble-pill 3s infinite ease-in-out;
}

@keyframes lp-wobble-pill {
    0%, 100% { transform: translateX(-50%) rotate(0); }
    15% { transform: translateX(-50%) rotate(-3deg); }
    30% { transform: translateX(-50%) rotate(2deg); }
    45% { transform: translateX(-50%) rotate(-2deg); }
    60% { transform: translateX(-50%) rotate(1deg); }
    75% { transform: translateX(-50%) rotate(0); }
}

.landing-page .plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--lp-space-lg) var(--lp-space-xl);
    gap: var(--lp-space-md);
}

.landing-page .plan-info {
    flex: 1;
    text-align: center;
}

.landing-page .plan-name {
    font-family: var(--lp-font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-dark);
    margin-bottom: var(--lp-space-xs);
}

.landing-page .plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.landing-page .price-daily {
    font-family: var(--lp-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-dark);
    line-height: 1;
}

.landing-page .price-total {
    font-size: 14px;
    color: var(--lp-text-muted);
}

.landing-page .price-total span {
    font-weight: 600;
    color: var(--lp-text-secondary);
}

.landing-page .price-old {
    font-size: 16px;
    color: var(--lp-text-muted);
    text-decoration: line-through;
}

.landing-page .price-current {
    font-family: var(--lp-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--lp-dark);
    line-height: 1;
}

.landing-page .price-current sup {
    font-size: 18px;
    font-weight: 600;
}

.landing-page .price-text {
    font-size: 20px;
    font-weight: 600;
}

.landing-page .plan-billing {
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-top: var(--lp-space-xs);
}

.landing-page .plan-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--lp-border);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all var(--lp-duration-fast) ease;
}

.landing-page .plan-card:has(input:checked) .plan-check {
    border-color: var(--lp-primary);
    background: var(--lp-primary);
}

.landing-page .plan-card:has(input:checked) .plan-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--lp-white);
    border-radius: 50%;
}

.landing-page .legal-text {
    font-size: 13px;
    color: var(--lp-text-muted);
    text-align: center;
    margin-bottom: var(--lp-space-lg);
}

.landing-page .legal-text a {
    color: var(--lp-text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Timer Box */
.landing-page .timer-box {
    text-align: center;
    margin-top: var(--lp-space-xl);
    padding: var(--lp-space-lg);
    background: var(--lp-surface);
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
}

.landing-page .timer-label {
    font-size: 13px;
    color: var(--lp-text-muted);
    margin-bottom: var(--lp-space-sm);
    display: block;
}

.landing-page .timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.landing-page .timer-num {
    font-family: var(--lp-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--lp-dark);
    font-variant-numeric: tabular-nums;
}

.landing-page .timer-sep {
    font-size: 32px;
    font-weight: 700;
    color: var(--lp-text-muted);
}

/* ==================== FEATURES ==================== */
.landing-page .features {
    background: var(--lp-surface);
}

.landing-page .feature-grid {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-md);
}

.landing-page .feature-card {
    display: flex;
    gap: var(--lp-space-md);
    padding: var(--lp-space-lg);
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    transition: all var(--lp-duration-normal) ease;
}

.landing-page .feature-card:hover {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-md);
}

.landing-page .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--lp-primary-light);
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lp-duration-normal) ease;
}

.landing-page .feature-card:hover .feature-icon {
    background: var(--lp-primary);
}

.landing-page .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--lp-primary);
    transition: stroke var(--lp-duration-fast) ease;
}

.landing-page .feature-card:hover .feature-icon svg {
    stroke: var(--lp-white);
}

.landing-page .feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--lp-space-xs);
}

.landing-page .feature-content p {
    font-size: 14px;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}

/* ==================== BONUSES ==================== */
.landing-page .bonuses {
    background: linear-gradient(135deg, var(--lp-dark) 0%, #2D3250 100%);
    color: var(--lp-white);
}

.landing-page .bonuses-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--lp-space-xl);
}

.landing-page .bonuses-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, #0052CC 100%);
    border-radius: var(--lp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.landing-page .bonuses-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--lp-white);
}

.landing-page .bonuses-text h3 {
    font-size: 24px;
    color: var(--lp-white);
    margin-bottom: var(--lp-space-lg);
}

.landing-page .bonuses-list {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
}

.landing-page .bonuses-list li {
    display: flex;
    align-items: center;
    gap: var(--lp-space-md);
    padding: var(--lp-space-sm) 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.landing-page .bonuses-list li span {
    color: var(--lp-success);
    font-weight: 600;
}

.landing-page .bonuses-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--lp-space-lg);
}

/* ==================== COACHING INCLUDES ==================== */
.landing-page .coaching-includes {
    background: linear-gradient(135deg, var(--lp-surface) 0%, var(--lp-white) 100%);
}

.landing-page .coaching-includes .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-success-light);
    color: var(--lp-success);
    margin-bottom: var(--lp-space-lg);
}

.landing-page .coaching-includes .section-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--lp-success);
}

.landing-page .coaching-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-space-md);
    margin-bottom: var(--lp-space-xl);
}

.landing-page .coaching-item {
    display: flex;
    align-items: flex-start;
    gap: var(--lp-space-md);
    padding: var(--lp-space-lg);
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    transition: all var(--lp-duration-normal) ease;
}

.landing-page .coaching-item:hover {
    border-color: var(--lp-success);
    box-shadow: var(--lp-shadow-md);
}

.landing-page .coaching-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--lp-success-light);
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .coaching-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--lp-success);
}

.landing-page .coaching-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-dark);
    margin-bottom: var(--lp-space-xs);
}

.landing-page .coaching-item p {
    font-size: 14px;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}

.landing-page .coaching-cta {
    text-align: center;
}

.landing-page .coaching-cta .btn {
    background: var(--lp-success);
    box-shadow: var(--lp-shadow-sm), 0 4px 12px rgba(0, 191, 111, 0.2);
}

.landing-page .coaching-cta .btn:hover {
    background: #00a35f;
    box-shadow: var(--lp-shadow-md), 0 8px 20px rgba(0, 191, 111, 0.25);
}

/* ==================== ROADMAP ==================== */
.landing-page .roadmap {
    background: var(--lp-dark);
    color: var(--lp-white);
}

.landing-page .roadmap .section-title {
    color: var(--lp-white);
}

.landing-page .roadmap .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.landing-page .roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-xl);
    margin-bottom: var(--lp-space-xl);
}

.landing-page .roadmap-phase {
    display: flex;
    gap: var(--lp-space-lg);
}

.landing-page .phase-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-page .phase-number {
    width: 48px;
    height: 48px;
    background: var(--lp-success);
    color: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 191, 111, 0.3);
}

.landing-page .phase-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-lg);
    padding: var(--lp-space-lg);
}

.landing-page .phase-duration {
    display: inline-block;
    background: var(--lp-success);
    color: var(--lp-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: var(--lp-radius-full);
    margin-bottom: var(--lp-space-sm);
}

.landing-page .phase-content h3 {
    font-size: 18px;
    color: var(--lp-white);
    margin-bottom: var(--lp-space-md);
}

.landing-page .phase-list {
    list-style: none;
}

.landing-page .phase-list li {
    position: relative;
    padding-left: var(--lp-space-lg);
    margin-bottom: var(--lp-space-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.landing-page .phase-list li:last-child {
    margin-bottom: 0;
}

.landing-page .phase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-success);
    font-weight: 600;
}

.landing-page .roadmap-cta {
    text-align: center;
}

.landing-page .roadmap-cta .btn {
    background: var(--lp-success);
    box-shadow: var(--lp-shadow-sm), 0 4px 12px rgba(0, 191, 111, 0.3);
}

.landing-page .roadmap-cta .btn:hover {
    background: #00a35f;
    box-shadow: var(--lp-shadow-md), 0 8px 20px rgba(0, 191, 111, 0.35);
}

/* ==================== 5 STEPS ==================== */
.landing-page .five-steps {
    background: var(--lp-white);
    padding-bottom: var(--lp-space-4xl);
}

.landing-page .five-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-space-xl);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.landing-page .five-step {
    text-align: center;
    padding: var(--lp-space-lg);
    background: var(--lp-white);
    border-radius: var(--lp-radius-xl);
    border: 1px solid var(--lp-border-light);
    transition: all var(--lp-duration-normal) ease;
    position: relative;
    z-index: 1;
    flex: 1;
}

.landing-page .five-step:hover {
    transform: translateY(-8px);
    border-color: var(--lp-primary);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.08);
}

.landing-page .five-step-icon {
    width: 56px;
    height: 56px;
    background: var(--lp-white);
    border: 2px solid var(--lp-primary-light);
    color: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--lp-space-md);
    transition: all var(--lp-duration-normal) ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--lp-white);
}

.landing-page .five-step:hover .five-step-icon {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    color: var(--lp-white);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.landing-page .five-step-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: all var(--lp-duration-fast) ease;
}

.landing-page .five-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--lp-dark);
    color: var(--lp-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--lp-white);
}

.landing-page .five-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--lp-space-xs);
    color: var(--lp-dark);
}

.landing-page .five-step p {
    font-size: 13px;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==================== FAQ ==================== */
.landing-page .faq {
    background: var(--lp-surface);
}

.landing-page .faq-list {
    max-width: 600px;
    margin: 0 auto;
}

.landing-page .faq-item {
    background: var(--lp-white);
    border-radius: var(--lp-radius-md);
    margin-bottom: var(--lp-space-sm);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    transition: all var(--lp-duration-fast) ease;
}

.landing-page .faq-item:hover {
    border-color: var(--lp-text-muted);
}

.landing-page .faq-item[open] {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-glow);
}

.landing-page .faq-item summary {
    padding: var(--lp-space-lg);
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--lp-space-md);
}

.landing-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.landing-page .faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--lp-text-muted);
    transition: all var(--lp-duration-fast) ease;
    flex-shrink: 0;
}

.landing-page .faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--lp-primary);
}

.landing-page .faq-item p {
    padding: 0 var(--lp-space-lg) var(--lp-space-lg);
    font-size: 14px;
    color: var(--lp-text-secondary);
    line-height: 1.7;
}

/* ==================== EXPLORE RESULTS ==================== */
.landing-page .explore-results {
    padding: var(--lp-space-xl) 0;
    background: var(--lp-white);
}

.landing-page .explore-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-dark);
    letter-spacing: 0.1em;
    margin-bottom: var(--lp-space-lg);
    text-transform: uppercase;
}

.landing-page .explore-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lp-rotate-wheel 4s linear infinite;
}

@keyframes lp-rotate-wheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.landing-page .explore-accordion-box {
    border: 2px solid #5491F5;
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
}

.landing-page .explore-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--lp-space-md);
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    color: var(--lp-text);
    font-size: 17px;
}

.landing-page .explore-item summary::-webkit-details-marker {
    display: none;
}

.landing-page .explore-item[open] .explore-arrow svg {
    transform: rotate(0deg);
}

.landing-page .explore-item:not([open]) .explore-arrow svg {
    transform: rotate(180deg);
}

.landing-page .explore-content {
    padding: 0 var(--lp-space-md) var(--lp-space-lg);
}

.landing-page .explore-subtitle {
    font-style: italic;
    color: var(--lp-text-muted);
    font-size: 15px;
    margin-bottom: var(--lp-space-md);
}

.landing-page .explore-content p {
    font-size: 17px;
    color: var(--lp-text);
    line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.landing-page .testimonials {
    background: var(--lp-white);
}

.landing-page .testimonial-carousel {
    position: relative;
    width: 100%;
    margin-bottom: var(--lp-space-xl);
}

.landing-page .testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: var(--lp-space-md);
    padding-bottom: var(--lp-space-lg);
}

.landing-page .testimonial-track::-webkit-scrollbar {
    display: none;
}

.landing-page .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--lp-surface);
    border-radius: var(--lp-radius-lg);
    padding: var(--lp-space-xl);
    border: 1px solid var(--lp-border);
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-md);
}

.landing-page .testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.landing-page .testimonial-name {
    font-weight: 700;
    color: var(--lp-dark);
    font-size: 16px;
}

.landing-page .testimonial-date {
    font-size: 12px;
    color: var(--lp-text-muted);
}

.landing-page .testimonial-stars {
    color: var(--lp-gold);
    letter-spacing: 2px;
}

.landing-page .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    color: var(--lp-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-page .testimonial-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.landing-page .read-more-btn {
    background: none;
    border: none;
    color: var(--lp-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: var(--lp-space-sm);
    display: none;
    text-decoration: underline;
}

.landing-page .read-more-btn.visible {
    display: inline-block;
}

.landing-page .testimonial-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-primary);
    background: var(--lp-primary-light);
    padding: 4px 10px;
    border-radius: var(--lp-radius-full);
    margin-bottom: var(--lp-space-sm);
    letter-spacing: 0.02em;
}

.landing-page .testimonial-note {
    font-size: 11px;
    color: var(--lp-text-muted);
    margin-top: auto;
}

.landing-page .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--lp-space-md);
}

.landing-page .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-border);
    cursor: pointer;
    transition: all var(--lp-duration-fast) ease;
}

.landing-page .dot.active {
    background: var(--lp-primary);
    transform: scale(1.2);
}

.landing-page .testimonials-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: var(--lp-space-xl);
    gap: var(--lp-space-md);
}

.landing-page .testimonial-disclaimer {
    flex: 1;
    font-size: 13px;
    color: var(--lp-text-muted);
    margin: 0;
}

.landing-page .testimonial-count {
    font-size: 12px;
    color: var(--lp-text-muted);
    text-align: right;
    margin: 0;
    white-space: nowrap;
}

/* ============= WHAT THIS IS NOT ============= */
.landing-page .what-this-is-not {
    background: var(--lp-surface);
}

.landing-page .not-list {
    max-width: 480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.landing-page .not-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-md);
    border: 1px solid var(--lp-border-light);
    font-size: 15px;
    font-weight: 500;
    color: var(--lp-text-primary);
}

.landing-page .not-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .landing-page .not-list {
        grid-template-columns: 1fr;
    }
    .landing-page .not-item {
        font-size: 14px;
        padding: 12px 14px;
    }
}

/* ==================== GUARANTEE ==================== */
.landing-page .guarantee {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    color: var(--lp-white);
}

.landing-page .guarantee-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.landing-page .guarantee-icon {
    margin-bottom: var(--lp-space-lg);
}

.landing-page .guarantee-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--lp-white);
}

.landing-page .guarantee h2 {
    font-size: 28px;
    color: var(--lp-white);
    margin-bottom: var(--lp-space-md);
}

.landing-page .guarantee > p {
    font-size: 16px;
    color: var(--lp-white);
    opacity: 0.9;
    margin-bottom: var(--lp-space-lg);
}

.landing-page .guarantee-list {
    list-style: none;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius-md);
    padding: var(--lp-space-lg);
    margin-bottom: var(--lp-space-lg);
}

.landing-page .guarantee-list li {
    padding-left: var(--lp-space-lg);
    position: relative;
    margin-bottom: var(--lp-space-sm);
    font-size: 15px;
}

.landing-page .guarantee-list li:last-child {
    margin-bottom: 0;
}

.landing-page .guarantee-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.landing-page .guarantee-link {
    font-size: 14px;
    color: var(--lp-white);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.8;
    transition: opacity var(--lp-duration-fast) ease;
}

.landing-page .guarantee-link:hover {
    opacity: 1;
    color: var(--lp-white);
}

/* ==================== FOOTER ==================== */
.landing-page .footer {
    padding: var(--lp-space-xl) 0;
    padding-bottom: calc(var(--lp-space-xl) + 80px);
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
}

.landing-page .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--lp-space-md);
    text-align: center;
}

.landing-page .footer-brand {
    font-size: 14px;
    color: var(--lp-text-muted);
}

.landing-page .footer-links {
    display: flex;
    gap: var(--lp-space-xl);
}

.landing-page .footer-links a {
    font-size: 14px;
    color: var(--lp-text-secondary);
}

.landing-page .footer-links a:hover {
    color: var(--lp-dark);
}

/* ==================== STICKY BAR ==================== */
.landing-page .sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--lp-white);
    border-top: 1px solid var(--lp-border);
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.3s var(--lp-ease-out);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.landing-page .sticky-bar.visible {
    transform: translateY(0);
}

.landing-page .sticky-timer {
    font-family: var(--lp-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-dark);
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    flex-shrink: 0;
}

.landing-page .sticky-bar .btn {
    flex: 1;
    height: 52px;
    font-size: 16px;
    font-weight: 600;
    max-width: 280px;
}

/* ==================== MODAL ==================== */
.landing-page .modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--lp-space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.landing-page .modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.landing-page .modal {
    background: var(--lp-white);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    border-radius: var(--lp-radius-xl);
    overflow-y: auto;
    position: relative;
    padding: var(--lp-space-2xl);
    box-shadow: var(--lp-shadow-xl);
    transform: translateY(20px) scale(0.98);
    transition: all 0.3s var(--lp-ease-out);
}

.landing-page .modal-backdrop.active .modal {
    transform: translateY(0) scale(1);
}

.landing-page .modal-close {
    position: absolute;
    top: var(--lp-space-md);
    right: var(--lp-space-md);
    width: 36px;
    height: 36px;
    background: var(--lp-surface);
    border-radius: 50%;
    font-size: 20px;
    color: var(--lp-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lp-duration-fast) ease;
}

.landing-page .modal-close:hover {
    background: var(--lp-border);
    color: var(--lp-dark);
}

.landing-page .modal h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: var(--lp-space-sm);
}

.landing-page .modal-sub {
    font-size: 14px;
    color: var(--lp-text-muted);
    text-align: center;
    margin-bottom: var(--lp-space-xl);
}

.landing-page .modal-progress {
    margin-bottom: var(--lp-space-xl);
}

.landing-page .modal-progress-bar {
    height: 4px;
    background: var(--lp-border);
    border-radius: 2px;
    margin-bottom: var(--lp-space-sm);
    overflow: hidden;
}

.landing-page .modal-progress-fill {
    height: 100%;
    background: var(--lp-primary);
    width: 0%;
    transition: width 0.4s var(--lp-ease-out);
    border-radius: 2px;
}

.landing-page #progress-text {
    font-size: 12px;
    color: var(--lp-text-muted);
    text-align: center;
    display: block;
}

.landing-page .question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-dark);
    margin-bottom: var(--lp-space-lg);
    line-height: 1.5;
}

.landing-page .question-options {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-sm);
}

.landing-page .question-option {
    width: 100%;
    padding: var(--lp-space-md) var(--lp-space-lg);
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    transition: all var(--lp-duration-fast) ease;
    color: var(--lp-text);
}

.landing-page .question-option:hover {
    border-color: var(--lp-primary);
    background: var(--lp-primary-light);
}

.landing-page .question-option.selected {
    border-color: var(--lp-primary);
    background: var(--lp-primary);
    color: var(--lp-white);
}

.landing-page #booking-embed iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: var(--lp-radius-sm);
}

/* ==================== LEGAL MODAL ==================== */
.landing-page .legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    animation: lp-fadeIn 0.2s ease;
}

.landing-page .legal-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes lp-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.landing-page .legal-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: lp-slideUp 0.3s ease;
}

@keyframes lp-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-page .legal-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #525866;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .legal-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.landing-page .legal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== ANIMATIONS ==================== */
@keyframes lp-pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

.landing-page .pulse-glow {
    animation: lp-pulse-glow 2s infinite;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 480px) {
    .landing-page {
        --lp-space-lg: 16px;
        --lp-space-xl: 20px;
        --lp-space-2xl: 24px;
        --lp-space-3xl: 32px;
        --lp-space-4xl: 48px;
        font-size: 15px;
    }

    .landing-page .container {
        padding: 0 var(--lp-space-md);
    }

    .landing-page section {
        padding: var(--lp-space-2xl) 0;
    }

    .landing-page .header-container {
        height: 56px;
    }

    .landing-page .logo img {
        height: 40px;
    }

    .landing-page .btn-header {
        padding: 8px 14px;
        font-size: 12px;
    }

    .landing-page .header-right {
        gap: var(--lp-space-sm);
    }

    .landing-page .hero {
        padding: calc(64px + var(--lp-space-2xl)) 0 var(--lp-space-xl);
    }

    .landing-page .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .landing-page .hero-subtitle {
        font-size: 15px;
    }

    .landing-page .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .landing-page .transformation-visual {
        min-height: 280px;
    }

    .landing-page .visual-label {
        font-size: 10px;
        padding: 4px 10px;
    }

    .landing-page .transformation-arrow {
        width: 32px;
        height: 32px;
    }

    .landing-page .transformation-arrow svg {
        width: 16px;
        height: 16px;
    }

    .landing-page .stat-column {
        padding: var(--lp-space-md);
    }

    .landing-page .stat-column-title {
        font-size: 10px;
        margin-bottom: var(--lp-space-sm);
    }

    .landing-page .stat-name {
        font-size: 12px;
    }

    .landing-page .stat-value {
        font-size: 13px;
    }

    .landing-page .goals-list li {
        padding: var(--lp-space-sm) var(--lp-space-md);
        font-size: 14px;
    }

    .landing-page .goal-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .landing-page .section-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .landing-page .section-subtitle {
        font-size: 14px;
    }

    .landing-page .plans {
        flex-direction: column-reverse;
    }

    .landing-page .plans-2 {
        display: flex;
        flex-direction: column-reverse;
    }

    .landing-page .plan-content {
        padding: var(--lp-space-md);
        flex-direction: column;
        text-align: center;
    }

    .landing-page .plan-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: -10px;
    }

    .landing-page .price-current {
        font-size: 28px;
    }

    .landing-page .plan-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .landing-page .timer-box {
        padding: var(--lp-space-md);
    }

    .landing-page .timer-num {
        font-size: 24px;
    }

    .landing-page .timer-sep {
        font-size: 24px;
    }

    .landing-page .feature-card {
        padding: var(--lp-space-md);
    }

    .landing-page .feature-icon {
        width: 40px;
        height: 40px;
    }

    .landing-page .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .landing-page .feature-content h4 {
        font-size: 15px;
    }

    .landing-page .feature-content p {
        font-size: 13px;
    }

    .landing-page .coaching-item {
        padding: var(--lp-space-md);
    }

    .landing-page .coaching-icon {
        width: 40px;
        height: 40px;
    }

    .landing-page .coaching-icon svg {
        width: 20px;
        height: 20px;
    }

    .landing-page .coaching-item h4 {
        font-size: 15px;
    }

    .landing-page .coaching-item p {
        font-size: 13px;
    }

    .landing-page .phase-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .landing-page .phase-content {
        padding: var(--lp-space-md);
    }

    .landing-page .phase-content h3 {
        font-size: 16px;
    }

    .landing-page .phase-list li {
        font-size: 13px;
    }

    .landing-page .five-step {
        padding: var(--lp-space-md);
    }

    .landing-page .five-step-icon {
        width: 48px;
        height: 48px;
    }

    .landing-page .five-step h3 {
        font-size: 15px;
    }

    .landing-page .five-step p {
        font-size: 12px;
    }

    .landing-page .faq-item summary {
        padding: var(--lp-space-md);
        font-size: 14px;
    }

    .landing-page .faq-item p {
        padding: 0 var(--lp-space-md) var(--lp-space-md);
        font-size: 13px;
    }

    .landing-page .testimonial-card {
        padding: var(--lp-space-md);
    }

    .landing-page .testimonial-text {
        font-size: 14px;
    }

    .landing-page .guarantee h2 {
        font-size: 22px;
    }

    .landing-page .guarantee-list {
        padding: var(--lp-space-md);
    }

    .landing-page .guarantee-list li {
        font-size: 14px;
    }

    .landing-page .stat-number {
        font-size: 36px;
    }

    .landing-page .stat-text {
        font-size: 12px;
    }

    .landing-page .modal {
        padding: var(--lp-space-lg);
        max-height: 85vh;
    }

    .landing-page .modal h2 {
        font-size: 18px;
    }

    .landing-page .question-text {
        font-size: 15px;
    }

    .landing-page .question-option {
        padding: var(--lp-space-md);
        font-size: 13px;
    }

    .landing-page .btn-large {
        padding: 16px 24px;
        font-size: 15px;
    }

    .landing-page .sticky-bar {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 12px;
    }

    .landing-page .sticky-timer {
        font-size: 20px;
        min-width: 60px;
    }

    .landing-page .sticky-bar .btn {
        flex: 1;
        height: 50px;
        font-size: 15px;
        max-width: none;
    }

    .landing-page .testimonials-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .testimonial-count {
        text-align: left;
        margin-top: var(--lp-space-sm);
    }
}

/* ==================== TABLET & UP ==================== */
@media (min-width: 640px) {
    .landing-page .countdown {
        display: flex;
    }

    .landing-page .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .landing-page .five-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 768px) {
    .landing-page section {
        padding: var(--lp-space-4xl) 0;
    }

    .landing-page .plans {
        flex-direction: row;
    }

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

    .landing-page .plans-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .landing-page .plan-card {
        flex: 1;
    }

    .landing-page .plan-content {
        flex-direction: column;
        text-align: center;
        padding: var(--lp-space-xl);
    }

    .landing-page .plan-info {
        margin-bottom: var(--lp-space-md);
    }

    .landing-page .plan-price {
        justify-content: center;
    }

    .landing-page .five-steps-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--lp-space-md);
    }

    .landing-page .coaching-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .landing-page .coaching-item {
        flex-direction: column;
        text-align: center;
    }

    .landing-page .coaching-icon {
        margin: 0 auto;
    }

    .landing-page .logo img {
        height: 72px;
    }

    .landing-page .roadmap-timeline {
        flex-direction: row;
        gap: var(--lp-space-md);
    }

    .landing-page .roadmap-phase {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .landing-page .phase-marker {
        margin-bottom: var(--lp-space-md);
    }

    .landing-page .phase-content {
        height: 100%;
    }

    .landing-page .phase-list {
        text-align: left;
    }

    .landing-page .five-step {
        padding: var(--lp-space-lg);
    }

    .landing-page .five-step-icon {
        width: 48px;
        height: 48px;
    }

    .landing-page .five-step-icon svg {
        width: 24px;
        height: 24px;
    }

    .landing-page .five-step h3 {
        font-size: 16px;
    }

    .landing-page .five-step p {
        font-size: 13px;
    }

    .landing-page .sticky-bar {
        display: none;
    }

    .landing-page .transformation-visual {
        min-height: 450px;
    }

    .landing-page .testimonial-card {
        flex: 0 0 calc(50% - var(--lp-space-md)/2);
        scroll-snap-align: start;
    }
}

@media (min-width: 992px) {
    .landing-page .five-steps-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--lp-space-md);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .landing-page .five-steps-grid::after {
        content: '';
        position: absolute;
        top: 28px;
        left: 56px;
        right: 56px;
        height: 2px;
        background: linear-gradient(90deg, var(--lp-primary-light) 0%, var(--lp-primary) 50%, var(--lp-primary-light) 100%);
        z-index: 0;
        opacity: 0.3;
    }
}

@media (min-width: 1024px) {
    .landing-page .container {
        max-width: 800px;
    }

    .landing-page .container-wide {
        max-width: 1120px;
    }
}
