/* Fondo principal */
.fondo-ondas {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #7e3f98; /* morado base */
    overflow: hidden;
}

/* Onda azul clara */
.fondo-ondas::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -10%;
    width: 120%;
    height: 300px;
    background: linear-gradient(
        to bottom,
        #cfe0ff,
        #8fb1f0
    );
    border-bottom-left-radius: 100% 80%;
    border-bottom-right-radius: 100% 80%;
}

/* Onda azul oscura */
.fondo-ondas::after {
    content: "";
    position: absolute;
    top: 80px;
    left: -15%;
    width: 130%;
    height: 280px;
    background: #4f6fa7;
    border-bottom-left-radius: 100% 80%;
    border-bottom-right-radius: 100% 80%;
}

/* Degradado inferior */
.degradado-inferior {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0.7)
    );
}

@font-face {
    font-family: 'Furreal';
    src: url("../fonts/furreal.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FurrealColor';
    src: url("../fonts/furrealcolor.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --mq-purple-1: #540064;
    --mq-purple-2: #9442A3;
    --mq-white: #FFFFFF;
    --mq-black: #000000;
    --mq-font-title: 'FurrealColor', 'Furreal', ui-sans-serif, system-ui, sans-serif;
    --mq-font-heading: 'Furreal', ui-sans-serif, system-ui, sans-serif;
}

body.mq-body {
    margin: 0;
    min-height: 100vh;
    background: var(--mq-white);
    color: var(--mq-black);
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
}

.mq-cookie{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 0;
    box-sizing: border-box;
}

.mq-cookie-inner{
    width: 98%;
    margin: 0;
    background: rgba(148,66,163,.92);
    border-radius: 0;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 18px;
    align-items: center;
    position: relative;
    box-shadow: 0 18px 48px rgba(0,0,0,.35);
}

.mq-cookie-close{
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(0,0,0,.25);
    color: rgba(255,255,255,.95);
    font-size: 18px;
    line-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mq-cookie-bone{
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: #f5c400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 18px rgba(0,0,0,.25),
        inset 0 0 0 2px rgba(0,0,0,.18);
}

.mq-cookie-bone img{
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,.18));
}

.mq-cookie-title{
    font-family: var(--mq-font-heading);
    color: rgba(255,255,255,.95);
    font-size: 22px;
    letter-spacing: .04em;
    font-weight: 900;
    text-transform: uppercase;
}

.mq-cookie-sub{
    margin-top: 6px;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    line-height: 1.25;
    max-width: 640px;
}

.mq-cookie-actions{
    display: flex;
    align-items: center;
    gap: 58px;
}

.mq-cookie-btn{
    border: 0;
    cursor: pointer;
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 900;
    font-family: inherit;
    box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

.mq-cookie-btn--primary{
    background: rgba(109,42,138,.95);
    color: rgba(255,255,255,.95);
}

.mq-cookie-gear{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    background: rgba(109,42,138,.95);
    color: rgba(255,255,255,.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(0,0,0,.22);
    position: relative;
}

.mq-cookie-gear svg{width: 22px;height: 22px;}

.mq-cookie-settings{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
    padding: 12px;
}

.mq-cookie-settings-title{
    font-weight: 900;
    color: rgba(15,23,42,.85);
    font-size: 13px;
    margin-bottom: 10px;
}

.mq-cookie-settings-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: rgba(15,23,42,.72);
    padding: 8px 0;
    border-top: 1px solid rgba(226,232,240,.9);
}

.mq-cookie-settings-row:first-of-type{
    border-top: 0;
}

.mq-cookie-settings-pill{
    font-size: 10px;
    font-weight: 900;
    background: rgba(124,58,237,.10);
    color: rgba(124,58,237,.92);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

@media (max-width: 980px){
    .mq-cookie-inner{
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto;
        row-gap: 14px;
    }

    .mq-cookie-actions{
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-right: 38px;
    }

    .mq-cookie-sub{max-width: 100%;}
}

.hidden {
    display: none !important;
}

.mq-hero-wrap {
    position: relative;
    width: 100%;
    background: var(--mq-white);
}

.mq-hero {
    height: 70vh;
    min-height: 520px;
    background: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mq-hero-title {
    font-family: var(--mq-font-heading);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: clamp(64px, 12vw, 160px);
    line-height: 1;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.mq-hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mq-hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: mq-hero-fade 16s ease-in-out infinite;
}

.mq-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.mq-hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.mq-hero-slide:nth-child(2) {
    animation-delay: 4s;
}

.mq-hero-slide:nth-child(3) {
    animation-delay: 8s;
}

.mq-hero-slide:nth-child(4) {
    animation-delay: 12s;
}

@keyframes mq-hero-fade {
    0%, 20% {
        opacity: 1;
    }
    25%, 100% {
        opacity: 0;
    }
}

.mq-navbar {
    position: absolute;
    z-index: 10;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, calc(100% - 40px));
    background: linear-gradient(90deg, var(--mq-purple-1), var(--mq-purple-2));
    border-radius: 18px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--mq-white);
    box-sizing: border-box;
}

.mq-nav-left,
.mq-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}

.mq-nav-right {
    justify-content: flex-end;
}

.mq-nav-center {
    flex: 1;
    text-align: center;
    font-family: var(--mq-font-heading);
    font-size: clamp(22px, 4vw, 46px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.mq-nav-link,
.mq-nav-login {
    color: var(--mq-white);
    text-decoration: none;
}

.mq-nav-link {
    font-weight: 700;
    font-size: 18px;
}

.mq-nav-login {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.mq-user-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.08);
}

.mq-user-icon svg {
    width: 22px;
    height: 22px;
}

.mq-section {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 60px 0 90px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    box-sizing: border-box;
}

.mq-card {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.mq-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.mq-tagline {
    font-family: var(--mq-font-heading);
    font-size: 22px;
    line-height: 1.05;
    text-transform: uppercase;
    color: #2B2B2B;
}

.mq-card-box {
    width: 100%;
    height: 320px;
    background: #D9D9D9;
    border-radius: 12px;
}

.mq-about {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mq-about h2 {
    margin: 0;
    font-family: var(--mq-font-heading);
    font-size: clamp(32px, 5vw, 56px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mq-dog-bowl {
    position: absolute;
    right: -10px;
    bottom: -26px;
    width: 140px;
}

.mq-landing {
    width: 100%;
    overflow: hidden;
}

.mq-about-wrap {
    background: #ffffff;
    padding: 62px 0 18px;
}

.mq-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
    margin: 0;
    width: 120%;
}

.mq-about-title {
    margin: 0;
    text-align: center;
    font-family: var(--mq-font-heading);
    font-size: clamp(28px, 4.8vw, 60px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    font-size: 90px;
}

.mq-about-title,
.mq-about-text {
    grid-column: 2;
}

.mq-about-text {
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
    margin-top: -44vh;
    max-width: 640px;
    font-weight: 500;
    line-height: 1.6;
    color: #333333;
    text-align: left;
    font-size: 20px;
}

.mq-about-card {
    position: relative;
    width: min(420px, 100%);
    padding-top: 40px;
}

.mq-about-tagline {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    z-index: 2;
}

.mq-rainbow {
    position: absolute;
    top: -48px;
    left: -85px;
    width: 147px;
    height: auto;
    transform: rotate(-29deg);
    pointer-events: none;
}

.mq-tagline-text {
    font-family: var(--mq-font-heading);
    text-transform: uppercase;
    font-size: clamp(35px, 2.6vw, 26px);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 0.06em;
    margin-top: 43vh;
}

.mq-about-box {
    position: relative;
    height: 50vh;
    background: #d9d9d9;
    border-radius: 24px;
    overflow: hidden;
}

.mq-dog-badge {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%) rotate(-14deg);
    transform-origin: center center;
    width: 210px;
    height: auto;
}

.mq-dog-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.mq-about-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mq-services-wrap {
    position: relative;
    padding: 120px 0 110px;
    background: transparent;
    overflow: hidden;
}

.mq-bg-page {
    position: relative;
}


.mq-bg-page-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.mq-services-title {
    margin: 0;
    text-align: center;
    padding: 0 0 26px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}

.mq-services-shape {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    z-index: 0;
    display: none;
}

.mq-services-shape--a {
    width: 820px;
    height: 820px;
    left: -460px;
    top: 240px;
    background: #2f5e9a;
}

.mq-services-shape--b {
    width: 760px;
    height: 760px;
    left: -280px;
    top: 40px;
    background: #3a6cae;
}

.mq-services-shape--c {
    width: 780px;
    height: 780px;
    right: -440px;
    top: 120px;
    background: #8dc1ff;
    opacity: 0.95;
}

.mq-services-shape--d {
    width: 720px;
    height: 720px;
    right: -360px;
    bottom: -220px;
    background: #8c45bf;
}

.mq-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contenedor más ancho solo para la sección de servicios */
.mq-services-wrap .mq-container {
    width: min(1280px, calc(100% - 40px));
}

.mq-title {
    margin: 0;
    text-align: center;
    font-family: var(--mq-font-title);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1;
}

.mq-title--light {
    color: #ffffff;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.mq-title--xl {
    font-size: clamp(59px, 1.5vw, 76px);
    font-family: "Chango", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mq-services-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 44px;
    align-items: start;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.mq-card-ui {
    background: rgba(230, 240, 255, 0.86);
    border: 2px solid rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    padding: 36px 34px;
    min-height: 190px;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
}

.mq-card-ui h3 {
    margin: 0 0 16px;
    text-align: center;
    font-family: var(--mq-font-heading);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 60px;
    color: #0f0f0f;
}
 
.mq-card-ui span {
    font-size: 25px;
    color: #0f0f0f;
    font-family: "Delius", cursive;
}

.mq-paw-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.mq-paw-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 7px;
    align-items: start;
    font-weight: 600;
    color: #1b1b1b;
    font-size: 14px;
    line-height: 1.45;
    z-index: 2;
    margin-top: 2px;
}

.mq-paw {
    width: 50px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    color: #6f7c93;
}

.mq-paw img {
    width: 50px;
    height: 50px;
    display: block;
}

.mq-services-center {
    grid-column: 1 / -1;
    width: min(820px, 100%);
    justify-self: center;
}

.mq-why {
    padding: 46px 0 164px;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-top: 26vh;
}

.mq-why p {
    margin: 12px auto 0;
    max-width: 860px;
    font-weight: 800;
    opacity: 0.95;
    font-family: "Delius", cursive;
    font-size: 29px;
}

.mq-mv-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 110px;
}

.mq-mv-grid::before {
    content: "♥";
    position: absolute;
    left: -25px;
    top: -31px;
    font-size: 112px;
    line-height: 1;
    color: #b8b35b;
    transform: rotate(-14deg);
    opacity: 0.92;
    z-index: 2;
}

.mq-mv-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.96);
    border: 60px solid rgb(246, 246, 246);
    border-radius: 22px;
    padding: 32px 34px 38px;
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.12);
    min-height: 350px;
}

.mq-mv-card h3 {
    margin: 0 0 10px;
    font-family: var(--mq-font-heading);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(24px, 4.4vw, 44px);
    line-height: 1;
    color: #0f0f0f;
    font-size: 10vh;    
}

.mq-mv-card p {
    margin: 0;
    color: #161616;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.45;
    font-size: 20px;    
}

.mq-pet {
    position: absolute;
    left: 50%;
    bottom: -36px;
    transform: translateX(-50%);
    width: 25vh;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.mq-bark {
    position: absolute;
    right: -80px;
    top: -63px;
    transform: rotate(-16deg);
    padding: 10px 20px;
    background: rgba(20, 20, 20, 0.92);
    color: #ffffff;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    font-family: var(--mq-font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 36px;
}

.mq-values-wrap {
    margin-top: -20vh;
    padding: 74px 0 96px;
    background: linear-gradient(
        to bottom,
        #9442A3 0%,    /* morado intenso arriba */
        #c684e0 25%,   /* morado más claro */
        #ffffff 60%,   /* transición a blanco antes de las tarjetas */
        #ffffff 100%
    );
}

.mq-values-wrap {
    position: relative;
}

.mq-values-badge {
    position: absolute;
    top: 80px;
    right: 120px;
    transform: translate(20%, -20%);
    width: 40vh;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 900px) {
    .mq-values-badge {
        width: 200px;
        transform: translate(10%, -10%);
    }
}

.mq-values-dog {
    position: absolute;
    bottom: 0;
    left: 4vh;
    transform: translate(-25%, 10%);
    width: 50vh;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 900px) {
    .mq-values-dog {
        width: 160px;
        transform: translate(-20%, 10%);
    }
}

.mq-title--dark {
    font-family: var(--mq-font-heading);
    color: #0f0f0f;
    text-shadow: none;
    margin-top: -23px;
    font-size: 10vh;    
}

.mq-values-grid {
    margin: 60px auto 0;
    max-width: 1120px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 92px;
}

.mq-value-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
    padding: 90px 30px 34px;
    position: relative;
}

.mq-value-bone {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    max-width: 95%;
}

.mq-value-bone img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    margin-top: -75px;
}

