/* =====================================================
   AMBLAST Landing Page — Standalone CSS
   Author: AMBLAST / Masum.xyz
   Note: This file is intentionally separate from the
         dashboard's style.css so Tailwind v4 scanning
         does not need to include landing-page classes.
===================================================== */

:root {
    --color-primary: #01427C;
    --color-primary-rgb: 1, 66, 124;
    --color-primary-hover: #013563;
    
    --color-secondary: #04814A;
    --color-secondary-rgb: 4, 129, 74;
    --color-secondary-hover: #03683c;
    
    --color-secondary-bright: #22c55e;
    --color-secondary-bright-rgb: 34, 197, 94;
    
    --color-primary-light: rgba(1, 66, 124, 0.08);
    --color-secondary-light: rgba(4, 129, 74, 0.08);
    --color-primary-light-bg: rgba(1, 66, 124, 0.04);
    --color-secondary-light-bg: rgba(4, 129, 74, 0.04);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    color: #334155;
    background: #f8fafc;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---- TYPOGRAPHY UTILITIES ---- */
.text-primary {
    color: var(--color-primary);
}

.section-label {
    display: block;
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.875rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 680px;
}

/* ---- LAYOUT CONTAINER ---- */
.lp-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--color-primary-rgb), 0.32);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--color-secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--color-secondary-rgb), 0.32);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #334155;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 1rem;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}
.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* ---- BADGE ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: var(--color-secondary-light);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.25);
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
}

/* =====================================================
   NAVBAR
===================================================== */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.lp-navbar-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0f172a;
    letter-spacing: -0.025em;
    flex-shrink: 0;
    text-decoration: none;
}
.lp-logo img {
    height: 2.1rem;
    width: auto;
    border-radius: 0.5rem;
    display: block;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.lp-nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    transition: color 0.2s;
    text-decoration: none;
}
.lp-nav-links a:hover { color: var(--color-primary); }

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

.lp-nav-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
}
.lp-nav-link:hover { color: var(--color-primary); }

.lp-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.lp-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.3);
}

/* =====================================================
   HERO SECTION
===================================================== */
.lp-hero {
    padding-top: 8.5rem;
    padding-bottom: 7rem;
    background: radial-gradient(circle at 90% 10%, rgba(var(--color-secondary-bright-rgb), 0.08) 0%, transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(var(--color-primary-rgb), 0.06) 0%, transparent 45%),
                #f8fafc;
    overflow: hidden;
    position: relative;
}

.lp-hero-orb-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--color-secondary-bright-rgb), 0.12) 0%, rgba(34, 197, 94, 0.02) 70%, transparent 100%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.lp-hero-orb-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.1) 0%, rgba(37, 99, 235, 0.02) 70%, transparent 100%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.lp-hero-grid {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.lp-hero-text {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.lp-hero-title {
    font-size: clamp(2rem, 4.2vw, 3.375rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.lp-hero-desc {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 560px;
}

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

.lp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
}
.lp-trust-item i { color: var(--color-secondary); }

/* Hero visual */
.lp-hero-visual {
    flex: 1.2 1 0;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-right: 0;
}

.lp-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-right: -1.5rem;
    animation: lp-float 6s ease-in-out infinite;
}

.lp-mockup-frame {
    background: #0f172a;
    border-radius: 1.5rem;
    padding: 0.625rem;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lp-mockup-frame img {
    border-radius: 1.1rem;
    display: block;
    width: 100%;
}

/* Float cards */
.lp-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 0.6rem 0.85rem;
    border-radius: 0.85rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 5;
}

.lp-float-top { top: -1.5rem; left: -2.5rem; }
.lp-float-bottom { bottom: -1.5rem; right: -2.5rem; }

.lp-float-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #94a3b8;
}

.lp-float-value {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f172a;
}

.lp-pulse-dot {
    position: relative;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--color-secondary);
    flex-shrink: 0;
}
.lp-pulse-dot::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: rgba(var(--color-secondary-rgb), 0.35);
    animation: lp-pulse-ring 1.5s ease-out infinite;
}

