/* ===================================================================
   Baytr Premium Landing Page
   Inspired by Linear, Vercel, Stripe, Notion, Arc, Raycast
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --landing-bg: #faf8f5;
    --landing-fg: #1a1410;
    --landing-subtle: #6b5c4d;
    --landing-muted: #9a8b7a;
    --landing-border: #e8e0d4;
    --landing-card: #ffffff;
    --landing-primary: #e85c1a;
    --landing-primary-dark: #c94c10;
    --landing-primary-glow: rgba(232, 92, 26, 0.12);
    --landing-primary-glow-strong: rgba(232, 92, 26, 0.25);
    --landing-gradient-start: #fff5ed;
    --landing-gradient-end: #faf8f5;
    --landing-section-alt: #fdf9f5;
    --landing-radius: 16px;
    --landing-radius-sm: 12px;
    --landing-radius-xs: 8px;
    --landing-shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.04);
    --landing-shadow-md: 0 4px 20px rgba(26, 20, 16, 0.06);
    --landing-shadow-lg: 0 12px 40px rgba(26, 20, 16, 0.08);
    --landing-shadow-xl: 0 20px 60px rgba(26, 20, 16, 0.1);
    --landing-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset & Base ---- */
.lp {
    font-family: var(--landing-font);
    background: var(--landing-bg);
    color: var(--landing-fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.lp * {
    box-sizing: border-box;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .lp-container { padding: 0 2.5rem; }
}

/* ---- Navigation ---- */
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    width: 100%;
}

.lp-nav.scrolled {
    border-bottom-color: var(--landing-border);
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--landing-fg);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.lp-nav-logo-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.lp-nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .lp-nav-links { display: flex; }
}

.lp-nav-links a {
    color: var(--landing-subtle);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav-links a:hover { color: var(--landing-fg); }

.lp-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-nav-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--landing-radius-xs);
    background: var(--landing-primary);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px var(--landing-primary-glow);
}

.lp-nav-btn:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--landing-primary-glow-strong);
    color: #fff;
}

.lp-nav-link-btn {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--landing-subtle);
    text-decoration: none;
    border-radius: var(--landing-radius-xs);
    transition: color 0.2s;
    display: none;
}

@media (min-width: 768px) {
    .lp-nav-link-btn { display: inline-block; }
}

.lp-nav-link-btn:hover { color: var(--landing-fg); }

.lp-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--landing-radius-xs);
    border: 1px solid var(--landing-border);
    background: var(--landing-card);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    z-index: 10;
}

.lp-lang-toggle:hover {
    border-color: var(--landing-muted);
    background: var(--landing-gradient-start);
}

.lp-lang-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--landing-subtle);
    letter-spacing: 0.02em;
}

/* ---- Hero Section ---- */
.lp-hero {
    position: relative;
    padding: 3.5rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse at center, var(--landing-primary-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--landing-subtle);
    margin-bottom: 1.25rem;
    box-shadow: var(--landing-shadow-sm);
}

.lp-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.lp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
    color: var(--landing-fg);
}

.lp-hero h1 span {
    background: linear-gradient(135deg, var(--landing-primary), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: 1.2rem;
    color: var(--landing-subtle);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.lp-hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--landing-font);
    background: var(--landing-primary);
    color: #fff;
    border: none;
    border-radius: var(--landing-radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px var(--landing-primary-glow-strong);
}

.lp-btn-primary:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--landing-primary-glow-strong);
    color: #fff;
}

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--landing-font);
    background: transparent;
    color: var(--landing-fg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.lp-btn-secondary:hover {
    background: var(--landing-card);
    border-color: var(--landing-subtle);
    transform: translateY(-1px);
    color: var(--landing-fg);
}

/* Phone Mockup */
.lp-hero-visual {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    z-index: 1;
}

.lp-phone-mockup {
    position: relative;
    background: #1a1410;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--landing-shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
}

.lp-phone-screen {
    background: #1e293b;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
}

.lp-phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1410;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
}

.lp-phone-notification {
    margin: 1.5rem 0.75rem;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    animation: notifSlide 0.5s ease-out 1s both;
}

@keyframes notifSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-phone-notif-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #229ED9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.lp-phone-notif-content {
    flex: 1;
    min-width: 0;
}

