/* Hero Section */

.hero {
    margin-top: 70px;
    padding: 120px 5% 100px;
    background: linear-gradient(135deg, #f0fdfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 19px;
    color: #718096;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 42px;
    font-size: 17px;
    border-radius: 10px;
}

.btn-primary {
    background: #35D1D1;
    color: white;
    box-shadow: 0 6px 20px rgba(53, 209, 209, 0.3);
}

.btn-primary:hover {
    background: #2bb8b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(53, 209, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #35D1D1;
    border: 2px solid #35D1D1;
}

.btn-secondary:hover {
    background: rgba(53, 209, 209, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 42px;
    color: #35D1D1;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(53, 209, 209, 0.15);
    border: 2px solid rgba(53, 209, 209, 0.1);
    position: relative;
}

.chart-icon {
    font-size: 180px;
    opacity: 0.9;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(53, 209, 209, 0.2);
    border: 1px solid rgba(53, 209, 209, 0.1);
    font-weight: 600;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.badge-1 {
    top: 20px;
    right: -30px;
    color: #35D1D1;
}

.badge-2 {
    bottom: 40px;
    left: -40px;
    color: #2bb8b8;
}


/* Services Section */

.services {
    padding: 100px 5%;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 19px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(53, 209, 209, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(53, 209, 209, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(53, 209, 209, 0.15);
    border-color: #35D1D1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(53, 209, 209, 0.1) 0%, rgba(53, 209, 209, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 15px;
    color: #4a5568;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #35D1D1;
    font-weight: 700;
    font-size: 18px;
}

.btn-learn {
    background: transparent;
    color: #35D1D1;
    padding: 12px 24px;
    border: 2px solid #35D1D1;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-learn:hover {
    background: #35D1D1;
    color: white;
    transform: translateX(5px);
}


/* Process Section */

.process {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f7fffe 0%, #ffffff 100%);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: 16px;
    border: 2px solid rgba(53, 209, 209, 0.1);
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(53, 209, 209, 0.12);
    border-color: #35D1D1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(53, 209, 209, 0.3);
}

.process-step h4 {
    font-size: 20px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}


/* Results Section */

.results {
    padding: 100px 5%;
    background: white;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.result-card {
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    color: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(53, 209, 209, 0.3);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.result-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.result-card p {
    font-size: 16px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}


/* Platforms Section */

.platforms {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f7fffe 0%, #ffffff 100%);
}

.platforms-container {
    max-width: 1400px;
    margin: 0 auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.platform-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid rgba(53, 209, 209, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(53, 209, 209, 0.12);
    border-color: #35D1D1;
}

.platform-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.platform-card h4 {
    font-size: 18px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 8px;
}

.platform-card p {
    font-size: 14px;
    color: #718096;
}


/* CTA Section */

.cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-white {
    background: white;
    color: #35D1D1;
    padding: 18px 42px;
    font-size: 17px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-visual {
        order: -1;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .section-header h2 {
        font-size: 40px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 80px 5% 60px;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .hero-content p {
        font-size: 17px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .section-header h2 {
        font-size: 34px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .floating-badge {
        display: none;
    }
    .chart-icon {
        font-size: 120px;
    }
    .cta h2 {
        font-size: 36px;
    }
    .cta p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-large {
        width: 100%;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .service-card {
        padding: 28px;
    }
    .cta h2 {
        font-size: 28px;
    }
}