@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap");

:root {
    --indigo: #302a8e;
    --indigo-dark: #211d69;
    --indigo-soft: #ecebff;
    --coral: #d63a32;
    --coral-dark: #b82b25;
    --ink: #17182a;
    --muted: #67697a;
    --paper: #f7f5f1;
    --white: #ffffff;
    --line: #e6e2dc;
    --whatsapp: #1fa968;
    --shadow-sm: 0 12px 35px rgba(30, 28, 63, 0.08);
    --shadow-lg: 0 24px 70px rgba(25, 23, 68, 0.18);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 106px;
}

body {
    min-width: 320px;
    background: var(--white);
    color: var(--ink);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(214, 58, 50, 0.48);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 108px 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--white);
    color: var(--indigo);
    border-radius: 9px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 96px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(48, 42, 142, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
    height: 82px;
    box-shadow: 0 12px 32px rgba(27, 25, 69, 0.08);
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    min-width: 230px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 76px;
    height: 64px;
    object-fit: contain;
    border-radius: 11px;
    background: var(--white);
}

.brand-copy {
    display: grid;
    line-height: 1.18;
}

.brand-copy strong {
    color: var(--indigo);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin-left: auto;
}

.nav-menu a {
    position: relative;
    padding: 10px 0;
    color: #474859;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--indigo), var(--coral));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--indigo);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    color: var(--white);
    background: var(--indigo);
    border-radius: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-call:hover {
    background: var(--indigo-dark);
    transform: translateY(-2px);
}

.header-call > i {
    font-size: 17px;
}

.header-call span {
    display: grid;
    line-height: 1.25;
}

.header-call small {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.header-call strong {
    font-size: 13px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 13px;
    background: var(--indigo-soft);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: var(--indigo);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 690px;
    isolation: isolate;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #22223a url("assets/hero-cleaning.jpg") center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(17, 18, 35, 0.93) 0%, rgba(23, 23, 45, 0.84) 34%, rgba(25, 24, 49, 0.32) 65%, rgba(21, 20, 40, 0.09) 100%),
        linear-gradient(0deg, rgba(21, 20, 39, 0.33), transparent 42%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -190px;
    z-index: -1;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 690px;
    padding-top: 35px;
    padding-bottom: 60px;
}

.hero-content {
    width: 100%;
    min-width: 0;
    max-width: 680px;
    color: var(--white);
}

.hero-business-link {
    width: min(370px, 100%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 12px 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(12, 12, 34, 0.16);
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-business-link:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-2px);
}

.hero-business-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--indigo);
    background: var(--white);
    border-radius: 12px;
    font-size: 19px;
}

.google-logo {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.hero-business-copy {
    min-width: 0;
    display: grid;
    line-height: 1.35;
}

.hero-business-copy strong {
    font-size: 13px;
    font-weight: 800;
}

.hero-business-copy small {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-business-link > i {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.035em;
    backdrop-filter: blur(10px);
}

.eyebrow i {
    color: #ff6d64;
}

.hero h1 {
    max-width: 660px;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    line-height: 0.99;
    letter-spacing: -0.065em;
}

.hero h1 span {
    color: #ff736b;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-content > p {
    max-width: 610px;
    margin-top: 27px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 14px 30px rgba(214, 58, 50, 0.28);
}

.button-primary:hover {
    background: var(--coral-dark);
    box-shadow: 0 18px 40px rgba(214, 58, 50, 0.36);
}

.button-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.33);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.72);
    list-style: none;
    font-size: 12px;
    font-weight: 600;
}

.hero-points i {
    margin-right: 5px;
    color: #66d9a1;
}

.hero-proof {
    position: absolute;
    right: 0;
    bottom: 38px;
    max-width: 355px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.proof-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--indigo), #766adf);
    border-radius: 13px;
}

.hero-proof div:last-child {
    display: grid;
}

.hero-proof strong {
    font-size: 13px;
}

.hero-proof span {
    color: var(--muted);
    font-size: 11px;
}

