:root {
    --lp-teal: #108789;
    --lp-teal-light: #14a3a6;
    --lp-teal-dark: #0c4252;
    --lp-teal-deep: #0a3d4a;
    --lp-gold: #d4a017;
    --lp-gold-soft: #f5e6b8;
    --lp-gold-bright: #f0c040;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-border: #e2e8f0;
    --lp-bg: #f8fafc;
    --lp-white: #ffffff;
    --lp-shadow-sm: 0 4px 20px rgba(12, 66, 82, 0.06);
    --lp-shadow-md: 0 12px 40px rgba(12, 66, 82, 0.1);
    --lp-shadow-lg: 0 24px 60px rgba(12, 66, 82, 0.14);
    --lp-radius: 14px;
}

* { scroll-behavior: smooth; box-sizing: border-box; }

.lp-body {
    font-family: 'Poppins', sans-serif;
    color: var(--lp-text);
    background: var(--lp-white);
    margin: 0;
    line-height: 1.6;
}

/* ── Nav ── */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lp-border);
    transition: box-shadow 0.3s;
}
.lp-nav.is-scrolled { box-shadow: var(--lp-shadow-sm); }

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 68px;
}

.lp-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 4px 0;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.lp-nav-logo-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-brand-mark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    width: 40px;
    height: 40px;
    transform: rotate(-12deg);
}

.lp-brand-mark-grid .q {
    display: block;
    border-radius: 2px;
}

.lp-brand-mark-grid .tl {
    border: 2px solid var(--lp-teal);
    background: transparent;
}

.lp-brand-mark-grid .tr {
    background: var(--lp-gold);
}

.lp-brand-mark-grid .bl {
    border: 2px solid var(--lp-gold);
    background: transparent;
}

.lp-brand-mark-grid .br {
    background: var(--lp-teal);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lp-nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}

.lp-nav-brand-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--lp-text);
    white-space: nowrap;
}

.lp-nav-brand-text small {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--lp-muted);
    margin-top: 3px;
    white-space: nowrap;
}

.lp-nav-brand-text-light strong {
    color: #fff;
}

.lp-nav-brand-text-light small {
    color: rgba(255, 255, 255, 0.62);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.lp-nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--lp-teal); }

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

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-light));
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 135, 137, 0.35);
}
.lp-btn-primary:hover { color: #fff; box-shadow: 0 10px 28px rgba(16, 135, 137, 0.45); }

.lp-btn-outline {
    background: transparent;
    color: var(--lp-teal-dark);
    border: 1.5px solid var(--lp-border);
}
.lp-btn-outline:hover { background: #f1f5f9; color: var(--lp-teal-dark); }

.lp-btn-gold {
    background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-bright));
    color: var(--lp-teal-deep);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
}
.lp-btn-gold:hover { color: var(--lp-teal-deep); }

.lp-btn-white {
    background: #fff;
    color: var(--lp-teal-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.lp-btn-white:hover { color: var(--lp-teal); }

.lp-btn-ghost-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.lp-btn-ghost-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

.lp-container { max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 24px; }

/* ── Hero ── */
.lp-hero {
    padding: 132px 0 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(16, 135, 137, 0.07), transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(212, 160, 23, 0.06), transparent 45%),
        linear-gradient(180deg, #fff 0%, var(--lp-bg) 100%);
    overflow: hidden;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 48px;
}

.lp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 135, 137, 0.08);
    border: 1px solid rgba(16, 135, 137, 0.15);
    color: var(--lp-teal);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.lp-hero h1 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.18;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--lp-text);
}
.lp-hero h1 .lp-accent { color: var(--lp-teal); }
.lp-hero h1 .lp-gold { color: var(--lp-gold); }

.lp-hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--lp-muted);
    max-width: 520px;
    margin-bottom: 28px;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.lp-hero-video {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 4px;
}
.lp-hero-video i { color: var(--lp-teal); font-size: 1.2rem; }
.lp-hero-video:hover { color: var(--lp-teal); }

/* Dashboard mockup */
.lp-mockup-wrap {
    position: relative;
    padding: 20px 0 0 20px;
}

