/* ============================================================
   SPK Bibit Porang AHP — Landing Page (Premium Agritech)
   ============================================================ */

:root {
    --lp-navy: #071f3a;
    --lp-dark-green: #0f5132;
    --lp-green: #198754;
    --lp-emerald: #087f5b;
    --lp-accent: #ffc107;
    --lp-accent-hover: #e0a800;
    --lp-bg: #f8fff9;
    --lp-bg-alt: #eef7f0;
    --lp-white: #ffffff;
    --lp-card-glass: rgba(255, 255, 255, 0.92);
    --lp-text: #334155;
    --lp-text-muted: #64748b;
    --lp-shadow: 0 4px 22px rgba(7, 31, 58, 0.06);
    --lp-shadow-lg: 0 18px 44px rgba(7, 31, 58, 0.1);
    --lp-radius: 14px;
    --lp-radius-lg: 26px;
    --lp-radius-stat: 22px;
    --lp-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-nav-h: 72px;
    --lp-section-py: 5rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--lp-nav-h);
}

.landing-page {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: hidden;
}

/* ---- Floating shapes ---- */
.lp-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.lp-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--lp-green);
}
.lp-shape-1 { width: 360px; height: 360px; top: -100px; right: -80px; opacity: 0.07; }
.lp-shape-2 { width: 280px; height: 280px; bottom: 8%; left: -70px; opacity: 0.05; }
.lp-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.landing-navbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: var(--lp-nav-h);
    padding: 0;
    transition: box-shadow var(--lp-transition), background var(--lp-transition), border-color var(--lp-transition);
    border-bottom: 1px solid transparent;
}
.landing-navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}
.landing-navbar.scrolled {
    box-shadow: 0 4px 28px rgba(7, 31, 58, 0.06);
    border-bottom-color: rgba(25, 135, 84, 0.07);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand-landing {
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
    padding: 0;
    text-decoration: none;
}
.navbar-brand-landing .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-emerald));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.25);
}
.navbar-brand-landing .brand-text {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    line-height: 1.2;
}
.navbar-brand-landing .brand-spk {
    color: var(--lp-navy);
    font-weight: 800;
}
.navbar-brand-landing .brand-name {
    color: var(--lp-green);
    font-weight: 700;
    font-size: 0.92rem;
}

.landing-nav .nav-link {
    color: var(--lp-navy);
    font-weight: 500;
    font-size: 0.84rem;
    padding: 0.35rem 0.65rem !important;
    position: relative;
    transition: color var(--lp-transition);
}
.landing-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--lp-green);
    transition: width var(--lp-transition), left var(--lp-transition);
    border-radius: 1px;
}
.landing-nav .nav-link:hover,
.landing-nav .nav-link.active { color: var(--lp-green); }
.landing-nav .nav-link:hover::after,
.landing-nav .nav-link.active::after { width: 50%; left: 25%; }

.btn-lp-primary {
    background: linear-gradient(135deg, var(--lp-green) 0%, var(--lp-emerald) 100%);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.84rem;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    box-shadow: 0 4px 14px rgba(8, 127, 91, 0.28);
    white-space: nowrap;
}
.btn-lp-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(8, 127, 91, 0.35);
    color: #fff;
}

.btn-lp-accent {
    background: var(--lp-accent);
    color: var(--lp-navy) !important;
    border: none;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.72rem 1.65rem;
    border-radius: 50px;
    transition: transform var(--lp-transition), background var(--lp-transition), box-shadow var(--lp-transition);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.25);
}
.btn-lp-accent:hover {
    background: var(--lp-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.38);
    color: var(--lp-navy);
}

