/**
 * Landing Page CSS — Koperasi Digital
 * Design system aligned with Login page (rebrand.css)
 * Primary: #EF4444, Font: Plus Jakarta Sans
 */

/* ─── Reset & Body ──────────────────────────────────────────────── */
.lp-body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Open Sans', sans-serif;
    color: #374151;
    background: #F9FAFB;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

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

.text-accent { color: #EF4444; }

/* ─── Animations ────────────────────────────────────────────────── */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-anim].anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
    border-bottom: 1px solid rgba(226,232,240,0.6);
}
.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Brand */
.lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.lp-nav-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(239,68,68,0.3);
}
.lp-nav-brand-icon .material-icons-outlined {
    font-size: 20px;
    color: #fff;
}
.lp-nav-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}
.lp-navbar.scrolled .lp-nav-brand-text { color: #1E293B; }

/* Nav Links */
.lp-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.lp-nav-link {
    padding: 8px 16px;
    font-size: 0.87rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}
.lp-nav-link:hover, .lp-nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.lp-navbar.scrolled .lp-nav-link {
    color: #64748B;
}
.lp-navbar.scrolled .lp-nav-link:hover,
.lp-navbar.scrolled .lp-nav-link.active {
    color: #EF4444;
    background: #FEF2F2;
}

/* Nav Buttons */
.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}
.lp-nav-btn {
    padding: 8px 20px;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.lp-nav-btn-outline {
    color: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255,255,255,0.3);
    background: transparent;
}
.lp-nav-btn-outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
.lp-navbar.scrolled .lp-nav-btn-outline {
    color: #475569;
    border-color: #E2E8F0;
}
.lp-navbar.scrolled .lp-nav-btn-outline:hover {
    color: #EF4444;
    border-color: #EF4444;
    background: #FEF2F2;
}
.lp-nav-btn-primary {
    color: #fff;
    background: #EF4444;
    border: 1.5px solid #EF4444;
    box-shadow: 0 4px 14px rgba(239,68,68,0.3);
}
.lp-nav-btn-primary:hover {
    background: #DC2626;
    border-color: #DC2626;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239,68,68,0.4);
}

/* Mobile Toggle */
.lp-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.lp-nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
.lp-navbar.scrolled .lp-nav-toggle span { background: #1E293B; }

.lp-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-nav-toggle.active span:nth-child(2) { opacity: 0; }
.lp-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #1E1B3A 100%);
    overflow: hidden;
    padding-top: 80px;
}

#lp-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(239,68,68,0.12) 0%, transparent 70%);
    z-index: 0;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
    padding: 60px 0 100px;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #FCA5A5;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.lp-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

.lp-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.lp-hero-title-accent {
    color: #EF4444;
    position: relative;
}
.lp-hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EF4444, transparent);
    border-radius: 2px;
}

.lp-hero-desc {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 600px;
}

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

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}
.lp-btn .material-icons-outlined { font-size: 20px; }

.lp-btn-hero {
    background: #EF4444;
    color: #fff;
    box-shadow: 0 8px 30px rgba(239,68,68,0.35);
}
.lp-btn-hero:hover {
    background: #DC2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239,68,68,0.45);
}

.lp-btn-hero-outline {
    background: rgba(255,255,255,0.08);
    color: #CBD5E1;
    border: 1.5px solid rgba(255,255,255,0.15);
}
.lp-btn-hero-outline:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