.lp-mockup-laptop {
    background: var(--lp-white);
    border-radius: 16px;
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid var(--lp-border);
    overflow: hidden;
}

.lp-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--lp-border);
}
.lp-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mockup-dot:nth-child(1) { background: #ef4444; }
.lp-mockup-dot:nth-child(2) { background: #f59e0b; }
.lp-mockup-dot:nth-child(3) { background: #22c55e; }

.lp-mockup-body {
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 280px;
}

.lp-mockup-sidebar {
    background: var(--lp-teal-deep);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-mockup-nav-item {
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
}
.lp-mockup-nav-item.active { background: var(--lp-teal); }

.lp-mockup-main { padding: 16px; background: #f8fafc; }

.lp-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.lp-mockup-stat {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--lp-border);
}
.lp-mockup-stat-bar {
    height: 6px;
    border-radius: 3px;
    margin-top: 8px;
}
.lp-mockup-stat-bar.teal { background: var(--lp-teal); width: 70%; }
.lp-mockup-stat-bar.gold { background: var(--lp-gold); width: 55%; }
.lp-mockup-stat-bar.green { background: #22c55e; width: 80%; }

.lp-mockup-chart {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--lp-border);
    padding: 12px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}
.lp-mockup-bar-col {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--lp-teal-light), var(--lp-teal));
    opacity: 0.85;
}
.lp-mockup-bar-col:nth-child(2) { height: 60%; }
.lp-mockup-bar-col:nth-child(3) { height: 85%; }
.lp-mockup-bar-col:nth-child(4) { height: 45%; }
.lp-mockup-bar-col:nth-child(5) { height: 70%; }
.lp-mockup-bar-col:nth-child(6) { height: 55%; }
.lp-mockup-bar-col:nth-child(1) { height: 50%; }

.lp-mockup-phone {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 110px;
    background: var(--lp-teal-deep);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--lp-shadow-md);
    border: 2px solid #fff;
}
.lp-mockup-phone-screen {
    background: #fff;
    border-radius: 10px;
    padding: 10px 8px;
    min-height: 130px;
}
.lp-mockup-phone-line {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    margin-bottom: 6px;
}
.lp-mockup-phone-line.short { width: 60%; }
.lp-mockup-phone-line.teal { background: var(--lp-teal); width: 40%; height: 10px; }

/* Trust bar */
.lp-trust {
    border-top: 1px solid var(--lp-border);
    padding: 32px 0 36px;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}
.lp-trust p {
    text-align: center;
    font-size: 0.82rem;
    color: var(--lp-muted);
    margin: 0 0 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.lp-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}
.lp-trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 78px;
    padding: 14px 28px;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-trust-logo-item:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 135, 137, 0.25);
    box-shadow: 0 10px 28px rgba(16, 135, 137, 0.1);
}
.lp-trust-logo-item img {
    display: block;
    max-height: 46px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.82;
    transition: filter 0.25s ease, opacity 0.25s ease;
}
.lp-trust-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── Stats bar ── */
.lp-stats-bar {
    background: var(--lp-white);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 36px 0;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.lp-stats-item i {
    font-size: 1.5rem;
    color: var(--lp-teal);
    margin-bottom: 8px;
    display: block;
}
.lp-stats-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lp-teal-dark);
    line-height: 1.2;
}
.lp-stats-item span {
    font-size: 0.78rem;
    color: var(--lp-muted);
}

/* ── Sections ── */
.lp-section { padding: 80px 0; }
.lp-section-gray { background: var(--lp-bg); }

.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.lp-section-head h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.2rem);
    margin: 0 0 12px;
    color: var(--lp-teal-dark);
    font-weight: 700;
}
.lp-section-head p {
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature cards */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}
.lp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-md);
}

