:root {
    
    --lp-ink: #0d0d0d;          
    --lp-ink2: #3a3a3a;         
    --lp-ink3: #6b6b6b;         
    --lp-paper: #faf9f6;        
    --lp-cream: #f2efe8;        
    --lp-card: #ffffff;         
    --lp-border: #e0ddd4;       
    --lp-border-dark: #c5c0b4;  

    
    --lp-accent: #e8440a;       
    --lp-accent2: #ff6b35;      
    --lp-blue: #1a4fd6;         
    --lp-blue-light: #e8eeff;
    --lp-green: #0a7a3c;        
    --lp-green-light: #e6f7ee;
    --lp-gold: #c8960a;
    --lp-gold-light: #fff8e0;
    --lp-purple: #8b5cf6;       
    --lp-purple-light: #ede9fe;

    
    --lp-grad-warm: linear-gradient(135deg, #ff6b35 0%, #e8440a 100%);
    --lp-grad-cool: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);

    
    --lp-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    --lp-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.04);
    --lp-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);

    
    --lp-r-sm: 8px;
    --lp-r-md: 14px;
    --lp-r-lg: 20px;
    --lp-r-xl: 28px;
}

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

.lp-page {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
    background: var(--lp-paper);
    color: var(--lp-ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    overflow-x: hidden;
    
    overflow-y: auto;
    min-height: 100vh;
}

.lp-page html { scroll-behavior: smooth; }

.lp-page a { color: inherit; text-decoration: none; }
.lp-page button { font-family: inherit; cursor: pointer; border: none; background: none; }
.lp-page img { max-width: 100%; display: block; height: auto; }

.lp-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 600px) {
    .lp-container { padding: 0 18px; }
}

.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.lp-nav.scrolled {
    border-bottom-color: var(--lp-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    background: rgba(250, 249, 246, 0.95);
}
.lp-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    
    padding: 4px 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.lp-logo:hover { opacity: 0.85; transform: translateY(-1px); }
.lp-logo:focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 4px; border-radius: 6px; }
.lp-logo picture { display: inline-flex; align-items: center; }
.lp-logo-img {
    
    height: 25px;
    width: auto;
    max-width: 165px;
    object-fit: contain;
    display: block;
    image-rendering: auto;
    -webkit-user-drag: none;
    user-select: none;
}
@media (max-width: 768px) {
    
    .lp-logo-img { height: 25px; max-width: 50px; }
}

.lp-nav-links {
    display: flex;
    align-items: center;
    
    gap: 2px;
    list-style: none;
    
    flex-wrap: nowrap;
}
.lp-nav-links a {
    position: relative;
    display: inline-block;
    
    white-space: nowrap;
    
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--lp-ink);
    
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px; bottom: 4px;
    height: 2px;
    background: var(--lp-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}
.lp-nav-links a:hover {
    color: var(--lp-accent);
    background: rgba(232, 68, 10, 0.06);
}
.lp-nav-links a:hover::after { transform: scaleX(1); }
.lp-nav-links a:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 2px;
}

