html {
    scroll-behavior: smooth;
}

/* ── Design tokens ──────────────────────────────────────────── */
:root {
    --gold: #FBB03B;
    --card-top-offset: 150px;
    --card-bleed: -540px;
    --hero-bottom-pad: 250px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* ── Header ─────────────────────────────────────────────────── */
.m3r-main-header {
    background: #000;
    padding: 15px 0;
    border-bottom: 2px solid var(--gold);
    position: relative;
    z-index: 100;
}

.m3r-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m3r-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.m3r-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.m3r-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.m3r-nav a.active,
.m3r-nav a:hover {
    color: var(--gold);
}

.m3r-header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.m3r-call-title {
    display: block;
    color: #999;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right;
}

.m3r-call-number {
    display: block;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
}

.m3r-menu-toggle,
.m3r-hamburger,
.m3r-mobile-contact {
    display: none;
}

/* ── Language switcher ──────────────────────────────────────── */
.m3r-lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 16px;
    border-left: 1px solid #333;
}

.m3r-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    opacity: 0.55;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.m3r-lang-btn img {
    display: block;
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.m3r-lang-btn.active {
    opacity: 1;
    transform: scale(1.2);
}

.m3r-lang-btn:hover:not(.active) {
    opacity: 0.7;
}

/* ── Hero ───────────────────────────────────────────────────── */
.m3r-hero-section {
    position: relative;
    min-height: 95vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
        url('https://printcenter.pt/wp-content/uploads/2026/04/BANNER-PRINCIPAL-1.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px var(--hero-bottom-pad);
    overflow: visible;
}

.m3r-hero-overlay {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
    margin-bottom: auto;
}

.m3r-hero-title {
    color: #fff;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 10px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

.m3r-hero-title span {
    color: var(--gold);
}

.m3r-hero-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 40px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.4s forwards;
}

.m3r-hero-btns {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.6s forwards;
}

/* ── Buttons ────────────────────────────────────────────────── */
.m3r-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-white {
    background: #fff;
    color: #1a1a1a;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 176, 59, 0.3);
}

/* ── Cards ──────────────────────────────────────────────────── */
.m3r-cards-wrapper {
    display: flex;
    gap: 70px;
    max-width: 880px;
    width: 100%;
    margin-top: var(--card-top-offset);
    margin-bottom: var(--card-bleed);
    z-index: 10;
    align-items: stretch;
}

.m3r-card-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.m3r-card-col:nth-child(1) {
    animation-delay: 0.8s;
}

.m3r-card-col:nth-child(2) {
    animation-delay: 1.0s;
}

.m3r-card-col:nth-child(3) {
    animation-delay: 1.2s;
}

.m3r-card-title-outside {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

.m3r-card-white-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    flex: 1;
}

.m3r-card-white-box img {
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 255;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.m3r-card-list {
    padding: 20px 5px 10px;
    margin: 0;
    list-style: none;
}

.m3r-card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.m3r-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 50%;
}

/* ── Experience ─────────────────────────────────────────────── */

.m3r-experience {
    background: #fff;
    padding-top: 400px;
}

.m3r-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.m3r-experience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Bento gallery */
.m3r-experience-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m3r-experience-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.m3r-experience-gallery img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.m3r-experience-gallery img:not(:first-child) {
    aspect-ratio: 4 / 3;
}

/* Content column */
.m3r-experience-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 500px;
    margin: 0 auto 0 40px;
}

.m3r-experience-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 0 24px;
}

.m3r-experience-text {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 13px;
}

.m3r-experience-cta-label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
    margin: 12px 0 12px;
}

.m3r-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m3r-whatsapp-btn svg {
    flex-shrink: 0;
}

