@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --me-navy: #061a34;
    --me-navy-soft: #0b2a52;
    --me-gold: #cda349;
    --me-gold-soft: #e3bf72;
    --me-light: #f4f6f9;
    --me-text: #202b39;
    --me-muted: #5a6472;
    --me-white: #ffffff;
    --me-border: #dfe4ea;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--me-text);
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1480px;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

.me-section-title {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    color: var(--me-navy);
    line-height: 1.2;
}

.me-section-kicker {
    margin: 0 0 10px;
    color: var(--me-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 12px;
}

.me-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: linear-gradient(90deg, rgba(6, 26, 52, 0.98) 0%, rgba(7, 34, 67, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.me-topbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 78px;
}

.me-logo {
    display: inline-flex;
    align-items: center;
}

.me-logo img {
    max-height: 86px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(78%) sepia(37%) saturate(682%) hue-rotate(358deg) brightness(96%) contrast(92%);
}

.me-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.me-nav a {
    color: #f2f4f8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.me-nav a:hover,
.me-nav a:focus,
.me-nav a.is-active {
    color: var(--me-gold-soft);
}

.me-btn {
    display: inline-block;
    border: 1px solid var(--me-gold);
    background: var(--me-gold);
    color: var(--me-navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 11px 18px;
    transition: all 0.2s ease;
}

.me-btn:hover,
.me-btn:focus {
    background: transparent;
    color: var(--me-gold-soft);
    border-color: var(--me-gold-soft);
}

.me-mobile-toggle {
    display: none;
    color: #fff;
    font-size: 30px;
    border: 0;
    background: transparent;
}

.me-hero {
    margin-top: 78px;
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(5, 24, 50, 0.84) 0%, rgba(5, 24, 50, 0.55) 35%, rgba(5, 24, 50, 0.28) 62%, rgba(5, 24, 50, 0.15) 100%), url('../images/banner1.jpg') center center / cover no-repeat;
}

.me-hero::before {
    content: "";
    position: absolute;
    right: 5%;
    top: 10%;
    width: min(45vw, 640px);
    height: min(27vw, 360px);
    background: url('../images/overlay.png') center center / contain no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.me-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 76% 38%, rgba(222, 185, 107, 0.4) 0%, rgba(222, 185, 107, 0.06) 20%, rgba(0, 0, 0, 0) 48%);
}

.me-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 16px;
}

.me-hero-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.me-hero-logo img {
    width: auto;
    max-height: 120px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(37%) saturate(682%) hue-rotate(358deg) brightness(96%) contrast(92%);
}

.me-hero-copy {
    max-width: 630px;
    color: #fff;
    animation: meFadeUp 0.85s ease-out both;
}

.me-hero-title {
    margin: 0;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.me-hero-title span {
    color: var(--me-gold-soft);
}

.me-hero-copy p {
    margin: 20px 0 30px;
    font-size: 18px;
    color: rgba(241, 246, 255, 0.95);
    line-height: 1.35;
    max-width: 480px;
}

.me-btn-outline {
    border: 1px solid var(--me-gold-soft);
    color: var(--me-gold-soft);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.me-btn-outline:hover,
.me-btn-outline:focus {
    background: var(--me-gold-soft);
    color: var(--me-navy);
}

.me-about,
.me-services,
.me-metrics,
.me-sectors,
.me-coverage-contact,
.me-contact-section,
.me-services-intro,
.me-services-detail,
.me-services-cta {
    margin-top: 34px;
}

.me-about {
    background: #fff;
    padding: 34px 0 46px;
}

.me-about-box {
    border: 1px solid var(--me-border);
    background: #fff;
    display: grid;
    grid-template-columns: 1.2fr 1.25fr 0.95fr;
}

.me-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.me-about-copy {
    padding: 30px 28px;
    border-left: 1px solid var(--me-border);
    border-right: 1px solid var(--me-border);
}

.me-about-copy p {
    margin: 12px 0 22px;
    color: var(--me-muted);
}

.me-about-list {
    padding: 18px 16px;
    background: #fbfcfe;
}

.me-about-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border: 1px solid #e6ebf1;
    border-radius: 4px;
    background: #fff;
    margin-bottom: 10px;
}

.me-about-item:last-child {
    margin-bottom: 0;
}

.me-about-item i {
    color: var(--me-gold);
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(205, 163, 73, 0.45);
    background: rgba(205, 163, 73, 0.09);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.me-about-item span {
    font-size: 15px;
    color: var(--me-text);
    font-weight: 700;
    line-height: 1.4;
}

.me-page-hero {
    margin-top: 78px;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(90deg, rgba(4, 17, 35, 0.86) 0%, rgba(4, 17, 35, 0.57) 44%, rgba(4, 17, 35, 0.22) 100%), url('../images/banner11.jpg') center center / cover no-repeat;
}

.me-page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 22px;
}

.me-page-hero-services::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 21, 44, 0.2) 0%, rgba(5, 21, 44, 0.42) 100%);
}

