* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: white;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding: 0 11%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.logo img {
    width: 145px;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

.menu a:hover {
    color: #e30613;
}

.menu-arrow span {
    font-size: 10px;
    margin-top: 1px;
}

.btn-outline {
    color: white;
    text-decoration: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.7);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
    transition: .3s;
    box-shadow: 0 0 15px rgba(255,255,255,.05);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: #e30613;
    box-shadow: 0 0 20px rgba(227,6,19,.45);
}

.hero {
    min-height: 100vh;
    background-image:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 40%, rgba(0,0,0,.18) 100%),
        url("../imagenes/fondo.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    padding-left: 11%;
    padding-top: 185px;
    max-width: 760px;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 42px;
}

.hero-content p {
    font-size: 21px;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 40px;
    align-items: center;
}

.btn-red,
.btn-black {
    text-decoration: none;
    color: white;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    transition: .3s;
}

.btn-red {
    background: rgba(227,6,19,.80);
    border: 1px solid rgba(255,80,90,.8);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 18px rgba(227,6,19,.55),
        0 0 40px rgba(227,6,19,.20);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(227,6,19,.85),
        0 0 60px rgba(227,6,19,.40);
}

.btn-black {
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 12px rgba(255,255,255,.08);
}

.btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255,255,255,.18);
}

.features-section {
    background: #000;
    padding: 60px 11% 88px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.45;
    max-width: 330px;
}

.experience-section {
    background: #fff;
    color: #111827;
    padding: 86px 11% 110px;
    text-align: center;
}

.experience-container {
    max-width: 1120px;
    margin: 0 auto;
}

.experience-container h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 45px;
}

.experience-container p {
    font-size: 22px;
    line-height: 1.35;
}

.leaders-section {
    min-height: 720px;
    background-image:
        linear-gradient(rgba(0,0,0,.74), rgba(0,0,0,.80)),
        url("../imagenes/fondo-lideres.jpg");
    background-size: cover;
    background-position: center;
    padding: 108px 11% 70px;
}

.leaders-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.leaders-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 18px;
    border: 1px solid rgba(227,6,19,.45);
    border-radius: 999px;
    background: rgba(227,6,19,.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .4px;
    box-shadow: 0 0 18px rgba(227,6,19,.20);
}

.leaders-container h2 {
    font-size: 42px;
    line-height: 1.28;
    font-weight: 900;
    margin-bottom: 30px;
}

.red-line {
    width: 310px;
    height: 4px;
    background: #e30613;
    margin: 0 auto 42px;
    box-shadow: 0 0 18px rgba(227,6,19,.45);
}

.leaders-text {
    font-size: 20px;
    line-height: 1.45;
    max-width: 930px;
    margin: 0 auto 48px;
}

.leaders-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 55px;
}

.leader-card {
    text-align: left;
    padding: 28px 26px;
    border-radius: 18px;
    background: rgba(0,0,0,.38);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    transition: .3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227,6,19,.45);
    box-shadow: 0 0 28px rgba(227,6,19,.20);
}

.card-number {
    display: inline-block;
    margin-bottom: 18px;
    color: #e30613;
    font-size: 15px;
    font-weight: 900;
}

.leader-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.leader-card p {
    font-size: 15px;
    line-height: 1.5;
}

.services-section {
    background: #fff;
    color: #111827;
    padding: 86px 11% 90px;
}

.services-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.services-container h2 {
    font-size: 42px;
    line-height: 1.28;
    font-weight: 900;
    margin-bottom: 38px;
}

.services-intro {
    font-size: 22px;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto 42px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
    margin-bottom: 42px;
}

.service-card {
    min-height: 212px;
    background: #f4f4f5;
    border-radius: 16px;
    padding: 48px 20px 28px;
    transition: .3s;
    color: inherit;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.service-card h3 {
    text-align: center;
    font-size: 17px;
    margin-bottom: 34px;
    font-weight: 800;
}

.service-card p {
    font-size: 15px;
    line-height: 1.45;
    text-align: justify;
}

.services-btn {
    display: inline-block;
    margin-bottom: 90px;
}

.certifications {
    text-align: left;
}

.cert-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 44px;
}

.cert-row img {
    width: 200px;
    max-height: 210px;
    object-fit: contain;
}

.cert-row h3 {
    color: #111827;
    font-size: 25px;
    margin-bottom: 22px;
}

.cert-row p {
    color: #111827;
    font-size: 23px;
    line-height: 1.35;
}