.btn-lp-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.72rem 1.65rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    transition: all var(--lp-transition);
}
.btn-lp-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-lp-outline-dark {
    border: 2px solid var(--lp-green);
    color: var(--lp-green) !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: transparent;
    transition: all var(--lp-transition);
}
.btn-lp-outline-dark:hover {
    background: var(--lp-green);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Offcanvas mobile nav */
.offcanvas-landing {
    background: var(--lp-navy);
}
.offcanvas-landing .offcanvas-title { color: #fff; font-weight: 700; }
.offcanvas-landing .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offcanvas-landing .nav-link:hover { color: var(--lp-accent); }

/* ============================================================
   HERO LANDING BLOCK
   ============================================================ */
.hero-landing-block {
    background: linear-gradient(165deg, var(--lp-navy) 0%, #082a4a 42%, var(--lp-dark-green) 100%);
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: calc(var(--lp-nav-h) + 2.25rem) 0 2rem;
    overflow: hidden;
    background: transparent;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 80% 40%, rgba(8, 127, 91, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 15% 80%, rgba(25, 135, 84, 0.12) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-row {
    min-height: calc(72vh - var(--lp-nav-h) - 2rem);
    max-height: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(7, 31, 58, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.32rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
}
.hero-badge i { color: var(--lp-accent); font-size: 0.8rem; }

.hero-content h1 {
    font-size: clamp(1.75rem, 3.2vw + 0.5rem, 3.25rem);
    font-weight: 800;
    line-height: 1.14;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    max-width: 14.5em;
}
.hero-content .lead {
    font-size: clamp(0.92rem, 1.1vw + 0.4rem, 1.06rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 1.6rem;
}
.hero-content .lead strong { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.hero-highlight-card {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.38rem 0.8rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.72rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--lp-transition), transform var(--lp-transition), border-color var(--lp-transition);
}
.hero-highlight-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}
.hero-highlight-card i {
    color: var(--lp-accent);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.hero-visual { position: relative; }

.hero-image-frame {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(25, 135, 84, 0.2);
    border: 2px solid rgba(25, 135, 84, 0.25);
}
.hero-image-frame img {
    width: 100%;
    height: clamp(260px, 36vh, 400px);
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.55s ease;
}
.hero-image-frame:hover img { transform: scale(1.025); }

.hero-float-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(280px, 88%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    padding: 0.85rem 1rem;
    box-shadow: 0 10px 32px rgba(7, 31, 58, 0.14);
    z-index: 3;
}
.hero-float-title {
    color: var(--lp-navy);
    font-weight: 700;
    font-size: 0.78rem;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-float-title i { color: var(--lp-accent); font-size: 0.85rem; }
.hero-float-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-float-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    line-height: 1.45;
    margin-bottom: 0.28rem;
}
.hero-float-list li:last-child { margin-bottom: 0; }
.hero-float-list li i {
    color: var(--lp-green);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    padding: 2.75rem 0 3.25rem;
    background: var(--lp-bg);
    position: relative;
    border-top: 1px solid rgba(25, 135, 84, 0.06);
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 135, 84, 0.2), transparent);
}
.stat-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-stat);
    padding: 1.5rem 1.15rem;
    text-align: center;
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(7, 31, 58, 0.04);
    height: 100%;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-lg);
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(8, 127, 91, 0.06));
    color: var(--lp-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}
.stat-card .stat-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--lp-navy);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.hero-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.7s ease forwards;
}
.hero-reveal-delay { animation-delay: 0.18s; }
.hero-float-reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.65s ease 0.45s forwards;
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0s);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Sections common ---- */
.section-padding { padding: var(--lp-section-py) 0; }
.section-padding-sm { padding: 4rem 0; }
.section-bg-alt { background: var(--lp-bg-alt); }
.section-bg-white { background: var(--lp-white); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.section-header.text-start {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.section-label {
    display: inline-block;
    background: rgba(25, 135, 84, 0.1);
    color: var(--lp-green);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--lp-navy);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-header p {
    color: var(--lp-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- About ---- */
.about-visual {
    position: relative;
}
.about-image-wrap {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    position: relative;
}
.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.about-badge-float {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    background: var(--lp-green);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    text-align: center;
    min-width: 120px;
}
.about-badge-float .num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.about-badge-float .lbl {
    font-size: 0.75rem;
    opacity: 0.9;
}

.feature-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--lp-text);
}
.feature-check-list li i {
    color: var(--lp-green);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ---- Why section ---- */
.why-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition), border-color var(--lp-transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-green), var(--lp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--lp-transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-lg);
    border-color: rgba(25, 135, 84, 0.15);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card .why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.12), rgba(15, 81, 50, 0.06));
    color: var(--lp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.why-card h5 {
    font-weight: 700;
    color: var(--lp-navy);
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
}
.why-card p {
    color: var(--lp-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* ---- AHP steps ---- */
.ahp-step-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    height: 100%;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    position: relative;
}
.ahp-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-lg);
}
.ahp-step-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-bg-alt);
    color: var(--lp-green);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ahp-step-card .step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-dark-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.ahp-step-card h5 {
    font-weight: 700;
    color: var(--lp-navy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.ahp-step-card p {
    color: var(--lp-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Criteria cards ---- */
.criteria-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition), border-color var(--lp-transition);
    position: relative;
    overflow: hidden;
}
.criteria-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-green), var(--lp-accent));
    transform: scaleX(0);
    transition: transform var(--lp-transition);
}
.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow-lg);
    border-color: rgba(25, 135, 84, 0.2);
}
.criteria-card:hover::after { transform: scaleX(1); }
.criteria-card .criteria-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-dark-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
    transition: transform var(--lp-transition);
}
.criteria-card:hover .criteria-icon { transform: scale(1.08); }
.criteria-code {
    display: inline-block;
    background: linear-gradient(135deg, var(--lp-accent), #ffdb4d);
    color: var(--lp-navy);
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: 0.05em;
}
.criteria-card h5 {
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}
.criteria-card p {
    color: var(--lp-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Timeline / Flow ---- */
.flow-timeline {
    position: relative;
    padding: 2rem 0;
}
.flow-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--lp-green), var(--lp-accent));
    transform: translateX(-50%);
    border-radius: 3px;
    opacity: 0.3;
}
.flow-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
}
.flow-timeline-item:last-child { margin-bottom: 0; }
.flow-timeline-item:nth-child(odd) { flex-direction: row; }
.flow-timeline-item:nth-child(even) { flex-direction: row-reverse; }
.flow-timeline-content {
    width: calc(50% - 40px);
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(11, 31, 58, 0.06);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}
.flow-timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}
.flow-timeline-dot {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-dark-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
    border: 4px solid var(--lp-bg-alt);
}
.flow-timeline-content h5 {
    font-weight: 700;
    color: var(--lp-navy);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.flow-timeline-content p {
    color: var(--lp-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}
.flow-step-num-label {
    display: inline-block;
    background: rgba(25, 135, 84, 0.1);
    color: var(--lp-green);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* Horizontal flow desktop alternative */
.flow-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    position: relative;
    padding-top: 1rem;
}
.flow-horizontal::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-green), var(--lp-accent));
    opacity: 0.25;
    border-radius: 3px;
}
.flow-h-item {
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
}
.flow-h-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lp-white);
    border: 3px solid var(--lp-green);
    color: var(--lp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: var(--lp-shadow);
    transition: all var(--lp-transition);
}
.flow-h-item:hover .flow-h-icon {
    background: var(--lp-green);
    color: #fff;
    transform: scale(1.08);
}
.flow-h-item h6 {
    font-weight: 700;
    color: var(--lp-navy);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}