.trust-strip {
    position: relative;
    z-index: 2;
    background: var(--indigo);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    color: #ff7971;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.trust-grid span {
    max-width: 90px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.services {
    background:
        radial-gradient(circle at 8% 20%, rgba(48, 42, 142, 0.06), transparent 23%),
        var(--paper);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.center-heading h2,
.why-intro h2,
.review-content h2,
.real-work-copy h2,
.faq-intro h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.section-heading > p {
    padding-bottom: 5px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.campaign-banner {
    padding: 38px 0 20px;
    background: var(--paper);
}

.campaign-shell {
    position: relative;
    min-height: 320px;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 120%, rgba(214, 58, 50, 0.38), transparent 34%),
        linear-gradient(135deg, var(--indigo-dark), var(--indigo));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.campaign-shell.has-image {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.campaign-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 750px;
    padding: 52px 58px;
}

.campaign-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #ffaaa5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.campaign-copy h2 {
    max-width: 720px;
    font-size: clamp(35px, 4.5vw, 57px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.campaign-copy p {
    max-width: 660px;
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.75;
}

.button-campaign {
    width: fit-content;
    color: var(--indigo);
    background: var(--white);
}

.button-campaign:hover {
    color: var(--white);
    background: var(--coral);
}

.campaign-image {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.campaign-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--indigo) 0%, transparent 32%);
}

.campaign-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

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

.service-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(48, 42, 142, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.service-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(15, 14, 35, 0.22));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.045);
}

.service-number {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: rgba(27, 25, 60, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(9px);
}

.service-content {
    position: relative;
    padding: 28px 25px;
}

.service-icon {
    position: absolute;
    top: -31px;
    left: 28px;
    z-index: 3;
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--indigo), #6358d0);
    border: 5px solid var(--white);
    border-radius: 17px;
    box-shadow: 0 10px 20px rgba(48, 42, 142, 0.22);
}

.service-content h3 {
    margin-top: 11px;
    margin-bottom: 11px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.service-content p {
    min-height: 92px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--indigo);
    font-size: 12px;
    font-weight: 800;
}

.service-content a i {
    transition: transform 0.2s ease;
}

.service-content a:hover i {
    transform: translateX(4px);
}

.real-work {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.real-work::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: rgba(48, 42, 142, 0.045);
    border-radius: 50%;
}

.real-work-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 78px;
    align-items: center;
}

.real-work-copy > p {
    max-width: 470px;
    margin: 24px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.verified-source {
    width: min(390px, 100%);
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
    padding: 13px 15px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 15px;
}

.verified-source > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 7px 18px rgba(30, 28, 63, 0.08);
}

.verified-source > div {
    display: grid;
}

.verified-source strong {
    font-size: 12px;
}

.verified-source small {
    color: var(--muted);
    font-size: 10px;
}

.button-dark {
    width: fit-content;
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    background: var(--indigo);
}

.real-work-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.work-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--indigo);
    font-size: 11px;
    font-weight: 800;
}

.work-google-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.work-google-link:hover i {
    transform: translate(2px, -2px);
}

.real-work-photo {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: block;
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.real-work-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(16, 15, 35, 0.68));
    pointer-events: none;
}

.real-work-photo img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.real-work-photo:hover img {
    transform: scale(1.025);
}

.public-media-gallery {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.public-media-gallery.empty {
    grid-template-columns: 1fr;
}

.public-media-empty {
    min-height: 560px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 35px;
    color: var(--muted);
    background: var(--paper);
    border: 1px dashed #cbc7c0;
    border-radius: var(--radius-lg);
    text-align: center;
}

.public-media-empty i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 5px;
    color: var(--indigo);
    background: var(--indigo-soft);
    border-radius: 17px;
}

.public-media-empty strong {
    color: var(--ink);
    font-size: 16px;
}

.public-media-empty span {
    max-width: 310px;
    font-size: 11px;
}

.public-media-gallery .real-work-photo {
    min-height: 270px;
    border-radius: 24px;
}

.public-media-gallery .real-work-photo:only-child {
    grid-column: 1 / -1;
    min-height: 560px;
}

.public-media-gallery .real-work-photo img,
.public-media-gallery .real-work-photo video {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
}