.lp-phone-notif-app {
    font-size: 0.65rem;
    font-weight: 600;
    color: #229ED9;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}

.lp-phone-notif-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1410;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.lp-phone-notif-body {
    font-size: 0.72rem;
    color: #6b5c4d;
    line-height: 1.4;
}

.lp-phone-notif-time {
    font-size: 0.6rem;
    color: #9a8b7a;
    white-space: nowrap;
    margin-top: 0.1rem;
}

/* Second notification */
.lp-phone-notification:nth-child(3) {
    animation-delay: 2s;
}

/* Phone floating elements */
.lp-hero-float {
    position: absolute;
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-sm);
    padding: 0.6rem 0.9rem;
    box-shadow: var(--landing-shadow-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.lp-hero-float--left {
    left: -30px;
    top: 30%;
    animation-delay: 0s;
}

.lp-hero-float--right {
    right: -30px;
    top: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 480px) {
    .lp-hero-float { display: none; }
}

/* ---- Trust Stats ---- */
.lp-trust {
    padding: 3rem 0;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
    background: var(--landing-card);
}

.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

@media (max-width: 600px) {
    .lp-trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.lp-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.lp-trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--landing-fg);
    line-height: 1;
}

.lp-trust-label {
    font-size: 0.85rem;
    color: var(--landing-muted);
    font-weight: 500;
}

/* ---- How It Works ---- */
.lp-how {
    padding: 6rem 0;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--landing-primary);
    margin-bottom: 0.75rem;
}

.lp-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--landing-fg);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lp-section-subtitle {
    font-size: 1.05rem;
    color: var(--landing-subtle);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.lp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .lp-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .lp-steps::before {
        content: '';
        position: absolute;
        top: 56px;
        left: calc(16.67% + 28px);
        right: calc(16.67% + 28px);
        height: 2px;
        background: linear-gradient(90deg, var(--landing-primary), var(--landing-border));
        z-index: 0;
    }
}

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.lp-step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--landing-gradient-start), var(--landing-card));
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-primary);
    box-shadow: var(--landing-shadow-sm);
    transition: all 0.3s;
}

.lp-step:hover .lp-step-icon {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow-md);
    border-color: var(--landing-primary);
}

.lp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--landing-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.lp-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--landing-fg);
}

.lp-step p {
    font-size: 0.9rem;
    color: var(--landing-subtle);
    line-height: 1.6;
    margin: 0;
}

/* ---- Dashboard Preview ---- */
.lp-preview {
    padding: 4rem 0 6rem;
    background: var(--landing-section-alt);
}

.lp-preview-window {
    max-width: 960px;
    margin: 0 auto;
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius);
    overflow: hidden;
    box-shadow: var(--landing-shadow-xl);
}

.lp-preview-titlebar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: var(--landing-bg);
    border-bottom: 1px solid var(--landing-border);
}

.lp-preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--landing-border);
}

.lp-preview-dot:nth-child(1) { background: #ff5f57; }
.lp-preview-dot:nth-child(2) { background: #ffbd2e; }
.lp-preview-dot:nth-child(3) { background: #28c840; }

.lp-preview-url {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--landing-muted);
    font-weight: 500;
}

.lp-preview-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .lp-preview-body {
        grid-template-columns: 260px 1fr;
        gap: 1.25rem;
        padding: 1.5rem 2rem;
    }
}

.lp-preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-preview-filter {
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-xs);
    padding: 0.75rem 1rem;
}

.lp-preview-filter-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--landing-muted);
    margin-bottom: 0.4rem;
}

.lp-preview-filter-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--landing-fg);
}

.lp-preview-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.lp-preview-chip {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--landing-primary);
    color: #fff;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.lp-preview-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.lp-preview-card {
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-xs);
    overflow: hidden;
    transition: all 0.2s;
}

.lp-preview-card:hover {
    border-color: var(--landing-primary);
    box-shadow: 0 4px 12px var(--landing-primary-glow);
}

.lp-preview-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e8e0d4 0%, #d8cfc2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-muted);
    font-size: 1.5rem;
}

.lp-preview-card-body {
    padding: 0.6rem 0.75rem;
}

