:root {
    /* --- Base Colors (Format HSL Valid) --- */
    --background: hsl(30, 25%, 97%);
    --foreground: hsl(0, 0%, 10%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 10%);

    --popover: hsl(0, 0%, 100%);
    --popover-foregr    ound: hsl(0, 0%, 10%);

    --primary: hsl(0, 100%, 50%);

    --plum: #321432;
    --earth: #fafaf0;

    --primary-foreground: hsl(0, 0%, 100%);

    --secondary: hsl(0, 100%, 50%);
    --secondary-foreground: hsl(0, 0%, 100%);

    --muted: hsl(30, 20%, 92%);
    --muted-foreground: hsl(0, 0%, 35%);

    --accent: hsl(0, 100%, 50%);
    --accent-foreground: hsl(0, 0%, 100%);

    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);

    --border: hsl(30, 15%, 88%);
    --input: hsl(30, 15%, 88%);
    --ring: hsl(0, 85%, 45%);

    /* --- Values --- */
    --radius: 0.75rem;

    /* --- Custom Colors (LeadManager) --- */
    --gold: hsl(0, 100%, 50%);
    --gold-light: hsl(0, 100%, 60%);
    --crimson: hsl(0, 100%, 50%);
    --crimson-dark: hsl(0, 90%, 30%);
    --charcoal: hsl(0, 0%, 12%);
    --cream: hsl(40, 33%, 96%);

    /* --- Gradients (Sudah Benar) --- */
    --gradient-fire: linear-gradient(135deg, hsl(0, 100%, 50%) 0%, hsl(0, 100%, 45%) 50%, hsl(0, 100%, 40%) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(0, 100%, 50%) 0%, hsl(0, 100%, 45%) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(0, 0%, 12%) 0%, hsl(0, 0%, 8%) 100%);

    /* --- Shadows (Sudah Benar) --- */
    --shadow-glow: 0 0 60px -10px hsl(0, 100%, 50%, 0.4);
    --shadow-gold: 0 0 40px -10px hsl(0, 100%, 50%, 0.5);
    --shadow-elevated: 0 20px 60px -15px hsl(0, 0%, 0%, 0.15);

    /* Tambahan Alias untuk konsistensi */
    --lm-primary: var(--primary);
    --lm-primary-foreground: var(--primary-foreground);
    --lm-cream: var(--cream);
    --lm-charcoal: var(--charcoal);

    --lm-plum: var(--plum);
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');
/* --- Navbar Component --- */

/* Base Styles */
.lm-navbar {
    z-index: 50;
    width: 100%;
    background-color: rgb(255 255 255); /* Charcoal opacity 80% */
    backdrop-filter: blur(12px); /* Blur effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 250, 240, 0.1); /* Cream 10% */
    transition: all 0.3s ease;
}

/* Positioning Logic */
.lm-navbar--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Khusus Admin Editor agar tidak error visual */
.lm-navbar--admin {
    position: relative;
    background-color: var(--lm-charcoal);
}

.lm-navbar__container {
    width: 100%;
    max-width: 1200px; /* container */
    margin: 0 auto;
    padding: .5rem 1.5rem; /* px-6 */
}

.lm-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 10px 0px;
    gap: 20px;
}

/* --- 1. Logo Styles --- */
.lm-navbar__logo-image {
    height: 35px;
    width: auto;
}

.lm-navbar__logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lm-navbar__logo-icon {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    border-radius: 0.5rem; /* rounded-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    /* gradient-fire */
    background: linear-gradient(135deg, hsl(0, 100%, 50%) 0%, hsl(0, 100%, 45%) 50%, hsl(0, 100%, 40%) 100%);
    box-shadow: 0 0 20px -5px rgba(255, 0, 0, 0.5);
}

.lm-navbar__logo-icon svg {
    color: white;
}

.lm-navbar__logo-text {
    font-family: var(--font-display, serif);
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: var(--lm-plum, #fff);
}

/* --- 2. Menu Styles (Center) --- */
.lm-navbar__menu {
    flex: 1; /* Ambil space tersisa */
    display: flex;
    justify-content: center; /* Posisikan ditengah */
}

.lm-navbar__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem; /* Jarak antar menu */
}

.lm-navbar__menu-item a {
    text-decoration: none;
    color: rgba(255, 250, 240, 0.7); /* Cream 70% */
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body, sans-serif);
    transition: color 0.2s ease;
}

.lm-navbar__menu-item a:hover {
    color: var(--lm-primary, red);
}

/* Hide menu on mobile */
@media (max-width: 768px) {
    .lm-navbar__menu {
        display: none;
    }
}

/* --- 3. CTA Styles --- */
.lm-btn--nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lm-primary, red);
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 0 15px -5px rgba(255, 0, 0, 0.4);
}