.public-media-gallery .real-work-photo:only-child img,
.public-media-gallery .real-work-photo:only-child video {
    min-height: 560px;
}

.public-media-gallery video {
    display: block;
    background: #10111c;
}

.media-card-copy {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    gap: 3px;
    color: var(--white);
    pointer-events: none;
}

.media-card-copy strong {
    font-size: 12px;
}

.media-card-copy span {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.managed-media-card.is-video .media-card-copy {
    bottom: 48px;
}

.gallery-page {
    background: var(--paper);
}

.gallery-main {
    min-height: calc(100vh - 96px);
}

.gallery-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(135deg, var(--indigo-dark), var(--indigo));
}

.gallery-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.gallery-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.gallery-hero-copy {
    max-width: 760px;
}

.gallery-hero .section-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.gallery-hero h1 {
    max-width: 720px;
    margin-top: 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.gallery-hero p {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.gallery-section {
    padding: 72px 0 108px;
}

.gallery-page-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
    gap: 20px;
}

.gallery-page-grid .real-work-photo,
.gallery-page-grid .real-work-photo:only-child {
    grid-column: auto;
    min-height: 340px;
    border-radius: 24px;
}

.gallery-page-grid .real-work-photo img,
.gallery-page-grid .real-work-photo video,
.gallery-page-grid .real-work-photo:only-child img,
.gallery-page-grid .real-work-photo:only-child video {
    min-height: 340px;
}

.gallery-page-grid .public-media-empty {
    grid-column: 1 / -1;
}

.gallery-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 56px;
    padding: 34px 38px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md);
}

.gallery-contact div {
    display: grid;
    gap: 5px;
}

.gallery-contact strong {
    font-size: 18px;
}

.gallery-contact span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.gallery-contact .button {
    flex: 0 0 auto;
}

.references {
    background:
        radial-gradient(circle at 95% 10%, rgba(48, 42, 142, 0.06), transparent 25%),
        var(--paper);
}

.references-heading {
    align-items: center;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reference-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 19px;
    padding: 21px;
    background: var(--white);
    border: 1px solid rgba(48, 42, 142, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.reference-logo {
    grid-row: 1 / 3;
    width: 105px;
    height: 86px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 10px;
    background: #faf9f7;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.reference-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reference-card h3 {
    align-self: end;
    overflow: hidden;
    font-size: 15px;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reference-card p {
    align-self: start;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.reference-card p span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    color: var(--indigo);
    background: var(--indigo-soft);
    border-radius: 7px;
    font-size: 9px;
    font-weight: 800;
}

.real-photo-label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.why-us {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 5% 100%, rgba(214, 58, 50, 0.35), transparent 28%),
        radial-gradient(circle at 95% 0%, rgba(132, 121, 255, 0.24), transparent 28%),
        var(--indigo-dark);
}

.why-us::after {
    content: "";
    position: absolute;
    top: 8%;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.018);
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.section-kicker.light {
    color: #ff7971;
}

.why-intro p {
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 13px;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    min-height: 205px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-card > i {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    margin-bottom: 22px;
    color: #ff8b85;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    font-size: 19px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.61);
    font-size: 12px;
    line-height: 1.7;
}

.process {
    background: var(--white);
}

.center-heading {
    max-width: 730px;
    margin: 0 auto 62px;
    text-align: center;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 43px;
    right: 16%;
    left: 16%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line) 0 9px, transparent 9px 18px);
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step > span {
    position: absolute;
    top: -7px;
    left: calc(50% + 23px);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--white);
    background: var(--coral);
    border: 3px solid var(--white);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}

.process-step > i {
    position: relative;
    z-index: 1;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--indigo);
    background: var(--indigo-soft);
    border: 8px solid var(--white);
    border-radius: 25px;
    box-shadow: 0 0 0 1px var(--line), var(--shadow-sm);
    font-size: 29px;
}

.process-step h3 {
    margin-bottom: 9px;
    font-size: 18px;
}

