.marketing-site {
    background: var(--neutral-02);
    min-width: 0;
}

.marketing-site #main-container {
    min-width: 0;
    max-width: 100%;
}

.marketing-site .container {
    padding: 0 1.25rem 1rem;
}

.marketing-site .layout-header {
    max-width: 72rem;
    margin: 1rem auto 0;
    padding: 0.9rem 1.2rem;
    min-width: 0;
    border: 0.1rem solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(1rem);
    box-shadow: 0 1.2rem 2.8rem rgba(50, 53, 74, 0.08);
    position: sticky;
    top: 0.75rem;
    z-index: 30;
}

.marketing-site .layout-header nav {
    flex-wrap: wrap;
    justify-content: center;
}

.marketing-site .layout-header nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border-radius: 0.375rem;
    cursor: pointer;
    color: var(--neutral-11);
    transition:
        background-color 160ms ease,
        color 160ms ease;
}

.marketing-site .layout-header nav .nav-link:hover {
    background: rgba(10, 10, 10, 0.04);
    color: var(--neutral-12);
}

.marketing-site .layout-header nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: -0.375rem;
    height: 0.125rem;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    opacity: 0.6;
}

.marketing-site .layout-header nav .nav-link:hover::after,
.marketing-site .layout-header nav .nav-link:focus-visible::after {
    transform: scaleX(1);
}

.marketing-site .layout-header nav .nav-link:focus-visible {
    outline: 0.15rem solid var(--lilac-04);
    outline-offset: 0.15rem;
}

.marketing-site .layout-header .auth-buttons {
    flex-wrap: wrap;
}

.marketing-site .layout-header .cta-button {
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.marketing-site .layout-header .cta-button:hover {
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.375rem 0.875rem rgba(0, 0, 0, 0.08);
}

.landing {
    max-width: 72rem;
    margin: 0 auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(124, 132, 185, 0.12);
    color: var(--lilac-06);
    border: 0.1rem solid rgba(124, 132, 185, 0.18);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.section-head {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 4.5rem 0 3rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/images/marketing/hero-legal-bg.webp");
    background-size: cover;
    background-position: 0% center;
    background-repeat: no-repeat;
    opacity: 0.48;
    transform: scaleX(-1) scale(1.02);
    transform-origin: center center;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.012) 0.8px, transparent 0.8px),
        radial-gradient(circle at 78% 32%, rgba(155, 140, 255, 0.1), transparent 42%),
        linear-gradient(
            90deg,
            rgba(245, 245, 247, 0.92) 0%,
            rgba(245, 245, 247, 0.84) 32%,
            rgba(245, 245, 247, 0.62) 56%,
            rgba(245, 245, 247, 0.38) 100%
        );
    background-size: 0.1875rem 0.1875rem, auto, auto;
    background-position: 0 0, center, center;
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy p {
    max-width: 42rem;
}

.hero-support {
    margin-top: 1rem;
    color: var(--neutral-10);
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999rem;
    background: rgba(255, 255, 255, 0.88);
    border: 0.1rem solid var(--neutral-04);
    color: var(--neutral-10);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-bullets {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.hero-bullets li {
    position: relative;
    padding-left: 1.3rem;
}

.hero-bullets li::before,
.video-points li::before,
.cta-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--green-04);
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-reassurance {
    margin-top: 0.85rem;
    color: var(--neutral-11);
    opacity: 0.72;
}

.hero-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--neutral-01);
    border: 0.1rem solid var(--neutral-03);
    color: var(--neutral-10);
    box-shadow: 0 0.45rem 1.1rem rgba(15, 18, 24, 0.04);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-visual-frame {
    display: grid;
    justify-items: end;
    gap: 1rem;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 32rem;
    padding: 1rem 0 1.25rem 1.2rem;
}

.hero-visual-frame::before {
    content: "";
    position: absolute;
    inset: -0.8rem -0.8rem 0.8rem 0.2rem;
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(149, 159, 222, 0.18), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12));
    box-shadow: 0 1.5rem 3.5rem rgba(50, 53, 74, 0.14);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-visual-frame .visual-placeholder {
    width: min(100%, 30rem);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 1.25rem 2.8rem rgba(50, 53, 74, 0.14);
}