.lp-nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    
    background: linear-gradient(135deg, #e8440a 0%, #ff6b35 100%);
    color: #fff !important;
    padding: 9px 18px;
    
    border-radius: 12px;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 14px rgba(232, 68, 10, 0.28);
    transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.18s ease;
}
.lp-nav-cta-text { white-space: nowrap; }
.lp-nav-cta-arrow {
    font-size: 11px;
    font-weight: 700;
    
    margin-right: -2px;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lp-nav-cta:hover {
    
    background: linear-gradient(135deg, #e8440a 0%, #ff6b35 100%);
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.06),
        0 8px 22px rgba(232, 68, 10, 0.42);
}
.lp-nav-cta:hover .lp-nav-cta-arrow { transform: translateX(3px); }
.lp-nav-cta:active { transform: translateY(0); transition-duration: 0.08s; }
.lp-nav-cta:focus-visible {
    outline: 2px solid var(--lp-accent);
    outline-offset: 3px;
}

.lp-mobile-btn {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
    padding: 4px;
}
.lp-mobile-btn span {
    display: block;
    width: 22px; height: 2px;
    background: var(--lp-ink);
    border-radius: 2px;
    transition: all 0.3s;
}
.lp-mobile-nav {
    display: none;
    position: fixed; inset: 0;
    z-index: 200;
    background: var(--lp-paper);
    flex-direction: column;
    padding: 80px 28px 40px;
    gap: 6px;
}
.lp-mobile-nav.open { display: flex; }
.lp-mobile-nav a {
    font-size: 22px; font-weight: 700;
    color: var(--lp-ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-border);
}
.lp-mobile-nav-close {
    position: absolute; top: 18px; right: 18px;
    width: 40px; height: 40px;
    font-size: 28px;
    color: var(--lp-ink);
    line-height: 1;
}

.lp-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
    
    min-height: 48px;
}
.lp-btn-primary,
.lp-btn-primary:link,
.lp-btn-primary:visited {
    
    background: linear-gradient(135deg, #e8440a 0%, #ff6b35 100%);
    
    color: #fff;
    
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 6px 22px rgba(232, 68, 10, 0.38),
        0 2px 6px rgba(0, 0, 0, 0.15);
}
.lp-btn-primary:hover,
.lp-btn-primary:focus,
.lp-btn-primary:active {
    color: #fff;
    transform: translateY(-2px);
    
    background: linear-gradient(135deg, #e8440a 0%, #ff6b35 100%);
    filter: brightness(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 32px rgba(232, 68, 10, 0.50),
        0 4px 10px rgba(0, 0, 0, 0.18);
}

.lp-btn-primary i { color: #fff; }

.lp-btn-primary i.fa-arrow-right { font-size: 14px; font-weight: 900; }
.lp-btn-ghost {
    background: transparent;
    color: var(--lp-ink2);
    border: 1.5px solid var(--lp-border-dark);
}
.lp-btn-ghost:hover {
    border-color: var(--lp-ink);
    color: var(--lp-ink);
    transform: translateY(-1px);
}
.lp-btn-dark {
    background: var(--lp-ink);
    color: #fff;
}
.lp-btn-dark:hover {
    background: var(--lp-accent);
    transform: translateY(-2px);
}
.lp-btn-lg { padding: 18px 32px; font-size: 16px; min-height: 56px; }

.lp-section {
    padding: 100px 0;
    position: relative;
}
@media (max-width: 768px) {
    .lp-section { padding: 70px 0; }
}
.lp-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.lp-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lp-accent);
    margin-bottom: 14px;
}
.lp-eyebrow.light { color: rgba(255, 255, 255, 0.5); }
.lp-section-title {
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--lp-ink);
    margin-bottom: 14px;
}
.lp-section-title.light { color: #fff; }
.lp-section-sub {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--lp-ink3);
    line-height: 1.75;
}
.lp-section-sub.light { color: rgba(255, 255, 255, 0.65); }

.lp-section-dark {
    background: var(--lp-ink);
    color: #fff;
    overflow: hidden;
}
.lp-section-dark::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(232, 68, 10, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(139, 92, 246, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.lp-section-dark > .lp-container { position: relative; z-index: 1; }

.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(232, 68, 10, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 15% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
        var(--lp-paper);
}
.lp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}
.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-hero-visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-gold-light);
    border: 1px solid rgba(200, 150, 10, 0.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-gold);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0;
    animation: lpFadeUp 0.6s ease 0.1s forwards;
}
.lp-hero-badge .dot-live {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--lp-accent);
    animation: lpPulse 1.8s ease-in-out infinite;
}
@keyframes lpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.lp-hero-title {
    
    font-family: 'Noto Sans KR', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(32px, 5.2vw, 58px);
    
    font-weight: 900;
    
    line-height: 1.21;
    letter-spacing: -0.035em;
    color: var(--lp-ink);
    margin-bottom: 22px;
    opacity: 0;
    animation: lpFadeUp 0.6s ease 0.2s forwards;
}
.lp-hero-title .accent { color: var(--lp-accent); font-weight: inherit; }
.lp-hero-title .underline-word { font-weight: inherit; }
.lp-hero-title .underline-word {
    position: relative;
    display: inline-block;
}
.lp-hero-title .underline-word::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 6px;
    background: var(--lp-accent);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lpLineGrow 0.5s ease 0.9s forwards;
}
@keyframes lpLineGrow { to { transform: scaleX(1); } }