.clients-section {
    background:
        radial-gradient(circle at top, rgba(227,6,19,.13), transparent 35%),
        #000;
    color: white;
    padding: 92px 11% 120px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.clients-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.clients-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 18px;
    border: 1px solid rgba(227,6,19,.45);
    border-radius: 999px;
    background: rgba(227,6,19,.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .4px;
    box-shadow: 0 0 18px rgba(227,6,19,.20);
}

.clients-container h2 {
    font-size: 42px;
    line-height: 1.28;
    font-weight: 900;
    margin-bottom: 38px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.premium-video-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 35px rgba(227,6,19,.12);
    transition: .35s ease;
}

.premium-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .82;
    transition: .45s ease;
}

.video-dark-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.25) 40%,
            rgba(0,0,0,.82) 100%
        );
    z-index: 1;
}

.video-top-label {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
}

.video-top-label span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

.play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(227,6,19,.72);
    border: 1px solid rgba(255,255,255,.32);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 25px rgba(227,6,19,.75),
        0 0 60px rgba(227,6,19,.35);
    transition: .35s ease;
}

.play-circle span {
    font-size: 28px;
    margin-left: 4px;
}

.video-info-glass {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    text-align: left;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
}

.video-info-glass h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.video-info-glass p {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,.88);
}

.premium-video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227,6,19,.45);
    box-shadow:
        0 24px 70px rgba(0,0,0,.55),
        0 0 45px rgba(227,6,19,.30);
}

.premium-video-card:hover img {
    transform: scale(1.08);
    opacity: .95;
}

.premium-video-card:hover .play-circle {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(227,6,19,.92);
}

.coverage-section {
    background: #fff;
    color: #111827;
    padding: 95px 8% 115px;
}

.coverage-container {
    max-width: 1180px;
    margin: 0 auto;
}

.coverage-heading {
    max-width: 980px;
    margin: 0 auto 70px;
    text-align: center;
}

.coverage-heading h2 {
    color: #d90416;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 48px;
}

.coverage-heading p {
    color: #0f172a;
    font-size: 21px;
    line-height: 1.35;
}

.coverage-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.coverage-maps-grid.single-map {
    grid-template-columns: minmax(0, 620px);
    justify-content: center;
}

.country-switch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 10px 14px;
    border: 1px solid rgba(17,24,39,.12);
    border-radius: 999px;
    background: #f8fafc;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.country-switch a {
    color: #e30613;
    text-decoration: none;
}

.country-switch a:hover {
    text-decoration: underline;
}

.coverage-map-card {
    position: relative;
    min-height: 520px;
    padding: 35px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 24px 65px rgba(15,23,42,.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}

.coverage-map-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px solid rgba(227,6,19,.14);
    z-index: 1;
    pointer-events: none;
}

.coverage-map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 80px rgba(15,23,42,.18);
}

.coverage-map-card > img {
    position: relative;
    z-index: 2;
    width: 96%;
    max-width: 590px;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 18px 16px rgba(0,0,0,.22));
    transition: .35s ease;
}

.coverage-map-card:hover > img {
    transform: scale(1.05);
}

.coverage-map-info {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 4;
    background:
        linear-gradient(135deg, rgba(227,6,19,.14), rgba(0,0,0,.92)),
        rgba(0,0,0,.88);
    color: #fff;
    padding: 22px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-top: 2px solid rgba(227,6,19,.85);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -12px 35px rgba(0,0,0,.22);
}

.coverage-map-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 22px rgba(227,6,19,.35);
}

.coverage-map-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coverage-map-info h3 {
    font-size: 29px;
    font-weight: 900;
    margin-bottom: 6px;
}

.coverage-map-info p {
    color: #f3f4f6;
    font-size: 16px;
    line-height: 1.35;
}

.cta-section {
    position: relative;
    padding: 170px 11%;
    background:
        linear-gradient(rgba(0,0,0,.54), rgba(0,0,0,.60)),
        url("../imagenes/aspiradora1.png");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 58px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 38px;
}

.cta-section p {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 45px;
}

.articles-section {
    background:
        radial-gradient(circle at top left, rgba(227,6,19,.15), transparent 34%),
        linear-gradient(180deg, #111 0%, #1a1a1a 100%);
    padding: 110px 11% 120px;
    color: white;
    border-top: 1px solid rgba(255,255,255,.08);
}

.articles-container {
    max-width: 1120px;
    margin: 0 auto;
}

.articles-heading {
    text-align: center;
    margin-bottom: 70px;
}

.articles-heading h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 22px;
}

.articles-heading p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 21px;
    line-height: 1.45;
}

.article-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 34px;
}

.article-image {
    position: relative;
    height: 285px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .45s ease;
}

.article-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,.10), rgba(227,6,19,.16)),
        linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35));
}