.lm-btn--nav:hover {
    background-color: white;
    border: 1px solid hsl(0, 100%, 45%);
    transform: translateY(-1px);
    color: hsl(0, 100%, 45%);
}

/* Scoped Variables untuk Block ini */
.lm-hero-section {
    /* 1. Ubah Base Color jadi Gelap (Charcoal) agar terbaca di background putih */
    color: var(--lm-charcoal);
    font-family: var(--font-body);

    /* 2. Definisikan Ulang Gradien Overlay menjadi PUTIH */
    /* Gradien Horizontal: Putih pekat di kiri -> Transparan di kanan */
    --grad-overlay-x: linear-gradient(to right, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.0) 60%, transparent 100%);
    /* Gradien Vertikal: Putih pekat di bawah -> Transparan di atas */
    --grad-overlay-y: linear-gradient(to top, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .0) 20%, transparent 100%);
    position: relative;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Layers */
.lm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lm-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lm-hero__overlay-grad-x {
    position: absolute;
    inset: 0;
    background: var(--grad-overlay-x);
}

.lm-hero__overlay-grad-y {
    position: absolute;
    inset: 0;
    background: var(--grad-overlay-y);
}

/* Decorative Blobs (Disesuaikan opacity-nya agar tidak terlalu nabrak putih) */
.lm-hero__blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
    animation: pulseSlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.lm-hero__blob--1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 0, 0, 0.1); /* Lebih soft */
}

.lm-hero__blob--2 {
    bottom: 10rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(255, 0, 0, 0.08); /* Lebih soft */
}

/* Content */
.lm-hero__content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0rem;
    margin: 0 auto;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
}

.lm-hero__content-inner {
    max-width: 60rem;
    background-color: #FFFFFF90;
    padding: 40px;
    border-radius: 14px;
}

/* Typography & Elements (Warna disesuaikan untuk Light Mode) */

.lm-text-primary {
    color: var(--lm-primary);
}

.lm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    /* Background Badge sedikit abu/merah muda transparan */
    background-color: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.15);
    margin-bottom: 0rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lm-charcoal); /* Teks Badge Gelap */
}

.lm-icon-primary {
    color: var(--lm-primary);
}

.lm-hero__title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800; /* Lebih tebal agar kontras */
    margin: 1.5rem 0rem;
    color: var(--lm-charcoal); /* Judul Gelap */
}

@media (min-width: 768px) {
    .lm-hero__title {
        font-size: 4.5rem;
    }
}

.lm-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.75); /* Abu Gelap */
    margin-bottom: 1rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .lm-hero__subtitle {
        font-size: 1.5rem;
    }
}

.lm-hero__desc {
    font-size: 1.125rem;
    color: var(--plum); /* Abu Medium */
    margin-bottom: 1.5rem;
    max-width: 36rem;
    line-height: 1.6;
}

/* Button & Actions */
.lm-hero__actions {
    display: flex;
    gap: 1rem;
}

.lm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.lm-btn--hero {
    background-color: var(--lm-primary);
    color: white; /* Teks tombol tetap putih */
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px -10px rgba(255, 0, 0, 0.4);
    gap: 0.5rem;
    border: none;
}

.lm-btn--hero:hover {
    background-color: hsl(0, 100%, 45%);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 15px 30px -10px rgba(255, 0, 0, 0.6);
}

/* Trust Indicator */
.lm-hero__trust {
    margin-top: 2rem;
}

.lm-hero__trust p {
    font-size: 1rem;
    color: var(--plum); /* Abu Terang */
}

/* Scroll Indicator (Perlu border gelap) */
.lm-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
    cursor: pointer;
    z-index: 20;
}

