@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #F26B38;
    --primary-dark: #D95421;
    --primary-light: #FF8F6B;
    --secondary: #1A1C1E;
    --accent: #22C55E;
    --bg: #FFFFFF;
    --bg-dark: #1A1C1E;
    --text: #1A1C1E;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(242, 107, 56, 0.4);
}

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

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

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Layout Utilities */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 991px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
}

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 15px 0;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-sync { color: var(--secondary); }
.logo-product { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    background: radial-gradient(circle at top right, #fff5f2, #ffffff);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(242, 107, 56, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-trust {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    position: relative;
}

.floating-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.stat-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(242, 107, 56, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

/* Integration Section */
.integrations {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
}

.integration-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.integration-text h3 { font-size: 1.8rem; margin-bottom: 10px; }
.integration-text p { color: #94A3B8; }

.integration-logos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.int-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #475569;
    letter-spacing: 2px;
}

/* Pricing */
.price-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 32px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.price-card.popular {
    border: 2px solid var(--primary);
    background: var(--white);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-header h3 { font-size: 1.5rem; margin-bottom: 16px; }
.price { font-size: 3rem; font-weight: 800; color: var(--secondary); margin-bottom: 30px; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.price-features {
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.price-features i { color: var(--accent); }

.full-width { width: 100%; }

/* Testimonials */
.bg-gray { background: var(--gray-50); }

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--secondary);
}

.client strong { display: block; font-size: 1.1rem; }
.client span { color: var(--text-muted); font-size: 0.9rem; }

/* Final CTA */
.cta-box {
    background: var(--primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.cta-img { width: 40%; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { padding: 60px; width: 60%; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--white); }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p { margin-top: 20px; color: #94A3B8; max-width: 300px; }
.footer-logo { max-height: 80px; width: auto; }
.footer h4 { margin-bottom: 24px; color: var(--white); }
.footer ul li { margin-bottom: 12px; color: #94A3B8; }
.footer ul li a:hover { color: var(--primary); }
.footer ul li i { color: var(--primary); margin-right: 10px; }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: #475569;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    position: relative;
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
}

.modal h3 { font-size: 1.8rem; margin-bottom: 12px; }
.modal p { color: var(--text-muted); margin-bottom: 30px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .flex-nav { padding: 0 10px; }
    .hero-content h1 { font-size: 2.8rem; }
    .cta-box { flex-direction: column; }
    .cta-img, .cta-content { width: 100%; }
    .cta-content { padding: 40px; text-align: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-content p { margin: 0 auto 40px; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { justify-content: center; }
    .stat-card { display: none; }
    .integration-banner { flex-direction: column; text-align: center; gap: 30px; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 40px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
        gap: 20px;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
}


