﻿
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #3A5AA4;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .btn-primary:hover {
        background-color: #4338ca;
    }

.btn-block {
    width: 100%;
    border-radius: 12px;
    padding: 12px;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

    .nav-links a:hover {
        color: #3A5AA4;
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 48px 0 80px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 320px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.underline-highlight {
    text-decoration: underline;
    text-decoration-color: #6366f1;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

.hero-desc {
    margin-top: 24px;
    color: #64748b;
    font-size: 18px;
    max-width: 500px;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-btn {
    color: #3A5AA4;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-wrapper {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    background-color: #e0e7ff;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 440px;
}

    .hero-card img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        display: block;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.floating-badge {
    position: absolute;
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #f1f5f9;
}

.badge-top-right {
    top: -16px;
    right: -16px;
}

.badge-bottom-left {
    bottom: -24px;
    left: -16px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Banners & Social Proof */
.banner {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 48px 0;
    text-align: center;
}

.banner-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.banner-sub {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.brand-logos {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0.7;
}

.brand-item {
    font-weight: 700;
    font-size: 18px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Typography */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.section-subtitle {
    margin-top: 12px;
    color: #64748b;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 96px 0;
}

.tab-bar {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.tab-container {
    background-color: #f1f5f9;
    padding: 6px;
    border-radius: 9999px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    border: none;
    background: transparent;
    cursor: pointer;
}

    .tab-btn.active {
        background-color: #ffffff;
        color: #3A5AA4;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

.pricing-grid {
    margin-top: 48px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    display: none;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .pricing-card.popular {
        border: 2px solid #3A5AA4;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.plan-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    display: inline-block;
    background-color: #f1f5f9;
    color: #475569;
}

    .plan-tag.popular-tag {
        background-color: #e0e7ff;
        color: #3A5AA4;
    }

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 24px;
    display: flex;
    align-items: baseline;
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    color: #475569;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .feature-item i {
        color: #3A5AA4;
        font-size: 12px;
    }

/* Tools Grid */
.tools-section {
    padding: 64px 0;
}

.tools-grid {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.tool-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #e0e7ff;
    color: #3A5AA4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

/* Solutions Section */
.solutions-section {
    padding: 0 0 60px 0;
}

.solutions-section li{
    color:#0f172a;
    font-weight:500;
}

.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.solutions-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.solution-card {
    flex: 1;
    min-width: 280px;
    cursor: pointer;
}

.solution-image {
    border-radius: 16px;
    overflow: hidden;
    height: 224px;
}

    .solution-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.solution-card:hover img {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    max-width: 896px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

    .faq-item.active {
        border: 2px solid #3A5AA4;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

.faq-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Footer */
footer {
    background-color: #020617;
    color: #94a3b8;
    font-size: 12px;
    padding-top: 64px;
    padding-bottom: 48px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-col {
    min-width: 160px;
}

.footer-col-main {
    max-width: 280px;
}

.footer-col h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 38px;
    }

    .tool-card {
        flex: 1 1 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    body{
        padding-left:30px;
        padding-right:30px;
    }

    footer {
        margin-left: -30px;
        margin-right: -30px;
    }
}

.btn-primary:hover {
    background-color: #3A5AA4;
}

.show-priceplan{
    display:flex;
}

.show-productdemo{
    display:flex;
}

.demo-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.demo-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#contacts{
    line-height:2;
}

#contacts a{
    color: #3A5AA4;
    font-size:larger;
    text-transform:uppercase;
    text-decoration:underline;
}

.faq-item p{
    font-size:12px;
    font-weight:500;
    line-height:1.6;
}

.faq-header{

}

.faq-item i {
    color: #94a3b8;
    font-size: 12px;
}