/* 
   style.css - Design System & Stylesheet for KiosTopup SaaS Landing Page
   Inspired by kiostopup.id reference design
*/

:root {
    --bg-main: #f9f6f0;
    /* Warm cream background matching screenshot */
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    /* Slate 800 */
    --text-muted: #64748b;
    /* Slate 500 */
    --primary: #cba135;
    /* Warm Gold matching 'Member Area' / 'Lihat Demo' */
    --primary-hover: #b08927;
    --secondary: #00c9a7;
    /* Mint/Teal matching 'Lihat Fitur' */
    --secondary-hover: #00b393;
    --accent: #ff7043;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.06);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* Instantly jump to sections like the original site */
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(203, 161, 53, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.25);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(30, 41, 59, 0.02);
}

.btn-round {
    border-radius: var(--radius-lg);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #1b253c;
    text-transform: uppercase;
}

.nav-logo span {
    color: #cda85c;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1b253c;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.nav-link i {
    color: #cda85c;
    /* Gold dropdown caret */
}

.nav-link:hover,
.nav-link.active {
    color: #cda85c;
}

/* Custom Member Area Navbar Button */
.btn-nav-member {
    background-color: #d0b070;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-nav-member:hover {
    background-color: #c0a060;
    box-shadow: 0 4px 12px rgba(208, 176, 112, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Interactive Phone Mockup Showcase */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockups {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 480px;
}

.phone-card {
    position: absolute;
    width: 230px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: white;
    border: 6px solid #1e293b;
    overflow: hidden;
    transition: var(--transition);
}

.phone-card img {
    width: 100%;
    display: block;
}

.phone-1 {
    left: 0;
    top: 20px;
    z-index: 2;
    transform: rotate(-6deg);
}

.phone-2 {
    right: 20px;
    top: 50px;
    z-index: 1;
    transform: rotate(6deg);
}

.phone-card:hover {
    transform: translateY(-10px) rotate(0deg);
    z-index: 10;
}

/* Stats Floating Badge */
.stat-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    left: -20px;
    bottom: 80px;
}

.badge-2 {
    right: -10px;
    top: 20px;
    animation-delay: 2s;
}

.stat-val {
    font-size: 1.1rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Media Mentions / Press logo footer */
.media-mentions {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 24px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    text-align: center;
}

.media-mentions-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    opacity: 0.6;
    flex-wrap: wrap;
}

.press-logo {
    height: 28px;
    filter: grayscale(1);
    transition: var(--transition);
}

.press-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.2rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: #ffffff;
    border-color: rgba(203, 161, 53, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
}

.feature-title {
    font-size: 1.25rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(203, 161, 53, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-name {
    font-size: 1.4rem;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-feature-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #151c2c, #0b0f19);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-brand-title span {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive breakdowns */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .phone-mockups {
        margin: 40px auto 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }

    .nav-menu {
        display: none;
        /* Mobile menu sidebar handling in JS */
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Comparison Section (Kioslite vs Kiostopup) */
.comparison-section {
    padding: 100px 0 80px 0;
    background-color: var(--bg-main);
    text-align: center;
}

.comparison-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.comparison-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.comparison-highlight {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comp-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
}

.comp-card.featured {
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-lg);
}

.comp-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.comp-badge-lite {
    background-color: rgba(0, 201, 167, 0.1);
    color: var(--secondary);
}

.comp-badge-premium {
    background-color: rgba(203, 161, 53, 0.1);
    color: var(--primary);
}

.comp-card-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.comp-card-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.comp-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.comp-btn {
    width: 100%;
    margin-top: auto;
}

/* Features Showcase Section (Left/Right Grid) */
.features-showcase-section {
    padding: 100px 0;
    background-color: white;
}

.feat-showcase-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.feat-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feat-left h3 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feat-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.feat-left p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.feat-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feat-card {
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feat-card-title {
    font-size: 1.1rem;
    font-weight: 800;
}

.feat-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Custom background styles for colored feature cards */
.feat-yellow {
    background-color: #fffbeb;
    border-color: #fef3c7;
}

.feat-yellow .feat-card-icon {
    background-color: #fef3c7;
    color: #d97706;
}

.feat-red {
    background-color: #fef2f2;
    border-color: #fee2e2;
}

.feat-red .feat-card-icon {
    background-color: #fee2e2;
    color: #dc2626;
}

.feat-green {
    background-color: #f0fdf4;
    border-color: #dcfce7;
}

.feat-green .feat-card-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.feat-blue {
    background-color: #f5f3ff;
    border-color: #ddd6fe;
}

.feat-blue .feat-card-icon {
    background-color: #ddd6fe;
    color: #7c3aed;
}

@media (max-width: 992px) {
    .feat-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feat-left {
        text-align: center;
    }

    .feat-left .btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .feat-right-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 40px auto;
    text-align: left;
}

.why-card {
    display: flex;
    gap: 20px;
    background: transparent;
}

.why-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 4px;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 800;
}

.why-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Jual 3400+ Produk Section */
.product-sell-section {
    padding: 80px 0;
    background-color: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.prod-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prod-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.prod-left h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
}

.prod-right {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.faq-item {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.faq-item span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

/* Blog / Articles Section */
.blog-section {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 50px auto 0 auto;
}

.blog-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    width: 100%;
    height: 180px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
}

.blog-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {

    .prod-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Live Demo Section */
.demo-section {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.demo-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.demo-title {
    font-size: 2.2rem;
    font-weight: 800;
    max-width: 700px;
    margin: 16px auto 50px auto;
    line-height: 1.3;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.demo-card {
    border-radius: var(--radius-md);
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition);
    height: 160px;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.demo-card-logo {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.demo-card-name {
    font-size: 1.15rem;
    font-weight: 800;
}

.demo-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff9800;
    /* Orange arrow link */
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-card-link:hover {
    color: #f57c00;
}

/* Card variants */
.demo-dark {
    background-color: #1e293b;
    color: white;
    border-color: rgba(255, 255, 255, 0.03);
}

.demo-blue {
    background-color: #3b82f6;
    color: white;
}

.demo-white {
    background-color: white;
    color: #1e293b;
    border: 1px solid var(--border);
}

/* Navigation Dropdown */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 320px;
    list-style: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.nav-dropdown-wrapper.active .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.nav-dropdown li a:hover {
    background-color: rgba(30, 41, 59, 0.02);
    color: var(--primary);
    padding-left: 28px;
    /* Subtle slide effect */
}

/* Adjust dropdown layout for mobile */
@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        padding-left: 15px;
        display: none;
        /* Hide by default in mobile menu, or keep it collapsed */
        min-width: unset;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown-wrapper:hover .nav-dropdown {
        display: flex;
        transform: none;
    }
}

/* 12 Features Grid Section */
.features-grid-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    text-align: center;
}

.features-12-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.feature-12-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    /* Bottom accent border */
}

.feature-12-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feat-12-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.feat-12-title {
    font-size: 1.15rem;
    font-weight: 800;
}

.feat-12-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feat-12-link {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Color Accent Variants (Teal, Orange, Gold, Blue, Pink, Green) */
.feat-accent-teal {
    border-bottom-color: #00c9a7;
}

.feat-accent-teal .feat-12-icon {
    color: #00c9a7;
}

.feat-accent-teal .feat-12-link {
    color: #00c9a7;
}

.feat-accent-orange {
    border-bottom-color: #ff7043;
}

.feat-accent-orange .feat-12-icon {
    color: #ff7043;
}

.feat-accent-orange .feat-12-link {
    color: #ff7043;
}

.feat-accent-gold {
    border-bottom-color: var(--primary);
}

.feat-accent-gold .feat-12-icon {
    color: var(--primary);
}

.feat-accent-gold .feat-12-link {
    color: var(--primary);
}

.feat-accent-blue {
    border-bottom-color: #3b82f6;
}

.feat-accent-blue .feat-12-icon {
    color: #3b82f6;
}

.feat-accent-blue .feat-12-link {
    color: #3b82f6;
}

.feat-accent-pink {
    border-bottom-color: #ec4899;
}

.feat-accent-pink .feat-12-icon {
    color: #ec4899;
}

.feat-accent-pink .feat-12-link {
    color: #ec4899;
}

.feat-accent-green {
    border-bottom-color: #10b981;
}

.feat-accent-green .feat-12-icon {
    color: #10b981;
}

.feat-accent-green .feat-12-link {
    color: #10b981;
}

/* Pricing Page Style */
.pricing-section-new {
    padding: 100px 0;
    background-color: white;
    text-align: left;
}

.pricing-new-header {
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.pricing-new-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1b253c;
    margin-bottom: 12px;
}

.pricing-new-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-new-sub span {
    border-bottom: 2px solid rgba(205, 168, 92, 0.3);
}

.pricing-new-select-tag {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 40px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-new-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 180px;
}

.pricing-new-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #cda85c;
}

.pricing-new-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1b253c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-badge-new {
    background-color: #ff9800;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.pricing-new-card-price {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-new-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pricing-new-grid {
        grid-template-columns: 1fr;
    }
}

/* Tab active state for pricing */
.pricing-new-card.active {
    border-color: var(--primary) !important;
    background-color: rgba(203, 161, 53, 0.03) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Pricing pane toggle animation */
.pricing-pane {
    display: none;
}

.pricing-pane.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing sub description text */
.pricing-sub-desc {
    text-align: center;
    color: var(--text-muted);
    margin: 25px auto 40px auto;
    font-size: 0.95rem;
    max-width: 700px;
    line-height: 1.6;
}

.pricing-sub-desc strong {
    color: var(--text-primary);
}

/* Lite Pricing Sub-Grid (Basic, Plus, Max) */
.lite-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 15px;
}

@media (max-width: 991px) {
    .lite-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* Lite Sub-Cards */
.lite-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(203, 161, 53, 0.3);
}

.lite-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(203, 161, 53, 0.08);
}

/* Best Value Badge */
.lite-top-badge {
    position: absolute;
    top: -14px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(203, 161, 53, 0.2);
}

/* Icon Area inside Lite card */
.lite-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lite-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Pricing Container */
.lite-price-container {
    margin-bottom: 20px;
}

.lite-price-old {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.lite-price-new {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.lite-price-new span {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 800;
}

/* Badges section */
.lite-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.lite-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    font-weight: 500;
}

.lite-badge strong {
    color: var(--text-primary);
}

.badge-gray {
    background-color: #f1f5f9;
    color: #475569;
}

.badge-outline {
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.badge-orange {
    background-color: #fff7ed;
    color: #ea580c;
}

.badge-teal {
    background-color: #f0fdfa;
    color: #0d9488;
}

.badge-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.badge-gold {
    background-color: #fffbeb;
    color: #d97706;
}

/* Features checklist style */
.lite-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-primary);
}

.lite-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lite-features li i {
    color: #22c55e;
    font-size: 0.95rem;
}

.lite-features li.bullet-feature {
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
    display: block;
}

.lite-features li.bullet-feature::before {
    content: "\2022";
    position: absolute;
    left: 6px;
    color: var(--primary);
    font-size: 1.2rem;
    top: -4px;
}

/* Domain pill badges */
.lite-domain-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.lite-dom-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lite-dom-gratis {
    background: #dcfce7;
    color: #16a34a;
    border-color: #bbf7d0;
    font-weight: 700;
}

/* Actions block */
.lite-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.btn-trial {
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.btn-trial:hover {
    background-color: #e2e8f0;
}

.btn-plus-select {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.btn-plus-select:hover {
    background-color: var(--primary-hover);
}

.btn-max-select {
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.btn-max-select:hover {
    background-color: #e2e8f0;
}

.btn-demo-link {
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 600;
    padding: 9px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-demo-link:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

/* Bottom Detail Section for Lite Card list */
.lite-bottom-section {
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.btn-detail-lite {
    background-color: #b08927;
    color: white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(176, 137, 39, 0.15);
}

.btn-detail-lite:hover {
    background-color: #94711d;
    transform: translateY(-2px);
}

.dashed-box-decorator {
    position: absolute;
    bottom: 12px;
    left: -10px;
    width: 215px;
    height: 52px;
    border: 2px dashed #f87171;
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

/* Enterprise Pricing Card Layout */
.enterprise-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 1000px;
    margin: 30px auto;
    display: flex;
    gap: 40px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .enterprise-pricing-card {
        flex-direction: column;
        padding: 25px;
        gap: 25px;
    }
}

.ent-card-left {
    flex: 1.3;
}

.ent-tag {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.ent-card-left h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ent-card-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ent-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ent-features li {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ent-features li i {
    color: var(--primary);
}

.ent-card-right {
    flex: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ent-price-box {
    background-color: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    width: 100%;
    text-align: center;
}

.ent-price-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.ent-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 8px 0;
}

.ent-price span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ent-price-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.4;
}

.btn-ent-cta {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    transition: var(--transition);
}

.btn-ent-cta:hover {
    background-color: var(--primary-hover);
}

/* Member Login Modal Box Styles */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal-overlay.active {
    display: flex;
    animation: fadeInModal 0.25s ease forwards;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.login-modal-card {
    background-color: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 40px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideInModal 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #64748b;
    transition: var(--transition);
    line-height: 1;
}

.login-modal-close:hover {
    color: #1e293b;
    transform: rotate(90deg);
}

.login-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.logo-t-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-modal-logo .logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ff7a00;
    letter-spacing: 0.5px;
}

.login-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff7a00;
}

.login-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.form-control-login {
    width: 100%;
    padding: 12px 14px;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #1e293b;
    transition: var(--transition);
}

.form-control-login:focus {
    border-color: #ff7a00;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
    outline: none;
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #475569;
    text-align: left;
    margin: 4px 0;
}

.form-agreement input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #ff7a00;
    cursor: pointer;
}

.form-agreement label {
    cursor: pointer;
}

.btn-login-submit {
    background-color: #2b2b2b;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 5px;
}

.btn-login-submit:hover {
    background-color: #111111;
}

/* =============================================
   KIOSLITE DETAIL MODAL v2 - matches reference image
   ============================================= */

/* Overlay */
.kioslite-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow-y: auto;
    background: #f0f2f5;
}

.kioslite-modal-overlay.active {
    display: block;
}

.kioslite-modal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.kl2-navbar {
    background: #0f1623;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.kl2-nav-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.kl2-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.kl2-logo-icon {
    font-size: 1.1rem;
}

.kl2-logo-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
}

.kl2-logo-text strong {
    color: #f5a623;
}

.kl2-nav-links {
    display: flex;
    gap: 20px;
    margin-left: 8px;
}

.kl2-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.kl2-nav-links a:hover {
    color: white;
}

.kl2-nav-cta {
    margin-left: auto;
    background: #f5a623;
    color: #0f1623;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.kl2-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.kl2-close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.kl2-hero {
    background: linear-gradient(180deg, #0f1623 0%, #1c2d4a 100%);
    color: white;
    text-align: center;
    padding: 44px 20px 80px;
}

.kl2-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.kl2-hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto;
}

/* Body + Card */
.kl2-body {
    flex: 1;
    padding: 0 16px 100px;
    margin-top: -50px;
}

.kl2-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 24px 20px 28px;
}

/* Section Label */
.kl2-section-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.kl2-req {
    color: #ef4444;
}

/* Promo Banner */
.kl2-promo-banner {
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    margin-bottom: 14px;
}

.kl2-promo-bolt {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.kl2-promo-title {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.kl2-promo-sub {
    font-size: 0.78rem;
    opacity: 0.85;
    margin-top: 2px;
}

/* Package Cards */
.kl2-pkg {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.kl2-pkg:hover {
    border-color: #cbd5e1;
}

.kl2-pkg--selected {
    border-color: #f5a623;
    background: #fffdf5;
}

.kl2-pkg-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 12px;
}

.kl2-pkg-left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.kl2-pkg-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kl2-pkg--selected .kl2-pkg-radio {
    border-color: #f5a623;
}

.kl2-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
}

.kl2-pkg--selected .kl2-radio-dot {
    background: #f5a623;
}

.kl2-pkg-icon-wrap {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.kl2-pkg-icon {
    font-size: 1rem;
    color: #94a3b8;
}

.kl2-pkg-icon.gray {
    color: #94a3b8;
}

.kl2-pkg-info {
    flex: 1;
    min-width: 0;
}

.kl2-pkg-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.badge-gray {
    background: #f1f5f9;
    color: #64748b;
}

.badge-orange {
    background: #fef3c7;
    color: #d97706;
}

.badge-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.kl2-pkg-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.kl2-pkg-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.kl2-dom {
    font-size: 0.67rem;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    color: #475569;
    background: #f8fafc;
}

.kl2-dom.green {
    background: #dcfce7;
    border-color: #86efac;
    color: #15803d;
    font-weight: 600;
}

.kl2-dom.gratis {
    background: #f0fdf4;
    border-color: #86efac;
    color: #16a34a;
    font-weight: 700;
}

.kl2-pkg-right {
    text-align: right;
    flex-shrink: 0;
    min-width: 130px;
}

.kl2-disc-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.kl2-price-old {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.kl2-price-main {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
}

.kl2-price-main span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.kl2-price-monthly {
    font-size: 0.72rem;
    color: #f5a623;
    font-weight: 600;
    margin-top: 2px;
}

/* Package Detail (expanded) */
.kl2-pkg-detail {
    border-top: 1px solid #f1f5f9;
}

.kl2-feature-list {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.kl2-feature {
    font-size: 0.83rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kl2-check {
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
}

.kl2-cuan-bar {
    background: linear-gradient(90deg, #f5a623, #e07b00);
    color: white;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Info Cards */
.kl2-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 14px;
}

.kl2-info-yellow {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kl2-info-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.08);
}

.kl2-info-green {
    background: #f0fdf4;
    border: 1px solid #86efac;
}

.kl2-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.kl2-info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.kl2-info-sub {
    font-size: 0.78rem;
    color: #f5a623;
}

.kl2-info-green .kl2-info-sub {
    color: #16a34a;
}

.kl2-domain-tags-inline {
    display: flex;
    gap: 5px;
    margin: 5px 0 4px;
}

/* Form */
.kl2-form {
    margin-top: 20px;
}

.kl2-field {
    margin-bottom: 16px;
}

.kl2-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.kl2-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1e293b;
    background: white;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.kl2-input:focus {
    outline: none;
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.kl2-hint {
    font-size: 0.74rem;
    color: #9ca3af;
    margin-top: 4px;
}

.kl2-notice-box {
    background: #fef9c3;
    border: 1px solid #fde047;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.76rem;
    color: #713f12;
    margin-top: 6px;
    line-height: 1.5;
}

.kl2-input-row {
    position: relative;
}

.kl2-gmail-tag {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #ea4335;
    font-weight: 700;
    pointer-events: none;
    background: white;
    padding: 1px 4px;
}

.kl2-promo-row {
    display: flex;
    gap: 8px;
}

.kl2-promo-row .kl2-input {
    flex: 1;
}

.kl2-btn-terapkan {
    background: #f5a623;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

.kl2-btn-terapkan:hover {
    background: #e09518;
}

/* Sticky Bottom Bar */
.kl2-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.kl2-sticky-inner {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kl2-sticky-label {
    font-size: 0.72rem;
    color: #9ca3af;
}

.kl2-sticky-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f5a623;
    line-height: 1.2;
}

.kl2-sticky-qris {
    font-size: 0.7rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.kl2-qris-icon {
    font-size: 0.8rem;
}

.kl2-sticky-btn {
    background: linear-gradient(90deg, #f5a623, #e05c00);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.kl2-sticky-btn:hover {
    opacity: 0.9;
}

/* ── Info card icon circles ── */
.kl2-info-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.kl2-info-icon-circle.yellow {
    background: #fbbf24;
    color: white;
    animation: bounce-arrow 1.5s infinite ease-in-out;
}

.kl2-info-icon-circle.green {
    background: #22c55e;
    color: white;
}

/* ── Email PENTING badge ── */
.kl2-badge-penting {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.67rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #fca5a5;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

/* ── Email warning box (above input) ── */
.kl2-email-warning-box {
    background: #fffbeb;
    border: 1.5px solid #fcd34d;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.kl2-warn-icon {
    font-size: 1rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 1px;
}

.kl2-warn-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: #92400e;
    margin-bottom: 3px;
}

.kl2-warn-sub {
    font-size: 0.76rem;
    color: #78350f;
    line-height: 1.5;
}

/* ── Email input with warning border ── */
.kl2-input--warn {
    border-color: #fcd34d !important;
    background: #fffdf5 !important;
}

.kl2-input--warn:focus {
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1) !important;
}

/* ── Muted Terapkan button ── */
.kl2-btn-terapkan.muted {
    background: #d1b96a;
    color: white;
}

.kl2-btn-terapkan.muted:hover {
    background: #b8a05a;
}

/* ── Main submit button inside card ── */
.kl2-main-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #f5a623, #e05c00);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    margin-top: 20px;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.15s;
}

.kl2-main-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* ── Trust row ── */
.kl2-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.82rem;
    color: #374151;
}

.kl2-trust-check {
    font-size: 1rem;
}

.kl2-trust-text strong {
    color: #1e293b;
}

/* ── TOS row ── */
.kl2-tos-row {
    text-align: center;
    font-size: 0.74rem;
    color: #9ca3af;
    margin-top: 8px;
    line-height: 1.5;
}

.kl2-tos-link {
    color: #f5a623;
    text-decoration: none;
    font-weight: 500;
}

/* ── Promo banner bolt icon ── */
.kl2-promo-bolt-wrap {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Package icon wraps per type ── */
.kl2-pkg-icon-wrap.basic-icon {
    background: #f1f5f9;
}

.kl2-pkg-icon-wrap.plus-icon {
    background: #fff7e6;
    border: 1px solid #fde68a;
}

.kl2-pkg-icon-wrap.max-icon {
    background: #f8fafc;
}

/* ── Globe icon before domains ── */
.kl2-globe-icon {
    font-size: 0.75rem;
    margin-right: 2px;
    opacity: 0.6;
}

.kl2-globe-icon.orange {
    opacity: 1;
    color: #f5a623;
}

/* ── Badge green dot ── */
.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 2px;
    vertical-align: middle;
}

.green-dot {
    background: #22c55e;
}

/* ── Selected package name ── */
.pkg-name-selected {
    color: #d97706;
}

/* ── Selected price ── */
.price-selected {
    color: #d97706 !important;
    font-size: 1.15rem !important;
}

/* ── Feature highlight (orange for top feature) ── */
.feat-highlight {
    font-weight: 600;
}

.feat-highlight.orange {
    color: #f5a623;
}

.kl2-check.orange {
    color: #f5a623;
}

/* ── Cuan bar with SVG icon ── */
.kl2-cuan-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Hero badge label ── */
.kl2-hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.2);
    color: #f5a623;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ── Fix card width constraint ── */
.kl2-body {
    flex: 1;
    padding: 0 16px 100px;
    margin-top: -40px;
}

.kl2-card {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 24px 20px 28px;
}

/* ── Modal Footer Styles ── */
.kl2-footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 40px 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kl2-footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.kl2-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kl2-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kl2-footer-logo .kl2-logo-icon {
    display: flex;
    align-items: center;
}

.kl2-footer-logo .kl2-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
}

.kl2-footer-logo .kl2-logo-text strong {
    color: #f5a623;
}

.kl2-footer-tagline {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.kl2-footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kl2-footer-col-title {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.kl2-footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.kl2-footer-col a:hover {
    color: #f5a623;
}

.kl2-footer-copy {
    text-align: center;
    font-size: 0.7rem;
    color: #475569;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 16px;
    max-width: 860px;
    margin: 0 auto;
}

}

/* ── Kioslite Page Scroll Overrides ── */
.kioslite-modal-overlay {
    scroll-behavior: smooth;
}

/* ── Redesigned Hero Section ── */
.kl2-hero {
    background: linear-gradient(180deg, #0f1623 0%, #1c2d4a 100%);
    color: white;
    text-align: left;
    padding: 60px 24px 80px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.kl2-hero-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

.kl2-hero-badge {
    background: rgba(245, 166, 35, 0.15);
    color: #f5a623;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(245, 166, 35, 0.3);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.kl2-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.kl2-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kl2-hero-bullets li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.kl2-hero-bullets .bullet-check {
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.kl2-hero-btn {
    background: linear-gradient(90deg, #f5a623 0%, #e05c00 100%);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 18px;
}

.kl2-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.kl2-hero-trust {
    display: flex;
    gap: 16px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Devices Showcase */
.kl2-devices {
    position: relative;
    width: 100%;
    height: 220px;
}

.kl2-laptop {
    width: 260px;
    height: 160px;
    margin: 0 auto;
    position: relative;
}

.kl2-laptop-screen {
    width: 100%;
    height: 148px;
    background: #2c3e50;
    border: 8px solid #000;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
    overflow: hidden;
}

.kl2-laptop-content {
    width: 100%;
    height: 100%;
    background: #0f1623;
    color: white;
    padding: 6px;
    box-sizing: border-box;
}

.kl2-laptop-base {
    width: 290px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 4px;
    left: -15px;
    border-bottom: 2px solid #cbd5e1;
}

.kl2-phone {
    width: 50px;
    height: 100px;
    background: #000;
    border: 2px solid #000;
    border-radius: 6px;
    position: absolute;
    bottom: 12px;
    right: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.kl2-phone-screen {
    width: 100%;
    height: 100%;
    background: #0b0f19;
    color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.kl2-phone-header {
    height: 4px;
    background: #000;
    width: 10px;
    margin: 2px auto 0;
    border-radius: 1px;
    flex-shrink: 0;
}

.kl2-phone-content {
    flex: 1;
    padding: 4px;
    display: flex;
    flex-direction: column;
}

/* Mock Store layout helper styles */
.mock-store-header {
    font-size: 8px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #f5a623;
}

.mock-store-banner {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    font-size: 6px;
    font-weight: bold;
    text-align: center;
    padding: 3px 0;
    margin-bottom: 6px;
    border-radius: 2px;
}

.mock-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.mock-store-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 5px;
    padding: 4px 2px;
    text-align: center;
    border-radius: 2px;
}

/* ── Stats Bar Section ── */
.kl2-stats {
    background: white;
    padding: 28px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.kl2-stats-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.kl2-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.kl2-stat-icon {
    font-size: 1.8rem;
}

.kl2-stat-text {
    display: flex;
    flex-direction: column;
}

.kl2-stat-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.kl2-stat-label {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
}

/* ── 3 Langkah Aja Section ── */
.kl2-steps {
    background: #f8fafc;
    padding: 60px 24px;
}

.kl2-steps-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.kl2-steps-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.kl2-steps-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.6;
}

.kl2-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.kl2-step-card {
    background: white;
    padding: 28px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    text-align: left;
}

.kl2-step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.1);
    color: #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.kl2-step-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.kl2-step-card-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── 21+ Tema Keren Section ── */
.kl2-themes {
    background: white;
    padding: 60px 24px;
}

.kl2-themes-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.kl2-themes-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.kl2-themes-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.kl2-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.kl2-filter-tab {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.kl2-filter-tab:hover,
.kl2-filter-tab.active {
    color: white;
    background: #1e293b;
    border-color: #1e293b;
}

.kl2-themes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}

.kl2-theme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kl2-theme-preview {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    border: 3px solid #000;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.kl2-theme-inner-screen {
    width: 100%;
    height: 100%;
    padding: 4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.kl2-theme-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
}

/* Custom theme colors */
.default-theme {
    background: #0b0f19;
}

.gaming-theme {
    background: #090d16;
}

.neon-theme {
    background: #080710;
}

.anime-theme {
    background: #fff5f8;
}

.anime-theme .kl2-theme-inner-screen div {
    color: #db2777 !important;
}

.dark-theme {
    background: #0f172a;
}

.moba-theme {
    background: #f0f4ff;
}

.moba-theme .kl2-theme-inner-screen div {
    color: #2563eb !important;
}

.kl2-demo-btn {
    background: #0f1623;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 40px;
    transition: background 0.2s;
}

.kl2-demo-btn:hover {
    background: #1c253c;
}

/* Customize box */
.kl2-customize-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.kl2-customize-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #b45309;
    margin: 0 0 4px 0;
}

.kl2-customize-text p {
    font-size: 0.74rem;
    color: #b45309;
    margin: 0;
    line-height: 1.4;
}

.kl2-customize-colors {
    display: flex;
    gap: 6px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

/* ── FAQ Section ── */
.kl2-faq {
    background: #f8fafc;
    padding: 60px 24px;
}

.kl2-faq-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.kl2-faq-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 36px;
}

.kl2-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.kl2-faq-card {
    background: white;
    padding: 24px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.kl2-faq-q {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.kl2-faq-a {
    font-size: 0.76rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive overrides for new sections ── */
@media (max-width: 768px) {
    .kl2-hero {
        padding: 40px 16px 60px;
    }

    .kl2-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kl2-stats-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kl2-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kl2-themes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .kl2-customize-box {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .kl2-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Enterprise Comparison Table styling */
.enterprise-comparison-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.enterprise-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.enterprise-table th,
.enterprise-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    border-right: 1px solid rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
}

.enterprise-table th:last-child,
.enterprise-table td:last-child {
    border-right: none;
}

.enterprise-table tbody tr:last-child td {
    border-bottom: none;
}

.enterprise-table th {
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    padding: 20px;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08);
}

.enterprise-table th.feature-col {
    text-align: left;
    width: 45%;
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enterprise-table th.plan-header {
    width: 18.33%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Plan Specific Header Styles */
.enterprise-table th:nth-child(2) {
    background: linear-gradient(135deg, #475569, #334155);
    /* Slate Gradient for UMKM */
}

.enterprise-table th:nth-child(3) {
    background: linear-gradient(135deg, #cba135, #b08927);
    /* Gold Gradient for UMKM+ */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.enterprise-table th:nth-child(4) {
    background: linear-gradient(135deg, #00c9a7, #00b393);
    /* Mint/Teal Gradient for ENTERPRISE */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.enterprise-table td.feature-name {
    text-align: left;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.4;
    border-right: 2px solid rgba(15, 23, 42, 0.04);
    background-color: #fafbfc;
}

.enterprise-table td.feature-name span.sub-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* Column Tints and Borders */
.enterprise-table td:nth-child(2) {
    background-color: rgba(241, 245, 249, 0.2);
    /* Very light grey tint */
}

.enterprise-table td:nth-child(3) {
    background-color: rgba(251, 191, 36, 0.015);
    /* Light gold tint */
}

.enterprise-table td:nth-child(4) {
    background-color: rgba(0, 201, 167, 0.03);
    /* Light mint tint */
    font-weight: 700;
    border-left: 1.5px solid rgba(0, 201, 167, 0.15);
    border-right: 1.5px solid rgba(0, 201, 167, 0.15);
}

/* Zebra striping for table rows (subtle alternating backdrops) */
.enterprise-table tbody tr:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.008);
}

/* Dynamic Row Hover */
.enterprise-table tbody tr:hover {
    background-color: rgba(203, 161, 53, 0.05) !important;
}

.enterprise-table tbody tr:hover td.feature-name {
    background-color: rgba(203, 161, 53, 0.02) !important;
    color: var(--primary);
}

/* Icon styles as premium status bubbles */
.enterprise-table td .fa-circle-check {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1.05rem;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.enterprise-table td .fa-circle-check::after {
    content: "Tersedia";
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.enterprise-table td .fa-circle-xmark {
    color: #f87171;
    background-color: rgba(248, 113, 113, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.enterprise-table td .fa-circle-xmark::after {
    content: "Tidak Ada";
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* CTA Container */
.enterprise-cta-container {
    text-align: left;
    padding-top: 30px;
}

.btn-whatsapp-purchase {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #10b981;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp-purchase:hover {
    background-color: #059669;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

@media (max-width: 768px) {
    .enterprise-comparison-wrapper {
        padding: 15px;
    }

    .enterprise-table th,
    .enterprise-table td {
        padding: 12px 10px;
    }

    .enterprise-table th {
        font-size: 0.9rem;
    }

    .enterprise-table td.feature-name {
        font-size: 0.85rem;
    }
}

/* Information Modal (Tentang Kami, Karir, Kebijakan, dll) */
.info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.info-modal-card {
    background-color: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}

.info-modal-overlay.active .info-modal-card {
    transform: scale(1);
}

.info-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #64748b;
    transition: var(--transition);
    line-height: 1;
}

.info-modal-close:hover {
    color: #1e293b;
    transform: rotate(90deg);
}

.info-modal-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.info-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.info-modal-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    overflow-y: auto;
    padding-right: 8px;
    max-height: 50vh;
    text-align: left;
}

.info-modal-body strong {
    color: #0f172a;
}

.info-modal-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}