/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #003d82 0%, #0066a6 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.tag-highlight {
    color: #00bcd4;
    font-weight: 600;
}

.tag-divider {
    color: rgba(255, 255, 255, 0.6);
}

.tag-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: #00bcd4;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

    .btn-primary:hover {
        background: #00a5bd;
        box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.btn-icon {
    transition: transform 0.3s;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;height:158px;
}

    .hero-wave svg {
        width: 100%;
        height: auto;
        display: block;
    }

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-accent {
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
}

.badge-primary {
    background: rgba(0, 61, 130, 0.1);
    color: #003d82;
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
}

/* Card Grid */

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card1 {
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #00bcd4;
}

.card-success:hover {
    border-color: #22c55e;
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.card-icon-accent {
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
}

.card-icon-primary {
    background: rgba(0, 61, 130, 0.1);
    color: #003d82;
}

.card-icon-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-text {
    color: #64748b;
    line-height: 1.7;
}

/* Info Box */
.info-box {
    background: rgba(0, 61, 130, 0.05);
    border: 1px solid rgba(0, 61, 130, 0.2);
}

.info-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.info-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.info-list {
    list-style: none;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.info-bullet {
    width: 6px;
    height: 6px;
    background: #00bcd4;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #003d82 0%, #0066a6 100%);
}

.cta-box-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-box-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Metrics Box */
.metrics-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.metrics-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 0.75rem;
}

.metric-label {
    color: #64748b;
}

/* Quote Box */

.quote-text {
    font-size: 1.4rem;
    color: #59667b;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-avatar {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 61, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003d82;
}

.quote-name {
    font-weight: 700;
    color: #1e293b;
}

.quote-position {
    font-size: 0.875rem;
    color: #64748b;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003d82 0%, #0066a6 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-cta {
    background: #00bcd4;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

    .btn-cta:hover {
        background: #00a5bd;
        box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
    }

.btn-white {
    background: white;
    color: #003d82;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

    .btn-white:hover {
        background: #f8fafc;
    }

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: rgba(248, 250, 252, 0.5);
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.footer-text {
    color: #64748b;
    line-height: 1.7;
}

.footer-heading {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

    .footer-list li {
        margin-bottom: 0.5rem;
    }

.footer-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: #00bcd4;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .card-icon-accent, .card-icon {
        display: none;
    }
    .hero-description {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-grid,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .info-box-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        margin-bottom: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .quote-text {
        font-size: 1.125rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}