.lp-hero-desc {
    font-size: clamp(15px, 1.7vw, 17px);
    color: var(--lp-ink2);
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0;
    animation: lpFadeUp 0.6s ease 0.35s forwards;
}
.lp-hero-desc strong { color: var(--lp-ink); font-weight: 700; }

.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    opacity: 0;
    animation: lpFadeUp 0.6s ease 0.5s forwards;
}
@media (max-width: 480px) {
    .lp-hero-actions { flex-direction: column; align-items: stretch; }
    .lp-hero-actions .lp-btn { width: 100%; }
}

.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--lp-ink3);
    opacity: 0;
    animation: lpFadeUp 0.6s ease 0.65s forwards;
}
.lp-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.lp-hero-trust i { color: var(--lp-green); font-size: 12px; }

@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes lpFadeLeft {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}

.lp-hero-visual {
    opacity: 0;
    animation: lpFadeLeft 0.7s ease 0.4s forwards;
    position: relative;
}

.lp-flashcard-demo {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.lp-fc-shell {
    background: #ffffff;
    border-radius: var(--lp-r-xl);
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    position: relative;
}

.lp-fc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--lp-border);
    background: #fafaf7;
}
.lp-fc-header-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-ink2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lp-fc-header-title i { color: var(--lp-accent); font-size: 12px; }
.lp-fc-header-counter {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-ink3);
    background: #fff;
    border: 1px solid var(--lp-border);
    padding: 3px 10px;
    border-radius: 50px;
}
.lp-fc-header-counter strong { color: var(--lp-accent); }

.lp-card-stack {
    position: relative;
    height: 220px;
    cursor: pointer;
    perspective: 1200px;
    user-select: none;
}
.lp-fc {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(34, 197, 94, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 82% 78%, rgba(20, 184, 166, 0.16) 0%, transparent 40%),
        linear-gradient(135deg, #0a1f1a 0%, #051a14 50%, #061614 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    transition: opacity 0.4s;
    overflow: hidden;
}

.lp-fc::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(74, 222, 128, 0.22) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(74, 222, 128, 0.12) 1px, transparent 1.5px);
    background-size: 36px 36px, 22px 22px;
    background-position: 0 0, 11px 11px;
    opacity: 0.7;
    pointer-events: none;
    animation: lpNetFloat 14s ease-in-out infinite;
}
.lp-fc::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(34, 197, 94, 0.06) 50%, transparent 100%);
    pointer-events: none;
    animation: lpNetShine 6s ease-in-out infinite;
}
@keyframes lpNetFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, -4px); }
}
@keyframes lpNetShine {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}
.lp-fc-side {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    
    transition: opacity 0.32s ease;
    opacity: 1;
}

.lp-fc-word {
    font-family: 'Pretendard Variable', sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(251, 191, 36, 0.35);
}

.lp-fc-meaning {
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.lp-fc-meaning-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.lp-fc-controller {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(180deg, #fdf6f0 0%, #faf2e6 100%);
    border-top: 1px solid var(--lp-border);
}
.lp-fc-ctrl-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: none;
}
.lp-fc-ctrl-btn.play {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #fff;
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
    font-size: 13px;
}
.lp-fc-ctrl-btn.pass {
    background: rgba(139, 92, 246, 0.18);
    color: #7c3aed;
    margin-left: 6px;
}

.lp-fc-ai {
    margin-top: 14px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: var(--lp-r-md);
    padding: 16px 18px;
    box-shadow: var(--lp-shadow-md);
    color: #fff;
    
    transition: opacity 0.32s ease;
    opacity: 1;
}
.lp-fc-ai-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.lp-fc-ai-head i { color: #a78bfa; }
.lp-fc-ai-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.lp-fc-ai-tab {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-fc-ai-tab.active {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #fff;
    border-color: transparent;
}
.lp-fc-ai-body {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}
.lp-fc-ai-body strong { color: #fde68a; font-weight: 700; }

.lp-fc-progress {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    justify-content: center;
}
.lp-fc-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lp-border);
    transition: background 0.3s, width 0.3s;
}
.lp-fc-dot.active { background: var(--lp-accent); width: 18px; border-radius: 3px; }
.lp-demo-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 22px;
    gap: 6px;
}
.lp-demo-label {
    display: flex; flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--lp-ink3);
    text-align: center;
    flex: 1;
}
.lp-demo-label-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 16px;
}