.m3r-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --card-top-offset: 260px;
        --card-bleed: -900px;
    }

    .m3r-header-container {
        padding: 15px 20px;
    }

    .m3r-logo img {
        height: 40px;
    }

    .m3r-header-contact {
        display: none;
    }

    .m3r-lang-switcher {
        display: flex;
        padding-left: 0;
        border-left: none;
    }

    /* Hamburger button */
    .m3r-hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 100;
    }

    .m3r-hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--gold);
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Slide-down nav drawer */
    .m3r-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        z-index: 99;
    }

    .m3r-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .m3r-nav li {
        display: flex;
        width: 100%;
        padding: 0;
        margin: 0;
        border-top: 1px solid #1a1a1a;
        list-style: none;
    }

    .m3r-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 22px 0;
        margin: 0;
        font-size: 14px;
        line-height: 1;
        color: #fff;
    }

    .m3r-nav li.m3r-mobile-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        gap: 10px;
        padding: 45px 0;
        background: #0a0a0a;
        width: 100%;
    }

    .m3r-nav li.m3r-mobile-contact .m3r-contact-text,
    .m3r-nav li.m3r-mobile-contact .m3r-call-title {
        text-align: center;
    }

    /* Checkbox hack — open state */
    .m3r-menu-toggle:checked~.m3r-nav {
        max-height: 100vh;
        border-bottom: 2px solid var(--gold);
    }

    .m3r-menu-toggle:checked+.m3r-hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .m3r-menu-toggle:checked+.m3r-hamburger span:nth-child(2) {
        opacity: 0;
    }

    .m3r-menu-toggle:checked+.m3r-hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero — mobile */
    .m3r-hero-section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
            url('./img/bg-mobile.webp');
        background-repeat: no-repeat;
        background-size: 100% 100%, cover;
        background-position: top center, center bottom;
        background-color: #0d0d0d;
        height: auto;
        min-height: 100svh;
        padding-top: 15px;
        padding-bottom: 60px;
    }

    .m3r-hero-overlay {
        align-items: center;
        margin-top: 10px;
        z-index: 2;
    }

    .m3r-hero-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 8px;
    }

    .m3r-hero-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .m3r-hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        padding: 0 20px;
    }

    .m3r-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        text-align: center;
    }

    /* Cards — sem bleed no mobile; fundo escuro cobre toda a section */
    .m3r-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
        margin-bottom: 0;
        z-index: 3;
    }

    .m3r-card-title-outside {
        color: #ffffff;
        font-weight: 700;
    }

    .m3r-card-col {
        animation-delay: 0s;
    }

    /* Experience — sem compensação de bleed; hero cresce com os cards */
    .m3r-experience {
        margin-top: 0;
        padding-top: 60px;
    }

    .m3r-experience-inner {
        display: flex;
        flex-direction: column;
    }

    /* display:contents expõe os filhos directamente ao flex pai,
       permitindo reordenar título/galeria/texto sem tocar no HTML */
    .m3r-experience-content {
        display: contents;
    }

    .m3r-experience-title {
        font-size: 32px;
        order: 1;
    }

    /* Bento grid mantido no mobile */
    .m3r-experience-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        order: 2;
    }

    .m3r-experience-gallery img {
        width: 100%;
        height: auto;
    }

    .m3r-experience-gallery img:first-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }

    .m3r-experience-gallery img:not(:first-child) {
        aspect-ratio: 4 / 3;
    }

    .m3r-experience-text,
    .m3r-experience-cta-label {
        order: 3;
        line-height: 1.6;
    }

    .m3r-whatsapp-btn {
        width: 100%;
        justify-content: center;
        order: 4;
        margin-top: 8px;
    }
}

/* ── Services ───────────────────────────────────────────────── */

.m3r-services-section {
    position: relative;
    background-color: #f7f7f5;
    overflow: hidden;
    padding: 80px 0;
}

.m3r-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/globo.png'), url('img/globo.png');
    background-repeat: no-repeat;
    background-position: -200px center;
    background-size: 600px auto;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.m3r-services-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.m3r-services-header {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.m3r-services-logo {
    width: 350px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.m3r-services-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    max-width: 420px;
}

.m3r-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.m3r-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.m3r-icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-bottom: 20px;
}

.m3r-services-grid>div:nth-child(2) .m3r-icon-container {
    background-color: #e89a00;
}

.m3r-service-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.m3r-service-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
}

