/* Zabbix4Norda Landing Page CSS */
/* Modern, responsive design for 2025 */

:root {
    --primary-color: #2a5298;
    --primary-light: #3d6db0;
    --primary-dark: #1e3c72;
    --secondary-color: #28a745;
    --accent-orange: #ff6b35;
    --accent-blue: #007bff;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-light: #e1e5e9;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.1);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    
    --transition: all 0.3s ease;
    --animation-duration: 0.6s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp var(--animation-duration) ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(42, 82, 152, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn i {
    margin-right: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: var(--font-size-lg);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    animation: fadeInRight var(--animation-duration) ease-out;
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: var(--bg-dark);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

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

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

.dashboard-title {
    font-weight: 600;
}

.dashboard-content {
    padding: 20px;
}

.metric-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
}

.metric-icon.green { background: var(--success); }
.metric-icon.blue { background: var(--info); }
.metric-icon.orange { background: var(--accent-orange); }

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.metric-value {
    font-weight: 700;
    color: var(--text-dark);
}

.chart-preview {
    margin-top: 15px;
    height: 100px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Value Propositions */
.value-props {
    padding: 80px 0;
    background: var(--white);
}

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

.prop-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.prop-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.prop-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.prop-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-visual {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: var(--white);
}

.audience-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--bg-light);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn i {
    margin-right: 8px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.audience-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--success);
    margin-right: 10px;
}

.audience-cta p {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    color: var(--text-dark);
}

/* Business Preview */
.business-preview {
    background: var(--bg-dark);
    border-radius: var(--border-radius-lg);
    padding: 20px;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.server {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.server.active {
    border-left: 4px solid var(--success);
}

.server.warning {
    border-left: 4px solid var(--warning);
}

.server-label {
    font-weight: 600;
    color: var(--text-dark);
}

.server-status {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
}

.server-status.green {
    background: var(--success);
    color: var(--white);
}

.server-status.orange {
    background: var(--warning);
    color: var(--text-dark);
}

/* Home Preview */
.home-preview {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

.home-network {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.device i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.device-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.device-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -2px;
}

.device-status.green { background: var(--success); }
.device-status.blue { background: var(--info); }

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 8px;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--success);
    margin-right: 10px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .audience-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .props-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* Trusted by Global Leaders Section */
.trusted-by {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-companies {
    margin-bottom: 4rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.company-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.company-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.company-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-category h4 i {
    color: var(--accent-blue);
}

.company-list {
    list-style: none;
    padding: 0;
}

.company-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

.company-list li:last-child {
    border-bottom: none;
}

.company-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Polish Companies Special Styling */
.poland-highlight {
    border: 2px solid #dc143c;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.poland-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #ffffff, #dc143c);
}

.poland-highlight h4 {
    color: #dc143c !important;
}

.poland-highlight h4 i {
    color: #dc143c !important;
}

.poland-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dc143c, #b71c1c);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    justify-content: center;
}

.poland-badge i {
    color: #ffcdd2;
}

.verification-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: var(--transition);
}

.verification-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Privacy Highlighting */
.privacy-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border-left: 4px solid var(--success);
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: var(--border-radius);
}

.privacy-highlight i {
    color: var(--success) !important;
    font-size: 1.2rem;
}

.privacy-card {
    border: 2px solid var(--success);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff0 100%);
    position: relative;
}

.privacy-card::before {
    content: 'Zgodne z RODO';
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.privacy-card .feature-icon {
    background: linear-gradient(135deg, var(--success), #20c997);
}

/* Trust Indicators */
.trust-indicators {
    margin: 4rem 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-stat:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Security Assurance */
.security-assurance {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.security-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-visual {
    position: relative;
}

.security-illustration {
    position: relative;
    height: 350px;
}

.shield-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shield-main {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: pulse-security 3s ease-in-out infinite;
}

@keyframes pulse-security {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4); }
}

.security-badges {
    position: relative;
}

.security-badge {
    position: absolute;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.security-badge i {
    font-size: 0.9rem;
}

.badge-1 {
    top: -40px;
    left: -60px;
    animation-delay: 0s;
}

.badge-2 {
    top: -40px;
    right: -60px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: -40px;
    left: -60px;
    animation-delay: 2s;
}

.badge-4 {
    bottom: -40px;
    right: -60px;
    animation-delay: 3s;
}

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

.data-flow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 280px;
}

.server-icon, .monitoring-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.server-icon i, .monitoring-icon i {
    font-size: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
}

.server-icon span, .monitoring-icon span {
    font-size: 0.8rem;
    font-weight: 600;
}

.encrypted-connection {
    flex: 1;
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, var(--success), var(--primary-color));
    border-radius: 2px;
}

.encryption-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}


.security-highlights {
    display: grid;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-item-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-item-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Polish Community Section */
.polish-community {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #dc143c;
}

.polish-community h3 {
    color: #dc143c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.polish-community p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.community-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.community-item i {
    color: #dc143c;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* External References */
.external-references {
    text-align: center;
    margin-top: 3rem;
}

.external-references h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.reference-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.reference-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.reference-link i {
    font-size: 0.8rem;
}

/* Responsive Design for Trusted Section */
@media (max-width: 768px) {
    .trusted-by {
        padding: 3rem 0;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-category {
        padding: 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-stat {
        padding: 1rem;
    }
    
    .assurance-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .security-assurance {
        padding: 2rem;
    }
    
    .reference-links {
        flex-direction: column;
        align-items: center;
    }
    
    .reference-link {
        width: 200px;
        justify-content: center;
    }
    
    .security-assurance {
        padding: 3rem 0;
    }
    
    .security-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .security-illustration {
        height: 250px;
    }
    
    .shield-main {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .security-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .badge-1, .badge-2, .badge-3, .badge-4 {
        position: static;
        margin: 0.5rem;
        display: inline-flex;
    }
    
    .security-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .data-flow {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 2rem;
        justify-content: center;
    }
}

/* Enhanced Pricing Styles */
.pricing .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Pricing Badges */
.basic-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.featured-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.enterprise-badge {
    background: linear-gradient(135deg, #6f42c1, #5a36a3);
    color: white;
}

/* Enhanced Feature Lists */
.pricing-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pricing-features ul li i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.text-muted {
    color: var(--text-muted) !important;
}

.opacity-50 {
    opacity: 0.5;
}

.text-success {
    color: var(--success) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Pricing Notes */
.pricing-note {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.featured-note {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.featured-note i {
    color: var(--success);
}

/* Value Proposition Section */
.pricing-value-prop {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.pricing-value-prop h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-value-prop > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.revenue-model {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.revenue-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.revenue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.revenue-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.revenue-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Utility Classes for Pricing */
.opacity-50 {
    opacity: 0.5 !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Enhanced pricing features visibility */
.pricing-features ul li.feature-disabled {
    opacity: 0.6;
}

.pricing-features ul li.feature-disabled i {
    color: #ccc !important;
}

/* Enhanced pricing features styling */
.pricing-features ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-features ul li {
    padding: 0.4rem 0;
    transition: background-color 0.2s ease;
}

.pricing-features ul li:hover {
    background-color: rgba(74, 144, 226, 0.05);
    border-radius: 4px;
    padding: 0.4rem 0.5rem;
}

/* Featured card enhancements */
.pricing-card.featured .pricing-features ul li:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

/* Better spacing for pricing content */
.price-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Final CTA */
.pricing-final-cta {
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
}

.pricing-final-cta h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-final-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Pricing Enhancements */
@media (max-width: 768px) {
    .pricing-value-prop {
        padding: 2rem 1rem;
    }
    
    .revenue-model {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .revenue-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .pricing-final-cta {
        padding: 2rem 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons .btn {
        width: 250px;
    }
}