.mq-value-bone span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 34px;
    text-align: center;
    font-family: var(--mq-font-heading);
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0f0f0f;
    margin-top: -72px;
}

.mq-value-card p {
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.45;
    color: #161616;
    font-weight: 700;
}

.mq-numbers-footer {
    position: relative;
    overflow: hidden;
    padding: 78px 0 184px;
    background: transparent;
}

.mq-footer-section {
    padding: 86px 0;
    background: #b57cc4;
    color: #ffffff;
}

.mq-footer-section .mq-footer-band {
    margin-top: 0;
}

.mq-numbers-title {
    margin: 0;
    text-align: center;
    font-family: var(--mq-font-heading);
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
}

.mq-numbers-subtitle {
    margin: 8px 0 0;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.mq-container-post {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}

.mq-instagram-row {
    --ig-post-w: clamp(520px, 34vw, 720px);
    display: grid;
    grid-template-columns: var(--ig-post-w) minmax(260px, 1fr) var(--ig-post-w);
    align-items: center;
    justify-content: center;
    column-gap: 56px;
    margin-top: 9vh;
}

.mq-instagram-row .instagram-post {
    width: var(--ig-post-w);
}

.mq-instagram-row .mq-instagram-phrase {
    text-align: center;
    max-width: 520px;
    justify-self: center;
}
/* Instagram post embed en la sección de números */
.instagram-post {
border: 10px solid #9442A3;
    border-radius: 45px;
    padding: -2px;
    background-color: #B983C3;
    box-shadow: none;
    margin: 0;
    z-index: 2;
    position: relative;
    isolation: isolate;
}

.instagram-phone-frame {
    width: 150% !important;
    height: auto !important;
    display: block;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 2;
}

.instagram-post .instagram-media {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 80% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden;
    background: #ffffff;
    
}

.mq-instagram-phrase {
    font-family: "Ranchers", sans-serif;
    font-size: clamp(34px, 4vw, 100px);
    line-height: 0.95;
    color: #000000;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
    max-width: 420px;
    margin: 0;
    padding-left: 6px;
}

@media (max-width: 900px) {
    .mq-container-post {
        left: 0;
    }

    .mq-instagram-row {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 26px;
    }

    .mq-instagram-row .instagram-post {
        width: 100%;
        max-width: 520px;
    }

    .mq-instagram-row .mq-instagram-phrase {
        flex: none;
        max-width: 680px;
    }

    .instagram-post {
        margin-left: auto;
        margin-right: auto;
    }

    .mq-instagram-phrase {
        text-align: center;
        max-width: 680px;
        margin-bottom: 28px;
    }
}

.mq-numbers-grid {
    margin: 46px auto 0;
    max-width: 880px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.mq-number-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.16);
    height: 140px;
}

