/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2674BB;
    --blue-dark: #1d5a94;
    --blue-light: #e8f1f9;
    --blue-accent: #1a4f7a;
    --blue-bright: #3a8fd4;
    --gray: #8E8E8E;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-light: #666666;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --max-width: 1280px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Futura fallback stack */
h1, h2, h3, h4, h5, h6,
.nav-link,
.btn {
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--blue-bright);
    color: var(--white);
    border-color: var(--blue-bright);
}
.btn-primary:hover {
    background: var(--blue-accent);
    border-color: var(--blue-accent);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--blue-dark);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline-blue:hover {
    background: var(--blue);
    color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-top {
    background: var(--blue);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.4rem 0;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.header-top a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}
.header-top a:hover {
    opacity: 1;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-switch a {
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
}
.lang-switch a.active {
    background: rgba(255,255,255,0.2);
    font-weight: 600;
}

.nav-main {
    padding: 0;
}

.nav-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

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

.logo img {
    height: 62px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1.6rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--blue-bright);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--blue-light);
    color: var(--blue);
    padding-left: 2rem;
}

.dropdown a:last-child {
    border-bottom: none;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gray-dark);
    transition: var(--transition);
}

.nav-search {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.nav-search button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray);
    transition: var(--transition);
}
.nav-search button:hover {
    color: var(--blue);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #143d63 100%);
    margin-top: 110px; /* header offset */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-width: 0;
}

.hero-content {
    color: var(--white);
    min-width: 0;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero h1 span {
    color: var(--blue-bright);
    display: inline;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-device-img {
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-device-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.about-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--blue-bright);
    border-radius: 6px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PRODUCTS & SOLUTIONS
   ============================================ */
.products {
    background: var(--gray-light);
}

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

.product-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--blue-light), #c8ddf0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 1.8rem;
}

.product-card-body h3 {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
}

.product-card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.card-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--blue-bright);
    gap: 0.8rem;
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

/* ============================================
   EXPERTISE / SERVICES BAND
   ============================================ */
.expertise {
    background: var(--blue);
    color: var(--white);
}

.expertise .section-label {
    color: rgba(255,255,255,0.7);
}

.expertise .section-title {
    color: var(--white);
}

.expertise .section-subtitle {
    color: rgba(255,255,255,0.8);
}

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

.expertise-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    transition: var(--transition);
}

.expertise-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.expertise-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.expertise-item p {
    font-size: 0.88rem;
    opacity: 0.75;
    line-height: 1.6;
}

/* ============================================
   QUALITY / CERTIFICATIONS
   ============================================ */
.quality {
    background: var(--white);
}

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

.quality-text h2 {
    font-size: 2rem;
    color: var(--gray-dark);
    margin-bottom: 1.25rem;
}

.quality-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quality-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.quality-badge {
    width: 140px;
    height: 140px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}

.quality-badge strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: var(--blue);
    display: block;
    margin-top: 0.3rem;
}

.quality-badge span {
    font-size: 0.72rem;
    color: var(--gray);
}

/* ============================================
   GLOBAL PRESENCE
   ============================================ */
.locations {
    background: var(--gray-light);
}

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

.location-card {
    background: var(--white);
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-hover);
}

.location-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.5;
}

.location-details h3 {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.location-details p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.location-details .location-address {
    margin-top: 0.75rem;
    font-size: 0.88rem;
}

/* ============================================
   NEWS / INSIGHTS
   ============================================ */
.news {
    background: var(--white);
}

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

.news-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--blue-light);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.news-body h3 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leadership {
    background: var(--gray-light);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    text-align: center;
    background: var(--white);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.leader-photo {
    width: 140px;
    height: 180px;
    margin: 0 auto 1.25rem;
    border-radius: 6px;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 0.3rem;
}

.leader-role {
    font-size: 0.85rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   QUALITY BADGE IMAGE
   ============================================ */
.quality-badge-img {
    max-width: 180px;
    height: auto;
}

/* ============================================
   PARTNERS / CONSORTIUM
   ============================================ */
.partners {
    background: var(--white);
    padding-bottom: 3rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.partners-logos img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(30%);
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partners-funding {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.partners-funding img {
    height: 40px;
    width: auto;
    opacity: 0.6;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-accent) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-band h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-band p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-band .btn-outline:hover {
    background: var(--white);
    color: var(--blue-bright);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    opacity: 0.7;
}

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

.footer h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.footer ul a {
    font-size: 0.88rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer ul a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    opacity: 0.5;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

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

/* Tablets */
@media (max-width: 1024px) {
    .nav-link {
        padding: 1.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

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

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

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

    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .hero {
        margin-top: 75px;
    }

    .nav-main .container {
        height: 65px;
    }

    .logo img {
        height: 40px;
    }

    /* Mobile nav toggle */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        box-shadow: var(--shadow-hover);
        border-top: 3px solid var(--blue);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-link::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: var(--gray-light);
    }

    .nav-item.mobile-open .dropdown {
        display: block;
    }

    .nav-search {
        margin-left: 0;
        padding: 0.8rem 2rem;
        border-bottom: 1px solid var(--gray-light);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

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

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Expertise */
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Quality */
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quality-badges {
        flex-direction: row;
        justify-content: center;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Leadership */
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    /* Partners */
    .partners-logos img {
        height: 40px;
    }

    .partners-funding img {
        height: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Small phones */
@media (max-width: 420px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .hero-buttons .btn {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .quality-badges {
        flex-direction: column;
    }

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