@media (max-width: 1080px) {
    .nav {
        gap: 14px;
    }

    .header-actions .icon-link {
        display: none;
    }

    .hero-grid,
    .comparison-grid,
    .price-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .section-heading.compact {
        margin-bottom: 24px;
    }

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

@media (max-width: 860px) {
    .header-inner {
        min-height: 68px;
    }

    .brand img,
    .footer-logo {
        width: 142px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions .btn {
        display: none;
    }

    .nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 78px;
        display: grid;
        gap: 4px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    body.menu-open .nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 8px 10px;
    }

    .hero {
        padding-top: 34px;
    }

    .trust-list,
    .comparison-panels,
    .process-grid,
    .benefit-grid,
    .steps,
    .about-grid,
    .split-feature,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .result-note {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-channels,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-media {
        left: 18%;
    }

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

    .problem-icon-card:nth-child(odd) {
        border-left: 0;
    }

    .showcase-before-after,
    .problem-safety-note {
        width: 100%;
    }

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

    .process-timeline::before {
        left: 56px;
    }

    .process-row {
        grid-template-columns: 112px 140px minmax(0, 1fr);
        gap: 24px;
        min-height: 220px;
    }

    .process-number {
        width: 68px;
        height: 68px;
        font-size: 1.6rem;
    }

    .process-icon-cell img {
        width: min(100%, 126px);
    }

    .process-result-note {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 28px;
    }

    .process-proof {
        padding: 16px 18px;
    }

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

@media (max-width: 640px) {
    :root {
        --section-transition-size: 88px;
    }

    .container,
    .narrow {
        width: calc(100% - 24px);
        max-width: var(--container);
    }

    .section {
        padding: 54px 0;
    }

    h1 {
        font-size: clamp(1.95rem, 9vw, 2.45rem);
        line-height: 1.12;
    }

    h2 {
        font-size: clamp(1.65rem, 9vw, 2.35rem);
    }

    .hero-actions,
    .final-actions {
        display: grid;
    }

    .hero-copy {
        max-width: 100%;
        min-width: 0;
    }

    .hero-copy h1 {
        max-width: 21rem;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-copy p,
    .trust-list li {
        max-width: 21rem;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    .trust-list {
        max-width: 21rem;
    }

    .hero-visual,
    .hero-image {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .btn {
        width: 100%;
    }

    .contact-page {
        padding: 34px 0 64px;
    }

    .contact-hero-shell {
        min-height: 438px;
    }

    .contact-hero-copy {
        max-width: 310px;
        padding: 26px 0 38px;
    }

    .contact-eyebrow {
        margin-bottom: 14px;
        font-size: .76rem;
        letter-spacing: .16em;
    }

    .contact-hero h1 {
        max-width: 310px;
        font-size: clamp(2.58rem, 12.2vw, 3.35rem);
        line-height: 1.02;
    }

    .contact-hero-copy p {
        max-width: 300px;
        margin-top: 18px;
        font-size: .98rem;
        line-height: 1.48;
    }

    .contact-hero-media {
        inset: 0 -16px 0 28%;
        border-radius: 0;
        opacity: .86;
    }

    .contact-hero-media img {
        max-width: none;
        object-position: 64% 50%;
    }

    .contact-hero-media::after {
        background:
            linear-gradient(90deg, var(--section-bg-light) 0%, rgba(248, 251, 255, .96) 38%, rgba(248, 251, 255, .5) 72%, rgba(248, 251, 255, .18) 100%),
            linear-gradient(180deg, rgba(248, 251, 255, .72) 0%, rgba(248, 251, 255, .1) 52%, rgba(248, 251, 255, .78) 100%);
    }

    .contact-content {
        gap: 18px;
    }

    .contact-channels {
        gap: 12px;
    }

    .contact-channel {
        min-height: 96px;
        grid-template-columns: 52px minmax(0, 1fr) 24px;
        gap: 12px;
        padding: 14px;
        border-radius: 16px;
    }

    .contact-channel-icon {
        width: 50px;
        height: 50px;
    }

    .contact-channel strong {
        font-size: 1rem;
    }

    .contact-channel small {
        font-size: .88rem;
    }

    .contact-channel em {
        font-size: .74rem;
    }

    .contact-channel b {
        font-size: 1.45rem;
    }

    .contact-form-card {
        gap: 16px;
        padding: 20px 14px;
        border-radius: 18px;
    }

    .contact-form-heading h2 {
        font-size: 1.62rem;
    }

    .contact-form-heading p {
        font-size: .96rem;
    }

    .contact-form-grid {
        gap: 14px;
    }

    .contact-field input,
    .contact-field textarea {
        min-height: 52px;
        padding: 13px 14px;
        border-radius: 12px;
    }

    .contact-field textarea {
        min-height: 142px;
    }

    .contact-submit {
        min-height: 54px;
        font-size: .98rem;
    }

    .contact-trust-strip {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-top: 4px;
    }

    .contact-trust-strip div {
        min-height: 46px;
        justify-content: flex-start;
    }

    .contact-trust-strip img {
        width: 30px;
        height: 30px;
    }

    .proof-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-showcase {
        padding-top: 64px;
    }

    .problem-showcase-inner {
        gap: 34px;
    }

    .section-accent {
        width: 58px;
        height: 5px;
        margin-bottom: 24px;
    }

    .problem-showcase-heading h2 {
        max-width: 330px;
        font-size: clamp(1.72rem, 7.8vw, 2.24rem);
        line-height: 1.1;
    }

    .problem-showcase-heading p:last-child {
        max-width: 340px;
        margin-top: 18px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .problem-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
    }

    .problem-icon-card {
        gap: 10px;
        padding-inline: 12px;
    }

    .problem-icon-card + .problem-icon-card {
        border-left: 0;
    }

    .problem-icon-card:nth-child(even) {
        border-left: 1px solid rgba(7, 26, 61, .12);
    }

    .problem-icon-img {
        width: 68px;
        height: 68px;
        object-fit: contain;
    }

    .problem-icon-card h3 {
        font-size: .88rem;
    }

    .problem-icon-card p {
        font-size: .82rem;
        line-height: 1.35;
    }

    .showcase-before-after {
        border-radius: 14px;
    }

    .showcase-before-after img {
        aspect-ratio: 1.16 / 1;
        object-fit: cover;
        object-position: center;
    }

    .comparison-label {
        top: 14px;
        min-width: 62px;
        padding: 9px 12px;
        border-radius: 9px;
        font-size: .78rem;
    }

    .comparison-label-before {
        left: 14px;
    }

    .comparison-label-after {
        right: 14px;
    }

    .comparison-handle {
        width: 58px;
        height: 58px;
    }

    .comparison-handle span {
        width: 28px;
        height: 20px;
    }

    .comparison-handle span::before,
    .comparison-handle span::after {
        width: 10px;
        height: 10px;
        border-top-width: 3px;
    }

    .comparison-handle span::before {
        border-left-width: 3px;
    }

    .comparison-handle span::after {
        border-right-width: 3px;
    }

    .drag-hint {
        margin-top: -14px;
        font-size: .95rem;
    }

    .problem-safety-note {
        min-height: 0;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        padding: 24px 20px;
        border-radius: 16px;
        text-align: center;
    }

    .safety-icon-img {
        width: 62px;
        height: 62px;
        object-fit: contain;
    }

    .problem-safety-note p {
        font-size: 1.06rem;
    }

    .problem-showcase-cta h3 {
        font-size: 1.58rem;
    }

    .problem-showcase-cta a {
        gap: 14px;
        font-size: 1.06rem;
    }

    .proof-grid div {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.16);
    }

    .hero-image {
        border-radius: var(--radius-md);
    }

    .price-card,
    .problem-card,
    .comparison-card,
    .benefit-grid article,
    .steps article {
        padding: 18px;
    }

    .cleaning-comparison-heading {
        gap: 18px;
        margin-bottom: 28px;
    }

    .cleaning-comparison-heading h2 {
        max-width: 340px;
        font-size: clamp(1.72rem, 7.8vw, 2.24rem);
        line-height: 1.1;
    }

    .cleaning-comparison-heading > span {
        width: 86px;
        height: 5px;
    }

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

    .method-card {
        padding-top: 14px;
        border-radius: 14px;
    }

    .method-badge {
        width: 54px;
        height: 54px;
        margin-bottom: 10px;
    }

    .method-badge span {
        width: 30px;
        height: 30px;
        font-size: 1.38rem;
    }

    .method-card h3 {
        min-height: 52px;
        font-size: clamp(.92rem, 4.8vw, 1.24rem);
        line-height: 1.08;
    }

    .method-photo {
        width: calc(100% - 18px);
        margin-top: 8px;
        border-radius: 8px;
        aspect-ratio: 1 / .82;
    }

    .method-list {
        padding: 12px 9px 16px;
    }

    .method-list li {
        min-height: 48px;
        gap: 7px;
        font-size: clamp(.66rem, 3vw, .82rem);
        line-height: 1.2;
    }

    .method-list li > span {
        width: 22px;
        height: 22px;
        font-size: .95rem;
        flex: 0 0 auto;
    }

    .method-list-muted li > span {
        font-size: 0;
    }

    .method-list-muted li > span::before,
    .method-list-muted li > span::after {
        width: 44%;
        height: 3px;
    }

    .pricing-jump-cta {
        padding-top: 36px;
        padding-bottom: 46px;
    }

    .pricing-jump-inner {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .pricing-jump-inner h3 {
        font-size: 1.16rem;
    }

    .pricing-jump-inner p {
        font-size: .9rem;
    }

    .pricing-jump-inner a {
        width: 100%;
        min-height: 50px;
    }

    .process-shell {
        width: calc(100% - 20px);
    }

    .process-hero-heading {
        margin-bottom: 34px;
    }

    .process-eyebrow {
        gap: 16px;
        margin-bottom: 22px;
        font-size: .88rem;
    }

    .process-eyebrow span {
        width: 48px;
        height: 2px;
    }

    .process-hero-heading h2 {
        font-size: clamp(2rem, 10vw, 2.72rem);
    }

    .process-hero-heading > i {
        width: 74px;
        height: 5px;
        margin: 22px auto 18px;
    }

    .process-hero-heading p {
        max-width: 340px;
        font-size: 1.02rem;
        line-height: 1.5;
    }

    .process-timeline::before {
        top: 32px;
        bottom: 36px;
        left: 28px;
        width: 2px;
    }

    .process-row {
        grid-template-columns: 56px 76px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 22px 0;
    }

    .process-row + .process-row {
        border-top-color: rgba(7, 26, 61, .12);
    }

    .process-number {
        width: 54px;
        height: 54px;
        font-size: 1.34rem;
        box-shadow: 0 10px 18px rgba(7, 87, 200, .16);
    }

    .process-icon-cell img {
        width: 74px;
    }

    .process-copy h3 {
        margin-bottom: 10px;
        font-size: clamp(1.15rem, 5.8vw, 1.55rem);
        line-height: 1.12;
    }

    .process-copy p {
        font-size: .94rem;
        line-height: 1.42;
    }

    .process-equipment {
        width: min(100%, 230px);
        margin-top: 14px;
        padding: 7px 8px;
    }

    .process-proof {
        width: 100%;
        margin-top: 14px;
        padding: 14px 14px 14px 16px;
        border-left-width: 3px;
        border-radius: 6px;
    }

    .process-proof-badge {
        margin-bottom: 8px;
        font-size: .62rem;
        letter-spacing: .06em;
    }

    .process-proof h4 {
        margin-bottom: 10px;
        font-size: .96rem;
        line-height: 1.28;
    }

    .process-proof ul {
        gap: 6px;
        margin-bottom: 10px;
    }

    .process-proof li {
        min-height: 28px;
        padding: 6px 9px;
        font-size: .78rem;
    }

    .process-proof p,
    .process-proof strong {
        font-size: .84rem;
        line-height: 1.42;
    }

    .process-result-note {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        margin-top: 28px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .process-result-note > img {
        width: 64px;
    }

    .process-result-note > div {
        padding-left: 16px;
    }

    .process-result-note h3 {
        font-size: clamp(1.06rem, 5vw, 1.38rem);
        line-height: 1.18;
    }

    .process-result-note div > span {
        width: 54px;
        height: 4px;
        margin-top: 14px;
    }

    .final-cta-inner {
        border-radius: var(--radius-md);
        padding: 24px;
    }

    .services-showcase {
        padding: 58px 0;
    }

    .services-showcase-shell {
        width: calc(100% - 24px);
    }

    .services-showcase-heading {
        margin-bottom: 30px;
    }

    .services-eyebrow {
        gap: 18px;
        margin-bottom: 20px;
        font-size: .9rem;
    }

    .services-eyebrow span {
        width: 40px;
        height: 2px;
    }

    .services-showcase-heading h2 {
        font-size: clamp(2.12rem, 11vw, 3.2rem);
        line-height: 1.02;
    }

    .services-showcase-heading > i {
        width: 66px;
        height: 5px;
        margin: 22px auto 18px;
    }

    .services-showcase-heading p {
        max-width: 350px;
        font-size: 1rem;
        line-height: 1.52;
    }

    .services-showcase .services-grid {
        gap: 14px;
    }

    .services-showcase .service-card {
        border-radius: 14px;
    }

    .services-showcase .service-card-media > img {
        aspect-ratio: 1.48 / 1;
    }

    .services-showcase .service-card-icon {
        left: 12px;
        bottom: -31px;
        width: 68px;
        height: 68px;
        border-radius: 14px;
    }

    .services-showcase .service-card-icon img {
        width: 58px;
        height: 58px;
    }

    .services-showcase .service-card .service-card-body {
        padding: 45px 14px 16px;
    }

    .services-showcase .service-card-title-row {
        gap: 8px;
        align-items: start;
    }

    .services-showcase .service-card-title-row h3 {
        font-size: clamp(1rem, 4.5vw, 1.28rem);
        line-height: 1.2;
    }

    .services-showcase .service-card-arrow {
        font-size: 1.75rem;
        margin-top: 2px;
    }

    .services-showcase .service-card-rule {
        width: 64px;
        margin: 12px 0 11px;
    }

    .services-showcase .service-card-body p {
        font-size: .88rem;
        line-height: 1.48;
    }

    .services-cta {
        grid-template-columns: 56px minmax(0, 1fr) 54px;
        gap: 14px;
        margin-top: 24px;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .services-cta > img {
        width: 54px;
        height: 54px;
    }

    .services-cta h3 {
        font-size: 1.16rem;
    }

    .services-cta div > a {
        font-size: 1.08rem;
    }

    .services-cta-action {
        width: 54px;
        height: 54px;
    }

    body:has(.mobile-sticky-cta) {
        padding-bottom: 74px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
        padding: 8px;
        background: rgba(255,255,255,.94);
        border: 1px solid var(--color-border);
        border-radius: 14px;
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(12px);
    }

    .mobile-sticky-cta a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        background: var(--color-primary);
        color: #fff;
        font-weight: 900;
    }
}

@media (max-width: 390px) {
    .container,
    .narrow {
        width: calc(100% - 20px);
        max-width: var(--container);
    }

    .brand img {
        width: 132px;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
    }

    .header-actions {
        gap: 6px;
    }
}

@media (max-width: 1080px) {
    .hero-premium {
        min-height: 880px;
    }

    .hero-premium-copy {
        width: min(540px, 64vw);
    }

    .hero-premium h1 {
        font-size: clamp(3.08rem, 6.35vw, 4.7rem);
    }

    .hero-premium-media img {
        object-position: 76% 48%;
    }
}

@media (max-width: 860px) {
    .site-header {
        background: rgba(255,255,255,.97);
        border-bottom: 1px solid rgba(7, 26, 61, .12);
        box-shadow: 0 8px 24px rgba(7, 26, 61, .05);
    }

    .header-whatsapp {
        min-height: 44px;
        padding: 10px 14px;
        border-radius: 13px;
        font-size: .95rem;
    }

    .hero-premium {
        min-height: 880px;
        padding-top: 52px;
    }

    .hero-premium-inner {
        min-height: 740px;
    }

    .hero-premium-copy {
        width: min(430px, 76vw);
    }

    .hero-premium h1 {
        max-width: 380px;
        font-size: clamp(2.86rem, 8.45vw, 4.05rem);
        overflow-wrap: normal;
    }

    .hero-premium-media img {
        object-position: 72% 45%;
    }

    .hero-premium-shade {
        background:
            linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.91) 42%, rgba(255,255,255,.18) 67%, rgba(255,255,255,0) 100%),
            linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.20) 34%, rgba(255,255,255,0) 68%, rgba(255,255,255,.52) 100%);
    }

    .hero-trust-card {
        margin-top: -64px;
    }
}

@media (max-width: 640px) {
    main,
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
    }

    .header-actions {
        justify-self: end;
        min-width: 0;
    }

    .brand img {
        width: 118px;
    }

    .header-whatsapp {
        gap: 7px;
        padding: 10px 12px;
        font-size: .9rem;
        white-space: nowrap;
    }

    .header-whatsapp svg {
        width: 18px;
        height: 18px;
    }

    .hero-premium {
        min-height: 574px;
        padding-top: 32px;
    }

    .hero-premium-inner {
        width: calc(100% - 40px);
        min-height: 498px;
    }

    .hero-premium-copy {
        width: min(326px, 100%);
    }

    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: clamp(10px, 2.75vw, 11px);
        line-height: 1.3;
    }

    .hero-premium h1 {
        max-width: 292px;
        font-size: clamp(2rem, 8.4vw, 2.5rem);
        line-height: 1.05;
        letter-spacing: 0;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-accent {
        width: 48px;
        height: 4px;
        margin: 18px 0 16px;
    }

    .hero-description {
        max-width: 282px;
        font-size: clamp(.9rem, 3.55vw, 1rem);
        line-height: 1.46;
    }

    .hero-premium-actions {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-wa-btn,
    .hero-call-btn {
        min-height: 52px;
        border-radius: 9px;
        font-size: .84rem;
    }

    .hero-wa-btn {
        min-width: 0;
        width: 176px;
        justify-content: space-between;
        padding: 10px 12px;
        gap: 8px;
    }

    .hero-call-btn {
        width: 136px;
        justify-content: flex-start;
        padding: 10px 18px;
        gap: 10px;
        background: rgba(255,255,255,.62);
    }

    .hero-wa-btn svg,
    .hero-call-btn svg {
        width: 20px;
        height: 20px;
        flex: 0 0 auto;
    }

    .hero-premium-media img {
        max-width: none;
        width: calc(100% + 18px);
        object-position: 59% 53%;
        transform: translateX(42px) scale(.88);
        transform-origin: right top;
    }

    .hero-premium-shade {
        background:
            linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.88) 47%, rgba(255,255,255,.08) 72%, rgba(255,255,255,0) 100%),
            linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.12) 30%, rgba(255,255,255,0) 68%, rgba(255,255,255,.28) 100%);
    }

    .hero-trust-card {
        width: calc(100% - 40px);
        max-width: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: -42px;
        border-radius: 14px;
    }

    .hero-trust-item {
        min-width: 0;
        min-height: 104px;
        gap: 7px;
        padding: 14px 6px;
    }

    .hero-trust-item svg,
    .hero-trust-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .hero-trust-item:nth-child(2) img {
        width: 48px;
        height: 48px;
    }

    .hero-trust-item strong {
        font-size: .76rem;
        line-height: 1.18;
        overflow-wrap: normal;
    }

    .section-heading h2 {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-premium + .section {
        padding-top: 82px;
    }

    .benefits-experience {
        padding: 58px 0;
    }

    .benefits-experience-shell {
        width: calc(100% - 24px);
    }

    .benefits-experience-heading {
        margin-bottom: 24px;
    }

    .benefits-eyebrow {
        gap: 16px;
        margin-bottom: 18px;
        font-size: .82rem;
    }

    .benefits-eyebrow span {
        width: 36px;
    }

    .benefits-experience-heading h2 {
        font-size: clamp(1.64rem, 7.4vw, 2.12rem);
        line-height: 1.09;
    }

    .benefits-experience-heading p {
        max-width: 360px;
        margin-top: 16px;
        font-size: .98rem;
        line-height: 1.45;
    }

    .benefits-lifestyle {
        border-radius: 14px;
    }

    .benefits-lifestyle > img {
        aspect-ratio: 1.45 / 1;
    }

    .benefits-floating-bar {
        bottom: 24px;
        display: grid;
        grid-template-columns: .8fr .8fr 1.28fr;
        width: calc(100% - 24px);
        max-width: 390px;
        padding: 7px;
        border-radius: 16px;
        font-size: .74rem;
    }

    .benefits-floating-bar span {
        min-height: 28px;
        gap: 4px;
        min-width: 0;
        padding: 0 7px;
        border-radius: 999px;
        background: rgba(247, 251, 255, .82);
    }

    .benefits-floating-bar span + span {
        padding-left: 0;
        border-left: 0;
    }

    .benefits-floating-bar img {
        width: 15px;
        height: 15px;
    }

    .benefits-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 24px;
    }

    .benefits-experience-item {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 13px 12px;
        border-radius: 16px;
    }

    .benefits-experience-item > img {
        width: 52px;
        height: 52px;
        padding: 11px;
        margin-bottom: 12px;
    }

    .benefits-experience-item h3 {
        font-size: clamp(.92rem, 4vw, 1.05rem);
        line-height: 1.12;
    }

    .benefits-experience-item p {
        font-size: .78rem;
        line-height: 1.36;
    }

    .benefits-experience-cta {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        margin-top: 16px;
        padding: 14px 14px;
        border-radius: 16px;
    }

    .benefits-experience-cta > img {
        width: 48px;
        height: 48px;
        padding: 10px;
    }

    .benefits-experience-cta h3 {
        font-size: 1.04rem;
    }

    .benefits-experience-cta p {
        font-size: .84rem;
    }

    .benefits-experience-cta a {
        grid-column: 1 / -1;
        min-height: 46px;
        margin-top: 2px;
        padding: 0 20px;
        font-size: 1rem;
    }

    .faq-showcase {
        padding: 58px 0;
    }

    .faq-showcase-shell {
        width: calc(100% - 24px);
    }

    .faq-showcase-heading {
        margin-bottom: 26px;
    }

    .faq-eyebrow {
        gap: 14px;
        margin-bottom: 16px;
        font-size: .78rem;
    }

    .faq-eyebrow span {
        width: 34px;
    }

    .faq-showcase-heading h2 {
        font-size: clamp(2rem, 10vw, 2.72rem);
        line-height: 1.04;
    }

    .faq-showcase-heading p {
        max-width: 350px;
        margin-top: 14px;
        font-size: .94rem;
        line-height: 1.44;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-question {
        min-height: 62px;
        grid-template-columns: minmax(0, 1fr) 32px;
        gap: 12px;
        padding: 15px 14px;
    }

    .faq-question span:first-child {
        font-size: .98rem;
        line-height: 1.24;
    }

    .faq-toggle-icon {
        width: 30px;
        height: 30px;
        font-size: 1.24rem;
    }

    .faq-panel-inner {
        padding: 0 14px 16px;
    }

    .faq-panel p {
        font-size: .9rem;
        line-height: 1.5;
    }

    .faq-bottom-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 18px;
        padding: 18px 14px;
        border-radius: 16px;
        text-align: left;
    }

    .faq-bottom-cta h3 {
        font-size: 1.12rem;
    }

    .faq-bottom-cta p {
        font-size: .9rem;
    }

    .faq-bottom-cta-action {
        justify-items: stretch;
    }

    .faq-bottom-cta-action .btn {
        min-width: 0;
        width: 100%;
        min-height: 50px;
    }

    .faq-bottom-cta-action span {
        justify-self: center;
        font-size: .82rem;
    }

    .pricing-showcase {
        padding: 72px 0 62px;
    }

    .pricing-shell {
        width: calc(100% - 24px);
    }

    .pricing-showcase-heading {
        margin-bottom: 22px;
    }

    .pricing-eyebrow {
        gap: 14px;
        margin-bottom: 16px;
        font-size: .78rem;
    }

    .pricing-eyebrow span {
        width: 34px;
    }

    .pricing-showcase-heading h2 {
        font-size: clamp(2rem, 10vw, 2.72rem);
        line-height: 1.04;
    }

    .pricing-showcase-heading p {
        max-width: 350px;
        margin-top: 14px;
        font-size: .94rem;
        line-height: 1.44;
    }

    .pricing-highlight {
        min-height: 52px;
        gap: 12px;
        margin-top: 20px;
        padding: 11px 18px;
        font-size: .94rem;
        text-align: left;
    }

    .pricing-tabs {
        gap: 10px;
        margin-inline: -12px;
        padding: 4px 12px 14px;
        scroll-padding-inline: 12px;
    }

    .pricing-tab {
        flex-basis: 108px;
        min-height: 122px;
        padding: 10px 7px 12px;
        border-radius: 14px;
        font-size: .84rem;
    }

    .pricing-tab-icon {
        width: 72px;
        height: 72px;
    }

    .pricing-tab-icon img {
        width: 62px;
        height: 62px;
    }

    .pricing-card {
        padding: 18px 14px 16px;
        border-radius: 16px;
    }

    .pricing-card-head {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 12px;
        margin-bottom: 14px;
    }

    .pricing-card-icon {
        width: 58px;
        height: 58px;
    }

    .pricing-card-icon img {
        width: 46px;
        height: 46px;
    }

    .pricing-card-head h3 {
        font-size: 1.32rem;
    }

    .pricing-card-head p {
        font-size: .92rem;
    }

    .pricing-list li {
        gap: 12px;
        min-height: 46px;
        padding: 10px 0;
    }

    .pricing-list span {
        font-size: .95rem;
        line-height: 1.28;
    }

    .pricing-list strong {
        font-size: 1.02rem;
    }

    .pricing-more {
        min-height: 46px;
        padding-inline: 12px;
        border-radius: 11px;
        font-size: .92rem;
    }

    .pricing-photo-cta {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
        margin-top: 20px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .pricing-photo-icon {
        width: 54px;
        height: 54px;
    }

    .pricing-photo-icon svg {
        width: 34px;
        height: 34px;
    }

    .pricing-photo-cta h3 {
        font-size: 1.14rem;
    }

    .pricing-photo-cta p {
        font-size: .9rem;
    }

    .pricing-photo-button {
        min-height: 52px;
        gap: 12px;
        padding: 0 18px;
        font-size: .98rem;
    }

    .pricing-photo-proof {
        gap: 10px 14px;
        font-size: .82rem;
    }
}