.me-page-hero .me-hero-copy {
    max-width: 760px;
    padding-bottom: 28px;
}

.me-page-hero .me-hero-title {
    font-size: clamp(2.2rem, 4.8vw, 4.1rem);
    line-height: 1.06;
}

.me-page-hero .me-hero-copy p {
    font-size: 22px;
    max-width: 620px;
}

.me-services-intro {
    padding: 58px 0 34px;
    text-align: center;
    background: #fff;
}

.me-services-intro p {
    max-width: 900px;
    margin: 16px auto 0;
    font-size: 18px;
    color: var(--me-muted);
}

.me-services-detail {
    padding: 12px 0 70px;
    background: #f8fafc;
}
.me-services-detail .container > .me-section-kicker,
.me-services-detail .container > .me-section-title {
    text-align: center;
}
.me-services-detail .container > .me-section-title {
    margin-bottom: 10px;
}

.me-service-detail-item {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--me-border);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(7, 23, 44, 0.09);
    margin-top: 26px;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.me-service-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(7, 23, 44, 0.13);
}

.me-service-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.me-service--repr .me-service-detail-media img {
    object-position: center 42%;
}

.me-service--business .me-service-detail-media img {
    object-position: center 50%;
}

.me-service--trade .me-service-detail-media img {
    object-position: center 34%;
}

.me-service--alliances .me-service-detail-media img {
    object-position: center 40%;
}

.me-service--consulting .me-service-detail-media img {
    object-position: center 58%;
}

.me-service-detail-copy {
    padding: 34px 34px;
}

.me-service-detail-copy h3 {
    margin: 0 0 14px;
    color: var(--me-navy);
    font-size: 29px;
    line-height: 1.25;
    font-family: 'Cinzel', serif;
    text-transform: none;
}

.me-service-detail-copy p {
    color: var(--me-muted);
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.65;
}

.me-solution-meta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 10px;
    padding: 4px 10px;
    border: 1px solid #cfd9e8;
    background: #eef3fa;
    color: #12335b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.me-solution-points {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}
.me-solution-points li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 18px;
    color: #3b4b60;
    font-size: 14px;
}
.me-solution-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--me-gold);
    transform: translateY(-50%);
}

.me-service-detail-copy ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--me-muted);
}

.me-service-detail-copy li {
    margin-bottom: 6px;
}

.me-is-reverse {
    grid-template-columns: 1.15fr 0.95fr;
}

.me-is-reverse .me-service-detail-media {
    order: 2;
}

.me-is-reverse .me-service-detail-copy {
    order: 1;
}

.me-services-cta {
    background: linear-gradient(90deg, #051c3a 0%, #0a2951 100%);
    padding: 44px 0;
}

.me-services-cta h2 {
    margin: 0;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 2.7vw, 2.1rem);
    text-align: center;
    line-height: 1.35;
}