.lm-hero__scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(0, 0, 0, 0.2); /* Border mouse jadi gelap */
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.lm-hero__scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: var(--lm-primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* --- Animations --- */
@keyframes pulseSlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translate(-50%, 0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Animation Utility */
.animate-fade-in {
    opacity: 0; /* Mulai hidden */
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

/* --- Package Section --- */

.lm-package-section {
    position: relative;
    padding: 5rem 0; /* py-24 */
    background-color: #FFFFFF;
    overflow: hidden;
    color: var(--lm-charcoal);
}

/* Decorative Backgrounds */
.lm-package__top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem; /* h-2 */
    background: linear-gradient(135deg, hsl(0, 100%, 50%), hsl(0, 100%, 40%)); /* gradient-fire */
}

.lm-package__blob {
    position: absolute;
    width: 20rem; /* w-80 */
    height: 20rem; /* h-80 */
    border-radius: 9999px;
    background-color: rgba(255, 0, 0, 0.05); /* primary/5 */
    filter: blur(64px); /* blur-3xl */
    z-index: 0;
}

.lm-package__blob--top {
    top: -10rem;
    right: -10rem;
}

.lm-package__blob--bottom {
    bottom: -10rem;
    left: -10rem;
}

/* Container & Header */
.lm-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lm-package__header {
    text-align: center;
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto 4rem auto; /* mb-16 */
}

.lm-package__subtitle {
    display: inline-block;
    font-size: 1rem; /* text-sm */
    font-weight: 600;
    color: var(--lm-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
    margin-bottom: 0rem;
    font-family: var(--font-body);
}

.lm-package__title {
    font-family: var(--font-display);
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: var(--lm-plum);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .lm-package__title {
        color: var(--lm-plum);
        font-size: 3rem; /* md:text-5xl */
    }
}

.lm-package__desc {
    font-size: 1.125rem; /* text-lg */
    color: var(--lm-plum);
    font-family: var(--font-body);
}

/* Grid Layout */
.lm-package__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem; /* mb-16 */
}

@media (min-width: 768px) {
    .lm-package__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
.lm-card {
    background-color: white; /* bg-card */
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    border: 1px solid rgba(0,0,0, 0.05); /* border-border */
    box-shadow: 0 20px 60px -15px rgba(0,0,0, 0.1); /* shadow-elevated */
    transition: all 0.5s ease;
}

.lm-card:hover {
    box-shadow: 0 0 60px -10px rgba(255, 0, 0, 0.3); /* shadow-glow */
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.lm-card__icon-box {
    width: 3.5rem; /* w-14 */
    height: 3.5rem; /* h-14 */
    border-radius: 0.75rem; /* rounded-xl */
    background: linear-gradient(135deg, hsl(0, 100%, 50%), hsl(0, 100%, 40%)); /* gradient-fire */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.lm-card:hover .lm-card__icon-box {
    transform: scale(1.1);
}

.lm-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--lm-charcoal);
}

.lm-card__desc {
    color: #666; /* muted-foreground */
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Highlights List */
.lm-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.lm-card__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem; /* text-sm */
    color: var(--lm-charcoal);
}

.lm-icon-check {
    color: var(--lm-primary);
    flex-shrink: 0;
}

/* Footer CTA */
.lm-package__footer {
    text-align: center;
}

.lm-package__note {
    margin-top: 1rem;
    font-size: 1rem; /* text-sm */
    color: var(--lm-plum); /* muted-foreground */
}

.lm-card__icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain; /* Agar gambar tidak gepeng */
    filter: brightness(0) invert(1); /* OPSI: Paksa gambar jadi putih (jika icon hitam) */
}

/* --- Stats Section --- */

.lm-stats-section {
    position: relative;
    padding: 5rem 0; /* py-20 */
    background: var(--primary-foreground); /* Dark Background */
    overflow: hidden;
    color: var(--lm-charcoal);
}

/* Chinese Pattern Overlay (Sesuai config awal) */
.chinese-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Decorative Vertical Lines */
.lm-stats__line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    /* Gradient: Primary/30 -> Transparent -> Primary/30 */
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0.3), transparent, rgba(255, 0, 0, 0.3));
    z-index: 1;
}

.lm-stats__line--left {
    left: 25%;
}

.lm-stats__line--right {
    right: 25%;
}

/* Grid Layout */
.lm-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 col */
    gap: 2rem; /* gap-8 */
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .lm-stats__grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 col */
    }
}

/* Item Styles */
.lm-stats__item {
    text-align: center;
    /* Optional: Animation Fade In jika script animasi aktif */
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.lm-stats__value {
    font-family: var(--font-display);
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: var(--primary); /* Red */
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .lm-stats__value {
        font-size: 3rem; /* md:text-5xl */
    }
}

.lm-stats__label {
    font-family: var(--font-body);
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: var(--lm-charcoal); /* UBAH: Cream (bukan charcoal) agar terlihat di dark bg */
    margin-bottom: 0.25rem;
}

.lm-stats__suffix {
    font-family: var(--font-body);
    font-size: 1rem; /* text-sm */
    color: var(--lm-charcoal); /* cream/70 */
}

/* --- Form Section --- */

.lm-form-section {
    position: relative;
    padding: 5rem 0;
    background-color: hsl(0deg 0% 12% / 0%);
    overflow: hidden;
    color: var(--lm-cream);
}

/* Background Blobs */
.lm-form__blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 9999px;
    background-color: rgba(255, 0, 0, 0.1); /* primary/10 */
    filter: blur(100px);
    z-index: 0;
}

.lm-form__pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Layout */
.lm-form__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lm-form__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* --- Left Column --- */
.lm-form__left {
    text-align: center;
}