.lp-speed-icon {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 0.5rem;
    background: var(--color-secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* =====================================================
   HERO FLOATING BADGES
===================================================== */
.lp-hbadge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    padding: 0.625rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

/* Positions */
.lp-hbadge-tl {
    top: 14%;
    left: 1%;
    animation: lp-badge-float1 5s ease-in-out infinite;
}
.lp-hbadge-bl {
    bottom: 16%;
    left: 1%;
    animation: lp-badge-float2 6s ease-in-out infinite;
    animation-delay: 1s;
}
.lp-hbadge-tr {
    top: 10%;
    right: 18%;
    animation: lp-badge-float3 5.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Icon container */
.lp-hbadge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lp-hbadge-icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}
.lp-hbadge-icon-blue {
    background: rgba(1, 66, 124, 0.1);
    color: var(--color-primary);
}
.lp-hbadge-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
}

/* Text */
.lp-hbadge-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.lp-hbadge-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}
.lp-hbadge-sub {
    font-size: 0.67rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.2;
}

/* Live dot */
.lp-hbadge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 0.25rem;
}
.lp-hbadge-dot-green {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: lp-dot-pulse 1.8s ease-in-out infinite;
}

/* Badge float animations — each slightly different */
@keyframes lp-badge-float1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}
@keyframes lp-badge-float2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}
@keyframes lp-badge-float3 {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-12px) rotate(-0.5deg); }
}
@keyframes lp-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12); }
}

/* Animations */
@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes lp-pulse-ring {
    0% { transform: scale(0.85); opacity: 1; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* =====================================================
   STATS SECTION
===================================================== */
.lp-stats {
    padding: 2rem 0 1.5rem;
    background: transparent;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.lp-stat-item {
    text-align: center;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lp-stat-item:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

.lp-stat-icon {
    font-size: 2.25rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.lp-stat-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.lp-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

@media (max-width: 768px) {
    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .lp-stat-item:not(:last-child) {
        border-right: none;
    }
    .lp-stat-item:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }
    .lp-stat-item:nth-child(1),
    .lp-stat-item:nth-child(2) {
        border-bottom: 1px solid #e2e8f0;
    }
    .lp-stat-item {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .lp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =====================================================
   FEATURES SECTION
===================================================== */
.lp-features {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.lp-features-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.lp-features-blob-1 { 
    top: -10%; 
    left: -10%; 
    background: transparent; /* orb removed */ 
}
.lp-features-blob-2 { 
    bottom: -10%; 
    right: -10%; 
    background: transparent; /* orb removed */ 
}

.lp-features .lp-container {
    position: relative;
    z-index: 1;
}

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

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lp-feature-card {
    padding: 2.25rem 2rem 2rem;
    border-radius: 1.75rem;
    border: 1px solid var(--color-primary);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background-color 0.3s;
}
.lp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(var(--color-primary-rgb), 0.15), 0 0 0 1px var(--color-primary);
    background: #ffffff;
    border-color: var(--color-primary);
}

.lp-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.1rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lp-feature-card:hover .lp-feature-icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.08) rotate(5deg);
}

.lp-feature-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.lp-feature-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.75;
    flex-grow: 1;
}

/* ---- FEATURE MOCKUPS ---- */
.lp-feature-mockup {
    margin-top: 1.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.25rem;
    font-size: 0.8125rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.lp-feature-card:hover .lp-feature-mockup {
    border-color: rgba(var(--color-primary-rgb), 0.2);
    box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.05);
}

/* Mockup 1: Devices */
.mockup-device-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.875rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    transition: background-color 0.3s, border-color 0.3s;
}
.lp-feature-card:hover .mockup-device-item {
    background: #ffffff;
    border-color: var(--color-primary-light);
}
.mockup-device-info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.mockup-device-avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}
.mockup-device-num {
    font-weight: 700;
    color: #334155;
}
.mockup-device-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--color-secondary);
}

/* Mockup 2: API */
.mockup-api-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.mockup-api-method {
    background: var(--color-secondary-light);
    color: var(--color-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 800;
    font-size: 0.6875rem;
}
.mockup-api-endpoint {
    font-family: monospace;
    color: #475569;
    font-weight: 700;
}
.mockup-api-auth {
    font-family: monospace;
    color: #64748b;
    background: #f8fafc;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px dashed #cbd5e1;
    font-size: 0.75rem;
    word-break: break-all;
    transition: background-color 0.3s, border-color 0.3s;
}
.lp-feature-card:hover .mockup-api-auth {
    background: #ffffff;
    border-color: rgba(var(--color-primary-rgb), 0.25);
}

/* Mockup 3: Broadcast Progress */
.mockup-progress-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #475569;
}
.mockup-progress-bar {
    height: 0.5rem;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.mockup-progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 999px;
    position: absolute;
    top: 0;
    left: 0;
    animation: mockup-fill-progress 3s infinite ease-in-out;
}
@keyframes mockup-fill-progress {
    0%, 100% { width: 72%; }
    50% { width: 94%; }
}
.mockup-progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: #94a3b8;
}