.hero-visual-badge {
    position: absolute;
    top: 0.15rem;
    right: 0.6rem;
    z-index: 2;
    padding: 0.58rem 0.95rem;
    border-radius: 999px;
    border: 0.0625rem solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.94);
    color: var(--neutral-01);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0.75rem 1.8rem rgba(15, 18, 24, 0.18);
    backdrop-filter: blur(0.375rem);
}

.hero-visual-card {
    position: relative;
    z-index: 2;
    align-self: start;
    margin-right: auto;
    width: min(17rem, 72%);
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 0.1rem solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 1.2rem 2.4rem rgba(50, 53, 74, 0.16);
}

.hero-visual-card-title {
    font-weight: 700;
    color: var(--neutral-12);
}

.hero-visual-card-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.6rem;
    color: var(--neutral-10);
}

.hero-visual-card-list li {
    position: relative;
    padding-left: 1rem;
}

.hero-visual-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: var(--mint-07);
}

.hero-product {
    position: relative;
    z-index: 1;
    transform: scale(1.04);
    transform-origin: center center;
    box-shadow:
        0 1.25rem 2.5rem rgba(0, 0, 0, 0.08),
        0 3.75rem 7.5rem rgba(0, 0, 0, 0.1);
    animation: hero-product-float 6s ease-in-out infinite alternate;
}

@keyframes hero-product-float {
    from {
        transform: scale(1.04) translateY(0);
    }

    to {
        transform: scale(1.04) translateY(-0.35rem);
    }
}

.hero-proof-strip {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.hero-proof,
.impacto-card,
.card,
.step,
.feature,
.cta-form {
    box-shadow: 0 0.8rem 2rem rgba(50, 53, 74, 0.08);
}

.hero-proof {
    padding: 1.15rem 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
}

.hero-proof-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neutral-12);
}

.hero-proof-copy {
    margin-top: 0.4rem;
    color: var(--neutral-10);
}

.section {
    padding: 4rem 0;
}

.section-impacto {
    padding-top: 0;
}

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.impacto-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
}

.impacto-card-number {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lilac-05);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.video-section {
    padding-top: 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.video-card {
    background: rgba(255, 255, 255, 0.92);
    border: 0.1rem solid rgba(255, 255, 255, 0.78);
    border-radius: 1.1rem;
    padding: 1rem;
    box-shadow: 0 1rem 2.25rem rgba(50, 53, 74, 0.1);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.08);
    background: var(--neutral-12);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-points {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.6rem;
    color: var(--neutral-10);
}

.video-points li,
.cta-checklist li {
    position: relative;
    padding-left: 1.15rem;
}

.visual-placeholder {
    min-height: 14rem;
    background: linear-gradient(135deg, var(--neutral-03), var(--neutral-05));
    border-radius: 1rem;
    border: 0.1rem solid var(--neutral-04);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: var(--neutral-09);
    font-size: 1rem;
}

.visual-placeholder.has-image {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.visual-placeholder.has-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.85rem;
    border: 0.1rem solid var(--neutral-04);
    box-shadow: 0 0.6rem 1.2rem rgba(15, 18, 24, 0.1);
    cursor: zoom-in;
}

.card {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 1.5rem;
    border-radius: 0.85rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
}

.card h3 {
    margin-bottom: 0.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-flow {
    position: relative;
}

.process-flow-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.125rem;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        var(--neutral-04),
        transparent
    );
    pointer-events: none;
    z-index: 0;
}

.step {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 1.5rem;
    border-radius: 0.85rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
    display: grid;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999rem;
    font-weight: 700;
    color: var(--neutral-12);
    background: rgba(124, 132, 185, 0.12);
    border: 0.1rem solid rgba(124, 132, 185, 0.18);
    box-shadow: inset 0 0.05rem 0.1rem rgba(255, 255, 255, 0.4);
}

.step h3 {
    margin-bottom: 0;
}

.three-columns-flex,
.four-columns-flex {
    display: grid;
    gap: 1.5rem;
}

