/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.highlight {
    color: #f76513;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #f76513;
}

.nav-cta {
    background: linear-gradient(135deg, #f76513, #ff8c42);
    color: white !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 101, 19, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 101, 19, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f76513;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 101, 19, 0.05) 0%, rgba(255, 140, 66, 0.02) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}



.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 90%;
}



.hero-cta {
    margin-bottom: 3rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(247, 101, 19, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(247, 101, 19, 0.4);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #f76513;
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid #f76513;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #f76513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 101, 19, 0.3);
}



/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.main-dashboard {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Opportunity Section */
.opportunity-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}



.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.opportunity-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.opportunity-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.opportunity-highlights {
    margin-bottom: 3rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(247, 101, 19, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.highlight-content p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

.opportunity-visual {
    position: relative;
}

.opportunity-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.about-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card.featured {
    background: rgba(247, 101, 19, 0.2);
    border-color: rgba(247, 101, 19, 0.3);
    transform: scale(1.05);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 101, 19, 0.02) 0%, rgba(255, 140, 66, 0.01) 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(247, 101, 19, 0.2);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-icon-large {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.benefits-details {
    margin-top: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    background: white;
    border-left-color: #f76513;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Application Section */
.application-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.application-text h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.application-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.application-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.app-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #374151;
}

.app-benefit i {
    color: #f76513;
    font-size: 1.125rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(247, 101, 19, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f76513, #ff8c42);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-details p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.phone-highlight {
    background: rgba(247, 101, 19, 0.1);
    color: #f76513;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: #f76513;
    font-weight: 500;
}

.urgency-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3cd, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 16px;
    padding: 1.5rem;
}

.notice-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.notice-text {
    color: #92400e;
    font-size: 0.95rem;
    font-weight: 500;
}

.application-visual {
    position: relative;
}

.app-mockup {
    position: relative;
}

.app-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.success-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.success-text {
    display: flex;
    flex-direction: column;
}

.success-title {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.success-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 2rem 0;
    color: white;
    border-top: 1px solid rgba(247, 101, 19, 0.1);
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal p {
    color: #d1d5db;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.legal-links a:hover {
    color: #f76513;
    background: rgba(247, 101, 19, 0.1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .opportunity-content,
    .application-content,
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .opportunity-text h2,
    .about-content h2,
    .application-text h2 {
        font-size: 1.875rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .opportunity-text h2,
    .application-text h2 {
        font-size: 2.25rem;
    }
    

    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-header h2,
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .info-text h2,
    .opportunity-text h2,
    .application-text h2 {
        font-size: 1.875rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .feature-card,
    .integration-card,
    .benefit-item,
    .contact-item {
        padding: 1.5rem;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    

}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #f76513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55d0e;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.nav-link:focus,
.primary-btn:focus,
.secondary-btn:focus {
    outline: 2px solid #f76513;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        padding-top: 0;
    }
}
