:root {
    --primary: #3F51B5;
    --primary-hover: #303F9F;
    --accent: #00E676;
    --bg-dark: #12131C;
    --card-bg: #1E1E2F;
    --card-border: #2E334D;
    --text-light: #FFFFFF;
    --text-muted: #9CA3AF;
    --gradient: linear-gradient(135deg, #3F51B5 0%, #7C4DFF 100%);
    --gradient-text: linear-gradient(135deg, #8C9EFF 0%, #00E676 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}

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

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

/* Typography & Helpers */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(63, 81, 181, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.glassmorphism {
    background: rgba(30, 30, 47, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 18px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 19, 28, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.logo .highlight {
    color: #8C9EFF;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    padding: 80px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(63, 81, 181, 0.15);
    border: 1px solid rgba(140, 158, 255, 0.3);
    color: #8C9EFF;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-accent {
    background: rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
    color: var(--accent);
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.hero-contact-strip {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s;
}

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

.wa-pill {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.email-pill {
    background: rgba(63, 81, 181, 0.15);
    border-color: rgba(63, 81, 181, 0.3);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stats-row {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Mockup Card */
.mockup-card {
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-title {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 10px;
}

.dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-stat-card {
    background: rgba(255,255,255,0.04);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.preview-table {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 8px;
    font-size: 12px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.table-row.head {
    font-weight: 700;
    color: var(--text-muted);
}

.tag {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    text-align: center;
}
.tag-success { background: rgba(0, 230, 118, 0.2); color: #00E676; }
.tag-warning { background: rgba(255, 189, 46, 0.2); color: #FFBD2E; }

.preview-export-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    background: rgba(63, 81, 181, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
}

.badge-sub {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}
.badge-sub.green { background: #1B5E20; color: white; }
.badge-sub.red { background: #B71C1C; color: white; }

/* NEW SECTION: Online Web Platform */
.online-section {
    padding: 90px 0;
}

.online-card {
    padding: 50px;
}

.online-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.online-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 15px 0;
}

.lead-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.online-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.online-feat {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feat-icon {
    font-size: 28px;
    background: rgba(63, 81, 181, 0.15);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(63, 81, 181, 0.3);
}

.online-feat h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.online-feat p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Phone Mockup */
.phone-mockup {
    padding: 15px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.phone-screen {
    background: #151624;
    border-radius: 12px;
    overflow: hidden;
    font-size: 12px;
}

.phone-header {
    background: var(--primary);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.phone-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px;
    border-radius: 8px;
}

.p-card.warning {
    border-color: rgba(255, 189, 46, 0.4);
    background: rgba(255, 189, 46, 0.05);
}

.p-name {
    font-weight: bold;
    color: white;
}

.p-dept {
    color: var(--text-muted);
    font-size: 11px;
}

.p-time {
    color: var(--accent);
    font-size: 11px;
    margin-top: 4px;
}

.phone-btn {
    background: var(--gradient);
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 5px;
}

/* Features Section */
.features-section {
    padding: 90px 0;
    background: rgba(0,0,0,0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 25px;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* Calculator */
.calculator-section {
    padding: 80px 0;
}

.calc-card {
    padding: 40px;
    text-align: center;
}

.calc-form {
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}

.range-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.calc-results {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}

.res-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.res-lbl {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 90px 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.contact-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    background: rgba(0, 230, 118, 0.1);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-size: 14px;
    transition: transform 0.3s;
}

.floating-wa-btn:hover {
    transform: scale(1.05);
}

.wa-icon {
    font-size: 22px;
}

@media (max-width: 900px) {
    .hero-grid, .online-grid, .features-grid, .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .online-card {
        padding: 25px;
    }
}