/* Mockup 4: Webhook Payload */
.mockup-webhook-url {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.375rem 0.625rem;
    border-radius: 0.5rem;
    color: #64748b;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: background-color 0.3s, border-color 0.3s;
}
.lp-feature-card:hover .mockup-webhook-url {
    background: #ffffff;
    border-color: var(--color-secondary-light);
}
.mockup-webhook-payload {
    font-family: monospace;
    font-size: 0.725rem;
    background: #0f172a;
    color: #cbd5e1;
    padding: 0.625rem;
    border-radius: 0.625rem;
    line-height: 1.5;
}
.mockup-webhook-payload .key { color: #f472b6; }
.mockup-webhook-payload .str { color: #34d399; }

/* Mockup 5: Spintax */
.mockup-spintax-original {
    font-style: italic;
    color: #64748b;
    padding: 0.45rem 0.625rem;
    background: #f8fafc;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 0.5rem 0.5rem 0;
    line-height: 1.4;
    transition: background-color 0.3s;
}
.lp-feature-card:hover .mockup-spintax-original {
    background: #ffffff;
}
.mockup-spintax-result {
    color: #334155;
    font-weight: 600;
    background: var(--color-secondary-light);
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(var(--color-secondary-rgb), 0.15);
    line-height: 1.4;
}
.mockup-spintax-result .hl {
    color: var(--color-secondary);
    font-weight: 800;
}

/* Mockup 6: Scanner */
.mockup-scan-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0.75rem;
    background: #f8fafc;
    border-radius: 0.625rem;
    border: 1px solid #f1f5f9;
    transition: background-color 0.3s, border-color 0.3s;
}
.lp-feature-card:hover .mockup-scan-item {
    background: #ffffff;
    border-color: var(--color-secondary-light);
}
.mockup-scan-name {
    font-weight: 700;
    color: #334155;
}
.mockup-scan-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #e2e8f0;
    color: #334155;
    padding: 0.3rem 0.6rem;
    border-radius: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 800;
    transition: background-color 0.3s, color 0.3s;
}
.lp-feature-card:hover .mockup-scan-btn {
    background: var(--color-primary);
    color: #fff;
}

/* =====================================================
   API SECTION
===================================================== */
.lp-api {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lp-api-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        none,
        none;
    background-size: 48px 48px;
    opacity: 0.25;
    pointer-events: none;
}

.lp-api-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.lp-api-text {
    flex: 5 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-api-text .section-label { color: var(--color-secondary-bright); }

.lp-api-text h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.lp-api-text p {
    color: #94a3b8;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.lp-api-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.lp-api-checks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}
.lp-api-checks li i { color: var(--color-secondary-bright); }

/* Code editor */
.lp-code-editor {
    flex: 7 1 0;
    min-width: 0;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(51, 65, 85, 0.8);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.lp-code-topbar {
    background: rgba(2, 6, 23, 0.7);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(51, 65, 85, 0.7);
}

.lp-code-dots { display: flex; gap: 0.4rem; }
.lp-code-dots span {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    display: block;
}
.lp-code-dots span:nth-child(1) { background: #ef4444; }
.lp-code-dots span:nth-child(2) { background: #f59e0b; }
.lp-code-dots span:nth-child(3) { background: var(--color-secondary-bright); }

.lp-code-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.7);
    padding: 0.2rem;
    border-radius: 0.625rem;
    gap: 0.15rem;
    border: 1px solid rgba(51, 65, 85, 0.6);
}

.lp-code-tab {
    padding: 0.35rem 0.875rem;
    border-radius: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #64748b;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.lp-code-tab.active {
    background: rgba(51, 65, 85, 0.8);
    color: var(--color-secondary-bright);
}

.lp-code-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: auto;
    color: #e2e8f0;
}

.lp-code-snippet { display: none; }
.lp-code-snippet.active { display: block; }

.c-cmd { color: #f87171; }
.c-str { color: var(--color-secondary-bright); }
.c-key { color: #93c5fd; }

.lp-code-output {
    background: rgba(2, 6, 23, 0.6);
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    padding: 1.25rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.775rem;
    color: #94a3b8;
    line-height: 1.6;
}
.lp-code-output .ok { color: var(--color-secondary-bright); }

/* =====================================================
   PRICING SECTION
==================================================== */
.lp-pricing {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    background: #f8fafc;
}

.lp-pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.lp-price-card {
    background: #fff;
    border-radius: 1.5rem;
    border: 1.5px solid #e2e8f0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: box-shadow 0.25s;
}
.lp-price-card:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09); }

.lp-price-card.popular {
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: 0 20px 48px rgba(var(--color-primary-rgb), 0.1);
    position: relative;
    transform: translateY(-8px);
}

.lp-popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.4);
}