.lp-empathy {
    padding: 90px 0;
}

.lp-empathy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .lp-empathy-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 540px) {
    .lp-empathy-grid { grid-template-columns: 1fr; gap: 14px; }
}

.lp-empathy-card {
    position: relative;
    
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    padding: 28px 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--lp-card-accent, rgba(255,255,255,0.2));
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lp-empathy-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    border-left-color: var(--lp-card-accent);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 14px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lp-empathy-card[data-accent="orange"] { --lp-card-accent: #ff7a3d; --lp-card-bg: rgba(232, 68, 10, 0.14); }
.lp-empathy-card[data-accent="blue"]   { --lp-card-accent: #6ea4ff; --lp-card-bg: rgba(45, 125, 255, 0.14); }
.lp-empathy-card[data-accent="green"]  { --lp-card-accent: #34d399; --lp-card-bg: rgba(16, 185, 129, 0.14); }
.lp-empathy-card[data-accent="gold"]   { --lp-card-accent: #fbbf24; --lp-card-bg: rgba(245, 158, 11, 0.14); }

.lp-empathy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    background: var(--lp-card-bg, rgba(255, 255, 255, 0.06));
    border: 1px solid var(--lp-card-accent, rgba(255, 255, 255, 0.15));
    border-radius: 12px;
    color: var(--lp-card-accent, #fff);
    font-size: 18px;
    transition: transform 0.25s ease;
}
.lp-empathy-card:hover .lp-empathy-icon {
    transform: scale(1.06) rotate(-3deg);
}
.lp-empathy-title {
    font-size: 16px;
    
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.45;
    letter-spacing: -0.015em;
    word-break: keep-all;
}
.lp-empathy-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    word-break: keep-all;
}

.lp-empathy-tag {
    
    align-self: flex-start;
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 5px 12px;
    border-radius: 50px;
    background: var(--lp-card-bg, rgba(255, 255, 255, 0.08));
    color: var(--lp-card-accent, #fff);
    border: 1px solid var(--lp-card-accent, transparent);
}

.lp-empathy-desc { margin-bottom: 16px; }

.lp-empathy-key {
    color: var(--lp-accent);
    font-weight: 700;
}

.lp-empathy-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 760px;
    margin: 56px auto 0;
    padding: 20px 32px;
    background: linear-gradient(135deg, #e8440a 0%, #ff6b35 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    text-align: center;
    word-break: keep-all;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 10px 28px rgba(232, 68, 10, 0.40),
        0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.lp-empathy-bridge .lp-empathy-bridge-text {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.lp-empathy-bridge strong {
    display: inline-block;
    color: var(--lp-accent) !important;
    font-weight: 800;
    background: #ffffff;
    padding: 2px 10px;
    border-radius: 8px;
    margin: 0 3px;
    letter-spacing: 0.01em;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
    text-shadow: none;
}
.lp-empathy-bridge:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.30) inset,
        0 16px 36px rgba(232, 68, 10, 0.55),
        0 6px 14px rgba(0, 0, 0, 0.30);
}
@media (max-width: 600px) {
    .lp-empathy-bridge {
        margin-top: 40px;
        padding: 16px 20px;
        font-size: 14px;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.lp-features { background: var(--lp-paper); }
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
    gap: 16px;
}

.lp-features-grid > .lp-feature-card-center {
    grid-column: 2 / 3 !important;
}
@media (max-width: 900px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    
    .lp-features-grid > .lp-feature-card-center { grid-column: auto !important; }
}
@media (max-width: 600px) {
    .lp-features-grid { grid-template-columns: 1fr; gap: 14px; }
}
.lp-feature-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-r-xl);
    
    padding: 22px 22px 24px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lp-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.lp-feature-card:hover::before { transform: scaleX(1); }
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
    border-color: var(--lp-border-dark);
}
.lp-feature-card.featured {
    background: var(--lp-ink);
    color: #fff;
    border-color: var(--lp-ink);
}
.lp-feature-card.featured::before { background: var(--lp-accent2); }
.lp-feature-card.featured .lp-feature-title { color: #fff; }
.lp-feature-card.featured .lp-feature-desc { color: rgba(255, 255, 255, 0.7); }
.lp-feature-card.featured .lp-feature-tag {
    background: rgba(255, 107, 53, 0.18);
    color: #ffaa85;
    border-color: rgba(255, 107, 53, 0.25);
}

.lp-feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.lp-feature-num {
    font-family: 'DM Sans', 'Pretendard Variable', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: rgba(232, 68, 10, 0.18);
    line-height: 1;
    letter-spacing: -0.02em;
    
    flex-shrink: 0;
}
.lp-feature-card.featured .lp-feature-num { color: rgba(255, 255, 255, 0.18); }

.lp-feature-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--lp-gold-light);
    color: var(--lp-accent);
    display: grid; place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}
.lp-feature-card.featured .lp-feature-icon {
    background: rgba(255, 255, 255, 0.10);
    color: #ffaa85;
}

.lp-feature-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--lp-cream);
    color: var(--lp-ink2);
    border: 1px solid var(--lp-border);
    
    margin-left: auto;
    letter-spacing: 0.3px;
}
.lp-feature-tag.hot {
    background: rgba(232, 68, 10, 0.10);
    color: var(--lp-accent);
    border-color: rgba(232, 68, 10, 0.20);
}