/* Hero Stats */
.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}
.lp-hero-stat { text-align: center; }
.lp-hero-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.lp-hero-stat-label {
    font-size: 0.75rem;
    color: #94A3B8;
    font-weight: 500;
}
.lp-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* Hero Wave */
.lp-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}
.lp-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════════ */
.lp-section {
    padding: 80px 0;
}
.lp-section-alt {
    background: #fff;
}
.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.lp-section-label {
    display: inline-block;
    padding: 4px 14px;
    background: #FEF2F2;
    color: #EF4444;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}
.lp-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1E293B;
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.lp-section-desc {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   ABOUT CARDS
   ════════════════════════════════════════════════════════════════ */
.lp-about-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}
.lp-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}
.lp-about-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.lp-about-icon .material-icons-outlined {
    font-size: 26px;
    color: #fff;
}
.lp-about-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 10px;
}
.lp-about-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════════════════════════════════ */
.lp-service-card {
    background: #F9FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.lp-section-alt .lp-service-card { background: #F9FAFB; }
.lp-service-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.15);
}
.lp-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #FEF2F2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.lp-service-card:hover .lp-service-icon { transform: scale(1.08); }
.lp-service-icon .material-icons-outlined { font-size: 28px; color: #EF4444; }
.lp-service-icon-blue { background: #EFF6FF; }
.lp-service-icon-blue .material-icons-outlined { color: #3B82F6; }
.lp-service-icon-green { background: #ECFDF5; }
.lp-service-icon-green .material-icons-outlined { color: #10B981; }
.lp-service-icon-amber { background: #FFFBEB; }
.lp-service-icon-amber .material-icons-outlined { color: #F59E0B; }

.lp-service-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 10px;
}
.lp-service-card p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 16px;
}
.lp-service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #ECFDF5;
    color: #059669;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════════
   FEATURE LIST
   ════════════════════════════════════════════════════════════════ */
.lp-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.3s;
}
.lp-feature-item:hover {
    border-color: rgba(239,68,68,0.2);
    box-shadow: 0 8px 24px rgba(239,68,68,0.06);
}
.lp-feature-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-feature-check .material-icons-outlined { font-size: 20px; color: #10B981; }
.lp-feature-item h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 4px;
}
.lp-feature-item p {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* Feature Visual (right column) */
.lp-feature-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
}
.lp-feature-visual-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    width: fit-content;
    transition: transform 0.3s;
}
.lp-feature-visual-card:hover { transform: translateX(4px); }
.lp-fv-2 { margin-left: 60px; }
.lp-fv-3 { margin-right: 40px; }
.lp-fv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FEF2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-fv-icon .material-icons-outlined { font-size: 22px; color: #EF4444; }
.lp-fv-icon-blue { background: #EFF6FF; }
.lp-fv-icon-blue .material-icons-outlined { color: #3B82F6; }
.lp-fv-icon-green { background: #ECFDF5; }
.lp-fv-icon-green .material-icons-outlined { color: #10B981; }
.lp-fv-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B;
}
.lp-feature-visual-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════
   BLOG CARDS
   ════════════════════════════════════════════════════════════════ */
.lp-blog-card {
    display: block;
    background: #F9FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}
.lp-section-alt .lp-blog-card { background: #F9FAFB; }
.lp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}
.lp-blog-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F1F5F9;
}
.lp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.lp-blog-card:hover .lp-blog-img img { transform: scale(1.05); }
.lp-blog-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-blog-img-placeholder .material-icons-outlined {
    font-size: 48px;
    color: #CBD5E1;
}
.lp-blog-body { padding: 24px; }
.lp-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.lp-blog-cat {
    padding: 3px 10px;
    background: #FEF2F2;
    color: #EF4444;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
}
.lp-blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #94A3B8;
}
.lp-blog-date .material-icons-outlined { font-size: 14px; }
.lp-blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 8px;
    line-height: 1.35;
}
.lp-blog-excerpt {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0 0 16px;
}
.lp-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #EF4444;
    transition: gap 0.2s;
}
.lp-blog-read .material-icons-outlined { font-size: 16px; transition: transform 0.2s; }
.lp-blog-card:hover .lp-blog-read .material-icons-outlined { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════════════════════════════ */
.lp-testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.lp-testi-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s;
    position: relative;
}
.lp-testi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
    border-color: transparent;
}
.lp-testi-quote {
    margin-bottom: 14px;
}
.lp-testi-quote .material-icons-outlined {
    font-size: 32px;
    color: #FECACA;
}
.lp-testi-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 20px;
    font-style: italic;
}
.lp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F1F5F9;
}
.lp-testi-avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EF4444, #F87171);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.lp-testi-author strong {
    display: block;
    font-size: 0.88rem;
    color: #1E293B;
}
.lp-testi-author span {
    font-size: 0.76rem;
    color: #94A3B8;
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.lp-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-faq-item {
    background: #F9FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.lp-section-alt .lp-faq-item { background: #F9FAFB; }
.lp-faq-item.active {
    background: #fff;
    border-color: rgba(239,68,68,0.15);
    box-shadow: 0 8px 24px rgba(239,68,68,0.06);
}
.lp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1E293B;
    font-family: inherit;
    text-align: left;
}
.lp-faq-chevron {
    font-size: 22px;
    color: #9CA3AF;
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}
.lp-faq-item.active .lp-faq-chevron {
    transform: rotate(180deg);
    color: #EF4444;
}
.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 0.87rem;
    color: #64748B;
    line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════════ */
.lp-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    position: relative;
    overflow: hidden;
}
.lp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239,68,68,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.lp-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.lp-cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.lp-cta-inner p {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.65;
    margin: 0 0 32px;
}
.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.lp-btn-cta {
    background: #EF4444;
    color: #fff;
    box-shadow: 0 8px 30px rgba(239,68,68,0.35);
}
.lp-btn-cta:hover {
    background: #DC2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239,68,68,0.45);
}
.lp-btn-cta-outline {
    background: transparent;
    color: #CBD5E1;
    border: 1.5px solid rgba(255,255,255,0.15);
}
.lp-btn-cta-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT CARDS
   ════════════════════════════════════════════════════════════════ */
