/* ============================================
   Land Sellers — Premium Landing Page Styles
   ============================================ */

/* ── Base ────────────────────────────────── */
.lp-scroll-reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.lp-scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Hero ────────────────────────────────── */
.lp-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d121b 0%, #1a1a2e 30%, #16213e 60%, #0d121b 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 70%);
    animation: lp-glow-pulse 8s ease-in-out infinite;
}
@keyframes lp-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Floating 3D shapes */
.lp-hero-shapes { position: absolute; inset: 0; pointer-events: none; perspective: 1000px; }
.lp-shape {
    position: absolute;
    border-radius: 20%;
    animation: lp-float-3d 12s ease-in-out infinite;
    transform-style: preserve-3d;
}
.lp-shape-1 {
    width: 300px; height: 300px;
    top: 10%; right: 5%;
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(234,88,12,0.05));
    border: 1px solid rgba(249,115,22,0.1);
    animation-delay: 0s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.lp-shape-2 {
    width: 200px; height: 200px;
    bottom: 15%; left: 10%;
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(234,88,12,0.03));
    border: 1px solid rgba(249,115,22,0.08);
    animation-delay: -4s;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}
.lp-shape-3 {
    width: 150px; height: 150px;
    top: 40%; left: 30%;
    background: linear-gradient(135deg, rgba(249,115,22,0.08), transparent);
    border: 1px solid rgba(249,115,22,0.06);
    animation-delay: -8s;
}
@keyframes lp-float-3d {
    0% { transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1); }
    25% { transform: translateY(-30px) rotateX(10deg) rotateY(15deg) scale(1.05); }
    50% { transform: translateY(-15px) rotateX(-5deg) rotateY(-10deg) scale(1.02); }
    75% { transform: translateY(-40px) rotateX(8deg) rotateY(5deg) scale(1.08); }
    100% { transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1); }
}

/* Grid pattern overlay */
.lp-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    color: #F97316;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: lp-badge-glow 3s ease-in-out infinite;
}
@keyframes lp-badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249,115,22,0.1); }
    50% { box-shadow: 0 0 40px rgba(249,115,22,0.2); }
}

.lp-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #FED7AA 50%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.6);
    line-height: 2;
    max-width: 40rem;
    margin: 0 auto;
}

/* CTA Buttons */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(249,115,22,0.3);
    position: relative;
    overflow: hidden;
}
.lp-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.lp-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(249,115,22,0.4);
}
.lp-btn-primary:hover::before { opacity: 1; }

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}
.lp-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(249,115,22,0.3);
    transform: translateY(-2px);
}

/* ── Stats ────────────────────────────────── */
.lp-stats-section {
    background: #0d121b;
    padding: 5rem 0;
    position: relative;
}
.lp-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.3), transparent);
}
.lp-stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.lp-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.lp-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: 0 20px 60px rgba(249,115,22,0.1);
}
.lp-stat-card:hover::before { opacity: 1; }
.lp-stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.lp-stat-icon .material-symbols-outlined { font-size: 2rem; color: #F97316; }
.lp-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.lp-stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ── Features ────────────────────────────────── */
.lp-features-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0d121b 0%, #111827 100%);
}
.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #F97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.lp-section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.lp-section-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.5);
    max-width: 36rem;
    margin: 1rem auto 0;
    line-height: 1.8;
}

.lp-feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FDBA74);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
.lp-feature-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(249,115,22,0.2);
    box-shadow: 0 30px 80px rgba(249,115,22,0.08), 0 0 0 1px rgba(249,115,22,0.1);
    background: rgba(249,115,22,0.03);
}
.lp-feature-card:hover::before { transform: scaleX(1); transform-origin: left; }

.lp-feature-icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
}
.lp-feature-card:hover .lp-feature-icon-wrap {
    background: linear-gradient(135deg, #F97316, #EA580C);
    transform: scale(1.1) rotateZ(-5deg);
    box-shadow: 0 12px 32px rgba(249,115,22,0.3);
}
.lp-feature-icon-wrap .material-symbols-outlined {
    font-size: 2rem;
    color: #F97316;
    transition: color 0.3s;
}
.lp-feature-card:hover .lp-feature-icon-wrap .material-symbols-outlined { color: #fff; }
.lp-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.lp-feature-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
}

/* ── Steps ────────────────────────────────── */
.lp-steps-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111827 0%, #0d121b 100%);
    position: relative;
}
.lp-step-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.lp-step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FDBA74);
    transform: scaleX(0);
    transition: transform 0.5s;
}
.lp-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: 0 24px 64px rgba(249,115,22,0.08);
}
.lp-step-card:hover::after { transform: scaleX(1); }

.lp-step-num {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(249,115,22,0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.lp-step-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.lp-step-icon-wrap .material-symbols-outlined { font-size: 1.5rem; color: #F97316; }
.lp-step-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.lp-step-desc { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.9; }

/* Connector line between steps */
.lp-steps-connector {
    display: none;
}
@media (min-width: 768px) {
    .lp-steps-connector {
        display: block;
        position: absolute;
        top: 50%;
        left: -2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(249,115,22,0.3), rgba(249,115,22,0.1));
    }
}

/* ── Benefits ────────────────────────────────── */
.lp-benefits-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FED7AA 100%);
    position: relative;
}
.lp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(249,115,22,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}
.lp-benefit-item:hover {
    background: #fff;
    transform: translateX(-8px);
    box-shadow: 0 16px 48px rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.2);
}
.lp-benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(249,115,22,0.2);
}
.lp-benefit-icon .material-symbols-outlined { font-size: 1.5rem; color: #fff; }
.lp-benefit-title { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
.lp-benefit-desc { font-size: 0.95rem; color: #64748b; line-height: 1.8; }

/* ── Testimonials ────────────────────────────────── */
.lp-testimonials-section {
    padding: 8rem 0;
    background: #0d121b;
}
.lp-testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.lp-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(249,115,22,0.08);
    line-height: 1;
    font-family: Georgia, serif;
}
.lp-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: 0 24px 64px rgba(249,115,22,0.08);
}
.lp-testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}
.lp-testimonial-stars .material-symbols-outlined { font-size: 1.25rem; color: #F97316; }
.lp-testimonial-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.lp-testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #EA580C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lp-testimonial-name { font-size: 1rem; font-weight: 700; color: #fff; }
.lp-testimonial-role { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }

/* ── CTA ────────────────────────────────── */
.lp-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F97316, #EA580C, #DC2626);
    position: relative;
    overflow: hidden;
}
.lp-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.lp-cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.lp-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #fff;
    color: #EA580C;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
}
.lp-cta-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
    .lp-hero { min-height: auto; padding: 6rem 1rem 4rem; }
    .lp-hero-title { font-size: 2rem; }
    .lp-shape-1 { width: 150px; height: 150px; }
    .lp-shape-2 { width: 100px; height: 100px; }
    .lp-shape-3 { display: none; }
    .lp-features-section, .lp-steps-section, .lp-benefits-section, .lp-testimonials-section { padding: 5rem 0; }
    .lp-feature-card, .lp-step-card, .lp-testimonial-card { padding: 1.5rem; }
    .lp-benefit-item { flex-direction: column; gap: 1rem; }
}