.lp-feature-title {
    font-size: 16px;
    
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--lp-ink);
}
.lp-feature-desc {
    font-size: 13px;
    color: var(--lp-ink2);
    line-height: 1.65;
}
.lp-feature-desc strong { color: var(--lp-accent); font-weight: 700; }
.lp-feature-card.featured .lp-feature-desc strong { color: var(--lp-accent2); }

.lp-pain-pills {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
}
.lp-pain-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 68, 10, 0.08);
    color: var(--lp-accent);
    border: 1px solid rgba(232, 68, 10, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.lp-science { padding: 110px 0; }
.lp-science-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .lp-science-grid { grid-template-columns: 1fr; gap: 44px; }
}
.lp-science-text .lp-eyebrow { color: #ff8a4c; }
.lp-science-text h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); font-weight: 900; line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 16px; }
.lp-science-text > p { color: rgba(255, 255, 255, 0.65); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }

.lp-sci-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.lp-sci-list li { display: flex; gap: 14px; align-items: flex-start; }

.lp-sci-check {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ff6b35;
    display: grid; place-items: center;
    font-size: 12px;
    margin-top: 2px;
}
.lp-sci-list strong { color: #fff; font-weight: 700; display: block; margin-bottom: 4px; font-size: 15px; }

.lp-sci-list span:not(.lp-sci-check) { color: rgba(255, 255, 255, 0.55); font-size: 13.5px; line-height: 1.65; }

.lp-chart-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--lp-r-lg);
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}
.lp-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
.lp-chart-head h4 { font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 4px; }
.lp-chart-head p { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.lp-chart-legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; }
.lp-chart-legend span {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255, 255, 255, 0.75);
}
.lp-chart-legend i {
    width: 12px; height: 12px;
    border-radius: 3px;
}
.lp-chart-wrap {
    position: relative;
    height: 320px;
    
}
@media (max-width: 600px) {
    .lp-chart-wrap { height: 260px; }
}
.lp-chart-caption {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.6;
}