.lp-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.lp-card-icon.teal { background: rgba(16,135,137,0.1); color: var(--lp-teal); }
.lp-card-icon.gold { background: rgba(212,160,23,0.12); color: var(--lp-gold); }
.lp-card-icon.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.lp-card-icon.purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.lp-card-icon.orange { background: rgba(249,115,22,0.1); color: #ea580c; }
.lp-card-icon.blue { background: rgba(59,130,246,0.1); color: #2563eb; }

.lp-card h3 {
    font-size: 1rem;
    margin: 0 0 8px;
    color: var(--lp-teal-dark);
    font-weight: 600;
}
.lp-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--lp-muted);
}

/* Workflow */
.lp-workflow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}
.lp-workflow-step {
    text-align: center;
    width: 110px;
    flex-shrink: 0;
}
.lp-workflow-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: var(--lp-shadow-sm);
}
.lp-workflow-icon.c1 { background: linear-gradient(135deg, #6366f1, #818cf8); }
.lp-workflow-icon.c2 { background: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-light)); }
.lp-workflow-icon.c3 { background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-bright)); }
.lp-workflow-icon.c4 { background: linear-gradient(135deg, #22c55e, #4ade80); }
.lp-workflow-icon.c5 { background: linear-gradient(135deg, #f97316, #fb923c); }
.lp-workflow-icon.c6 { background: linear-gradient(135deg, #ec4899, #f472b6); }
.lp-workflow-icon.c7 { background: linear-gradient(135deg, var(--lp-teal-dark), var(--lp-teal)); }

.lp-workflow-step strong {
    display: block;
    font-size: 0.82rem;
    color: var(--lp-teal-dark);
    margin-bottom: 2px;
}
.lp-workflow-step span {
    font-size: 0.72rem;
    color: var(--lp-muted);
    line-height: 1.4;
    display: block;
}
.lp-workflow-arrow {
    color: #cbd5e1;
    font-size: 1.1rem;
    padding-top: 18px;
}

/* App showcase */
.lp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.lp-showcase-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}
.lp-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
}
.lp-showcase-head {
    padding: 10px 14px;
    background: var(--lp-teal-deep);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-showcase-body { padding: 14px; background: #f8fafc; min-height: 140px; }
.lp-showcase-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}
.lp-showcase-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-teal);
    flex-shrink: 0;
}
.lp-showcase-line {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
}
.lp-showcase-line.short { width: 50%; flex: none; }
.lp-showcase-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(16,135,137,0.12);
    color: var(--lp-teal);
    margin-bottom: 8px;
}
.lp-showcase-badge.gold { background: rgba(212,160,23,0.15); color: #b8860b; }
.lp-showcase-badge.green { background: rgba(34,197,94,0.12); color: #16a34a; }

/* Why choose */
.lp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.lp-why-illustration {
    background: linear-gradient(145deg, rgba(16,135,137,0.08), rgba(212,160,23,0.08));
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--lp-border);
}
.lp-why-illustration i.main-icon {
    font-size: 5rem;
    color: var(--lp-teal);
    display: block;
    margin-bottom: 16px;
}
.lp-why-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.lp-why-icons span {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--lp-teal);
    box-shadow: var(--lp-shadow-sm);
}

.lp-why-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.lp-why-checks li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #334155;
}
.lp-why-checks i {
    color: var(--lp-teal);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Testimonials */
.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-testimonial {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    box-shadow: var(--lp-shadow-sm);
}
.lp-testimonial-stars {
    color: var(--lp-gold);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.lp-testimonial q {
    display: block;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
    font-style: normal;
}
.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.lp-testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--lp-teal-dark);
}
.lp-testimonial-author span {
    font-size: 0.78rem;
    color: var(--lp-muted);
}

/* Pricing */
.lp-pricing-wrap {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 32px;
    align-items: start;
}
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.lp-price-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.lp-price-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-md); }
.lp-price-card.featured {
    border: 2px solid var(--lp-teal);
    box-shadow: var(--lp-shadow-md);
    transform: scale(1.03);
}
.lp-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-teal);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}
.lp-price-card h3 {
    font-size: 1rem;
    color: var(--lp-teal-dark);
    margin: 0 0 8px;
}
.lp-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lp-teal-dark);
    margin-bottom: 4px;
}
.lp-price-amount small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lp-muted);
}
.lp-price-card > p {
    font-size: 0.8rem;
    color: var(--lp-muted);
    margin: 0 0 20px;
}
.lp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.lp-price-features li {
    font-size: 0.82rem;
    color: #475569;
    padding: 6px 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.lp-price-features i { color: var(--lp-teal); flex-shrink: 0; margin-top: 2px; }

.lp-pricing-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
}
.lp-pricing-perk {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.lp-pricing-perk i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(16,135,137,0.1);
    color: var(--lp-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-pricing-perk strong {
    display: block;
    font-size: 0.85rem;
    color: var(--lp-teal-dark);
}
.lp-pricing-perk span {
    font-size: 0.78rem;
    color: var(--lp-muted);
}

/* CTA banner */
.lp-cta-banner {
    background: linear-gradient(135deg, var(--lp-teal-deep) 0%, var(--lp-teal) 50%, var(--lp-teal-light) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.lp-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.12);
}
.lp-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
}
.lp-cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin: 0 0 10px;
    font-weight: 700;
}
.lp-cta-banner p {
    color: rgba(255,255,255,0.85);
    margin: 0 0 24px;
    max-width: 480px;
    line-height: 1.7;
}
.lp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-cta-illustration {
    font-size: 6rem;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

/* Footer */
.lp-footer {
    background: #071f26;
    color: rgba(255,255,255,0.65);
    padding: 56px 0 28px;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.lp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 14px;
}

.lp-footer-logo .lp-brand-mark-grid {
    width: 36px;
    height: 36px;
}

.lp-footer-logo .lp-brand-mark-grid .tl {
    border-color: rgba(255, 255, 255, 0.85);
}

.lp-footer-brand p {
    font-size: 0.82rem;
    line-height: 1.65;
    margin: 0 0 16px;
    max-width: 260px;
}
.lp-footer-social {
    display: flex;
    gap: 10px;
}
.lp-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
}
.lp-footer-social a:hover { background: var(--lp-teal); color: #fff; }

.lp-footer-col h4 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 16px;
}
.lp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer-col li { margin-bottom: 10px; }
.lp-footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.lp-footer-col a:hover { color: var(--lp-gold-soft); }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.lp-footer-contact li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.82rem;
    margin-bottom: 10px;
}
.lp-footer-contact i { color: var(--lp-teal-light); margin-top: 2px; }

