/* Jibu platform landing */
.landing-page {
    --lp-primary: #1a5c3a;
    --lp-primary-dark: #13442b;
    --lp-accent: #2d7a52;
    --lp-bg: #f8faf9;
    --lp-surface: #ffffff;
    --lp-text: #1f2937;
    --lp-muted: #6b7280;
    --lp-border: #e5e7eb;
    color: var(--lp-text);
}

.landing-page .main-content {
    padding: 0;
    min-height: auto;
}

.lp-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lp-primary-dark) 0%, var(--lp-primary) 45%, #2d6a4f 100%);
    color: #fff;
    padding: 4.5rem 0 5rem;
}

.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.06), transparent 35%);
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.25rem;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 720px;
}

.lp-hero .lead {
    font-size: 1.12rem;
    opacity: 0.92;
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.lp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.lp-btn-primary {
    background: #fff;
    color: var(--lp-primary-dark);
    font-weight: 700;
    border-radius: 10px;
    padding: 0.7rem 1.35rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-btn-primary:hover {
    color: var(--lp-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lp-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.7rem 1.35rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.lp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.lp-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.lp-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

.lp-section-alt {
    background: var(--lp-bg);
}

.lp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.lp-section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.lp-section-header p {
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.6;
}

.lp-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.lp-industry-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-industry-card:hover {
    border-color: var(--lp-accent);
    box-shadow: 0 6px 20px rgba(26, 92, 58, 0.1);
}

.lp-industry-card i {
    font-size: 1.6rem;
    color: var(--lp-primary);
    margin-bottom: 0.65rem;
}

.lp-industry-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.lp-industry-card p {
    font-size: 0.78rem;
    color: var(--lp-muted);
    margin: 0;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.lp-feature-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 1.5rem;
}

.lp-feature-card .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #dcfce7;
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.lp-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.lp-feature-card p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.55;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.lp-step {
    text-align: center;
}

.lp-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.lp-platform-visual {
    background: linear-gradient(145deg, #0f2d1f 0%, var(--lp-primary) 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
}

.lp-platform-visual h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lp-module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-module-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.lp-module-list li:last-child {
    border-bottom: none;
}

.lp-module-list .badge-soon {
    margin-left: auto;
    font-size: 0.68rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.lp-orgs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.lp-org-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 1.15rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-org-card:hover {
    border-color: var(--lp-accent);
    box-shadow: 0 8px 22px rgba(26, 92, 58, 0.1);
    color: inherit;
}

.lp-org-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.lp-org-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-primary);
    font-weight: 600;
}

.lp-cta-band {
    background: var(--lp-primary);
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 1140px;
    margin: 0 auto 4rem;
}

.lp-cta-band h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lp-cta-band p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 3rem 0 3.5rem;
    }
}