@media (max-width: 390px) {
    .brand img {
        width: 110px;
    }

    .header-whatsapp {
        padding-inline: 10px;
        font-size: .82rem;
        border-radius: 12px;
    }

    .contact-hero-copy {
        max-width: 292px;
    }

    .contact-hero h1 {
        max-width: 284px;
        font-size: clamp(2.36rem, 12.3vw, 2.9rem);
    }

    .contact-hero-copy p {
        max-width: 276px;
        font-size: .92rem;
    }

    .contact-channel {
        grid-template-columns: 48px minmax(0, 1fr) 20px;
        padding-inline: 12px;
    }

    .contact-channel-icon {
        width: 46px;
        height: 46px;
    }

    .contact-form-card {
        padding-inline: 12px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero-premium {
        min-height: 562px;
    }

    .hero-premium-inner {
        width: calc(100% - 18px);
        min-height: 492px;
    }

    .hero-premium-copy {
        width: min(300px, 100%);
    }

    .hero-premium h1 {
        max-width: 226px;
        font-size: clamp(1.85rem, 9.3vw, 2.22rem);
    }

    .hero-description {
        max-width: 252px;
        font-size: .86rem;
    }

    .hero-wa-btn {
        width: 176px;
    }

    .hero-call-btn {
        width: 134px;
    }

    .hero-wa-btn,
    .hero-call-btn {
        font-size: .75rem;
    }

    .hero-premium-media img {
        width: calc(100% + 18px);
        object-position: 59% 53%;
        transform: translateX(38px) scale(.88);
        transform-origin: right top;
    }

    .hero-trust-card {
        width: calc(100% - 18px);
    }

    .hero-trust-item strong {
        font-size: .68rem;
    }

    .services-showcase-shell {
        width: calc(100% - 18px);
    }

    .services-showcase .services-grid {
        gap: 10px;
    }

    .services-showcase .service-card-media > img {
        aspect-ratio: 1.36 / 1;
    }

    .services-showcase .service-card-icon {
        left: 9px;
        bottom: -28px;
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .services-showcase .service-card-icon img {
        width: 52px;
        height: 52px;
    }

    .services-showcase .service-card .service-card-body {
        padding: 41px 10px 13px;
    }

    .services-showcase .service-card-title-row {
        gap: 6px;
    }

    .services-showcase .service-card-title-row h3 {
        font-size: clamp(.9rem, 4.9vw, 1.06rem);
    }

    .services-showcase .service-card-arrow {
        font-size: 1.42rem;
    }

    .services-showcase .service-card-body p {
        font-size: .78rem;
        line-height: 1.42;
    }

    .services-cta {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 10px;
        padding: 15px 12px;
    }

    .services-cta > img,
    .services-cta-action {
        width: 46px;
        height: 46px;
    }

    .services-cta h3,
    .services-cta div > a {
        font-size: .98rem;
    }

    .pricing-jump-inner {
        width: calc(100% - 18px);
        padding-inline: 12px;
    }

    .benefits-experience-shell {
        width: calc(100% - 18px);
    }

    .benefits-eyebrow {
        gap: 12px;
        font-size: .76rem;
    }

    .benefits-eyebrow span {
        width: 28px;
    }

    .benefits-experience-heading h2 {
        font-size: clamp(1.5rem, 7.2vw, 1.75rem);
    }

    .benefits-experience-heading p {
        font-size: .9rem;
    }

    .benefits-floating-bar {
        bottom: 22px;
        width: calc(100% - 18px);
        padding: 6px;
        font-size: .68rem;
    }

    .benefits-floating-bar span {
        min-height: 26px;
        gap: 3px;
        padding: 0 5px;
    }

    .benefits-floating-bar img {
        width: 14px;
        height: 14px;
    }

    .benefits-experience-item > img {
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .benefits-experience-item h3 {
        font-size: .9rem;
    }

    .benefits-experience-item p {
        font-size: .74rem;
        line-height: 1.34;
    }

    .benefits-experience-cta {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 11px;
        padding: 13px 12px;
    }

    .benefits-experience-cta > img {
        width: 44px;
        height: 44px;
        padding: 9px;
    }

    .benefits-experience-cta h3 {
        font-size: 1rem;
    }

    .benefits-experience-cta p {
        font-size: .82rem;
    }

    .faq-showcase-shell {
        width: calc(100% - 18px);
    }

    .faq-eyebrow {
        gap: 10px;
        font-size: .72rem;
    }

    .faq-eyebrow span {
        width: 26px;
    }

    .faq-showcase-heading h2 {
        font-size: clamp(1.78rem, 9.4vw, 2.22rem);
    }

    .faq-showcase-heading p {
        font-size: .88rem;
    }

    .faq-question {
        padding-inline: 12px;
    }

    .faq-question span:first-child {
        font-size: .94rem;
    }

    .faq-panel-inner {
        padding-inline: 12px;
    }

    .faq-bottom-cta {
        padding-inline: 12px;
    }

    .pricing-shell {
        width: calc(100% - 18px);
    }

    .pricing-eyebrow {
        gap: 10px;
        font-size: .72rem;
    }

    .pricing-eyebrow span {
        width: 26px;
    }

    .pricing-showcase-heading h2 {
        font-size: clamp(1.78rem, 9.4vw, 2.22rem);
    }

    .pricing-showcase-heading p {
        font-size: .88rem;
    }

    .pricing-highlight {
        padding: 10px 14px;
        font-size: .86rem;
    }

    .pricing-tab {
        flex-basis: 102px;
        min-height: 116px;
        font-size: .82rem;
    }

    .pricing-tab-icon {
        width: 68px;
        height: 68px;
    }

    .pricing-tab-icon img {
        width: 58px;
        height: 58px;
    }

    .pricing-card {
        padding-inline: 12px;
    }

    .pricing-card-head {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .pricing-card-icon {
        width: 52px;
        height: 52px;
    }

    .pricing-card-icon img {
        width: 42px;
        height: 42px;
    }

    .pricing-card-head h3 {
        font-size: 1.16rem;
    }

    .pricing-card-head p {
        font-size: .84rem;
    }

    .pricing-list li {
        gap: 10px;
    }

    .pricing-list span {
        font-size: .88rem;
    }

    .pricing-list strong {
        font-size: .94rem;
    }

    .pricing-photo-cta {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 12px;
        padding-inline: 12px;
    }

    .pricing-photo-icon {
        width: 46px;
        height: 46px;
    }

    .pricing-photo-icon svg {
        width: 30px;
        height: 30px;
    }

    .pricing-photo-button {
        gap: 10px;
        padding-inline: 14px;
        font-size: .9rem;
    }

    .pricing-photo-proof {
        justify-content: flex-start;
        font-size: .78rem;
    }
}

@media (max-width: 340px) {
    .header-whatsapp span {
        display: none;
    }

    .header-whatsapp {
        width: 44px;
        padding: 0;
    }

    .hero-premium {
        min-height: 548px;
    }

    .hero-premium-inner {
        min-height: 480px;
    }

    .hero-premium h1 {
        max-width: 218px;
        font-size: 1.74rem;
    }

    .hero-description {
        max-width: 232px;
        font-size: .82rem;
    }

    .hero-wa-btn {
        width: 170px;
    }

    .hero-call-btn {
        width: 130px;
    }

    .hero-trust-item {
        padding-inline: 5px;
    }

    .hero-trust-item strong {
        font-size: .72rem;
    }

    .services-showcase-shell {
        width: calc(100% - 14px);
    }

    .services-showcase .services-grid {
        gap: 8px;
    }

    .services-showcase .service-card .service-card-body {
        padding-inline: 8px;
    }

    .services-showcase .service-card-title-row h3 {
        font-size: .86rem;
    }

    .services-showcase .service-card-body p {
        font-size: .74rem;
    }

    .services-cta {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .services-cta-action {
        display: none;
    }

    .benefits-experience-shell {
        width: calc(100% - 14px);
    }

    .benefits-floating-bar {
        width: calc(100% - 12px);
        padding: 5px;
        font-size: .62rem;
    }

    .benefits-floating-bar span {
        min-height: 24px;
        padding-inline: 4px;
    }

    .benefits-floating-bar img {
        width: 13px;
        height: 13px;
    }

    .benefits-experience-item {
        padding: 12px 10px;
    }

    .benefits-experience-item > img {
        width: 46px;
        height: 46px;
        padding: 9px;
    }

    .benefits-experience-item h3 {
        font-size: .82rem;
    }

    .benefits-experience-item p {
        font-size: .7rem;
    }

    .faq-showcase-shell {
        width: calc(100% - 14px);
    }

    .faq-question {
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 10px;
        padding: 13px 10px;
    }

    .faq-question span:first-child {
        font-size: .88rem;
    }

    .faq-toggle-icon {
        width: 28px;
        height: 28px;
    }

    .pricing-shell {
        width: calc(100% - 14px);
    }

    .pricing-highlight {
        border-radius: 16px;
    }

    .pricing-tab {
        flex-basis: 94px;
        min-height: 110px;
        padding-inline: 7px;
        font-size: .74rem;
    }

    .pricing-tab-icon {
        width: 62px;
        height: 62px;
    }

    .pricing-tab-icon img {
        width: 54px;
        height: 54px;
    }

    .pricing-list {
        display: grid;
        gap: 0;
    }

    .pricing-list li {
        gap: 8px;
    }

    .pricing-list span {
        font-size: .82rem;
    }

    .pricing-list strong {
        font-size: .86rem;
    }

    .pricing-photo-cta {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .pricing-photo-icon {
        width: 40px;
        height: 40px;
    }

    .pricing-photo-icon svg {
        width: 26px;
        height: 26px;
    }

    .pricing-photo-button svg {
        display: none;
    }
}
