/* 
   LIANA AI RENTAL OS - MODERN PREMIUM THEME (modern.css)
   Created for high wow-factor visual design with:
   - Emerald neon accents
   - Smooth dark-mode glassmorphic cards
   - Outfits typography
   - Cascade chat animations and hover glows
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Core HSL Design Tokens */
    --bg-base: hsl(222, 24%, 6%);
    --bg-surface-1: hsl(222, 22%, 9%);
    --bg-surface-2: hsl(222, 20%, 12%);
    --bg-surface-3: hsl(222, 18%, 16%);
    
    /* Neon & Accent Palette */
    --accent-emerald: hsl(150, 100%, 43%);
    --accent-emerald-neon: hsl(150, 100%, 53%);
    --accent-emerald-glow: hsla(150, 100%, 43%, 0.15);
    
    --accent-blue: hsl(217, 91%, 60%);
    --accent-blue-glow: hsla(217, 91%, 60%, 0.15);
    
    --accent-coral: hsl(10, 78%, 60%);
    --accent-coral-glow: hsla(10, 78%, 60%, 0.15);
    
    --accent-gold: hsl(40, 90%, 55%);
    --accent-gold-glow: hsla(40, 90%, 55%, 0.15);
    
    /* Text Palette */
    --text-primary: hsl(210, 40%, 98%);
    --text-secondary: hsl(215, 20%, 80%);
    --text-muted: hsl(215, 14%, 60%);
    
    /* Glassmorphism & Borders */
    --glass-bg: rgba(17, 28, 45, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(0, 255, 128, 0.25);
    --glass-blur: blur(16px);
    
    --shadow-premium: 0 24px 70px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 255, 128, 0.18);
    --shadow-blue-glow: 0 0 30px rgba(37, 99, 235, 0.18);
    
    --radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 128, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 128, 0.25);
    }
}

@keyframes borderGlowPulse {
    0%, 100% {
        border-color: rgba(0, 255, 128, 0.2);
    }
    50% {
        border-color: rgba(0, 255, 128, 0.6);
    }
}

@keyframes chatBubbleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dotPulse {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Navigation Bar (Glassmorphic) */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    min-height: 80px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--bg-surface-3), var(--bg-base));
    color: var(--accent-emerald-neon);
    font-size: 1.4rem;
    font-weight: 900;
    border: 1px solid rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.15);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.94rem;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-emerald-neon);
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.94rem;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn.primary {
    background: var(--accent-emerald);
    color: var(--bg-base);
    box-shadow: 0 8px 24px rgba(0, 255, 128, 0.25);
    border: 1px solid var(--accent-emerald-neon);
}

.btn.primary:hover {
    background: var(--accent-emerald-neon);
    box-shadow: 0 12px 30px rgba(0, 255, 128, 0.4);
}

.btn.dark {
    background: var(--bg-surface-3);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn.dark:hover {
    background: var(--bg-surface-2);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn.light {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
}

.btn.light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    padding: 120px 6vw 80px;
    display: grid;
    align-items: center;
    background: 
        radial-gradient(circle at 80% 20%, hsla(150, 100%, 43%, 0.08), transparent 45%),
        radial-gradient(circle at 20% 80%, hsla(217, 91%, 60%, 0.06), transparent 50%),
        linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface-1) 100%);
    color: var(--text-primary);
    overflow: hidden;
}

.hero-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.eyebrows {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill.green {
    color: var(--accent-emerald-neon);
    border-color: rgba(0, 255, 128, 0.25);
    background: rgba(0, 255, 128, 0.06);
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.05);
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy {
    max-width: 600px;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.proof-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
    margin-top: 48px;
}

.proof {
    min-height: 100px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.proof:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.proof strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-emerald-neon);
}