.mq-footer-band {
    margin-top: 80vh;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 60px;
    align-items: flex-end;
}

.mq-footer-brand {
    position: relative;
}

.mq-footer-brand-title {
    font-family: var(--mq-font-heading);
    font-size: clamp(34px, 5.2vw, 56px);
    line-height: 0.9;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mq-footer-brand-tagline {
    margin-top: 10px;
    font-family: var(--mq-font-heading);
    font-size: 16px;
    letter-spacing: 0.04em;
}

.mq-footer-dog {
    margin-top: 12px;
    width: 120px;
    height: auto;
    display: block;
}

.mq-footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    align-items: flex-end;
}

.mq-footer-link-group h3 {
    margin: 0 0 6px;
    font-family: var(--mq-font-heading);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mq-footer-underline {
    width: 160px;
    height: 4px;
    border-radius: 999px;
    background: #ffffff;
}

@media (max-width: 900px) {
    .mq-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 92px;
    }
}

@media (max-width: 540px) {
    .mq-values-grid {
        grid-template-columns: 1fr;
        row-gap: 92px;
    }

    .mq-value-card {
        padding: 84px 18px 22px;
    }

    .mq-value-bone span {
        font-size: 14px;
        padding: 0 26px;
    }
}

@media (max-width: 900px) {
    .mq-numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mq-footer-band {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mq-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .mq-numbers-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .mq-footer-links {
        flex-direction: column;
        gap: 26px;
        align-items: flex-start;
    }

    .mq-footer-underline {
        width: 140px;
    }
}

@media (max-width: 600px) {
    .mq-hero {
        height: 60vh;
        min-height: 360px;
    }

    .mq-navbar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 14px;
    }

    .mq-nav-center {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        white-space: normal;
        font-size: clamp(18px, 6vw, 30px);
    }

    .mq-nav-left,
    .mq-nav-right {
        flex: 1 1 auto;
    }

    .mq-nav-link {
        font-size: 16px;
    }

    .mq-user-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 320px) {
    .mq-about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mq-about-title {
        text-align: left;
    }

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

    .mq-mv-grid {
        grid-template-columns: 1fr;
        padding-bottom: 140vh;
        z-index: 3;
    }
}

@media (max-width: 900px) {
    .mq-navbar {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .mq-nav-left,
    .mq-nav-right {
        min-width: auto;
    }

    .mq-section {
        flex-direction: column;
        gap: 28px;
        padding: 44px 0 70px;
    }

    .mq-about {
        justify-content: flex-start;
    }

    .instagram-phone-frame {
        width: 100% !important;
    }

    .mq-footer-band {
        margin-top: 40px;
    }
}

@media (max-width: 540px) {
    .mq-values-dog {
        left: 0;
        transform: translate(-10%, 10%);
    }
}