.me-services {
    background: linear-gradient(90deg, #051c3a 0%, #0a2951 100%);
    color: #fff;
    padding: 40px 0 32px;
}

#servicios {
    scroll-margin-top: 96px;
}

.me-services .me-section-title {
    color: #fff;
    text-align: center;
}

.me-services .me-section-kicker {
    text-align: center;
}

.me-service-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.me-service-item {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.me-service-item:last-child {
    border-right: 0;
}

.me-service-item i {
    color: var(--me-gold-soft);
    font-size: 29px;
}

.me-service-item h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    color: #fff;
    font-family: 'Cinzel', serif;
    line-height: 1.3;
}

.me-service-item p {
    margin: 0;
    color: rgba(235, 243, 255, 0.86);
    font-size: 13px;
    line-height: 1.45;
}

.me-metrics {
    background: #fff;
    border-bottom: 1px solid var(--me-border);
}

.me-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.me-metric {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    border-right: 1px solid var(--me-border);
}

.me-metric:last-child {
    border-right: 0;
}

.me-metric i {
    color: var(--me-gold);
    font-size: 34px;
}

.me-metric-value {
    margin: 0;
    font-size: 48px;
    color: var(--me-navy);
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.me-metric-label {
    margin: 2px 0 0;
    color: var(--me-muted);
    font-size: 15px;
}

.me-sectors {
    padding: 42px 0;
    background: #f8fafc;
}

.me-sectors .me-section-title,
.me-sectors .me-section-kicker {
    text-align: center;
}

.me-sector-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.me-sector-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border: 1px solid #d7dbe2;
    box-shadow: 0 8px 18px rgba(8, 20, 37, 0.1);
}

.me-sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.me-sector-card--trade {
    min-height: 165px;
}

.me-sector-card--trade img {
    object-position: center 35%;
}

.me-sector-card:hover img {
    transform: scale(1.05);
}

.me-sector-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(3, 17, 34, 0.2) 0%, rgba(3, 17, 34, 0.95) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 8px;
}

.me-coverage-contact {
    background: #fff;
    border-top: 1px solid var(--me-border);
    padding-bottom: 14px;
}

.me-coverage-banner {
    background: linear-gradient(90deg, #041a36 0%, #0b2f5f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.me-coverage-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/overlay.png') center center / cover no-repeat;
    opacity: 0.22;
}

.me-coverage-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 34px 0;
    text-align: center;
}

.me-coverage-banner-copy {
    max-width: 860px;
    margin: 0 auto;
}

.me-coverage-banner-copy h3 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #fff;
}

.me-coverage-banner-copy p {
    margin: 12px 0 0;
    max-width: 760px;
    color: rgba(231, 241, 255, 0.95);
    font-size: 17px;
}

.me-coverage-banner-copy .me-section-kicker {
    color: var(--me-gold-soft);
    margin-bottom: 8px;
}

.me-coverage-banner .me-btn-outline {
    border-color: var(--me-gold-soft);
    color: var(--me-gold-soft);
    white-space: nowrap;
}

.me-coverage-banner .me-btn-outline:hover,
.me-coverage-banner .me-btn-outline:focus {
    background: var(--me-gold-soft);
    color: #0a2951;
}

.me-contact-section {
    background: #fff;
}

.me-contact--wide {
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid var(--me-border);
    box-shadow: 0 12px 24px rgba(7, 23, 44, 0.08);
    border-left: 1px solid var(--me-border);
}

.me-contact--full {
    max-width: 100%;
}

.me-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 14px;
}

.me-contact-info {
    padding-right: 8px;
}

.me-contact-split .me-form {
    margin: 0;
}

.me-coverage-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr;
}

.me-coverage-grid--no-image {
    grid-template-columns: 0.95fr 1.05fr;
}