.process-step p {
    max-width: 270px;
    margin: auto;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.reviews {
    padding-top: 0;
    background: var(--white);
}

.review-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1.3fr 0.7fr;
    gap: 38px;
    align-items: center;
    padding: 58px;
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(48, 42, 142, 0.98), rgba(33, 29, 105, 0.98)),
        var(--indigo);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.review-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.google-mark {
    align-self: start;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--indigo);
    background: var(--white);
    border-radius: 24px;
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(15, 13, 51, 0.24);
}

.google-mark .google-logo {
    width: 38px;
    height: 38px;
}

.review-label {
    display: block;
    margin-bottom: 10px;
    color: #ff8a83;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.review-content h2 {
    max-width: 640px;
    font-size: clamp(34px, 4vw, 51px);
}

.review-content p {
    max-width: 600px;
    margin: 19px 0 27px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
}

.button-light {
    color: var(--indigo);
    background: var(--white);
}

.button-light .google-logo {
    width: 19px;
    height: 19px;
}

.review-badge {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: #ffc43d;
    font-size: 14px;
}

.review-badge strong {
    margin-bottom: 7px;
    font-size: 14px;
}

.review-badge span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1.6;
}

.faq {
    background:
        radial-gradient(circle at 90% 8%, rgba(48, 42, 142, 0.06), transparent 25%),
        var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro > p {
    margin: 23px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.text-link.dark {
    color: var(--indigo);
    border-bottom-color: rgba(48, 42, 142, 0.3);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(30, 28, 63, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(48, 42, 142, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    min-height: 76px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 19px 22px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--indigo);
    background: var(--indigo-soft);
    border-radius: 10px;
    font-size: 12px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary i {
    color: var(--white);
    background: var(--indigo);
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 720px;
    padding: 0 70px 23px 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.service-areas {
    padding-top: 0;
    padding-bottom: 90px;
    background: var(--paper);
}

.areas-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr auto;
    gap: 35px;
    align-items: center;
    padding: 42px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(214, 58, 50, 0.3), transparent 28%),
        var(--indigo-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.areas-heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.areas-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    color: #ff837c;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    font-size: 22px;
}

.areas-heading .section-kicker {
    margin-bottom: 6px;
}

.areas-heading h2 {
    max-width: 350px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.area-list i {
    color: #ff837c;
    font-size: 9px;
}

.button-area {
    color: var(--indigo);
    background: var(--white);
    white-space: nowrap;
}

.contact {
    background:
        radial-gradient(circle at 100% 0, rgba(214, 58, 50, 0.07), transparent 25%),
        var(--paper);
}

.contact-heading {
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    align-items: stretch;
}

.map-card {
    overflow: hidden;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.map-card iframe {
    width: 100%;
    flex: 1;
    min-height: 420px;
    border: 0;
    filter: saturate(0.82) contrast(1.03);
}

.map-address {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 23px;
}

.map-pin {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    border-radius: 16px 16px 16px 4px;
    font-size: 20px;
}

.map-address > div {
    display: grid;
}

.map-address small,
.contact-row small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-address strong {
    font-size: 14px;
}

.map-address > div span {
    color: var(--muted);
    font-size: 12px;
}

.map-address > a {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--indigo);
    background: var(--indigo-soft);
    border-radius: 13px;
    transition: background 0.2s ease, color 0.2s ease;
}

.map-address > a:hover {
    color: var(--white);
    background: var(--indigo);
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    min-height: 91px;
    padding: 15px;
    background: #faf9f7;
    border: 1px solid transparent;
    border-radius: 17px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-row:hover {
    transform: translateX(4px);
    border-color: rgba(48, 42, 142, 0.15);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 15px;
    font-size: 18px;
}

.contact-icon.phone {
    background: var(--indigo);
}

.contact-icon.whatsapp {
    background: var(--whatsapp);
}

.contact-icon.email {
    background: var(--coral);
}

.contact-icon.google {
    background: var(--white);
    border: 1px solid rgba(48, 42, 142, 0.1);
    box-shadow: 0 7px 18px rgba(30, 28, 63, 0.08);
}

.contact-row > span:nth-child(2) {
    min-width: 0;
    display: grid;
}

.contact-row strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
}

.contact-row > i {
    color: #a8a5b1;
    font-size: 12px;
}

.social-block {
    flex: 1;
    display: grid;
    align-content: center;
    gap: 20px;
    margin-top: 5px;
    padding: 24px;
    color: var(--white);
    background: var(--ink);
    border-radius: 19px;
}

.social-block > div:first-child {
    display: grid;
}

.social-block > div:first-child strong {
    font-size: 16px;
}

.social-block > div:first-child span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    color: var(--white);
    font-size: 17px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-link span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.65;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #8a3ab9, #e95950);
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #1877f2;
    transform: translateY(-2px);
}

.social-link.tiktok:hover {
    background: #000;
    box-shadow: -3px 0 0 #25f4ee, 3px 0 0 #fe2c55;
    transform: translateY(-2px);
}

.footer {
    padding: 35px 0;
    color: rgba(255, 255, 255, 0.67);
    background: #11121d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 60px;
    height: 48px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
}

.footer-brand span {
    display: grid;
}

.footer-brand strong {
    color: var(--white);
    font-size: 14px;
}

.footer-brand small,
.footer p,
.google-footer-link {
    font-size: 10px;
}

.footer-brand small {
    opacity: 0.6;
}

.footer p {
    text-align: center;
}

.google-footer-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
}

.google-footer-link .google-logo {
    width: 20px;
    height: 20px;
    padding: 3px;
    background: var(--white);
    border-radius: 5px;
}

.footer-admin-link {
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    padding: 9px 14px;
    color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-admin-link:hover {
    color: var(--white);
    background: var(--indigo);
    transform: translateY(-2px);
}

.mobile-actions {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .nav-menu {
        gap: 19px;
    }

    .header-call {
        display: none;
    }

    .hero-proof {
        right: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .service-content p {
        min-height: 76px;
    }

    .real-work-grid,
    .faq-grid {
        gap: 50px;
    }

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

    .areas-card {
        grid-template-columns: 1fr 1.3fr;
    }

    .button-area {
        grid-column: 1 / -1;
        width: fit-content;
        justify-self: end;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 82px;
    }

    .section {
        padding: 82px 0;
    }

    .site-header,
    .site-header.scrolled {
        height: 78px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 61px;
        height: 53px;
    }

    .brand-copy small {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        right: 0;
        left: 0;
        height: calc(100vh - 78px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 40px 24px;
        background: rgba(255, 255, 255, 0.98);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .nav-menu.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu a {
        display: block;
        padding: 18px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
    }

    .hero,
    .hero-inner {
        min-height: 650px;
    }

    .hero {
        background-position: 60% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(17, 18, 35, 0.94), rgba(23, 23, 45, 0.7) 70%, rgba(21, 20, 40, 0.32));
    }

    .hero-proof {
        display: none;
    }

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

    .trust-grid > div {
        min-height: 94px;
    }

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .section-heading,
    .why-grid,
    .contact-grid,
    .real-work-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 25px;
    }

    .real-work-grid {
        gap: 38px;
    }

    .gallery-hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .campaign-shell,
    .campaign-shell.has-image {
        grid-template-columns: 1fr;
    }

    .campaign-image {
        min-height: 280px;
    }

    .campaign-image::after {
        background: linear-gradient(180deg, var(--indigo) 0%, transparent 28%);
    }

    .real-work-copy {
        max-width: 650px;
    }

    .real-work-photo,
    .real-work-photo img {
        min-height: 500px;
    }

    .faq-intro {
        position: static;
        max-width: 650px;
    }

    .areas-card {
        grid-template-columns: 1fr;
    }

    .button-area {
        grid-column: auto;
        justify-self: start;
    }

    .why-grid {
        gap: 55px;
    }

    .review-card {
        grid-template-columns: auto 1fr;
        padding: 45px;
    }

    .review-badge {
        grid-column: 1 / -1;
        margin-left: 120px;
    }

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

    .footer p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 70px 0;
    }

    body {
        padding-bottom: 66px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .hero,
    .hero-inner {
        min-height: 690px;
    }

    .hero {
        background-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(17, 18, 35, 0.95), rgba(23, 23, 45, 0.76) 76%, rgba(21, 20, 40, 0.5));
    }

    .hero-inner {
        align-items: end;
        padding-top: 42px;
        padding-bottom: 62px;
    }

    .hero-business-link {
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 52px);
        letter-spacing: -0.055em;
    }

    .hero h1 span {
        font-size: 0.94em;
    }

    .hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-points {
        gap: 12px 17px;
        font-size: 10px;
    }

    .trust-grid strong {
        font-size: 21px;
    }

    .trust-grid span {
        font-size: 9px;
    }

    .section-heading h2,
    .center-heading h2,
    .why-intro h2,
    .review-content h2,
    .real-work-copy h2,
    .faq-intro h2 {
        font-size: 38px;
    }

    .services-grid,
    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .campaign-banner {
        padding-top: 22px;
    }

    .campaign-shell {
        border-radius: 24px;
    }

    .campaign-copy {
        padding: 37px 25px;
    }

    .campaign-copy h2 {
        font-size: 38px;
    }

    .reference-grid,
    .public-media-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-hero {
        padding: 70px 0 58px;
    }

    .gallery-hero h1 {
        font-size: 48px;
    }

    .gallery-section {
        padding: 48px 0 82px;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-grid .real-work-photo,
    .gallery-page-grid .real-work-photo:only-child,
    .gallery-page-grid .real-work-photo img,
    .gallery-page-grid .real-work-photo video,
    .gallery-page-grid .real-work-photo:only-child img,
    .gallery-page-grid .real-work-photo:only-child video {
        min-height: 390px;
    }

    .gallery-contact {
        align-items: stretch;
        flex-direction: column;
        padding: 28px 24px;
    }

    .gallery-contact .button {
        width: 100%;
    }

    .reference-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .reference-logo {
        width: 92px;
        height: 80px;
    }

    .public-media-gallery .real-work-photo,
    .public-media-gallery .real-work-photo:only-child,
    .public-media-gallery .real-work-photo img,
    .public-media-gallery .real-work-photo video,
    .public-media-gallery .real-work-photo:only-child img,
    .public-media-gallery .real-work-photo:only-child video {
        min-height: 410px;
    }

    .public-media-empty {
        min-height: 410px;
    }

    .service-content p {
        min-height: 0;
    }

    .real-work-photo,
    .real-work-photo img {
        min-height: 410px;
    }

    .real-photo-label {
        right: 16px;
        bottom: 16px;
    }

    .faq-item summary {
        min-height: 70px;
        padding: 17px 16px;
        font-size: 13px;
    }

    .faq-item p {
        padding: 0 52px 20px 16px;
        font-size: 12px;
    }

    .areas-card {
        gap: 26px;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .areas-heading {
        align-items: flex-start;
    }

    .areas-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .areas-heading h2 {
        font-size: 25px;
    }

    .process-grid {
        gap: 42px;
    }

    .process-grid::before {
        display: none;
    }

    .review-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 25px;
        border-radius: 25px;
    }

    .google-mark {
        width: 66px;
        height: 66px;
        border-radius: 19px;
        font-size: 27px;
    }

    .review-badge {
        grid-column: auto;
        margin-left: 0;
    }

    .map-card {
        min-height: 520px;
    }

    .map-card iframe {
        min-height: 350px;
    }

    .map-address {
        grid-template-columns: auto 1fr;
    }

    .map-address > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .contact-panel {
        padding: 16px;
    }

    .contact-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .contact-row > i {
        display: none;
    }

    .contact-row strong {
        font-size: 12px;
    }

    .social-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .social-link {
        min-width: 0;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .google-footer-link {
        justify-self: auto;
    }

    .footer-admin-link {
        margin-top: 3px;
    }

    .mobile-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        min-height: 66px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 35px rgba(25, 23, 68, 0.12);
        backdrop-filter: blur(15px);
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--indigo);
        border-radius: 12px;
        font-size: 13px;
        font-weight: 800;
    }

    .mobile-actions a:last-child {
        color: var(--white);
        background: var(--whatsapp);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .mobile-actions,
    .hero-actions,
    .map-card iframe {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
