 :root {
    --primary-color: #2d6a4f;
    --secondary-color: #52b788;
    --accent-color: #95d5b2;
    --dark-color: #1b5e3f;
    --light-bg: #f8f9fa;
}


html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

.container {
    border-top: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 0;
    margin: 0;
    background-color: #f8f9fa;
    border: none !important;  /* NEU */
}




body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 0;
    margin: 0;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(45, 106, 79, 0.95) !important;
    top: 0;
    min-height: 60px;
    backdrop-filter: blur(10px);
    z-index: 1040;
    position: fixed;
    width: 100%;
    border-bottom: none !important;
    box-shadow: none !important;
    border: none !important;
}
.navbar-brand,
.nav-link {
    color: white !important;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--primary-color);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d6a4f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hamburger to X animation */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e") !important;
}

.navbar.scrolled .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d6a4f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e") !important;
}

/* Logo transition */
.navbar-brand img {
    transition: opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    margin-top: 60px;
    padding-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(-35deg);
}

/* Category Navigation */
.category-nav {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: -50px auto 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.category-btn {
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-color);
    display: inline-block;
}

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

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Feature Sections */
.feature-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    scroll-margin-top: 140px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.section-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(145deg, #ffffff, var(--light-bg));
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.feature-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 10px;
}

.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #6b5b00;
}

.new-badge {
    background: #ff6b6b;
    color: white;
}

/* Feature Details */
.feature-details {
    margin-top: 15px;
    padding-left: 20px;
}

.feature-details li {
    margin-bottom: 10px;
    position: relative;
}

.feature-details li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e6ed;
}

.comparison-table tr:hover {
    background: var(--light-bg);
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.x-icon {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Screenshots */
.screenshot-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.screenshot-container img {
    width: 100%;
    height: auto;
}

/* Info Boxes */
.info-box {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 60px 0;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--dark-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-section {
        padding: 25px;
    }
    
    .category-nav {
        position: static;
        margin: -30px 15px 30px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-icon {
        margin: 0 0 15px 0;
    }
}    