.lp-preview-card-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--landing-primary);
}

.lp-preview-card-addr {
    font-size: 0.75rem;
    color: var(--landing-subtle);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-preview-card-meta {
    font-size: 0.7rem;
    color: var(--landing-muted);
    margin-top: 0.2rem;
}

/* ---- Features Grid ---- */
.lp-features {
    padding: 6rem 0;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .lp-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-feature-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius);
    padding: 2rem 1.75rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--landing-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.lp-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--landing-gradient-start), #fff5ed);
    border: 1px solid rgba(232, 92, 26, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.lp-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--landing-fg);
}

.lp-feature-card p {
    font-size: 0.88rem;
    color: var(--landing-subtle);
    line-height: 1.6;
    margin: 0;
}

/* ---- Platform Logos ---- */
.lp-platforms {
    padding: 4rem 0;
    background: var(--landing-section-alt);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.lp-platforms-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--landing-muted);
    margin-bottom: 2rem;
}

.lp-platforms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.lp-platform-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--landing-subtle);
    transition: all 0.2s;
    white-space: nowrap;
}

.lp-platform-logo:hover {
    border-color: var(--landing-primary);
    color: var(--landing-fg);
    box-shadow: var(--landing-shadow-sm);
}

/* ---- Testimonials ---- */
.lp-testimonials {
    padding: 6rem 0;
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .lp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .lp-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-testimonial {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius);
    padding: 1.75rem;
    transition: all 0.3s;
}

.lp-testimonial:hover {
    box-shadow: var(--landing-shadow-md);
    transform: translateY(-2px);
}

.lp-testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.lp-testimonial-text {
    font-size: 0.9rem;
    color: var(--landing-fg);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lp-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-primary-glow), var(--landing-border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--landing-primary);
}

.lp-testimonial-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--landing-fg);
}

.lp-testimonial-role {
    font-size: 0.72rem;
    color: var(--landing-muted);
}

/* ---- FAQ ---- */
.lp-faq {
    padding: 6rem 0;
    background: var(--landing-section-alt);
}

.lp-faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-faq-item {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.lp-faq-item:hover {
    border-color: rgba(232, 92, 26, 0.3);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--landing-fg);
    cursor: pointer;
    text-align: left;
    font-family: var(--landing-font);
    transition: color 0.2s;
}

.lp-faq-question:hover {
    color: var(--landing-primary);
    background: transparent;
}

.lp-faq-chevron {
    transition: transform 0.3s;
    color: var(--landing-muted);
    flex-shrink: 0;
}

.lp-faq-item.open .lp-faq-chevron {
    transform: rotate(180deg);
    color: var(--landing-primary);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-item.open .lp-faq-answer {
    max-height: 300px;
}

.lp-faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--landing-subtle);
    line-height: 1.7;
}

/* ---- Final CTA ---- */
.lp-final-cta {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, var(--landing-primary-glow) 0%, transparent 55%);
    pointer-events: none;
}

.lp-final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: var(--landing-shadow-lg);
}

.lp-final-cta h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--landing-fg);
}

.lp-final-cta p {
    font-size: 1rem;
    color: var(--landing-subtle);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ---- Footer ---- */
.lp-footer {
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--landing-border);
    text-align: center;
}

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

.lp-footer-links a {
    color: var(--landing-subtle);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.lp-footer-copy {
    font-size: 0.8rem;
    color: var(--landing-muted);
}

/* ---- Animations ---- */
.lp-fade-in {
    opacity: 1;
    transform: none;
}

/* Stagger children */
.lp-stagger > * {
    opacity: 1;
    transform: none;
}

/* ---- Utility ---- */
@media (max-width: 480px) {
    .lp-nav { padding: 0.6rem 1rem; }
    .lp-nav-right { gap: 0.5rem; }
    .lp-nav-btn { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
    .lp-hero { padding: 3rem 1.25rem 2.5rem; }
    .lp-hero-subtitle { font-size: 1.05rem; }
    .lp-btn-primary, .lp-btn-secondary { width: 100%; justify-content: center; }
    .lp-hero-cta-group { flex-direction: column; }
    .lp-final-cta-content { padding: 2.5rem 1.5rem; }
}
