:root {
    --primary: #4cafd1;
    --primary-dark: #3a8da9;
    --secondary: #343d57;
    --accent: #ff6b6b;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --gradient-start: #4cafd1;
    --gradient-end: #6a11cb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-login {
    background: transparent;
    color: var(--dark);
    padding: 10px 20px;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-large {
    padding: 15px 35px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
}

.logo-text {
    color: var(--secondary);
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0);
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--light);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta .btn-secondary {
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: var(--secondary);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .dashboard-mockup {
        transform: none;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
        display: block;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.integration-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.integration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.integration-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.integration-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
}

.integrations-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

.integrations-cta p {
    margin-bottom: 20px;
    color: white;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--light);
}

.pricing-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-header p {
    color: var(--gray);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i.fa-check {
    color: #28a745;
}

.pricing-features i.fa-times {
    color: #dc3545;
}

.pricing-cta {
    text-align: center;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.final-cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-feature i {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}


:root {
    --primary: #4cafd1;
    --primary-dark: #3a8da9;
    --secondary: #343d57;
    --accent: #ff6b6b;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --gradient-start: #4cafd1;
    --gradient-end: #6a11cb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-login {
    background: transparent;
    color: var(--dark);
    padding: 10px 20px;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-large {
    padding: 15px 35px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
}

.logo-text {
    color: var(--secondary);
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Features Hero Section */
.features-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.features-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.features-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Overview */
.features-overview {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--light-gray);
}

.features-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-color: transparent;
}

/* Feature Categories */
.feature-category {
    display: none;
    padding: 80px 0;
}

.feature-category.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-benefits {
    list-style: none;
    text-align: left;
    margin-top: auto;
}

.feature-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--dark);
}

.feature-benefits li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Feature Comparison */
.feature-comparison {
    padding: 100px 0;
    background: var(--light);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--secondary);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

.comparison-table i.fa-check {
    color: #28a745;
    font-size: 18px;
}

.comparison-table i.fa-times {
    color: #dc3545;
    font-size: 18px;
}

/* Features CTA */
.features-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.features-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.features-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.features-cta .btn-secondary {
    color: white;
    border-color: white;
}

.features-cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: var(--secondary);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
        display: block;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    
    .features-hero {
        padding: 130px 0 60px;
    }
    
    .features-hero-content h1 {
        font-size: 2rem;
    }
    
    .features-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .features-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Trusted By Section */
.trusted {
    padding: 100px 0;
    background: var(--light);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trusted-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.trusted-cta p {
    color: var(--gray);
    font-size: 1.1rem;
}

.trusted-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.trusted-cta a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .logo-item {
        height: 100px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .logo-item {
        height: 80px;
        padding: 15px;
    }
    
    .logo-item img {
        max-height: 50px;
    }
    
    .trusted-cta p {
        font-size: 1rem;
    }
}

/* Integrations Hero Section */
.integrations-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.integrations-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.integrations-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Integrations Workflow Section */
.integrations-workflow {
    padding: 100px 0;
    background: white;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 50px auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.step-content p {
    color: var(--gray);
}

/* FTP Integration Section */
.ftp-integration {
    padding: 100px 0;
    background: var(--light);
}

.ftp-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.ftp-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.ftp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.ftp-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.ftp-content p {
    color: var(--gray);
}

.ftp-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.diagram-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 120px;
}

.diagram-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.diagram-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.diagram-arrow i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* File Format Section */
.file-format {
    padding: 100px 0;
    background: white;
}

.format-example {
    max-width: 900px;
    margin: 50px auto;
}

.format-table {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.format-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.format-table th, .format-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.format-table th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
}

.format-table tr:last-child td {
    border-bottom: none;
}

.format-download {
    text-align: center;
}

.format-download p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* Security Section */
.security {
    padding: 100px 0;
    background: #f2f2f2;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.security-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 auto 25px;
}

.security-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.security-card p {
    color: var(--gray);
}

/* Integrations Support Section */
.integrations-support {
    padding: 100px 0;
    background: white;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid var(--light-gray);
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 25px;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.support-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.support-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--primary-dark);
}

/* Integrations CTA Section */
.integrations-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.integrations-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.integrations-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.integrations-cta .btn-secondary {
    color: white;
    border-color: white;
}