.lp-price-plan { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; }
.lp-price-name { font-size: 1.375rem; font-weight: 800; color: #0f172a; margin-top: 0.25rem; }

.lp-price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    color: #0f172a;
}
.lp-price-currency { font-size: 1.375rem; font-weight: 800; }
.lp-price-number { font-size: 2.75rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.lp-price-period { font-size: 0.8rem; font-weight: 600; color: #94a3b8; margin-left: 0.25rem; }

.lp-price-desc { font-size: 0.875rem; color: #64748b; line-height: 1.65; }

.lp-price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
}
.lp-price-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #475569;
}
.lp-price-features li .check { color: var(--color-secondary); }
.lp-price-features li .cross { color: #cbd5e1; }

.lp-price-btn {
    display: block;
    text-align: center;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    background: transparent;
    text-decoration: none;
}
.lp-price-btn:hover { background: #f8fafc; border-color: #cbd5e1; }

.lp-price-btn.primary {
    background: var(--color-primary);
    border-color: transparent;
    color: #fff;
}
.lp-price-btn.primary:hover {
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.35);
    transform: translateY(-1px);
}

/* =====================================================
   FAQ SECTION
===================================================== */
.lp-faq {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.lp-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-faq-list {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-faq-item {
    border-radius: 1.1rem;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    overflow: hidden;
}

.lp-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.lp-faq-q {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}

.lp-faq-chevron {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.75rem;
    transition: transform 0.25s;
}
.lp-faq-item.open .lp-faq-chevron { transform: rotate(180deg); }
.lp-faq-item.open .lp-faq-q { color: var(--color-primary); }

.lp-faq-body {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.75;
    border-top: 1.5px solid #f1f5f9;
    padding-top: 1rem;
}
.lp-faq-item.open .lp-faq-body { display: block; }

/* =====================================================
   CTA SECTION
===================================================== */
.lp-cta {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #f8fafc;
}

.lp-cta-inner {
    background: #0f172a;
    border-radius: 2.5rem;
    padding: 5rem 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        none,
        none;
    background-size: 40px 40px;
    opacity: 0.12;
    pointer-events: none;
}

.lp-cta-inner::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    background: transparent; /* orb removed */
    pointer-events: none;
}

.lp-cta-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-cta-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: rgba(4, 129, 74, 0.15);
    border: 1px solid rgba(4, 129, 74, 0.3);
    color: var(--color-secondary-bright);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
}

.lp-cta-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
}

.lp-cta-text p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.65;
    max-width: 580px;
    margin: 0;
}

.lp-cta-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 0.5rem;
    padding: 0;
}

.lp-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    font-weight: 600;
}

.lp-cta-benefits li i {
    color: var(--color-secondary-bright);
    font-size: 0.95rem;
}

.lp-cta-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
}

.lp-cta-action-sub {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

/* =====================================================
   FOOTER
===================================================== */
.lp-footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(51, 65, 85, 0.5);
}