.lp-contact-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.35s;
    height: 100%;
}
.lp-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border-color: transparent;
}
.lp-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #FEF2F2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.lp-contact-icon .material-icons-outlined { font-size: 26px; color: #EF4444; }
.lp-contact-icon-blue { background: #EFF6FF; }
.lp-contact-icon-blue .material-icons-outlined { color: #3B82F6; }
.lp-contact-icon-green { background: #ECFDF5; }
.lp-contact-icon-green .material-icons-outlined { color: #10B981; }
.lp-contact-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 8px;
}
.lp-contact-card p {
    font-size: 0.87rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.lp-footer {
    background: #0F172A;
    padding: 60px 0 0;
    color: #94A3B8;
}
.lp-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.lp-footer-logo .material-icons-outlined {
    font-size: 24px;
    color: #EF4444;
}
.lp-footer-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.lp-footer-brand p {
    font-size: 0.87rem;
    line-height: 1.6;
    margin: 0 0 10px;
    color: #64748B;
}
.lp-footer-address {
    font-size: 0.82rem;
    color: #64748B;
}
.lp-footer-links h6 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #E2E8F0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
}
.lp-footer-links a {
    display: block;
    font-size: 0.87rem;
    color: #64748B;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.lp-footer-links a:hover {
    color: #EF4444;
    padding-left: 4px;
}
.lp-footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.lp-footer-bottom-bar {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 20px;
}
.lp-footer-bottom p {
    font-size: 0.78rem;
    color: #475569;
    margin: 0;
}
.lp-footer-bottom a {
    color: #EF4444;
    text-decoration: none;
    font-weight: 600;
}
.lp-footer-bottom a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .lp-nav-menu,
    .lp-nav-actions {
        display: none;
    }
    .lp-nav-toggle { display: flex; margin-left: auto; }

    /* Mobile menu open state */
    .lp-nav-menu.open,
    .lp-nav-actions.open {
        display: flex;
    }

    .lp-navbar.mobile-open {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
    }
    .lp-navbar.mobile-open .lp-nav-brand-text { color: #1E293B; }
    .lp-navbar.mobile-open .lp-nav-toggle span { background: #1E293B; }

    .lp-nav-inner {
        flex-wrap: wrap;
    }
    .lp-nav-menu.open {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 12px 0;
        border-top: 1px solid #E2E8F0;
        margin-top: 8px;
    }
    .lp-nav-menu.open .lp-nav-link {
        color: #475569;
        padding: 12px 16px;
        width: 100%;
        border-radius: 8px;
    }
    .lp-nav-menu.open .lp-nav-link:hover,
    .lp-nav-menu.open .lp-nav-link.active {
        color: #EF4444;
        background: #FEF2F2;
    }
    .lp-nav-actions.open {
        width: 100%;
        padding: 8px 0 12px;
        flex-direction: column;
        margin-left: 0;
    }
    .lp-nav-actions.open .lp-nav-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .lp-nav-actions.open .lp-nav-btn-outline {
        color: #475569;
        border-color: #E2E8F0;
    }

    .lp-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .lp-footer-brand {
        grid-column: 1 / -1;
    }

    .lp-fv-2 { margin-left: 20px; }
    .lp-fv-3 { margin-right: 10px; }
}

@media (max-width: 640px) {
    .lp-hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
    .lp-hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    .lp-hero-actions {
        flex-direction: column;
    }
    .lp-btn {
        width: 100%;
        justify-content: center;
    }
    .lp-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .lp-cta-actions .lp-btn {
        width: 100%;
    }
    .lp-testi-grid {
        grid-template-columns: 1fr;
    }
    .lp-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lp-feature-visual {
        padding: 20px 0;
    }
    .lp-fv-2 { margin-left: 0; }
    .lp-fv-3 { margin-right: 0; }
}

/* ════════════════════════════════════════════════════════════════
   KONTEN PUBLIK PAGE (Blog Reader)
   ════════════════════════════════════════════════════════════════ */
.lp-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}
.lp-article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.lp-article-back:hover { color: #EF4444; }
.lp-article-back .material-icons-outlined { font-size: 18px; }
.lp-article-header {
    margin-bottom: 32px;
}
.lp-article-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1E293B;
    line-height: 1.25;
    margin: 0 0 16px;
}
.lp-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 0.84rem;
    color: #94A3B8;
}
.lp-article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lp-article-meta .material-icons-outlined { font-size: 16px; }
.lp-article-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
}
.lp-article-img img {
    width: 100%;
    height: auto;
    display: block;
}
.lp-article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}
.lp-article-body h1, .lp-article-body h2, .lp-article-body h3,
.lp-article-body h4, .lp-article-body h5, .lp-article-body h6 {
    color: #1E293B;
    margin: 24px 0 12px;
}
.lp-article-body p { margin: 0 0 16px; }
.lp-article-body img { max-width: 100%; border-radius: 12px; }
.lp-article-body a { color: #EF4444; }
.lp-article-body a:hover { text-decoration: underline; }
.lp-article-body blockquote {
    border-left: 4px solid #EF4444;
    padding: 12px 20px;
    margin: 16px 0;
    background: #FEF2F2;
    border-radius: 0 12px 12px 0;
    color: #475569;
}
.lp-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}
.lp-article-tag {
    padding: 4px 14px;
    background: #F1F5F9;
    color: #64748B;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 100px;
}