.three-columns-flex {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-columns-flex {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.beneficios-lista,
.seguridad-lista,
.cta-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficios-lista {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
}

.seguridad-lista {
    display: grid;
    gap: 1rem;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.88);
    border: 0.1rem solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 0.7rem 1.75rem rgba(50, 53, 74, 0.07);
    color: var(--neutral-11);
    font-weight: 600;
}

.beneficio-item .icon {
    flex: 0 0 auto;
    font-size: 1.1rem;
    color: var(--green-05);
    margin-top: 0.1rem;
}

.beneficio-titulo {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.beneficio-texto,
.beneficios-nota,
.feature-copy,
.testimonio-firma,
.cta-note,
.cta-privacy,
.cta-feedback {
    color: var(--neutral-10);
}

.testimonio {
    background: rgba(255, 255, 255, 0.84);
    display: grid;
    gap: 1rem;
}

.testimonio-firma {
    margin-top: 0.15rem;
}

.testimonio-quote-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 132, 185, 0.12);
    color: var(--lilac-06);
}

.testimonio-persona {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonio-avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 207, 238, 0.42);
    color: var(--neutral-12);
    font-size: 0.8rem;
    font-weight: 700;
}

.testimonio-persona-copy p {
    margin: 0;
}

.testimonio-nombre {
    color: var(--neutral-12);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 1.25rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
}

.feature-card {
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.feature .icon {
    font-size: 1.35rem;
    color: var(--neutral-10);
    margin-top: 0.1rem;
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
        transform: translateY(-0.1875rem);
        box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.05);
    }
}

.feature-title {
    font-weight: 700;
}

.section-seo {
    padding-top: 1rem;
}

.seo-page-hero {
    padding-bottom: 2rem;
}