.proof span {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Phone Mockup Frame */
.phone {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 36px;
    background: hsl(220, 20%, 5%);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    animation: floatPhone 6s ease-in-out infinite;
    position: relative;
}

.phone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent, rgba(0, 255, 128, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.phone-top {
    min-height: 70px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: hsl(222, 20%, 10%);
    border-bottom: 1px solid var(--glass-border);
}

.avatar {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-emerald);
    color: var(--bg-base);
    font-weight: 800;
}

.phone-top strong {
    display: block;
    font-size: 0.94rem;
    color: var(--text-primary);
}

.phone-top span {
    display: block;
    color: var(--accent-emerald-neon);
    font-size: 0.8rem;
    font-weight: 500;
}

/* WhatsApp Chat System */
.chat {
    min-height: 480px;
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 16px;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 255, 128, 0.05), transparent 30%),
        hsl(222, 25%, 5%);
}

.bubble {
    width: min(88%, 320px);
    padding: 14px 16px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    background: hsl(222, 14%, 15%);
    color: var(--text-primary);
    font-size: 0.92rem;
    line-height: 1.45;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: chatBubbleFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bubble.customer {
    margin-left: auto;
    border-radius: 16px;
    border-top-right-radius: 4px;
    background: hsl(150, 100%, 15%);
    border: 1px solid rgba(0, 255, 128, 0.15);
}

/* Chat bubble cascade entries */
.chat .bubble:nth-child(1) { animation-delay: 0.3s; }
.chat .bubble:nth-child(2) { animation-delay: 1.5s; }
.chat .bubble:nth-child(3) { animation-delay: 2.7s; }
.chat .bubble:nth-child(4) { animation-delay: 3.9s; }
.chat .bubble:nth-child(5) { animation-delay: 5.1s; }
.chat .bubble:nth-child(6) { animation-delay: 6.3s; }

.bubble small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-align: right;
}

.quick-reply {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 255, 128, 0.25);
    background: rgba(0, 255, 128, 0.05);
    color: var(--accent-emerald-neon);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quick-reply span:hover {
    background: var(--accent-emerald-neon);
    color: var(--bg-base);
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.3);
}

/* Sections General */
.section {
    padding: 100px 6vw;
    position: relative;
    background-color: var(--bg-surface-1);
}

.section.white {
    background-color: var(--bg-surface-2);
}

.section.dark {
    background-color: var(--bg-base);
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.section-head {
    max-width: 800px;
    margin-bottom: 50px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.kicker {
    margin-bottom: 12px;
    color: var(--accent-emerald-neon);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-primary);
}

.section-head p,
.lead {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Market Strip */
.market-strip {
    padding: 24px 6vw;
    background: var(--bg-surface-2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.strip-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.strip-label {
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 700;
    white-space: nowrap;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--bg-surface-3);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.chip:hover {
    border-color: var(--accent-emerald-neon);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 128, 0.1);
}

/* Grids */
.compare-grid,
.pillar-grid,
.ecosystem-grid,
.work-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-grid,
.city-grid,
.seo-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Cards (Glassmorphism & Interactive Glows) */
.card,
.pillar-card,
.ecosystem-card,
.plan,
.faq-card,
.demo-panel,
.problem-card,
.trust-card,
.seo-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover,
.pillar-card:hover,
.ecosystem-card:hover,
.plan:hover,
.problem-card:hover,
.trust-card:hover,
.seo-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.card {
    min-height: 240px;
    padding: 28px;
}

.pillar-card {
    display: flex;
    min-height: 350px;
    padding: 32px;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
}

.pillar-card.dark-card {
    background: linear-gradient(135deg, rgba(16, 203, 131, 0.05), rgba(17, 28, 45, 0.45));
    border-color: rgba(0, 255, 128, 0.25);
    animation: glowPulse 5s infinite;
}

.pillar-card.dark-card:hover {
    box-shadow: var(--shadow-premium), 0 0 40px rgba(0, 255, 128, 0.25);
    border-color: var(--accent-emerald-neon);
}

.pillar-card p,
.ecosystem-card p,
.seo-card p,
.card p,
.plan p,
.city-card p,
.trust-card p,
.problem-card p {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.5;
}

.pillar-list,
.ecosystem-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    list-style: none;
}

.pillar-list li,
.ecosystem-list li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.4;
}

.pillar-list li::before,
.ecosystem-list li::before,
.problem-card li::before,
.plan-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--accent-emerald-neon);
    box-shadow: 0 0 8px var(--accent-emerald-neon);
}