.corner-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 82px;
    height: 82px;
    background: #e30613;
    color: white;
    font-size: 31px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    padding-right: 26px;
    padding-bottom: 24px;
}

.article-content {
    min-height: 285px;
    padding: 34px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.article-content h3 {
    position: relative;
    font-size: 27px;
    line-height: 1.22;
    font-weight: 900;
    margin-bottom: 24px;
    padding-left: 28px;
}

.article-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background: #e30613;
}

.article-content p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 28px;
}

.article-btn {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0;
}

.article-btn::before {
    content: "Leer más";
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.75);
}

.article-btn span {
    font-size: 30px;
    color: #e30613;
}

.article-row:hover .article-image img {
    transform: scale(1.07);
}

.ver-todas-box {
    text-align: center;
    margin-top: 55px;
}

.btn-ver-todas {
    display: inline-block;
    background: #e30613;
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 7px;
    font-weight: 900;
    transition: .3s;
    box-shadow: 0 0 25px rgba(227,6,19,.25);
}

.btn-ver-todas:hover {
    background: #b9000b;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(227,6,19,.45);
}

.whatsapp-btn {
    position: fixed;
    right: 38px;
    bottom: 35px;
    width: 68px;
    height: 68px;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow:
        0 0 20px rgba(37,211,102,.55),
        0 0 45px rgba(37,211,102,.25);
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* FOOTER ESTÁTICO PARA TODAS LAS PÁGINAS */

.site-footer {
    background: #000;
    color: white;
    border-top: 1px solid rgba(255,255,255,.25);
}

.footer-main {
    background: #151515;
    padding: 0 9%;
    min-height: 278px;
    display: grid;
    grid-template-columns: 1.25fr 1.25fr 1.25fr 1.2fr;
    gap: 50px;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,.35);
}

.footer-brand {
    text-align: center;
    padding-top: 14px;
}

.footer-brand img {
    width: 170px;
    margin: 0 auto 48px;
    display: block;
}

.footer-brand p {
    max-width: 270px;
    margin: 0 auto 32px;
    font-size: 14px;
    line-height: 1.45;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 5px;
    background: white;
    color: #e30613;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 900;
    transition: .3s;
}

.social-links a:hover {
    background: #e30613;
    color: white;
    transform: translateY(-3px);
}

.social-links img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: .3s;
}

.footer-contact a:hover {
    color: #e30613;
}

.footer-column {
    padding-top: 10px;
}

.footer-column h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
    line-height: 1.15;
}

.footer-column li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -3px;
    color: #e30613;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 15.5px;
    transition: .3s;
}

.footer-column a:hover {
    color: #e30613;
}

.footer-contact {
    padding: 82px 10% 42px;
    min-height: 245px;
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 70px;
    border-bottom: 1px solid rgba(255,255,255,.55);
}

.footer-contact h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 22px;
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 22px;
}

.footer-bottom {
    background: #151515;
    min-height: 62px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-bottom p {
    font-size: 15px;
}

.footer-bottom nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-bottom nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer-bottom nav a:hover {
    color: #e30613;
}

@media (max-width: 1100px) {
    .navbar {
        padding: 0 7%;
    }

    .menu {
        display: none;
    }

    .features-container,
    .leaders-cards,
    .services-grid,
    .videos-grid,
    .coverage-maps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .article-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        padding: 45px 8%;
    }

    .footer-brand img {
        margin-bottom: 28px;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 60px 8% 38px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 22px 8%;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: 0 6%;
    }

    .btn-outline {
        display: none;
    }

    .hero-content {
        padding: 150px 6% 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .experience-container h2,
    .leaders-container h2,
    .services-container h2,
    .clients-container h2,
    .coverage-heading h2,
    .articles-heading h2 {
        font-size: 32px;
    }

    .experience-container p,
    .services-intro,
    .coverage-heading p,
    .articles-heading p {
        font-size: 18px;
    }

    .coverage-section {
        padding: 70px 6% 85px;
    }

    .coverage-heading {
        margin-bottom: 44px;
    }

    .coverage-heading h2 {
        margin-bottom: 26px;
    }

    .coverage-map-card {
        min-height: 420px;
        padding: 20px;
    }

    .coverage-map-card > img {
        width: 100%;
        max-height: 270px;
    }

    .coverage-map-info {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }

    .coverage-map-icon {
        width: 52px;
        height: 52px;
    }

    .coverage-map-info h3 {
        font-size: 24px;
    }

    .cta-section {
        padding: 110px 6%;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 18px;
    }

    .cert-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-column h3,
    .footer-contact h3 {
        font-size: 19px;
    }

    .footer-bottom {
        text-align: center;
    }
}