.seo-page-hero-shell {
    max-width: 52rem;
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.seo-page-summary {
    margin-top: 2rem;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.seo-card {
    display: grid;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
}

.seo-card h3,
.seo-card p {
    margin: 0;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.seo-link-card {
    display: grid;
    gap: 0.45rem;
    align-content: start;
    min-height: 10rem;
    padding: 1.15rem 1.2rem;
    text-decoration: none;
    color: var(--neutral-11);
    background: rgba(255, 255, 255, 0.88);
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
    border-radius: 0.95rem;
    box-shadow: 0 0.8rem 2rem rgba(50, 53, 74, 0.06);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease;
}

.seo-link-card:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 1rem 2.4rem rgba(50, 53, 74, 0.09);
    border-color: rgba(124, 132, 185, 0.24);
    background: rgba(255, 255, 255, 0.94);
}

.seo-link-card-title {
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--neutral-12);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.use-case-icon {
    color: var(--neutral-12);
    font-size: 1.15rem;
}

.cta {
    background:
        linear-gradient(145deg, rgba(202, 207, 238, 0.28), rgba(221, 239, 235, 0.45)),
        rgba(255, 255, 255, 0.45);
    border-radius: 1.5rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.78);
    padding: 2rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.cta-form {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 0.1rem solid rgba(255, 255, 255, 0.75);
}

.cta-form .input-group {
    display: grid;
    gap: 0.5rem;
}

.cta-form textarea {
    min-height: 7rem;
    resize: vertical;
}

.cta-submit-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-trust-line {
    margin-top: -0.15rem;
    color: var(--neutral-11);
    opacity: 0.72;
}

.cta-feedback[hidden] {
    display: none;
}

.footer-links {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.4rem;
    border-top: 0.1rem solid rgba(124, 132, 185, 0.14);
    border-bottom: 0.1rem solid rgba(124, 132, 185, 0.08);
    background: rgba(255, 255, 255, 0.64);
    border-radius: 1.1rem;
    box-shadow: 0 0.8rem 2rem rgba(50, 53, 74, 0.05);
}

.footer-brand {
    min-width: 0;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand-logo {
    flex: 0 0 auto;
    border-radius: 999rem;
    box-shadow: 0 0.35rem 0.8rem rgba(50, 53, 74, 0.08);
}

.footer-brand-copy {
    display: grid;
    gap: 0.15rem;
}

.footer-brand-copy p {
    margin: 0;
}

.footer-brand-title {
    color: var(--neutral-12);
}

.footer-brand-text {
    max-width: 30rem;
    color: var(--neutral-10);
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999rem;
    text-decoration: none;
    color: var(--neutral-11);
    background: rgba(255, 255, 255, 0.82);
    border: 0.1rem solid var(--neutral-05);
    transition:
        color 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.footer-link:hover {
    color: var(--lilac-06);
    border-color: rgba(124, 132, 185, 0.24);
    background: var(--lilac-01);
    box-shadow: 0 0.5rem 1.2rem rgba(50, 53, 74, 0.08);
    transform: translateY(-0.0625rem);
}

.footer-link:focus-visible {
    outline: 0.15rem solid var(--lilac-04);
    outline-offset: 0.15rem;
}

.marketing-site .footer {
    display: none;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 13, 15, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1.5rem;
}

.lightbox-overlay.is-open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 80rem;
    width: 100%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 0.1rem solid var(--neutral-04);
    background: var(--neutral-01);
}

.lightbox-close {
    position: absolute;
    top: -1.5rem;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 0.1rem solid var(--neutral-04);
    background: var(--neutral-01);
    color: var(--neutral-11);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-close:hover {
    background: var(--neutral-03);
}

.mobile-cta {
    display: none;
}

.reveal-enabled .fade-in {
    opacity: 0;
    transform: translateY(0.75rem);
}

.reveal-enabled .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 400ms ease,
        transform 400ms ease;
}

@media (max-width: 1024px) {
    .marketing-site .layout-header {
        border-radius: 1.25rem;
        align-items: flex-start;
    }

    .hero-grid,
    .hero-proof-strip,
    .impacto-grid,
    .video-grid,
    .steps-grid,
    .features-grid,
    .seo-grid,
    .seo-links-grid,
    .three-columns-flex,
    .four-columns-flex,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-frame {
        max-width: none;
        padding-left: 1rem;
        padding-bottom: 1.5rem;
    }

    .hero-visual-frame::before {
        inset: -0.85rem -0.4rem 2.2rem 0.4rem;
    }

    .hero-visual-card {
        position: static;
        width: auto;
        margin-top: 1rem;
    }

    .process-flow-line {
        display: none;
    }

    .beneficios-lista {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .marketing-site .layout-header {
        margin-top: 0.5rem;
        padding: 0.9rem 1rem;
        gap: 1rem;
        align-items: stretch;
    }

    .marketing-site .layout-header.flex_justified {
        flex-direction: column;
    }

    .marketing-site .layout-header nav,
    .marketing-site .layout-header .auth-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .marketing-site .layout-header nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .marketing-site .layout-header nav .nav-link::after {
        display: none;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero::before {
        background-position: center;
        opacity: 0.1;
        transform: scale(1.01);
    }

    .hero::after {
        background-image:
            linear-gradient(
                180deg,
                rgba(245, 245, 247, 0.96) 0%,
                rgba(245, 245, 247, 0.92) 100%
            );
        background-size: auto;
        background-position: center;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-actions,
    .cta-submit-row {
        flex-direction: column;
    }

    .hero-actions .button-default,
    .hero-actions .button-outlined,
    .cta-submit-row .button-default,
    .cta-submit-row .button-outlined {
        width: 100%;
        justify-content: center;
    }

    .hero-visual-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 0.75rem;
    }

    .hero-visual-frame {
        padding: 0.9rem 0 0;
    }

    .hero-visual-frame::before {
        inset: -0.4rem 0 1.2rem 0;
        opacity: 0.82;
    }

    .hero-trust-pill {
        width: fit-content;
    }

    .cta {
        padding: 1.25rem;
    }

    body.marketing-site {
        padding-bottom: 6rem;
    }

    .mobile-cta {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 50;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1rem 2.5rem rgba(50, 53, 74, 0.22);
    }
}

@media (max-width: 768px) {
    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-site .layout-header nav .nav-link::after,
    .marketing-site .layout-header .cta-button,
    .hero-product {
        animation: none;
    }

    .reveal-enabled .fade-in,
    .reveal-enabled .fade-in.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marketing-site .layout-header .cta-button,
    .marketing-site .layout-header nav .nav-link {
        transition: none;
    }
}