@media (min-width: 1024px) {
    .lm-form__left {
        text-align: left;
    }
}

.lm-form__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .lm-form__icon-wrapper {
        justify-content: flex-start;
    }
}

.lm-form__icon-circle {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    border-radius: 9999px;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseSlow 4s infinite;
}

.lm-form__title {
    font-family: var(--font-display);
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .lm-form__title {
        font-size: 3rem; /* md:text-5xl */
    }
}

.lm-form__desc {
    font-size: 1.125rem; /* text-lg */
    color: var(--plum); /* cream/70 */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lm-form__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--plum);
}

.lm-form__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center; /* Mobile center */
}

@media (min-width: 1024px) {
    .lm-form__list li {
        justify-content: flex-start;
    }
}

/* Urgency Ping */
.lm-form__urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 0, 0, 0.2); /* primary/20 */
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.lm-ping-wrapper {
    position: relative;
    display: flex;
    height: 0.625rem;
    width: 0.625rem;
}

.lm-ping-dot {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: var(--lm-primary);
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.lm-ping-dot-static {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.625rem;
    width: 0.625rem;
    background-color: var(--lm-primary);
}

.lm-urgency-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--plum);
}

/* --- Right Column: Card & Form --- */
.lm-form__card {
    background-color: var(--plum); /* cream/5 */
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 250, 240, 0.1);
    box-shadow: 0 20px 60px -15px rgba(0,0,0, 0.5); /* shadow-elegant */
}

/* Styling Input Manual Form */
.lm-input-group {
    margin-bottom: 1.5rem;
}

.lm-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--lm-cream);
    font-size: 1rem;
    font-weight: 500;
}

.lm-input-group input {
    width: 100%;
    height: 2.75rem;
    padding: 0 1rem;
    border-radius: 0.375rem;
    background-color: rgba(237, 237, 237, 0.1); /* charcoal/50 */
    border: 1px solid rgba(225, 225, 225, 0.27);
    color: var(--lm-cream);
    outline: none;
    transition: border-color 0.2s;
}

.lm-input-group input:focus {
    border-color: var(--lm-primary);
}

.lm-input-group input::placeholder {
    color: var(--lm-cream);
}

/* Button Gold Style */
.lm-btn--gold {
    background-color: hsl(0, 100%, 45%); /* Gold Color approximation */
    background: linear-gradient(135deg, hsl(0, 100%, 45%), hsl(0, 100%, 30%));
    color: var(--earth);
    font-weight: 600;
    border: none;
}

.lm-btn--gold:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.lm-btn--full {
    display: flex !important;
    width: 100%;
    gap: 8px;
    align-items: center;
}

.lm-form__disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--lm-cream);
    text-align: center;
}

/* Animation Keyframes */
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* --- Footer Section --- */

.lm-footer {
    padding: 3rem 0; /* py-12 */
    background-color: var(--lm-plum);
    border-top: 1px solid rgba(255, 250, 240, 0.2); /* border-border/20 */
    color: var(--lm-cream);
}

.lm-footer__logo-image {
    height: 40px;
    width: auto;
}

/* Container sudah ada di css global (.lm-container),
   tapi jika belum, pastikan ada max-width & padding */

/* Top Section Layout */
.lm-footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* gap-6 */
    text-align: center;
}

@media (min-width: 768px) {
    .lm-footer__top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Logo Group */
.lm-footer__logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lm-footer__logo-icon {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    border-radius: 0.5rem; /* rounded-lg */
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.lm-footer__logo-text {
    text-align: left;
}

.lm-footer__brand {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    line-height: 1.2;
    color: var(--lm-cream);
}

.lm-footer__sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem; /* text-xs */
    color: rgba(255, 250, 240, 0.5); /* cream/50 */
}

/* Navigation */
.lm-footer__nav {
    display: flex;
    align-items: center;
    gap: 2rem; /* gap-8 */
    flex-wrap: wrap;
    justify-content: center;
}

.lm-footer__link {
    font-family: var(--font-body);
    font-size: 1rem; /* text-sm */
    color: rgba(255, 250, 240, 0.7); /* cream/70 */
    text-decoration: none;
    transition: color 0.2s ease;
}

.lm-footer__link:hover {
    color: var(--lm-secondary); /* hover:text-secondary */
}

/* Copyright */
.lm-footer__copyright {
    font-family: var(--font-body);
    font-size: 1rem; /* text-sm */
    color: rgba(255, 250, 240, 0.5); /* cream/50 */
}

/* Bottom Section (Greeting) */
.lm-footer__bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 250, 240, 0.1); /* border-cream/10 */
    text-align: center;
}

.lm-footer__greeting {
    font-family: var(--font-display);
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: rgba(255, 250, 240, 0.7);
}