.pillar-link {
    margin-top: auto;
    color: var(--accent-emerald-neon);
    font-weight: 800;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pillar-link:hover {
    text-shadow: 0 0 8px rgba(0, 255, 128, 0.4);
    transform: translateX(4px);
}

.ecosystem-card {
    min-height: 320px;
    padding: 32px;
}

.ecosystem-card.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 128, 0.04), rgba(17, 28, 45, 0.6));
    border-color: rgba(0, 255, 128, 0.3);
}

.ecosystem-card.highlight:hover {
    border-color: var(--accent-emerald-neon);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(0, 255, 128, 0.2);
}

/* SEO Hub layout */
.seo-hub {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.seo-menu {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 12px;
    padding: 28px;
    background: var(--bg-surface-3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.seo-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--bg-base);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.seo-menu a:hover {
    border-color: var(--accent-emerald-neon);
    color: var(--text-primary);
    background: var(--bg-surface-1);
    box-shadow: 0 4px 12px rgba(0, 255, 128, 0.1);
}

.seo-card {
    min-height: 220px;
    padding: 28px;
}

.seo-card strong {
    display: block;
    margin-top: 18px;
    color: var(--text-primary);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 6px;
    background: var(--bg-surface-3);
    color: var(--accent-emerald-neon);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 128, 0.15);
}

/* Icons */
.icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: var(--accent-emerald-glow);
    color: var(--accent-emerald-neon);
    font-weight: 900;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 255, 128, 0.25);
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.1);
}

.icon.blue {
    background: var(--accent-blue-glow);
    color: var(--accent-blue);
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.icon.coral {
    background: var(--accent-coral-glow);
    color: var(--accent-coral);
    border: 1px solid rgba(229, 106, 84, 0.25);
}

.icon.gold {
    background: var(--accent-gold-glow);
    color: var(--accent-gold);
    border: 1px solid rgba(197, 139, 35, 0.25);
}

/* Problem Cards */
.problem-card {
    min-height: 280px;
    padding: 32px;
    box-shadow: var(--shadow-premium);
}

.problem-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.problem-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.problem-card li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.94rem;
}

/* Demo Section styling */
.demo-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: stretch;
}

.demo-panel {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
    list-style: none;
}

.flow-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--bg-surface-3);
    transition: var(--transition-smooth);
}

.flow-list li:hover {
    border-color: var(--glass-border-hover);
    transform: translateX(6px);
}

.flow-list span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: var(--bg-base);
    color: var(--accent-emerald-neon);
    font-weight: 800;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 255, 128, 0.25);
}

.flow-list strong {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.flow-list p {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* Dashboard Preview elements styling */
.dashboard-preview {
    min-height: 430px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--bg-surface-2);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.preview-top {
    min-height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 800;
    background: var(--bg-surface-3);
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--accent-emerald-glow);
    color: var(--accent-emerald-neon);
    font-size: 0.78rem;
    font-weight: 800;
    border: 1px solid rgba(0, 255, 128, 0.25);
}

.status.blue {
    background: var(--accent-blue-glow);
    color: var(--accent-blue);
    border-color: rgba(37, 99, 235, 0.25);
}

.status.gold {
    background: var(--accent-gold-glow);
    color: var(--accent-gold);
    border-color: rgba(197, 139, 35, 0.25);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
}

.metric {
    min-height: 120px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--bg-surface-3);
}

.metric small {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
}

.metric strong {
    display: block;
    margin-top: 10px;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.activity {
    display: grid;
    gap: 12px;
    padding: 0 20px 20px;
}

.activity-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--bg-surface-3);
    font-size: 0.94rem;
}