.lp-footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.lp-footer-contact a:hover {
    color: var(--lp-gold-soft);
}

/* About section */
.lp-about-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.lp-about-content p {
    color: var(--lp-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin: 0 0 18px;
}

.lp-about-content p:last-child {
    margin-bottom: 0;
}

/* Contact strip in CTA */
.lp-contact-strip {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.lp-contact-strip li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
}

.lp-contact-strip a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.lp-contact-strip a:hover {
    color: #fff;
    text-decoration: underline;
}

.lp-contact-strip i {
    color: var(--lp-gold-soft);
}

/* Mobile */
.lp-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--lp-teal-dark);
    font-size: 1.5rem;
    margin-left: auto;
}

@media (max-width: 991px) {
    .lp-body.lp-has-mobile-bar {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }

    .lp-hero {
        padding-top: 108px;
    }

    .lp-nav-inner {
        min-height: 62px;
        padding: 10px 16px;
        gap: 12px;
    }

    .lp-nav-brand-text strong {
        font-size: 0.92rem;
    }

    .lp-nav-brand-text small {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .lp-brand-mark-grid {
        width: 36px;
        height: 36px;
    }

    .lp-hero-grid {
        gap: 32px;
    }

    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-hero-actions .lp-btn {
        width: 100%;
        justify-content: center;
    }

    .lp-section {
        padding: 56px 0;
    }

    .lp-pricing-side {
        flex-direction: column;
    }

    .lp-footer-grid {
        gap: 24px;
    }

    .lp-mobile-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--lp-border);
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -6px 24px rgba(12, 66, 82, 0.08);
        justify-content: space-around;
    }

    .lp-mobile-bar-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 6px 4px;
        color: var(--lp-muted);
        text-decoration: none;
        font-size: 0.625rem;
        font-weight: 600;
        border-radius: 10px;
        max-width: 80px;
    }

    .lp-mobile-bar-item i {
        font-size: 1.25rem;
    }

    .lp-mobile-bar-item-primary {
        color: var(--lp-teal);
    }

    .lp-mobile-bar-item-primary i {
        background: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-light));
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        box-shadow: 0 4px 14px rgba(16, 135, 137, 0.35);
    }

    .lp-grid-3,
    .lp-hero-grid,
    .lp-why-grid,
    .lp-pricing-wrap,
    .lp-showcase-grid,
    .lp-testimonials,
    .lp-pricing-grid,
    .lp-footer-grid,
    .lp-cta-inner { grid-template-columns: 1fr; }

    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-trust-logos { gap: 12px; }
    .lp-trust-logo-item {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
        height: 68px;
        padding: 10px 16px;
    }
    .lp-trust-logo-item img { max-height: 38px; max-width: 100px; }
    .lp-why-checks { grid-template-columns: 1fr; }
    .lp-price-card.featured { transform: none; }
    .lp-cta-illustration { display: none; }

    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--lp-border);
        padding: 12px 24px 20px;
        box-shadow: var(--lp-shadow-sm);
    }
    .lp-nav-links.is-open { display: flex; }
    .lp-nav-links li { padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
    .lp-menu-toggle { display: inline-flex; }
    .lp-nav { position: fixed; }
    .lp-nav-inner { flex-wrap: wrap; }
    .lp-nav-actions { display: none; }

    .lp-workflow-step { width: 90px; }
    .lp-workflow-arrow { display: none; }
}

