/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text {
    color: #475569;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #14b8a6;
}

.header.scrolled .nav-link {
    color: #475569;
}

.header.scrolled .nav-link:hover {
    color: #0d9488;
}

.cta-btn {
    background: #0d9488;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background: #0f766e;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.header.scrolled .hamburger {
    background: #475569;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    color: #475569;
    font-weight: 500;
}

.mobile-nav .nav-link:hover {
    color: #0d9488;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #0f766e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.bg-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 3s ease-in-out infinite;
}

.bg-effect-1 {
    top: 5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(20, 184, 166, 0.2);
}

.bg-effect-2 {
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 1s;
}

.bg-effect-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16rem;
    height: 16rem;
    background: rgba(168, 85, 247, 0.2);
    animation-delay: 0.5s;
}

.floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: bounce 2s ease-in-out infinite;
}

.icon-1 {
    top: 8rem;
    left: 8rem;
    animation-delay: 0.3s;
}

.icon-2 {
    top: 16rem;
    right: 8rem;
    animation-delay: 0.7s;
}

.icon-3 {
    bottom: 8rem;
    left: 16rem;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 12rem;
    right: 12rem;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 184, 166, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(134, 239, 172, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    color: #a7f3d0;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(to right, #5eead4, #7dd3fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #14b8a6, #0d9488);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to right, #0d9488, #0f766e);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(0.25rem);
}

.trust-indicators {
    color: #94a3b8;
}

.trust-indicators p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.6;
}

.company-logo {
    width: 6rem;
    height: 2rem;
    background: #64748b;
    border-radius: 0.25rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-0.25rem);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0d9488;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #64748b;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0d9488;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(to right, #0d9488, #0f766e);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #a7f3d0;
    margin-bottom: 2rem;
}

.btn-white {
    background: white;
    color: #0d9488;
}

.btn-white:hover {
    background: #f1f5f9;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #a7f3d0;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0d9488;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #0f766e;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '•';
    color: #14b8a6;
    margin-right: 0.75rem;
    font-weight: bold;
}

.service-btn {
    background: none;
    border: none;
    color: #0d9488;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #0f766e;
    transform: translateX(0.25rem);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dcfce7;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: #15803d;
    font-size: 0.875rem;
    font-weight: 600;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.features-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #0d9488;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #475569;
    font-weight: 500;
}

.features-visual {
    position: relative;
}

.dashboard {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-content {
    margin-bottom: 1.5rem;
}

.metric {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.metric-header span:first-child {
    opacity: 0.8;
}

.metric-header span:last-child {
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #10b981;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.progress.blue {
    background: #3b82f6;
}

.progress.yellow {
    background: #f59e0b;
}

.dashboard-footer {
    font-size: 0.875rem;
    opacity: 0.8;
}

.floating-element {
    position: absolute;
    border-radius: 1rem;
    opacity: 0.2;
}

.element-1 {
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    animation: pulse 3s ease-in-out infinite;
}

.element-2 {
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #14b8a6, #10b981);
    border-radius: 0.75rem;
    animation: bounce 3s ease-in-out infinite;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #1e293b;
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: #cbd5e1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: #0d9488;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #cbd5e1;
}

.why-partner {
    background: #475569;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.why-partner h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-partner ul {
    list-style: none;
}

.why-partner li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.why-partner .check-icon {
    background: #14b8a6;
    width: 1rem;
    height: 1rem;
    font-size: 0.75rem;
}

.contact-form-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
    resize: none;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.btn-text {
    margin-right: 0.5rem;
}

.btn-icon {
    font-size: 1.25rem;
}

.social-cta {
    text-align: center;
}

.twitter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0d9488;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.twitter-btn:hover {
    background: #0f766e;
    transform: scale(1.05);
}

.twitter-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
}

.footer-content {
    padding: 4rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-company {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-company p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
}

.footer-contact .contact-icon {
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #14b8a6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #14b8a6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #14b8a6;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1.125rem;
    }
}