.lp-footer-grid {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.lp-footer-brand {}
.lp-footer-brand .lp-logo { color: #fff; margin-bottom: 1rem; }

.lp-footer-logo {
    font-size: 1.6rem;
    gap: 0.8rem;
}
.lp-footer-logo img {
    height: 2.6rem !important;
    border-radius: 0.6rem;
}

.lp-footer-desc {
    font-size: 0.8125rem;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.lp-footer-bottom {
    border-top: 1px solid rgba(51, 65, 85, 0.25);
    margin-top: 3.5rem;
    padding-top: 2rem;
    text-align: center;
}

.lp-footer-copy {
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.5;
}
.lp-footer-copy strong {
    color: #fff;
}

.lp-footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.lp-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.lp-footer-links a {
    font-size: 0.8125rem;
    color: #94a3b8;
    transition: color 0.2s;
    text-decoration: none;
}
.lp-footer-links a:hover { color: var(--color-secondary-bright); }

.lp-footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.lp-footer-socials a {
    font-size: 1rem;
    color: #94a3b8;
    transition: color 0.2s;
    text-decoration: none;
}
.lp-footer-socials a:hover { color: #fff; }

/* =====================================================
   DIGUNAKAN OLEH (TRUSTED BY) SECTION
===================================================== */
.lp-trusted {
    padding: 4.5rem 0;
    background: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.lp-trusted-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.lp-trusted-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.lp-trusted-track {
    display: flex;
    width: max-content;
    animation: lp-marquee 25s linear infinite;
}

.lp-trusted-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #64748b;
    filter: grayscale(1);
    opacity: 0.65;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.lp-trusted-item i {
    font-size: 1.35rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.lp-trusted-item img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    border-radius: 0.375rem;
}

.lp-trusted-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: #0f172a;
    transform: translateY(-2px);
}

.lp-trusted-item:hover i {
    color: var(--color-secondary);
}

@keyframes lp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */
.lp-testimonials {
    padding: 7.5rem 0 8.5rem;
    background: var(--color-primary-light-bg);
    position: relative;
    overflow: hidden;
}

.lp-testimonials-header {
    text-align: center;
    margin-bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.lp-testimonials-swiper {
    padding: 1.5rem 1rem 4rem !important;
}

/* Swiper Slides 3D Scale Transition */
.lp-testimonials-swiper .swiper-slide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.86);
    opacity: 0.45;
}

.lp-testimonials-swiper .swiper-slide-active {
    transform: scale(1.04);
    opacity: 1;
    z-index: 10;
}

.lp-testi-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.75rem 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100% !important;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.lp-testi-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(var(--color-primary-rgb), 0.05);
    line-height: 1;
    pointer-events: none;
}

.lp-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(1, 66, 124, 0.12);
    border-color: rgba(1, 66, 124, 0.15);
}

.lp-testi-rating {
    display: flex;
    gap: 0.25rem;
    color: #eab308;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.lp-testi-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.lp-testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.lp-testi-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    flex-shrink: 0;
    object-fit: cover;
}

.lp-testi-avatar.avatar-blue {
    background: linear-gradient(135deg, var(--color-primary), #3b82f6);
}

.lp-testi-avatar.avatar-green {
    background: linear-gradient(135deg, var(--color-secondary), #22c55e);
}

.lp-testi-avatar.avatar-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.lp-testi-avatar.avatar-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.lp-testi-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lp-testi-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.lp-testi-role {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

/* Swiper custom pagination */
.lp-testimonials-swiper .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.lp-testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    width: 24px;
    border-radius: 4px;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */
@media (max-width: 1024px) {
    /* Hero: stack vertically */
    .lp-hero-grid {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding-right: 1.5rem;
    }
    .lp-hero-text { align-items: center; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-visual { display: none; }

    /* Features: 2 columns */
    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* API: stack vertically */
    .lp-api-inner { flex-direction: column; }

    /* Pricing: single column */
    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .lp-price-card.popular { transform: none; }

    /* Footer: 2 col */
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }

    /* CTA: stack */
    .lp-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
        gap: 2.5rem;
    }
    .lp-cta-badge {
        align-self: center;
    }
    .lp-cta-benefits {
        justify-content: center;
    }
    .lp-cta-text p { max-width: none; }
}

@media (max-width: 768px) {
    .lp-nav-links { display: none; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .lp-testimonials {
        padding: 5.5rem 0 6.5rem;
    }
    .lp-trusted {
        padding: 3.5rem 0;
    }
    .lp-trusted-item {
        padding: 0 1.75rem;
        font-size: 0.95rem;
    }
}

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