.lp-mobile-bar {
    display: none;
}

@media (max-width: 575px) {
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-trust-logo-item {
        min-width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }
    .lp-mockup-body { grid-template-columns: 100px 1fr; }
    .lp-mockup-phone { width: 90px; }
}

/* Demo booking modal */
body.lp-demo-open {
    overflow: hidden;
}

.lp-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.lp-demo-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.lp-demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 66, 82, 0.55);
    backdrop-filter: blur(4px);
}

.lp-demo-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 32px 28px 28px;
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s;
}

.lp-demo-modal.is-open .lp-demo-modal-dialog {
    transform: translateY(0) scale(1);
}

.lp-demo-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 10px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.lp-demo-modal-close:hover {
    background: #e2e8f0;
    color: var(--lp-teal-dark);
}

.lp-demo-modal-head {
    text-align: center;
    margin-bottom: 24px;
    padding-right: 28px;
}

.lp-demo-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 135, 137, 0.12), rgba(212, 160, 23, 0.12));
    color: var(--lp-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lp-demo-modal-head h2 {
    font-size: 1.35rem;
    margin: 0 0 8px;
    color: var(--lp-teal-dark);
}

.lp-demo-modal-head p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-demo-field {
    margin-bottom: 14px;
}

.lp-demo-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.lp-demo-field label span {
    color: #ef4444;
}

.lp-demo-field input,
.lp-demo-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--lp-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-demo-field input:focus,
.lp-demo-field textarea:focus {
    outline: none;
    border-color: var(--lp-teal);
    box-shadow: 0 0 0 3px rgba(16, 135, 137, 0.12);
}

.lp-demo-field textarea {
    resize: vertical;
    min-height: 80px;
}

.lp-demo-submit {
    width: 100%;
    margin-top: 8px;
    border: none;
    cursor: pointer;
}

.lp-demo-alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.8125rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.lp-demo-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.lp-demo-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    text-align: center;
    padding: 24px 16px;
    font-size: 0.9375rem;
}

button.lp-btn {
    font-family: inherit;
}

@media (max-width: 575px) {
    .lp-demo-modal-dialog {
        padding: 28px 20px 22px;
        border-radius: 16px 16px 0 0;
        align-self: flex-end;
        max-height: 92vh;
    }

    .lp-demo-modal {
        padding: 0;
        align-items: flex-end;
    }
}