.flow-h-item p {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---- Keunggulan ---- */
.keunggulan-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}
.keunggulan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-lg);
}
.keunggulan-card .kg-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.06), rgba(25, 135, 84, 0.08));
    color: var(--lp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.keunggulan-card h6 {
    font-weight: 700;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}
.keunggulan-card p {
    color: var(--lp-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Manfaat ---- */
.manfaat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.manfaat-card {
    display: flex;
    gap: 1rem;
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 1.25rem;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: var(--lp-shadow);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}
.manfaat-card:hover {
    transform: translateX(4px);
    box-shadow: var(--lp-shadow-lg);
}
.manfaat-card .mf-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-dark-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.manfaat-card h6 {
    font-weight: 700;
    color: var(--lp-navy);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.manfaat-card p {
    color: var(--lp-text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
}
.manfaat-visual img {
    width: 100%;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    object-fit: cover;
    height: 100%;
    min-height: 360px;
}

/* ---- CTA ---- */
.cta-section {
    padding: 4rem 0;
}
.cta-box {
    background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-dark-green) 100%);
    border-radius: var(--lp-radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    position: relative;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
    position: relative;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
}

/* ---- Footer ---- */
.landing-footer {
    background: var(--lp-navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}
.landing-footer h5,
.landing-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}
.landing-footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-footer ul li {
    margin-bottom: 0.55rem;
}
.landing-footer ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--lp-transition), padding-left var(--lp-transition);
}
.landing-footer ul a:hover {
    color: var(--lp-accent);
    padding-left: 4px;
}
.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lp-transition), color var(--lp-transition);
}
.footer-social a:hover {
    background: var(--lp-green);
    color: #fff;
}
.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    :root { --lp-section-py: 3.5rem; }
    .hero-section {
        padding: calc(var(--lp-nav-h) + 1.5rem) 0 1.75rem;
    }
    .hero-row {
        min-height: auto;
        max-height: none;
    }
    .hero-content h1 { max-width: none; }
    .hero-image-frame img { height: 300px; }
    .flow-timeline::before { left: 28px; }
    .flow-timeline-item,
    .flow-timeline-item:nth-child(even) { flex-direction: row; }
    .flow-timeline-content { width: calc(100% - 70px); margin-left: 14px; }
    .flow-horizontal { display: none; }
    .flow-timeline { display: block; }
    .about-badge-float { right: 0.5rem; }
    .manfaat-grid { grid-template-columns: 1fr; }
}

@media (min-width: 992px) {
    .flow-timeline { display: none; }
    /* Push stats fully below fold on common laptop heights */
    @media (max-height: 820px) {
        .hero-row {
            min-height: auto;
            max-height: 520px;
        }
        .hero-image-frame img { height: 300px; }
    }
}

@media (max-width: 767px) {
    :root { --lp-section-py: 2.5rem; }
    .hero-content { text-align: center; }
    .hero-content h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content .lead {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
    }
    .hero-buttons { justify-content: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    .hero-highlights { justify-content: center; }
    .hero-highlight-card {
        flex: 1 1 calc(50% - 0.4rem);
        justify-content: center;
        min-width: 0;
    }
    .hero-float-card {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 0.85rem;
        border-radius: var(--lp-radius);
    }
    .hero-image-frame img { height: 240px; }
    .stats-section { padding: 2.25rem 0 2.75rem; }
    .stat-card { min-height: 130px; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .about-image-wrap img { height: 280px; }
    .manfaat-visual { margin-top: 2rem; }
    .manfaat-visual img { min-height: 240px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 { font-size: 2.15rem; }
}

@media (min-width: 1200px) {
    :root { --lp-section-py: 5rem; }
    .hero-content h1 { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
