:root {
    --primary: #fd8d3c;
    /* --secondary: #2E75B6; */
    --secondary: #ff0000;
    --dark: #1a1a1a;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #fd8d3c 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: cover;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p.lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-custom {
    background: #e67a2a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: #fff;
    color: #e67a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 141, 60, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #fd8d3c !important;
    }


.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 117, 182, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #fd8d3c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

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

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.language-switcher {
    position: absolute;   /* IMPORTANT */
    bottom: 20px;
    right: 40px;
    z-index: 9999;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-item h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.stats-section {
    background: linear-gradient(135deg,  #fff 0%, #fff 100%);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    color:  var(--primary);
}

.security-badge {
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 10px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.use-case-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.use-case-card:hover {
    border-color: var(--primary);
    background: white;
}

.use-case-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #fd8d3c 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="150" r="60" fill="rgba(255,255,255,0.05)"/></svg>');
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    background: transparent;
}

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

.display-4 {
    font-size: 2.5rem;
}


@media (max-width: 640px) {

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }

    #calls {
        display: none;
    }

    #first {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1rem;   
        text-align: center;     
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    #ask_demo {
        margin-top: 20px;
        margin-left: 30px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

}