/* ============================================
   REDESIGNED INDEX PAGE STYLES
   ============================================ */

/* ============================================
   HEADER & NAVIGATION IMPROVEMENTS
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
}

@media (prefers-color-scheme: dark) {
    .header.scrolled {
        background: rgba(15, 20, 25, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
}

.navbar {
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-600);
    letter-spacing: -0.5px;
}

@media (prefers-color-scheme: dark) {
    .logo-text {
        color: var(--primary-400);
    }
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-600);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-600);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-primary);
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-container {
        padding: 0 1rem;
    }
}

/* ============================================
   HERO SECTION - REDESIGNED
   ============================================ */

.hero {
    position: relative;
    padding: 15px 0 15px;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

@media (prefers-color-scheme: dark) {
    .hero {
        background: var(--bg-primary);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: transparent;
    display: none;
}

@media (prefers-color-scheme: dark) {
    .hero-background {
        background: transparent;
    }
}

.hero-gradient-1,
.hero-gradient-2 {
    display: none;
}

.hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
}

.hero-text {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(49, 130, 206, 0.1));
    color: var(--primary-600);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

@media (prefers-color-scheme: dark) {
    .hero-badge {
        color: var(--primary-400);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
     font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 780px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-600);
    color: var(--primary-600);
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

@media (prefers-color-scheme: dark) {
    .btn-secondary {
        border-color: var(--primary-400);
        color: var(--primary-400);
    }

    .btn-secondary:hover {
        background: var(--primary-400);
        color: var(--bg-primary);
    }
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-badge img {
    height: 20px;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    display: none;
}

.wave-animation {
    display: none;
}

.visual-label {
    display: none;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .visual-card {
        width: 250px;
        height: 250px;
    }
}

/* ============================================
   TECHNOLOGY SECTION - FEATURE GRID
   ============================================ */

.section-technology {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

@media (prefers-color-scheme: dark) {
    .feature-card {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.feature-card:hover {
    border-color: var(--primary-500);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
    transform: translateY(-8px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(49, 130, 206, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   APPLICATIONS SECTION
   ============================================ */

.section-applications {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

@media (prefers-color-scheme: dark) {
    .section-applications {
        background: linear-gradient(135deg, #0a0f1a 0%, #0f1419 100%);
    }
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.application-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

@media (prefers-color-scheme: dark) {
    .application-card {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.application-card:hover {
    border-color: var(--primary-500);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
}

.app-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(49, 130, 206, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.application-card:hover .app-image {
    transform: scale(1.05);
}

.app-icon {
    display: none;
}

.application-card > div:not(.app-image-wrapper) {
    padding: 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.application-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.application-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    gap: 8px;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */

.section-advantages {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.advantage-block {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(49, 130, 206, 0.05));
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .advantage-block {
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(49, 130, 206, 0.1));
        border: 1px solid rgba(49, 130, 206, 0.2);
    }
}

.advantage-block:hover {
    transform: translateY(-8px);
    border-color: var(--primary-500);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
}

.advantage-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.advantage-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PARTNERSHIPS SECTION
   ============================================ */

.section-partnerships {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

@media (prefers-color-scheme: dark) {
    .section-partnerships {
        background: linear-gradient(135deg, #0a0f1a 0%, #0f1419 100%);
    }
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.partnership-card {
    background: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .partnership-card {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.partnership-card:hover {
    border-color: var(--primary-500);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
    transform: translateY(-8px);
}

.partnership-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-logo img {
    max-height: 60px;
    object-fit: contain;
}

.partnership-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.partnership-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.section-about-preview {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    z-index: 1;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-md {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
}

.about-stats {
    display: none;
}

.stat-box {
    display: none;
}

.stat-number {
    display: none;
}

.stat-label {
    display: none;
}

@media (max-width: 1024px) {
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   CONTACT SECTION - REDESIGNED
   ============================================ */

.section-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

@media (prefers-color-scheme: dark) {
    .section-contact {
        background: linear-gradient(135deg, #0a0f1a 0%, #0f1419 100%);
    }
}

.contact-wrapper {
    max-width: 900px;
}

.contact-intro {
    margin-bottom: 3.5rem;
    text-align: left !important;
    max-width: 700px;
}

.contact-intro .section-title {
    margin-bottom: 1.5rem;
    text-align: left !important;
}

.contact-intro .section-subtitle {
    text-align: left !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    text-align: left;
}

.contact-card {
    background: transparent;
    border-radius: 0;
    padding: 2rem 0;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

@media (prefers-color-scheme: dark) {
    .contact-card {
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
}

.contact-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary-500);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 8px;
    color: var(--primary-600);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-content {
    flex: 1;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.contact-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-700);
}

.contact-link:hover::after {
    transform: translateX(4px);
}

@media (prefers-color-scheme: dark) {
    .contact-link {
        color: var(--primary-400);
    }

    .contact-link:hover {
        color: var(--primary-300);
    }
}

.location-badge {
    display: inline-block;
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary-600);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .location-badge {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-400);
    }
}

@media (max-width: 768px) {
    .section-contact {
        padding: 60px 0;
    }
    
    .contact-intro {
        margin-bottom: 2.5rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-content {
        text-align: center;
    }
}

.location-info {
    display: inline-block;
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary-600);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (prefers-color-scheme: dark) {
    .location-info {
        background: rgba(49, 130, 206, 0.15);
        color: var(--primary-400);
    }
}

/* ============================================
   FOOTER - IMPROVED LAYOUT
   ============================================ */

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


@media (prefers-color-scheme: dark) {
    .footer {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateX(4px);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

@media (prefers-color-scheme: dark) {
    .footer-logo img {
        filter: brightness(1) invert(0);
    }
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #60a5fa;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-cta {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
}

.footer-cta p {
    margin: 0 0 0.75rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-email-link {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 6px;
}

.contact-email-link:hover {
    color: #e2e8f0;
    border-color: #e2e8f0;
}

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

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-column a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

@media (prefers-color-scheme: dark) {
    .footer-column a:hover {
        color: #60a5fa;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-location {
    text-align: right;
}

.footer-location p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    .nav-menu {
        gap: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

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

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .partnerships-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-location {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-intro {
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .section-partnerships,
    .section-applications {
        padding: 80px 0;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .feature-card,
    .application-card {
        padding: 1.5rem;
    }

    .footer-cta {
        padding: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}