.m3r-service-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.m3r-service-card--orange {
    background: #E89A00;
    grid-column: 3;
    grid-row: 1 / span 2;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0;
    padding: 30px;
}

.m3r-card-plane {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 0 auto 0;
    object-fit: contain;
}

.m3r-247-gigante {
    display: block;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 5px;
}

.m3r-service-card--orange .m3r-service-card-title {
    font-size: 21px;
    font-weight: 600;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.m3r-service-card--orange .m3r-service-card-text {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
}

/* ── Services — Mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
    .m3r-services-section {
        padding: 60px 0;
    }

    .m3r-services-container {
        padding: 0 20px;
    }

    .m3r-services-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
    }

    .m3r-services-title {
        font-size: 24px;
        text-align: center;
    }

    .m3r-services-grid {
        grid-template-columns: 1fr;
    }

    .m3r-service-card--orange {
        grid-column: auto;
        grid-row: auto;
    }

    .m3r-card-plane {
        max-width: 180px;
        margin-bottom: 40px;
    }
}

/* ── Form (Block 4) ─────────────────────────────────────────── */

.m3r-form-section {
    position: relative;
    padding: 100px 20px;
    background: #ffffff;
}

.m3r-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: #e89a00;
    z-index: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.m3r-form-box {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: #f4f3ef;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.m3r-form-header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.m3r-form-header-badge span {
    color: #e89a00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m3r-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.2;
}

.m3r-form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.m3r-col-2 { grid-column: span 2; }
.m3r-col-3 { grid-column: span 3; }
.m3r-col-4 { grid-column: span 4; }

.m3r-form-field input,
.m3r-form-field select {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    outline: none;
    color: #1a1a1a;
}

.m3r-form-field input::placeholder {
    color: #aaa;
}

.m3r-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.m3r-form-field select:invalid {
    color: #aaa;
}

.m3r-form-field select option {
    color: #1a1a1a;
}

.m3r-form-field input[type="date"]:not(:focus):not([value=""]),
.m3r-form-field input[type="time"]:not(:focus):not([value=""]) {
    color: #1a1a1a;
}

.m3r-form-field input[type="date"]::-webkit-calendar-picker-indicator,
.m3r-form-field input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}

.m3r-form-field button[type="submit"] {
    background: #e89a00;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m3r-form-field button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 154, 0, 0.4);
}

.m3r-form-footer {
    font-size: 12px;
    color: #999;
    margin: 20px 0 0;
    line-height: 1.5;
}

/* ── Form — Mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .m3r-form-section {
        padding: 60px 20px;
    }

    .m3r-form-section::before {
        width: 100%;
        height: 180px;
        border-radius: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .m3r-form-box {
        padding: 30px 20px;
    }

    .m3r-form-title {
        font-size: 24px;
    }

    .m3r-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .m3r-col-2,
    .m3r-col-3,
    .m3r-col-4 {
        grid-column: span 1;
    }
}

/* ── Feedback (Block 5) ──────────────────────────────────────── */

.m3r-feedback-section {
    background: #f7f7f5;
    padding: 100px 20px;
}

.m3r-feedback-container {
    max-width: 1200px;
    margin: 0 auto;
}

.m3r-feedback-header-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.m3r-feedback-header-badge span {
    color: #e89a00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m3r-feedback-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.m3r-feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    padding-left: 40px;
}

.m3r-feedback-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 40px 40px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.m3r-feedback-card::after {
    content: '\201D';
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: #e89a00;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.m3r-feedback-card:nth-child(2) {
    border-left: 4px solid #e89a00;
}

.m3r-avatar-wrapper {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #d6cbb1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.m3r-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m3r-stars {
    color: #e89a00;
    font-size: 20px;
    margin-bottom: 15px;
}

.m3r-feedback-quote {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
}