.lp-review-stages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 14px;
}
@media (max-width: 600px) {
    .lp-review-stages { grid-template-columns: repeat(3, 1fr); }
}

.lp-review-stage {
    background: rgba(232, 68, 10, 0.10);
    border: 1px solid rgba(232, 68, 10, 0.30);
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
}
.lp-review-stage .day { display: block; color: #ff8a4c; font-weight: 400; font-size: 13px; }
.lp-review-stage .label { display: block; font-size: 10px; color: #ffffff; margin-top: 2px; }

.lp-how { background: var(--lp-cream); }
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-steps::after {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 1.5px;
    background: linear-gradient(90deg, var(--lp-accent) 0%, var(--lp-blue) 50%, var(--lp-green) 100%);
    -webkit-mask-image: linear-gradient(to right, #000 50%, transparent 50%);
            mask-image: linear-gradient(to right, #000 50%, transparent 50%);
    -webkit-mask-size: 10px 100%;
            mask-size: 10px 100%;
    -webkit-mask-repeat: repeat-x;
            mask-repeat: repeat-x;
    z-index: 0;
    opacity: 0.7;
    animation: lpDashFlow 1.2s linear infinite;
}

@keyframes lpDashFlow {
    from { -webkit-mask-position: 0 0;    mask-position: 0 0; }
    to   { -webkit-mask-position: 10px 0; mask-position: 10px 0; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-steps::after { animation: none; }
}
@media (max-width: 768px) {
    .lp-steps { grid-template-columns: 1fr; gap: 36px; }
    .lp-steps::after { display: none; }
}
.lp-step {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.lp-step-num {
    width: 88px; height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    position: relative;
}
.lp-step-num::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed currentColor;
    opacity: 0.25;
    animation: lpSpin 22s linear infinite;
}
@keyframes lpSpin { to { transform: rotate(360deg); } }
.lp-step:nth-child(1) .lp-step-num { background: var(--lp-accent); }
.lp-step:nth-child(2) .lp-step-num { background: var(--lp-blue); }
.lp-step:nth-child(3) .lp-step-num { background: var(--lp-green); }

.lp-step-title { font-size: 19px; font-weight: 800; color: var(--lp-ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.lp-step-desc { font-size: 14.5px; color: var(--lp-ink3); line-height: 1.75; margin-bottom: 14px; }
.lp-step-tag {
    display: inline-block;
    
    align-self: center;
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}
.lp-step:nth-child(1) .lp-step-tag { background: rgba(232, 68, 10, 0.10); color: var(--lp-accent); }
.lp-step:nth-child(2) .lp-step-tag { background: var(--lp-blue-light); color: var(--lp-blue); }
.lp-step:nth-child(3) .lp-step-tag { background: var(--lp-green-light); color: var(--lp-green); }

.lp-pricing {
    
    background: linear-gradient(180deg, var(--lp-cream) 0%, #efebe2 100%);
}

.lp-pricing > .lp-container { text-align: center; }
.lp-pricing-cards { text-align: left; } 
.lp-pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 44px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-ink2);
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    box-shadow:
        0 2px 8px rgba(15, 15, 15, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lp-toggle-wrap {
    position: relative;
    width: 56px; height: 30px;
    background: var(--lp-border);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.10);
}
.lp-toggle-wrap.on {
    
    background: linear-gradient(135deg, var(--lp-accent2) 0%, var(--lp-accent) 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
}
.lp-toggle-knob {
    position: absolute;
    width: 24px; height: 24px;
    background: #fff;
    border-radius: 50%;
    top: 3px; left: 3px;
    transition: transform 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.lp-toggle-wrap.on .lp-toggle-knob { transform: translateX(26px); }
.lp-save-badge {
    
    background: var(--lp-blue-light);
    color: var(--lp-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(26, 79, 214, 0.20);
}

.lp-pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .lp-pricing-cards { grid-template-columns: 1fr; max-width: 460px; gap: 24px; }
}

.lp-price-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    
    border-radius: 28px;
    
    padding: 44px 36px;
    position: relative;
    box-shadow: 0 1px 2px rgba(15, 15, 15, 0.04);
    
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}
.lp-price-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 2px rgba(15, 15, 15, 0.04),
        0 14px 36px rgba(15, 15, 15, 0.08);
    border-color: var(--lp-border-dark);
}

.lp-price-card.popular {
    
    background: linear-gradient(180deg, #fff4e6 0%, #fff9f1 35%, #ffffff 100%);
    border-color: rgba(245, 183, 84, 0.45);
    
    box-shadow:
        0 1px 2px rgba(15, 15, 15, 0.04),
        0 18px 40px -12px rgba(232, 68, 10, 0.18),
        0 12px 32px rgba(15, 15, 15, 0.07);
    overflow: hidden;
    
    transform: scale(1.03);
    transform-origin: center;
    z-index: 1;
}
@media (max-width: 768px) {
    
    .lp-price-card.popular { transform: none; }
}
.lp-price-card.popular:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow:
        0 1px 2px rgba(15, 15, 15, 0.04),
        0 26px 56px -14px rgba(232, 68, 10, 0.24),
        0 18px 42px rgba(15, 15, 15, 0.10);
    border-color: rgba(245, 183, 84, 0.70);
}
@media (max-width: 768px) {
    .lp-price-card.popular:hover { transform: translateY(-6px); }
}

.lp-price-card.popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--lp-accent2) 0%, var(--lp-accent) 50%, #f5b754 100%);
    z-index: 1;
}

.lp-price-plan {
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-ink3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
    min-height: 22px;
}

.lp-price-card.popular .lp-price-plan-text { color: var(--lp-blue); }

.lp-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    
    background: linear-gradient(135deg, var(--lp-blue-light) 0%, #dde6ff 100%);
    color: var(--lp-blue);
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    border: 1px solid rgba(26, 79, 214, 0.30);
    box-shadow: 0 1px 3px rgba(26, 79, 214, 0.10);
    text-transform: uppercase;
}
.lp-price-badge::before {
    content: '★';
    font-size: 9px;
    color: var(--lp-blue);
}

.lp-price-amount {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 10px;
}
.lp-price-num {
    
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--lp-ink);
    line-height: 1;
}
.lp-price-unit {
    font-size: 16px;
    color: var(--lp-ink3);
    font-weight: 600;
}
.lp-price-note {
    font-size: 13.5px;
    color: var(--lp-ink3);
    margin-bottom: 32px;
    line-height: 1.55;
    
    min-height: 21px;
}

.lp-price-cta {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 28px;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.2s;
    min-height: 52px;
    line-height: 20px;
}
.lp-price-cta-free {
    background: var(--lp-cream);
    color: var(--lp-ink);
    border: 1.5px solid var(--lp-border-dark);
}
.lp-price-cta-free:hover {
    border-color: var(--lp-ink);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 15, 15, 0.08);
}
.lp-price-cta-pro {
    
    background: linear-gradient(135deg, #e8440a 0%, #ff6b35 100%);
    
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 10px 28px rgba(232, 68, 10, 0.40),
        0 4px 10px rgba(0, 0, 0, 0.20);
}

.lp-price-cta-pro:link,
.lp-price-cta-pro:visited,
.lp-price-cta-pro:hover,
.lp-price-cta-pro:active,
.lp-price-cta-pro:focus { color: #ffffff !important; }

.lp-price-cta-pro::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.20) 50%,
        transparent 100%);
    transform: skewX(-20deg);
    animation: lpCtaShine 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes lpCtaShine {
    0%   { left: -75%; }
    25%  { left: 125%; }
    100% { left: 125%; }
}
.lp-price-cta-pro:hover {
    transform: translateY(-2px);
    
    filter: brightness(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 16px 36px rgba(232, 68, 10, 0.55),
        0 6px 14px rgba(0, 0, 0, 0.25);
}
@media (prefers-reduced-motion: reduce) {
    .lp-price-cta-pro::before { animation: none; }
}

.lp-price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.lp-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--lp-ink2);
    line-height: 1.55;
}
.lp-pf-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid; place-items: center;
    margin-top: 1px;
    font-size: 9.5px;
}
.lp-pf-icon.yes { background: var(--lp-green-light); color: var(--lp-green); }
.lp-pf-icon.no { background: var(--lp-cream); color: var(--lp-ink3); }

.lp-pf-icon.gold {
    background: linear-gradient(135deg, #fff8e0 0%, #ffe9a8 100%);
    color: var(--lp-gold);
    box-shadow:
        0 1px 2px rgba(200, 150, 10, 0.15),
        inset 0 0 0 1px rgba(200, 150, 10, 0.22);
}
.lp-price-features li.disabled { color: var(--lp-ink3); }

.lp-faq { background: var(--lp-paper); }
.lp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-faq-item {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-r-md);
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.lp-faq-item.open {
    border-color: var(--lp-accent);
    background: #fffaf6;
}
.lp-faq-q {
    width: 100%;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-ink);
    text-align: left;
    
    min-height: 56px;
}
.lp-faq-q:hover { color: var(--lp-accent); }
.lp-faq-arrow {
    width: 26px; height: 26px;
    border: 1.5px solid var(--lp-border-dark);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.2s, color 0.2s;
    font-size: 11px;
    color: var(--lp-ink3);
}
.lp-faq-item.open .lp-faq-arrow {
    transform: rotate(180deg);
    border-color: var(--lp-accent);
    color: var(--lp-accent);
}
.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.lp-faq-a-inner {
    padding: 0 22px 22px;
    font-size: 14.5px;
    color: var(--lp-ink2);
    line-height: 1.8;
}
.lp-faq-a-inner strong { color: var(--lp-accent); font-weight: 700; }

.lp-final-cta {
    padding: 110px 0;
    text-align: center;
    background: var(--lp-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lp-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 30% 50%, rgba(26, 79, 214, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 70% 50%, rgba(232, 68, 10, 0.14) 0%, transparent 60%);
    pointer-events: none;
}
.lp-final-inner { position: relative; z-index: 1; }
.lp-final-title {
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}
.lp-final-title span { color: var(--lp-accent2); }
.lp-final-title strong { color: var(--lp-accent2); font-weight: inherit; }
.lp-final-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 38px;
    max-width: 560px;
    line-height: 1.7;
}
.lp-final-sub strong { color: #fff; font-weight: 600; }
.lp-final-helper {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    margin: 24px auto 0;
    max-width: 520px;
    line-height: 1.7;
    text-align: center;
}
.lp-final-helper strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.lp-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
@media (max-width: 480px) {
    .lp-final-actions { flex-direction: column; align-items: stretch; padding: 0 24px; }
    .lp-final-actions .lp-btn { width: 100%; }
}
.lp-final-note { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

.lp-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.45);
    padding: 56px 0 32px;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.lp-footer-brand-name { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.lp-footer-brand-desc { font-size: 13px; line-height: 1.7; max-width: 280px; }
.lp-footer-business {
    font-size: 12px;
    color: #ffffff;
    margin-top: 18px;
    line-height: 1.8;
}
.lp-footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
}
.lp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}
.lp-footer-col a:hover { color: #ffffff; }
.lp-footer-contact {
    font-size: 12px;
    color: #ffffff;
    margin-top: 16px;
    line-height: 1.8;
}
.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}
.lp-footer-bottom span:last-child { color: rgba(255, 255, 255, 0.25); }

.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-reveal.visible { opacity: 1; transform: translateY(0); }
.lp-reveal-d1 { transition-delay: 0.08s; }
.lp-reveal-d2 { transition-delay: 0.16s; }
.lp-reveal-d3 { transition-delay: 0.24s; }

@media (max-width: 768px) {
    .lp-nav-links { display: none; }
    .lp-mobile-btn { display: flex; }
    .lp-nav-cta { padding: 8px 14px; font-size: 12px !important; }
}

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