


body,
html {
    background: #ffffff !important;
    background-attachment: scroll !important;
}


.navbar-custom {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
}

.glass-button-nav {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white !important;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 157, 251, 0.3);
}

.glass-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 157, 251, 0.4);
    color: white !important;
    text-decoration: none;
}


.products-header::before {
    content: '';
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(58, 157, 251, 0.03) 0%, transparent 70%);
    z-index: 10;
    pointer-events: none;
}

.products-header .container {
    position: relative;
    z-index: 1;
}

.products-header h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.products-header .subtitle {
    font-size: 1.35rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}


.products-grid-section {
    background: #ffffff;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(58, 157, 251, 0.12);
    border-color: rgba(58, 157, 251, 0.3);
}

.product-image-wrapper {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, white, transparent);
}

.product-image-wrapper i {
    font-size: 6rem;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 10px 20px rgba(58, 157, 251, 0.2));
}

.product-card:hover .product-image-wrapper i {
    transform: scale(1.15) rotate(-5deg) translateY(-5px);
    opacity: 1;
    filter: drop-shadow(0 15px 30px rgba(58, 157, 251, 0.3));
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 800;
    color: #3a9dfb;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.product-features li i {
    color: #3a9dfb;
    font-size: 0.9rem;
    background: rgba(58, 157, 251, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-footer {
    margin-top: auto;
}


.why-us-section {
    padding: 100px 0;
    background: #fcfdff;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(58, 157, 251, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(58, 157, 251, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a9dfb;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white;
    transform: rotate(-10deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}


.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3a9dfb;
    box-shadow: 0 5px 15px rgba(58, 157, 251, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
}

.faq-question i {
    color: #3a9dfb;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: #666;
    line-height: 1.7;
}

.faq-question.active+.faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}


.pricing-section {
    padding: 100px 0;
    background: #f8faff;
    position: relative;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active {
    color: #3a9dfb;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #3a9dfb;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid #3a9dfb;
    box-shadow: 0 20px 60px rgba(58, 157, 251, 0.15);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(58, 157, 251, 0.3);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.price-wrapper {
    margin: 2rem 0;
    color: #333;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-enterprise {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #3a9dfb;
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: #aaa;
}

.pricing-features li.disabled i {
    color: #ddd;
}


@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .products-header h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        gap: 3rem;
    }
}


#navbarsExampleDefault.collapsing,
.navbar-collapse.collapsing {
    transition: none !important;
}