.m3r-feedback-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.m3r-feedback-role {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

.m3r-feedback-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.m3r-page-bar {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    margin: 0 5px;
    border-radius: 2px;
}

.m3r-page-bar--active {
    background: #e89a00;
}

/* ── Feedback — Mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
    .m3r-feedback-section {
        padding: 60px 20px;
    }

    .m3r-feedback-title {
        font-size: 28px;
    }

    .m3r-feedback-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-left: 0;
        margin-top: 60px;
    }

    .m3r-feedback-card {
        padding: 60px 30px 30px 30px;
        text-align: center;
    }

    .m3r-avatar-wrapper {
        left: 50%;
        top: -40px;
        transform: translateX(-50%);
    }

    .m3r-feedback-card::after {
        font-size: 30px;
    }
}

/* ── CTA (Block 6) ───────────────────────────────────────────── */

.m3r-cta-section {
    background-color: #e89a00;
    padding: 40px 20px;
}

.m3r-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.m3r-cta-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.m3r-cta-icon {
    width: 45px;
    height: auto;
    flex-shrink: 0;
}

.m3r-cta-phone-group {
    display: flex;
    flex-direction: column;
}

.m3r-cta-label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
}

.m3r-cta-number {
    color: #ffffff;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.1;
}

.m3r-cta-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.m3r-cta-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.m3r-cta-btn:hover {
    opacity: 0.85;
}

/* ── CTA — Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .m3r-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .m3r-cta-contact {
        flex-direction: column;
        align-items: center;
    }

    .m3r-cta-text {
        align-items: center;
    }

    .m3r-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── Footer (Block 7) ────────────────────────────────────────── */

.m3r-footer {
    background-color: #1a1a24;
    padding: 80px 20px 0;
}

.m3r-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.m3r-footer-logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.m3r-footer-desc {
    color: #d1d1d1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 25px;
}

.m3r-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.m3r-social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.m3r-social-circle svg {
    width: 15px;
    height: 15px;
}

.m3r-social-circle--orange {
    background: #e89a00;
}

.m3r-social-circle:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.m3r-footer-col-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 25px;
}

.m3r-footer-links {
    display: flex;
    flex-direction: column;
}

.m3r-footer-links a {
    display: block;
    color: #d1d1d1;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.m3r-footer-links a:hover {
    color: #e89a00;
}

.m3r-footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m3r-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.m3r-footer-contact-row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.m3r-footer-contact-row span {
    color: #d1d1d1;
    font-size: 14px;
    line-height: 1.5;
}

.m3r-footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m3r-footer-input {
    width: 100%;
    background: transparent;
    border: 1px solid #4a4a5a;
    border-radius: 30px;
    padding: 12px 20px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.m3r-footer-input::placeholder {
    color: #6a6a7a;
}

.m3r-footer-input:focus {
    border-color: #e89a00;
}

.m3r-footer-submit {
    align-self: flex-start;
    background: #e89a00;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.m3r-footer-submit:hover {
    opacity: 0.85;
}

.m3r-footer-bottom {
    border-top: 1px solid #2a2a36;
    padding: 25px 0;
}

.m3r-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.m3r-footer-bottom p {
    color: #6a6a7a;
    font-size: 13px;
    margin: 0;
}

/* ── Footer — Mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .m3r-footer {
        padding: 60px 20px 0;
    }

    .m3r-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }

    .m3r-footer-submit {
        align-self: stretch;
        text-align: center;
    }
}

/* ── Success Modal ────────────────────────────────────────────── */

.m3r-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 36, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.m3r-modal.show {
    display: flex;
    opacity: 1;
}

.m3r-modal-content {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.m3r-modal.show .m3r-modal-content {
    transform: translateY(0);
}

.m3r-modal-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.m3r-modal-content h3 {
    color: #e89a00;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.m3r-modal-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 30px;
}

.m3r-modal-btn {
    background-color: #1a1a24;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.m3r-modal-btn:hover {
    background-color: #e89a00;
}

/* ── Back to Top ─────────────────────────────────────────────── */

.m3r-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e89a00;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.m3r-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.m3r-back-to-top:hover {
    background-color: #1a1a24;
    transform: translateY(-3px);
}

.m3r-back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .m3r-back-to-top {
        bottom: 20px;
        right: 20px;
    }
}