.me-coverage {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
    color: var(--me-text);
    padding: 34px 28px;
    position: relative;
    min-height: 360px;
    border: 1px solid var(--me-border);
}

.me-coverage::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, #0a2951 0%, #cda349 100%);
    opacity: 1;
}

.me-coverage-content {
    position: relative;
    z-index: 1;
}

.me-coverage h3,
.me-contact h3 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 31px;
    color: var(--me-navy);
}

.me-coverage p {
    margin: 16px 0 20px;
    max-width: 380px;
    color: var(--me-muted);
}

.me-coverage .me-section-kicker {
    color: #0a2951;
}

.me-coverage .me-btn-outline {
    border-color: #0a2951;
    color: #0a2951;
}

.me-coverage .me-btn-outline:hover,
.me-coverage .me-btn-outline:focus {
    background: #0a2951;
    color: #fff;
}

.me-coverage--solo {
    max-width: 100%;
    margin: 0 auto 24px;
}

.me-coverage.me-coverage--solo {
    background: linear-gradient(135deg, #eef4fb 0%, #dce8f8 48%, #f6f9ff 100%);
    padding: 44px 36px;
    min-height: auto;
}

.me-coverage--solo .me-coverage-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.me-coverage--solo .me-section-kicker {
    display: block;
}

.me-coverage--solo h3 {
    font-size: clamp(2rem, 4.2vw, 3rem);
}

.me-coverage--solo p {
    max-width: 760px;
    margin: 16px auto 22px;
    color: #1e395c;
}

.me-coverage--solo .me-btn-outline {
    margin: 0 auto;
}

.me-city img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.me-contact {
    padding: 28px 22px 20px;
    border-left: 1px solid var(--me-border);
    min-height: 360px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.me-coverage-grid--no-image .me-contact {
    border-left: 0;
    border: 1px solid var(--me-border);
    box-shadow: 0 8px 24px rgba(7, 23, 44, 0.08);
}

.me-contact-list {
    margin: 14px 0 20px;
    padding: 0;
    list-style: none;
}

.me-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2f3a49;
    margin-bottom: 10px;
    font-size: 14px;
}

.me-contact-list i {
    color: var(--me-gold);
    margin-top: 3px;
}

.me-contact-list i.fa-mobile {
    font-size: 12px;
    margin-top: 4px;
}

.me-form input,
.me-form textarea {
    width: 100%;
    border: 1px solid var(--me-border);
    background: #f7f9fc;
    margin-bottom: 10px;
    padding: 10px 11px;
    font-size: 14px;
    color: #25303d;
}

.me-form textarea {
    min-height: 95px;
    resize: vertical;
}

.me-form button {
    width: 100%;
    border: 1px solid #0a2951;
    background: #0a2951;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px;
    margin-top: 4px;
}

.me-form button:hover,
.me-form button:focus {
    background: #051c3a;
}

.me-footer {
    background: linear-gradient(90deg, #031126 0%, #072347 100%);
    color: #d9e4f4;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.me-footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.me-footer img {
    max-height: 48px;
}

.me-footer-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.me-footer-nav a {
    color: #d9e4f4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.me-footer-nav a:not(:last-child)::after {
    content: "|";
    color: rgba(217, 228, 244, 0.55);
    margin-left: 10px;
}

.me-copy {
    margin: 0;
    font-size: 12px;
    color: #b7c7de;
    text-align: center;
}

@media (max-width: 1199px) {
    .me-nav {
        gap: 18px;
    }

    .me-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .me-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .me-sector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .me-coverage-grid {
        grid-template-columns: 1fr;
    }

    .me-coverage-banner-inner {
        flex-direction: column;
        align-items: center;
    }

    .me-coverage-banner-copy h3 {
        font-size: 34px;
    }

    .me-coverage-grid--no-image {
        grid-template-columns: 1fr;
    }

    .me-contact-split {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .me-contact {
        border-left: 0;
        padding-bottom: 26px;
    }
}

@media (max-width: 991px) {
    #servicios {
        scroll-margin-top: 88px;
    }

    .me-topbar .container {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        min-height: 74px;
        justify-content: flex-end;
    }

    .me-logo img {
        max-height: 70px;
    }

    .me-mobile-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .me-nav-wrap {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #061a34;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        display: none;
    }

    .me-nav-wrap.is-open {
        display: block;
    }

    .me-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 16px 14px;
    }

    .me-nav a {
        width: 100%;
        padding: 9px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .me-nav .me-btn {
        margin-top: 12px;
        width: auto;
        border-bottom: 1px solid var(--me-gold);
    }

    .me-hero {
        margin-top: 74px;
        min-height: 62vh;
    }

    .me-hero-copy p {
        font-size: 18px;
    }

    .me-about-box {
        grid-template-columns: 1fr;
    }

    .me-page-hero {
        margin-top: 74px;
        min-height: 60vh;
    }

    .me-service-detail-item,
    .me-is-reverse {
        grid-template-columns: 1fr;
    }

    .me-is-reverse .me-service-detail-media,
    .me-is-reverse .me-service-detail-copy {
        order: initial;
    }

    .me-service-detail-media img {
        min-height: 250px;
    }

    .me-page-hero .me-hero-copy p {
        font-size: 18px;
    }

    .me-hero-logo img {
        max-height: 88px;
    }

    .me-hero::before {
        right: -8%;
        top: 8%;
        width: min(62vw, 490px);
        height: min(35vw, 280px);
        opacity: 0.24;
    }

    .me-about-copy {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--me-border);
        border-bottom: 1px solid var(--me-border);
    }
}

@media (max-width: 767px) {
    .container {
        width: 94%;
    }

    .me-coverage.me-coverage--solo {
        padding: 34px 20px;
    }

    .me-about,
    .me-services,
    .me-metrics,
    .me-sectors,
    .me-coverage-contact,
    .me-contact-section,
    .me-services-intro,
    .me-services-detail,
    .me-services-cta {
        margin-top: 20px;
    }

    .me-services {
        padding: 40px 0;
    }

    .me-service-grid {
        grid-template-columns: 1fr;
    }

    .me-service-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .me-service-item:last-child {
        border-bottom: 0;
    }

    .me-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .me-metric {
        border-right: 1px solid var(--me-border);
        border-bottom: 1px solid var(--me-border);
    }

    .me-metric:nth-child(2n) {
        border-right: 0;
    }

    .me-metric:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .me-sector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .me-hero-copy p {
        font-size: 16px;
    }

    .me-hero .container {
        padding-top: 12px;
    }

    .me-hero-logo {
        margin-bottom: 16px;
    }

    .me-hero-logo img {
        max-height: 72px;
    }

    .me-hero::before {
        width: 80vw;
        height: 40vw;
        right: -20%;
        opacity: 0.2;
    }

    .me-page-hero .me-hero-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .me-coverage-banner-inner {
        padding: 26px 0;
    }

    .me-coverage-banner-copy h3 {
        font-size: 30px;
    }

    .me-coverage-banner-copy p {
        font-size: 15px;
    }

    .me-contact--wide {
        max-width: 100%;
    }

    .me-service-detail-copy {
        padding: 22px;
    }

    .me-service-detail-copy h3 {
        font-size: 23px;
    }

    .me-services-intro p {
        font-size: 16px;
    }

    .me-services-cta {
        padding: 52px 0;
    }

    .me-services-cta h2 {
        font-size: clamp(1.7rem, 7.2vw, 2.3rem);
        line-height: 1.45;
        padding: 0 10px;
    }

    .me-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .me-footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .me-sector-grid {
        grid-template-columns: 1fr;
    }

    .me-btn,
    .me-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .me-hero-copy {
        max-width: 100%;
    }
}

@keyframes meFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
