:root {
    --theme-blue: #303B44;
    --theme-green: #3AB434;
    --theme-blue-light: #4F5A6E;
    --theme-dark: #232B32;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --bg-light: #f4f6f9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

/* Header */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    background-color: rgba(48, 59, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--theme-green), #82e87c);
    z-index: 1100;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
}

.logo span {
    color: var(--theme-green);
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--theme-green);
    transition: var(--transition);
}

.navbar a:hover {
    color: var(--text-white);
}

.navbar a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--text-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone-link:hover {
    color: var(--theme-green);
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-sm:hover {
    background: var(--theme-green);
    border-color: var(--theme-green);
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-green) 0%, #2e9629 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(58, 180, 52, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 180, 52, 0.4);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--theme-blue);
    border-color: var(--text-white);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--theme-green);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(255,255,255,0.6);
    pointer-events: none;
}
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hamburger {
    display: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--theme-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(58, 180, 52, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(79, 90, 110, 0.3) 0%, transparent 40%);
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    z-index: 2;
}

.hero-text {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.hero-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(58, 180, 52, 0.15);
    color: var(--theme-green);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(58, 180, 52, 0.3);
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text h1 span {
    background: linear-gradient(120deg, var(--theme-green), #82e87c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-gray);
    max-width: 550px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.stat-item i {
    color: var(--theme-green);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Visual - CSS Dashboard */
.hero-visual {
    flex: 1;
    perspective: 1000px;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
    transition-delay: 0.2s;
}

.hero-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.mockup-container {
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-container:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-screen {
    background: #1e252b;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    height: 350px;
}

.screen-header {
    background: #2a343d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.screen-title {
    margin-left: 15px;
    font-size: 12px;
    color: #6c7a89;
    font-family: monospace;
}

.screen-body {
    display: flex;
    height: calc(100% - 35px);
}

.sidebar {
    width: 60px;
    background: #232b32;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.menu-item {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #586673;
    cursor: pointer;
    transition: 0.3s;
}

.menu-item.active, .menu-item:hover {
    background: rgba(58, 180, 52, 0.2);
    color: var(--theme-green);
}

.main-content {
    flex: 1;
    padding: 20px;
    background: #1e252b;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-fake {
    width: 150px;
    height: 30px;
    background: #2a343d;
    border-radius: 6px;
}

.user-fake {
    width: 30px;
    height: 30px;
    background: #2a343d;
    border-radius: 50%;
}

.stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card-mini {
    flex: 1;
    height: 70px;
    background: #2a343d;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.stat-card-mini::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.stat-card-mini.green::after { background: var(--theme-green); }
.stat-card-mini.blue::after { background: #3498db; }
.stat-card-mini.orange::after { background: #e67e22; }

.chart-area {
    height: 120px;
    background: #2a343d;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px 20px;
}

.chart-bar {
    width: 30px;
    background: rgba(58, 180, 52, 0.5);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.floating-card {
    position: absolute;
    background: rgba(48, 59, 68, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
}

.card-1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.card-1 i { color: var(--theme-green); }

.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

.card-2 i { color: #3498db; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Features Advanced */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header .subtitle {
    display: block;
    color: var(--theme-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 38px;
    color: var(--theme-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    color: var(--theme-blue-light);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(40px);
}

.feature-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: transparent;
}

.feature-box.highlight {
    background: var(--theme-blue);
    color: white;
    border: none;
}

.feature-box.highlight h3, .feature-box.highlight p, .feature-box.highlight .feature-list li {
    color: white;
}

.feature-box.highlight .feature-list li i {
    color: var(--theme-green);
    background: rgba(255,255,255,0.1);
}

.f-icon-bg {
    width: 60px;
    height: 60px;
    background: rgba(58, 180, 52, 0.1);
    color: var(--theme-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.feature-box.highlight .f-icon-bg {
    background: rgba(255,255,255,0.1);
    color: var(--theme-green);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--theme-blue);
}

.feature-box p {
    color: var(--theme-blue-light);
    margin-bottom: 25px;
    font-size: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--theme-blue-light);
}

.feature-list li i {
    width: 20px;
    height: 20px;
    background: rgba(58, 180, 52, 0.1);
    color: var(--theme-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Modules */
.bg-dark {
    background-color: var(--theme-dark);
    color: white;
}

.section-header.light h2 {
    color: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.module-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.module-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.module-card:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.03);
}

.module-card i {
    font-size: 32px;
    color: var(--theme-green);
    margin-bottom: 20px;
}

.module-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.module-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats */
.stats-section {
    background: var(--theme-green);
    padding: 60px 0;
    color: white;
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Pricing */
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-top: 5px solid var(--theme-green);
}

.pricing-header {
    padding: 40px;
    text-align: center;
    background: #f8fcf8;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    color: var(--theme-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--theme-green);
    margin-bottom: 15px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 5px;
}

.price .amount {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

.price .duration {
    color: var(--theme-blue-light);
    font-size: 16px;
    margin-left: 5px;
}

.pricing-body {
    padding: 40px;
}

.pricing-body ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--theme-blue);
    font-size: 16px;
}

.pricing-body ul li i {
    color: var(--theme-green);
    font-size: 20px;
}

.pricing-footer {
    padding: 0 40px 40px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--theme-blue) 0%, #1a2228 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiMzYWI0MzQiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #1a1f24;
    color: var(--text-gray);
    padding: 80px 0 30px;
}

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

.footer-brand p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #8b9bb4;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--theme-green);
    color: white;
}

.footer h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--theme-green);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--theme-green);
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--theme-green);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #6c7a89;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-text p, .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

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

    .hero-visual {
        width: 100%;
        margin-top: 40px;
        transform: none;
    }

    .mockup-container {
        transform: none;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p, .footer h4::after {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #232b32;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: -1;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .navbar.active {
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .header-right {
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .mockup-screen {
        height: 250px;
    }

    .card-1 { right: -10px; }
    .card-2 { left: -10px; }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
    }

    .stats-wrapper {
        gap: 40px;
    }
}