.integrations-cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .integrations-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ftp-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ftp-diagram {
        flex-direction: column;
        gap: 30px;
    }
    
    .diagram-arrow i {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .workflow-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .security-features, .support-options {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .integrations-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .integrations-hero-content h1 {
        font-size: 2rem;
    }
    
    .ftp-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .format-table th, .format-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

/* Support Hero Section */
.support-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.support-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.support-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.support-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.support-search input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.support-search input:focus {
    border-color: var(--primary);
}

.support-search button {
    white-space: nowrap;
}

/* Support Options Section */
.support-options {
    padding: 100px 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid var(--light-gray);
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 auto 25px;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.support-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.support-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.support-card li {
    margin-bottom: 8px;
}

.support-card li a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-card li a:hover {
    color: var(--primary);
}

.support-card li a:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
}

.support-info {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: left;
}

.support-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Support FAQ Section */
.support-faq {
    padding: 100px 0;
    background: var(--light);
}

.faq-categories {
    max-width: 900px;
    margin: 50px auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category h3 i {
    color: var(--primary);
}

.faq-items {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Contact Support Section */
.contact-support {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.method-info p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.method-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Resources Section */
.resources {
    padding: 100px 0;
    background: var(--light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 25px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.resource-card ul {
    list-style: none;
    text-align: left;
}

.resource-card li {
    margin-bottom: 8px;
}

.resource-card li a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-card li a:hover {
    color: var(--primary);
}

.resource-card li a:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .support-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .support-search {
        flex-direction: column;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .support-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Documentation Hero Section */
.docs-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.docs-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.docs-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.docs-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.docs-search input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.docs-search input:focus {
    border-color: var(--primary);
}

/* Documentation Navigation */
.docs-nav {
    padding: 50px 0;
    background: white;
}

.docs-nav .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.docs-category {
    margin-bottom: 30px;
}

.docs-category h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.docs-category h3 i {
    color: var(--primary);
}

.docs-category ul {
    list-style: none;
}

.docs-category li {
    margin-bottom: 8px;
}

.docs-category a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
}

.docs-category a:hover,
.docs-category a.active {
    background: var(--primary);
    color: white;
}

/* Documentation Content */
.docs-content {
    min-height: 800px;
}

.docs-section {
    display: none;
    margin-bottom: 60px;
}

.docs-section.active {
    display: block;
}

.docs-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.docs-section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.docs-section h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--dark);
}

/* Architecture Diagram */
.architecture-diagram {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.arch-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.arch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.arch-content h4 {
    margin: 0 0 5px 0;
    color: var(--secondary);
}

.arch-arrow {
    text-align: center;
    margin: 10px 0;
    color: var(--primary);
}

/* Code Blocks */
.code-block {
    background: #2d2d2d;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.code-header {
    background: #1a1a1a;
    padding: 12px 20px;
    color: #ccc;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border-bottom: 1px solid #444;
}

.code-block pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    color: #f8f8f2;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.service-card h4 {
    margin: 0 0 10px 0;
    color: var(--primary);
}

.service-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Endpoint Table */
.endpoint-table {
    overflow-x: auto;
    margin: 20px 0;
}

.endpoint-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.endpoint-table th,
.endpoint-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.endpoint-table th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
}

.endpoint-table code {
    background: var(--light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary);
}

/* Field Definitions */
.field-definitions {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.field-def {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.field-def h4 {
    margin: 0 0 5px 0;
    color: var(--secondary);
}

.field-def p {
    margin: 0;
    color: var(--gray);
}

/* Connection Details */
.connection-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Directory Tree */
.directory-tree {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Courier New', monospace;
}

.tree-item {
    margin-bottom: 5px;
    color: var(--dark);
}

/* Webhook Events */
.webhook-events {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.webhook-event {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.webhook-event h4 {
    margin: 0 0 10px 0;
    color: var(--secondary);
}

.webhook-event p {
    margin: 0;
    color: var(--gray);
}

/* Documentation Support */
.docs-support {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.support-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.support-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .docs-nav .container {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .docs-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .docs-search {
        flex-direction: column;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .architecture-diagram {
        padding: 20px;
    }
    
    .arch-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .docs-hero-content h1 {
        font-size: 2rem;
    }
    
    .docs-section h2 {
        font-size: 1.6rem;
    }
    
    .code-block pre {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* Privacy Hero Section */
.privacy-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.privacy-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.privacy-hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.hero-description {
    font-size: 1.2rem !important;
    margin-top: 15px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Privacy Content Section */
.privacy-content {
    padding: 50px 0;
    background: white;
}

.privacy-content .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.privacy-nav {
    position: sticky;
    top: 100px;
}

.nav-sticky {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.nav-sticky h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.nav-sticky ul {
    list-style: none;
}

.nav-sticky li {
    margin-bottom: 8px;
}

.nav-sticky a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-sticky a:hover,
.nav-sticky a.active {
    background: var(--primary);
    color: white;
}

/* Privacy Main Content */
.privacy-main {
    min-height: 1000px;
}

.privacy-section {
    display: none;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section.active {
    display: block;
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.privacy-section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.privacy-section h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h4 i {
    color: var(--primary);
}

/* Notice Boxes */
.notice-box {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-box.important {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.notice-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-box.important .notice-icon {
    color: #856404;
}

.notice-content h4 {
    margin: 0 0 8px 0 !important;
    color: var(--secondary);
}

.notice-content p {
    margin: 0;
    color: var(--gray);
}

/* Data Categories */
.data-category {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.data-category ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.data-category li {
    margin-bottom: 5px;
    color: var(--gray);
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.usage-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
}

.usage-card h4 {
    margin: 0 0 10px 0 !important;
    color: var(--secondary);
}

.usage-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Tables */
.sharing-table,
.retention-table {
    overflow-x: auto;
    margin: 20px 0;
}

.sharing-table table,
.retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sharing-table th,
.sharing-table td,
.retention-table th,
.retention-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.sharing-table th,
.retention-table th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
}

/* Security Measures */
.security-measures {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.security-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.security-content h4 {
    margin: 0 0 8px 0 !important;
    color: var(--secondary);
}

.security-content p {
    margin: 0;
    color: var(--gray);
}

/* Protection Steps */
.protection-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.protection-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 8px 0 !important;
    color: var(--secondary);
}

.step-content p {
    margin: 0;
    color: var(--gray);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.right-card h4 {
    margin: 0 0 10px 0 !important;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-card h4 i {
    color: var(--primary);
}

.right-card p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Cookie Controls */
.cookie-controls {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.cookie-controls h4 {
    margin: 0 0 10px 0 !important;
    color: var(--secondary);
}

.cookie-controls p {
    margin: 0 0 15px 0;
    color: var(--gray);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-method i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.contact-method h4 {
    margin: 0 0 8px 0 !important;
    color: var(--secondary);
}

.contact-method p {
    margin: 0;
    color: var(--gray);
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Privacy Actions */
.privacy-actions {
    padding: 80px 0;
    background: var(--light);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.action-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.action-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.action-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .privacy-content .container {
        grid-template-columns: 1fr;
    }
    
    .privacy-nav {
        position: static;
        margin-bottom: 40px;
    }
    
    .nav-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .security-card,
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .protection-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .privacy-hero-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .sharing-table table,
    .retention-table table {
        font-size: 0.8rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

/* Terms Hero Section */
.terms-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.terms-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.terms-hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.hero-description {
    font-size: 1.2rem !important;
    margin-top: 15px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Terms Content Section */
.terms-content {
    padding: 50px 0;
    background: white;
}

.terms-content .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.terms-nav {
    position: sticky;
    top: 100px;
}

.nav-sticky {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    max-height: 80vh;
    overflow-y: auto;
}

.nav-sticky h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: sticky;
    top: 0;
    background: var(--light);
    padding-bottom: 10px;
}

.nav-sticky ul {
    list-style: none;
}

.nav-sticky li {
    margin-bottom: 8px;
}

.nav-sticky a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.4;
}

.nav-sticky a:hover,
.nav-sticky a.active {
    background: var(--primary);
    color: white;
}

/* Terms Main Content */
.terms-main {
    min-height: 1200px;
}

.terms-section {
    display: none;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section.active {
    display: block;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.terms-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--secondary);
}

.terms-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark);
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--dark);
}

/* Terms Notice Boxes */
.terms-notice {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.terms-notice.important {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.terms-notice .notice-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.terms-notice.important .notice-icon {
    color: #856404;
}

.terms-notice .notice-content h4 {
    margin: 0 0 8px 0 !important;
    color: var(--secondary);
    font-size: 1.1rem;
}

.terms-notice.important .notice-content h4 {
    color: #856404;
}

.terms-notice .notice-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Details */
.contact-details {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h4 {
    margin: 0 0 8px 0 !important;
    color: var(--secondary);
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0 0 5px 0 !important;
    color: var(--dark);
}

.contact-item small {
    color: var(--gray);
    font-size: 0.8rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Acceptance Section */
.acceptance-section {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.acceptance-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.acceptance-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.acceptance-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Numbered Sections Enhancement */
.terms-section h2 {
    counter-increment: section;
    position: relative;
}

.terms-section h2::before {
    content: counter(section) ".";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

.terms-section h3 {
    counter-increment: subsection;
    position: relative;
    padding-left: 25px;
}

.terms-section h3::before {
    content: counter(section) "." counter(subsection);
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.9em;
}

/* Reset counters for each section */
.terms-section {
    counter-reset: subsection;
}

/* Responsive Design */
@media (max-width: 992px) {
    .terms-content .container {
        grid-template-columns: 1fr;
    }
    
    .terms-nav {
        position: static;
        margin-bottom: 40px;
    }
    
    .nav-sticky {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .acceptance-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .terms-hero-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.4rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .terms-section h3::before {
        font-size: 0.8em;
    }
    
    .terms-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-sticky {
        padding: 20px;
    }
}

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark);
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 auto 25px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background: rgb(242, 242, 242);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--light);
}

.advantages {
    max-width: 800px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.advantage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 60px;
}

.advantage-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.advantage-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-cta {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.team-cta p {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    font-style: italic;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
     background: rgb(163 180 235);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f3f5f9;
}

.cta-content p {
    font-size: 1.2rem;
    color: #eef2f5;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advantage-number {
        min-width: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .mv-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(76, 175, 209, 0.1) 0%, rgba(106, 17, 203, 0.1) 100%);
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pricing-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Toggle Section */
.pricing-toggle {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-gray);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-switcher small {
    color: var(--primary);
    font-weight: 600;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 80px 0;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-header p {
    color: var(--gray);
    margin-bottom: 20px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i.fa-check {
    color: #28a745;
}

.pricing-features i.fa-times {
    color: #dc3545;
}

/* Features Comparison Section */
.features-comparison {
    padding: 100px 0;
    background: white;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 50px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--secondary);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

.comparison-table i.fa-check {
    color: #28a745;
    font-size: 18px;
}

.comparison-table i.fa-times {
    color: #dc3545;
    font-size: 18px;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 100px 0;
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray);
    line-height: 1.7;
}

/* Pricing CTA Section */
.pricing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.pricing-cta .btn-secondary {
    color: white;
    border-color: white;
}

.pricing-cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-switcher {
        flex-direction: column;
        gap: 10px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .pricing-hero-content h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .pricing-cta h2 {
        font-size: 2rem;
    }
}

.login-card {
  display: flex;
  max-width: 900px;
  margin: 50px auto; /* centers the card */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left side */
.login-left {
  flex: 1;
  background-color: #f0f4ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.login-left h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.login-left p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.login-left img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Right side */
.login-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #222;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #444;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus {
  border-color: #007bff;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #007bff;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #0056b3;
}

.signup-text {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.signup-text a {
  color: #007bff;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .login-card {
    flex-direction: column;
    max-width: 95%;
  }

  .login-left, 
  .login-right {
    flex: unset;
    width: 100%;
    padding: 30px;
  }
}

.error {
  color: red;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.forgot-card {
  display: flex;
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.forgot-left {
  flex: 1;
  background-color: #f0f4ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.forgot-left h1 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #333;
}

.forgot-left p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.forgot-left img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.forgot-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.forgot-right h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #222;
}

.dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #f9f9f9;
}

.dashboard-container {
  display: flex;
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #333;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  overflow-y: auto;   /* ✅ allow scrolling */
  padding: 2rem 0;    /* some breathing space top/bottom */
}

.modal-content {
  background: #fff;
  margin: 80px auto;   /* push down by header height */
  padding: 2rem;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

  max-height: calc(90vh - 80px);  /* adjust for header */
  overflow-y: auto;
}


.close-btn {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

form input, form select {
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
}

form input:focus, form select:focus {
  border-color: #007BFF;
  outline: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-btn {
  background: #007BFF;
  color: #fff;
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #0056b3;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
  margin-top: 100px; /* space from header */
  margin-left: 30px;
  margin-right: 30px;
  box-sizing: border-box;
  gap: 25px; /* space between sidebar and content */
}


/* ====== Sidebar ====== */
/* Sidebar */
.sidebar {
  width: 220px;
  background: #2c3e50;
  color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  /* Reduce height */
  height: auto;           /* let content determine height */
  max-height: 40vh;       /* max height relative to viewport */
  margin-right: 25px;
  overflow-y: auto;       /* scroll if content exceeds height */
  margin-top: 112px;
}


.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-logo img {
  max-width: 140px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu li {
  margin-bottom: 10px;
}
.menu-link {
  display: block;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}
.menu-link:hover,
.menu-link.active {
  background: #34495e;
}

/* ====== Main Content ====== */
.dashboard-content {
  flex: 1;
  padding: 40px;
  background: #f1f5f9;
  overflow-y: auto;
}

/* ====== Form Card ====== */
.integration-form {
  max-width: 500px;
  background: #fff;
  margin: 0 auto;
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.integration-form h2 {
  margin-bottom: 7px;
  color: #333;
}

.integration-form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
  color: #1e293b;
}

.integration-form input,
.integration-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-top: 5px;
}

.integration-form h3 {
  margin-top: 25px;
  color: #333;
}

/* ====== Checkbox ====== */
.checkbox {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 14px;
  accent-color: #1e40af;
  cursor: pointer;
}
.checkbox label {
  font-size: 14px;
  line-height: 1.4;
}
.checkbox a {
  color: #1e40af;
  text-decoration: underline;
}

/* ====== Submit Button ====== */
.submit-btn {
  margin-top: 25px;
  padding: 12px 20px;
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #1d4ed8;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    border-radius: 0;
  }
  .menu li {
    display: inline-block;
    margin-right: 10px;
  }
  .integration-form {
    max-width: 100%;
    padding: 20px;
  }
}