/* Mulai mudah - Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    min-height: 240px;
    padding: 32px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-bg);
}

.step-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: var(--accent-emerald);
    color: var(--bg-base);
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.3);
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
}

/* Pricing Grid */
.plan {
    display: flex;
    flex-direction: column;
    padding: 36px;
    min-height: 480px;
}

.plan.featured {
    border-color: var(--accent-emerald-neon);
    background: linear-gradient(180deg, rgba(0, 255, 128, 0.05) 0%, rgba(17, 28, 45, 0.6) 100%);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(0, 255, 128, 0.15);
    transform: scale(1.02);
}

.plan.featured:hover {
    border-color: var(--accent-emerald-neon);
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-premium), 0 0 45px rgba(0, 255, 128, 0.3);
}

.plan-label {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    background: var(--accent-emerald-glow);
    color: var(--accent-emerald-neon);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 255, 128, 0.25);
}

.price {
    margin: 20px 0 12px;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 900;
    color: var(--text-primary);
}

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

.plan-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
    list-style: none;
}

.plan-list li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.45;
}

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

/* Trust cards & City cards */
.city-card,
.trust-card {
    min-height: 200px;
    padding: 28px;
}

/* FAQ Accordion Accordion styling */
.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-card {
    overflow: hidden;
}

.faq-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

details summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 26px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

details summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-emerald-neon);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details summary::-webkit-details-marker {
    display: none;
}

details p {
    padding: 0 26px 22px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.55;
    animation: fadeInUp 0.4s ease forwards;
}

/* Closing Section */
.closing {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    padding: 48px;
    border-radius: var(--radius);
    background: 
        radial-gradient(circle at 100% 0%, hsla(150, 100%, 43%, 0.15), transparent 40%),
        linear-gradient(135deg, hsl(222, 20%, 15%), var(--bg-base));
    border: 1px solid var(--accent-emerald-neon);
    color: var(--text-primary);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(0, 255, 128, 0.1);
}

.closing p {
    max-width: 720px;
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.closing .btn {
    justify-self: end;
}

/* Footer styling */
footer {
    padding: 60px 6vw;
    background: hsl(222, 24%, 4%);
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.92rem;
}

footer .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

footer strong {
    font-size: 1.15rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 12px;
}

footer p {
    margin-top: 8px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 700;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-emerald-neon);
}

/* Responsive Styles */
@media (max-width: 1080px) {
    .hero-grid,
    .demo-wrap,
    .faq-grid,
    .seo-hub,
    .closing,
    footer .container {
        grid-template-columns: 1fr;
    }

    .closing .btn {
        justify-self: start;
    }

    .phone {
        max-width: 430px;
        margin: 0 auto;
    }

    .feature-grid,
    .city-grid,
    .seo-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-menu {
        position: static;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 880px) {
    .compare-grid,
    .pillar-grid,
    .ecosystem-grid,
    .work-grid,
    .pricing-grid,
    .steps,
    .strip-inner,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .proof-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .nav {
        min-height: 70px;
        padding: 0 24px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links a:not(.btn) {
        display: none;
    }

    .nav .btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.88rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    h1 {
        font-size: 2.3rem;
        line-height: 1.1;
    }

    .hero-copy,
    .section-head p,
    .lead {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .proof-row {
        display: none;
    }

    .section {
        padding: 70px 24px;
    }

    .market-strip {
        padding: 24px;
    }

    .strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .feature-grid,
    .city-grid,
    .seo-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .activity-row {
        grid-template-columns: 1fr;
    }

    .phone {
        border-radius: 24px;
    }

    .chat {
        min-height: auto;
    }

    .price {
        font-size: 2.3rem;
    }
    
    .plan.featured {
        transform: scale(1);
    }
    
    .plan.featured:hover {
        transform: translateY(-4px);
    }
}
