:root {
    color-scheme: light;
    --ink: #171717;
    --muted: #67615b;
    --paper: #fff7ed;
    --paper-strong: #ffefe0;
    --panel: rgba(255, 253, 249, .86);
    --panel-strong: rgba(255, 253, 249, .94);
    --line: #eadbcb;
    --accent: #ff623d;
    --accent-dark: #df4a28;
    --acid: #d7ff57;
    --shadow: 0 22px 70px rgba(44, 29, 18, .12);
    --shadow-soft: 0 14px 40px rgba(44, 29, 18, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 98, 61, .16), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(215, 255, 87, .2), transparent 30%),
        linear-gradient(180deg, #fffaf2 0%, #fff1e2 100%);
}

a { color: inherit; }

img {
    display: block;
    width: 100%;
    height: auto;
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 24px));
    margin: 12px auto 0;
    padding: 10px 14px;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 999px;
    background: rgba(255, 253, 249, .9);
    box-shadow: 0 10px 38px rgba(44, 29, 18, .08);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease;
}

.topbar.is-elevated {
    background: rgba(255, 253, 249, .97);
    box-shadow: 0 18px 50px rgba(44, 29, 18, .16);
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--ink);
    color: white;
    font-weight: 950;
    transform: rotate(-5deg);
}

.nav {
    display: flex;
    gap: 6px;
    align-items: center;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 999px;
    padding: 5px;
    background: rgba(23, 23, 23, .04);
    color: #403a35;
    font-size: 14px;
    font-weight: 800;
}

.nav a {
    border-radius: 999px;
    padding: 8px 12px;
    text-decoration: none;
    transition: background .16s ease, color .16s ease;
}

.nav a:hover {
    background: var(--ink);
    color: white;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(44, 29, 18, .06);
}

.menu-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle .menu-toggle-line + .menu-toggle-line {
    margin-top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile-cta {
    display: none !important;
}

.section { padding: 88px 0; }

.section-band {
    position: relative;
    overflow: hidden;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: .94;
    letter-spacing: -.04em;
}

.hero-title {
    max-width: 760px;
}

.scribble {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.scribble::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0.08em;
    height: 0.22em;
    background: rgba(255, 98, 61, .22);
    border-bottom: 4px solid var(--accent);
    border-radius: 999px;
    transform: rotate(-1.5deg);
    z-index: -1;
}

.scribble::before {
    content: "";
    position: absolute;
    left: 2px;
    right: -2px;
    bottom: 0.02em;
    height: 0.08em;
    background: var(--accent);
    border-radius: 999px;
    opacity: .95;
    transform: rotate(-1deg);
    z-index: -1;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: .96;
    letter-spacing: -.03em;
}

h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.claim {
    max-width: 720px;
    color: #2f2925;
    font-size: clamp(24px, 2.9vw, 36px);
    font-weight: 850;
    line-height: 1.16;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(23, 23, 23, .12);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .72);
    color: #3d372f;
    font-size: 13px;
    font-weight: 900;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.eyebrow-light {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .12);
    color: white;
}

.eyebrow-light::before {
    background: var(--acid);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--accent), #ff7a47);
    color: white;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(255, 98, 61, .24);
    transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 98, 61, .24);
}

.button.ghost {
    border: 1px solid rgba(23, 23, 23, .12);
    background: rgba(255, 255, 255, .7);
    color: var(--ink);
    box-shadow: none;
}

.button.small-button {
    min-height: 40px;
    padding: 10px 16px;
    background: var(--ink);
    box-shadow: none;
}

.button.small-button:hover {
    transform: none;
    background: var(--accent);
}

.full-button { width: 100%; }

.hero {
    min-height: calc(100vh - 96px);
    display: grid;
    align-items: center;
    padding: 60px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr);
    gap: 52px;
    align-items: center;
}

.hero-copy p:not(.claim) {
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 26px;
}

.safety-grid-media {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
}

.safety-media {
    position: relative;
    min-height: 100%;
}

.safety-media img {
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.safety-media-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(23, 23, 23, .74);
    color: white;
    backdrop-filter: blur(12px);
}

.safety-media-card span {
    color: rgba(255,255,255,.78);
    line-height: 1.45;
}

.safety-copy {
    display: grid;
    align-content: start;
}

.safety-copy .trust-list {
    margin-top: 18px;
}

.center-action-left {
    justify-content: flex-start;
}

@media (max-width: 980px) {
    .safety-grid-media {
        grid-template-columns: 1fr;
    }

    .safety-media img {
        min-height: 380px;
    }
}

.hero-media {
    position: relative;
}

.hero-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(23, 23, 23, .72);
    color: white;
    backdrop-filter: blur(12px);
}

.hero-caption span {
    color: rgba(255,255,255,.8);
}

.quote-banner {
    position: relative;
    min-height: 88vh;
    margin: 0 0 18px;
    overflow: hidden;
    border-top: 1px solid rgba(23, 23, 23, .08);
    border-bottom: 1px solid rgba(23, 23, 23, .08);
}

.quote-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.quote-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(12, 12, 12, .78) 0%, rgba(12, 12, 12, .52) 42%, rgba(12, 12, 12, .20) 100%);
}

.quote-banner-wrap {
    position: relative;
    z-index: 1;
    min-height: 88vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: end;
    padding-top: 56px;
    padding-bottom: 56px;
}

.quote-banner-content {
    max-width: 760px;
    display: grid;
    align-content: center;
    gap: 14px;
    color: white;
}

.quote-banner-content h2 {
    max-width: 900px;
    margin-bottom: 2px;
    font-size: clamp(42px, 6.8vw, 86px);
    line-height: .94;
}

.quote-banner-content p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255,255,255,.84);
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.5;
}

.quote-banner-actions {
    margin-top: 18px;
}

.quote-banner-actions .button {
    width: auto;
    min-width: 240px;
}

.quote-banner-card {
    align-self: end;
    display: grid;
    gap: 10px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(255,255,255,.12);
    color: white;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
}

.quote-banner-card strong {
    font-size: 22px;
    line-height: 1.08;
}

.quote-banner-card p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.5;
}

.quote-banner-card span {
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
}

.button.ghost-dark {
    background: var(--ink);
    color: white;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.button.ghost-dark:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 42px;
    align-items: start;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
    gap: 34px;
    align-items: start;
}

.trust-list,
.benefit-grid,
.footer-links {
    display: grid;
    gap: 14px;
}

.trust-list article,
.benefit,
.panel,
.price-note,
.insight-card {
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.trust-list article:hover,
.benefit:hover,
.panel:hover,
.insight-card:hover,
.process-item:hover {
    transform: translateY(-3px);
}

.trust-list article {
    padding: 18px;
    border-radius: 26px;
}

.trust-list strong {
    font-size: 18px;
}

.trust-list span {
    color: var(--muted);
    line-height: 1.45;
}

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

.benefit {
    min-height: 210px;
    padding: 22px;
}

.line-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border: 1px solid rgba(23, 23, 23, .12);
    border-radius: 14px;
    background: var(--paper-strong);
    color: var(--accent-dark);
    font-size: 22px;
    font-weight: 950;
}

.process-section {
    padding: 104px 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 98, 61, .08), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(215, 255, 87, .10), transparent 20%),
        linear-gradient(180deg, #fff9f4 0%, #fff1e4 100%);
}

.process-head {
    max-width: 920px;
    margin-bottom: 34px;
}

.process-head h2 {
    max-width: 980px;
    margin-bottom: 14px;
}

.process-head p {
    max-width: 760px;
    font-size: 19px;
}

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

.process-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 28px;
    background: rgba(255, 253, 249, .94);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.process-item:hover {
    box-shadow: 0 20px 54px rgba(44, 29, 18, .12);
}

.process-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 98, 61, .12);
    color: var(--accent-dark);
    border: 1px solid rgba(255, 98, 61, .18);
    font-size: 26px;
    line-height: 1;
}

.process-item h3 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.08;
}

.process-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.process-cta {
    margin-top: 36px;
}

.insights-section {
    background: radial-gradient(circle at 82% 10%, rgba(255, 77, 46, .26), transparent 26%), radial-gradient(circle at 10% 90%, rgba(215, 255, 87, .14), transparent 28%), #171717;
    color: white;
}

.insights-section .eyebrow {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: white;
}

.insights-section .section-title {
    max-width: 980px;
    margin-bottom: 28px;
}

.insights-section h2 {
    max-width: 980px;
    font-size: clamp(42px, 6vw, 82px);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.insight-card {
    min-height: 310px;
    padding: 22px;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .14);
}

.insight-card span {
    display: inline-flex;
    margin-bottom: 40px;
    color: var(--acid);
    font-size: 44px;
    font-weight: 950;
}

.insight-card h3 {
    font-size: 25px;
    line-height: 1.08;
}

.insight-card p {
    color: rgba(255,255,255,.72);
}

.register-page {
    padding-top: 58px;
}

.register-page h1 {
    font-size: clamp(46px, 6vw, 82px);
    line-height: .96;
}

.register-grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(380px, 1fr);
    gap: 34px;
    align-items: start;
}

.register-copy {
    position: sticky;
    top: 108px;
}

.price-note {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding: 18px;
}

.price-note span {
    color: var(--muted);
}

.panel {
    padding: clamp(18px, 3vw, 28px);
    background: var(--panel-strong);
}

.form-card h2 {
    font-size: 30px;
    letter-spacing: -.02em;
}

.form-intro {
    margin-bottom: 22px;
    font-size: 16px;
}

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

.full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    color: #2d2926;
    font-size: 14px;
    font-weight: 850;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 23, 23, .08);
    color: var(--ink);
}

.form-section-title:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.form-section-title span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--ink);
    color: white;
    font-weight: 950;
}

.form-section-title strong {
    font-size: 18px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 14px;
    background: #fffdf9;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 98, 61, .65);
    box-shadow: 0 0 0 4px rgba(255, 98, 61, .12);
}

textarea {
    min-height: 96px;
    resize: vertical;
}

input[readonly] {
    background: var(--paper-strong);
    color: #4b433b;
}

.field-help {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 650;
}

.check input {
    width: auto;
    margin-top: 4px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table th,
.table td {
    border-bottom: 1px solid var(--line);
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.small {
    color: var(--muted);
    font-size: 13px;
}

.notice {
    border-left: 4px solid var(--accent);
    background: var(--paper-strong);
    padding: 14px 16px;
    border-radius: 14px;
}

.site-footer {
    margin-top: 28px;
    padding: 56px 0 42px;
    border-top: 1px solid rgba(23, 23, 23, .08);
    background: radial-gradient(circle at 80% 20%, rgba(255, 77, 46, .18), transparent 24%), #171717;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, .5fr) minmax(240px, .7fr);
    gap: 38px;
    align-items: start;
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer .mark {
    background: white;
    color: var(--ink);
}

.site-footer p {
    max-width: 520px;
    color: rgba(255,255,255,.72);
}

.footer-links a {
    width: fit-content;
    color: rgba(255,255,255,.78);
    font-weight: 850;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--acid);
}

.footer-note {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255,255,255,.07);
}

.footer-note span {
    color: rgba(255,255,255,.68);
    line-height: 1.45;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.section .center-action .button {
    min-width: 220px;
}

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

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

@media (max-width: 980px) {
    .hero-grid,
    .safety-grid,
    .split-layout,
    .register-grid,
    .benefit-grid,
    .insight-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .register-copy {
        position: static;
    }

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

    .quote-banner {
        min-height: 74vh;
    }

    .quote-banner-wrap {
        min-height: 74vh;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 22px;
    }

    .quote-banner-card {
        max-width: 420px;
    }
}

@media (min-width: 761px) {
    .nav-mobile-cta {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .topbar {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        border-radius: 24px;
        padding: 12px 14px;
    }

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

    .topbar-cta {
        display: none;
    }

    .nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding: 10px;
        border-radius: 22px;
        background: white;
        border: 1px solid rgba(23, 23, 23, .08);
        box-shadow: 0 14px 34px rgba(44, 29, 18, .08);
    }

    .nav.is-open {
        display: grid;
        gap: 8px;
    }

    .nav a:not(.nav-mobile-cta) {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(23,23,23,.04);
    }

    .nav a.nav-mobile-cta {
        display: inline-flex !important;
        margin-top: 6px;
        width: 100%;
        background: var(--ink) !important;
        color: white !important;
        box-shadow: none !important;
    }

    .nav a.nav-mobile-cta:hover {
        background: var(--ink) !important;
        color: white !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .hero {
        min-height: auto;
        padding-top: 40px;
    }

    h1 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: .95;
    }

    .claim {
        font-size: clamp(22px, 7vw, 32px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .button.ghost {
        width: 100%;
    }

    .hero-media img {
        aspect-ratio: 4 / 4.8;
    }

    .hero-caption {
        position: static;
        margin-top: 12px;
    }

    .quote-banner,
    .quote-banner-wrap {
        min-height: 62vh;
    }

    .quote-banner-wrap {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .quote-banner-content h2 {
        font-size: clamp(34px, 11vw, 52px);
        line-height: .98;
    }

    .quote-banner-content p {
        font-size: 18px;
        line-height: 1.55;
    }

    .quote-banner-actions {
        margin-top: 22px;
    }

    .quote-banner-actions .button {
        width: 100%;
        min-width: 0;
    }

    .quote-banner-card {
        padding: 18px;
    }

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

    .process-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
    }

    .process-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .process-item h3 {
        font-size: 21px;
    }
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 190px;
    object-fit: contain;
}

.footer-brand .brand-logo,
.brand-logo-footer {
    height: 38px;
    filter: brightness(0) invert(1);
}

.topbar .brand {
    min-width: 132px;
}

.profile-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 98, 61, .08), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, #fff4e9 100%);
}

.profile-section .section-title {
    max-width: 920px;
    margin-bottom: 34px;
}

.profile-section .section-title p {
    max-width: 760px;
    font-size: 19px;
}

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

.profile-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 26px;
    background: rgba(255, 253, 249, .92);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 54px rgba(44, 29, 18, .12);
}

.profile-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.1;
}

.profile-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
}

.form-card .notice {
    margin-bottom: 18px;
}

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

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

@media (max-width: 760px) {
    .brand-logo {
        height: 36px;
        max-width: 156px;
    }

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

/* Ajuste logo Hommies */
.topbar {
    width: min(1240px, calc(100% - 48px));
    padding: 16px 22px;
}

.topbar .brand {
    min-width: 190px;
    padding-left: 6px;
}

.brand-logo {
    display: block;
    width: auto;
    height: 56px;
    max-width: 240px;
    object-fit: contain;
}

.footer-brand .brand-logo,
.brand-logo-footer {
    height: 46px;
    max-width: 220px;
}

/* Mobile */
@media (max-width: 760px) {
    .topbar {
        width: calc(100% - 24px);
        padding: 12px 14px;
    }

    .topbar .brand {
        min-width: 0;
        padding-left: 0;
    }

    .brand-logo {
        height: 42px;
        max-width: 180px;
    }
}

/* HERO más limpio y legible */
.hero-copy {
    max-width: 620px;
}

.hero-title {
    max-width: 620px;
    margin: 14px 0 18px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.claim {
    max-width: 600px;
    margin-bottom: 14px;
    color: #2d2926;
    font-size: clamp(21px, 2.2vw, 30px);
    font-weight: 800;
    line-height: 1.22;
}

.hero-support,
.hero-copy p:not(.claim) {
    max-width: 560px;
    color: #5f5a55;
    font-size: 17px;
    line-height: 1.55;
}

.hero-actions {
    margin-top: 28px;
}

.hero {
    padding: 64px 0 72px;
    min-height: auto;
}

.hero-grid {
    gap: 44px;
    align-items: center;
}

.eyebrow {
    font-size: 12px;
    padding: 7px 11px;
}

@media (max-width: 760px) {
    .hero-title {
        font-size: clamp(38px, 11vw, 54px);
        line-height: 0.98;
    }

    .claim {
        font-size: 20px;
        line-height: 1.28;
    }

    .hero-support,
    .hero-copy p:not(.claim) {
        font-size: 16px;
    }
}

/* HERO compacto estilo horizontal */
.hero-compact {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 48px 0 56px;
    background:
        radial-gradient(circle at 0% 0%, rgba(244, 114, 182, 0.10), transparent 26%),
        radial-gradient(circle at 100% 0%, rgba(163, 230, 53, 0.10), transparent 28%),
        linear-gradient(180deg, #f5efe8 0%, #f2ece4 100%);
}

.hero-compact-shell {
    position: relative;
}

.hero-compact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 54px;
    align-items: center;
    min-height: 560px;
}

.hero-compact-copy {
    max-width: 620px;
}

.hero-compact-copy .hero-title {
    max-width: 620px;
    margin: 14px 0 18px;
    font-size: clamp(48px, 5.8vw, 84px);
    line-height: .95;
    letter-spacing: -.05em;
}

.hero-compact-copy .claim {
    max-width: 560px;
    margin-bottom: 12px;
    color: #2f2a27;
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 800;
    line-height: 1.22;
}

.hero-support {
    max-width: 540px;
    color: #5f5954;
    font-size: 17px;
    line-height: 1.55;
}

.hero-compact-copy .hero-actions {
    margin-top: 28px;
}

.hero-compact-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-keywords {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-keyword {
    color: rgba(41, 33, 29, .28);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.035em;
    transition: opacity .35s ease, transform .35s ease, color .35s ease;
    transform: translateX(0);
}

.hero-keyword.is-active {
    color: #1f1a17;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.hero-keyword.is-active::before {
    content: "▶";
    position: absolute;
    left: -34px;
    top: 2px;
    color: #ff4fa3;
    font-size: 24px;
    line-height: 1;
}

.hero-keyword:not(.is-active) {
    opacity: .95;
}

@media (max-width: 1100px) {
    .hero-compact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
    }

    .hero-compact-side {
        justify-content: flex-start;
    }

    .hero-keywords {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .hero-compact {
        padding: 34px 0 44px;
    }

    .hero-compact-copy .hero-title {
        font-size: clamp(40px, 10vw, 56px);
        line-height: .97;
    }

    .hero-compact-copy .claim {
        font-size: 20px;
        line-height: 1.26;
    }

    .hero-support {
        font-size: 16px;
    }

    .hero-keywords {
        gap: 14px;
    }

    .hero-keyword {
        font-size: clamp(24px, 7vw, 34px);
    }

    .hero-keyword.is-active::before {
        left: -24px;
        font-size: 18px;
    }
}

/* HERO estilo fondo foto + keywords */
.hero-magnetic {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #171717;
    color: white;
}

.hero-magnetic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(.9) contrast(1.04);
}

.hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 10, 12, .88) 0%, rgba(35, 18, 20, .70) 42%, rgba(35, 18, 20, .54) 100%),
        radial-gradient(circle at 18% 12%, rgba(255, 98, 61, .28), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(215, 255, 87, .12), transparent 30%);
}

.hero-magnetic-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: 70px;
    align-items: center;
    min-height: 620px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.hero-magnetic-copy {
    max-width: 720px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero-pill strong {
    color: white;
    font-weight: 950;
}

.pill-arrow {
    color: #ff5aa5;
    font-size: 22px;
    line-height: 1;
}

.hero-magnetic h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: white;
    font-size: clamp(50px, 5.4vw, 78px);
    line-height: 1.04;
    letter-spacing: -.055em;
    font-weight: 950;
}

.hero-magnetic p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.5;
    font-weight: 650;
}

.hero-magnetic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 8px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-primary {
    background: white;
    color: #171717;
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .70);
    background: rgba(255, 255, 255, .06);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary span {
    color: #ff5aa5;
    font-size: 13px;
}

./* HERO estilo fondo foto + keywords FULL SCREEN */
.hero-magnetic {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #171717;
    color: white;
}

.hero-magnetic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(.9) contrast(1.04);
}

.hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 10, 12, .88) 0%, rgba(35, 18, 20, .70) 42%, rgba(35, 18, 20, .54) 100%),
        radial-gradient(circle at 18% 12%, rgba(255, 98, 61, .28), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(215, 255, 87, .12), transparent 30%);
}

.hero-magnetic-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 70px;
    align-items: center;
    min-height: calc(100vh - 92px);
    padding-top: 48px;
    padding-bottom: 48px;
}

.hero-magnetic-copy {
    max-width: 720px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero-pill strong {
    color: white;
    font-weight: 950;
}

.pill-arrow {
    color: #ff5aa5;
    font-size: 22px;
    line-height: 1;
}

.hero-magnetic h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: white;
    font-size: clamp(52px, 5.4vw, 82px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 950;
}

.hero-magnetic p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(18px, 1.4vw, 21px);
    line-height: 1.5;
    font-weight: 650;
}

.hero-magnetic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 8px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-primary {
    background: white;
    color: #171717;
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .70);
    background: rgba(255, 255, 255, .06);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary span {
    color: #ff5aa5;
    font-size: 13px;
}

.hero-magnetic-keywords {
    display: grid;
    gap: 18px;
    align-content: center;
    padding-top: 10px;
}

.hero-magnetic-word {
    color: rgba(255, 255, 255, .28);
    font-size: clamp(20px, 1.9vw, 30px);
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 900;
    transition: color .28s ease, opacity .28s ease, transform .28s ease;
}

.hero-magnetic-word.is-active {
    position: relative;
    color: white;
    transform: translateX(0);
}

.hero-magnetic-word.is-active::before {
    content: "▶";
    position: absolute;
    left: -28px;
    top: 2px;
    color: #ff5aa5;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1050px) {
    .hero-magnetic {
        min-height: auto;
    }

    .hero-magnetic-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: auto;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .hero-magnetic-keywords {
        padding-left: 28px;
    }
}

@media (max-width: 760px) {
    .hero-magnetic {
        min-height: auto;
    }

    .hero-magnetic-grid {
        padding-top: 34px;
        padding-bottom: 40px;
    }

    .hero-pill {
        margin-bottom: 22px;
        font-size: 12px;
        padding: 9px 12px;
    }

    .hero-magnetic h1 {
        font-size: clamp(40px, 11vw, 56px);
        line-height: 1.02;
    }

    .hero-magnetic p {
        font-size: 17px;
        line-height: 1.52;
    }

    .hero-magnetic-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-magnetic-keywords {
        gap: 12px;
        padding-left: 22px;
    }

    .hero-magnetic-word {
        font-size: clamp(18px, 5.8vw, 25px);
        line-height: 1.08;
    }

    .hero-magnetic-word.is-active::before {
        left: -22px;
        top: 2px;
        font-size: 14px;
    }
}

/* HEADER FULL WIDTH BLANCO PEGADO AL HERO */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px 48px;
    border: 0;
    border-bottom: 1px solid rgba(23, 23, 23, .08);
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
}

.topbar.is-elevated {
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.topbar .brand {
    min-width: 210px;
    padding-left: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 250px;
    object-fit: contain;
}

.nav {
    border: 0;
    background: transparent;
    color: #171717;
}

.nav a {
    color: #171717;
}

.nav a:hover {
    background: #171717;
    color: #ffffff;
}

.button.small-button.topbar-cta {
    background: #171717;
    color: #ffffff;
}

/* HERO pegado al menú y ocupando pantalla */
.hero-magnetic {
    margin-top: 0;
    min-height: calc(100vh - 91px);
}

.hero-magnetic-grid {
    min-height: calc(100vh - 91px);
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Quitar cualquier separación heredada */
main#top,
.hero-magnetic + section {
    margin-top: 0;
}

/* MOBILE */
@media (max-width: 760px) {
    .topbar {
        width: 100%;
        margin: 0;
        padding: 12px 18px;
        border-radius: 0;
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .brand-logo {
        height: 44px;
        max-width: 180px;
    }

    .menu-toggle {
        background: #ffffff;
        border: 1px solid rgba(23, 23, 23, .12);
        box-shadow: none;
    }

    .nav {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 12px;
        border: 1px solid rgba(23, 23, 23, .08);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
    }

    .hero-magnetic {
        min-height: calc(100vh - 69px);
    }

    .hero-magnetic-grid {
        min-height: calc(100vh - 69px);
        padding-top: 34px;
        padding-bottom: 40px;
    }
}

/* HOMMIES — Volver acento al naranja anterior */
:root {
    --accent: #ff623d;
    --accent-dark: #df4a28;
    --accent-soft: rgba(255, 98, 61, .14);
    --accent-line: rgba(255, 98, 61, .28);
}

/* Botones generales estilo hero pero en naranja */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 13px 22px;
    background: var(--accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    color: #ffffff;
    box-shadow: none;
}

/* Botón pequeño del menú */
.button.small-button,
.button.small-button.topbar-cta {
    min-height: 42px;
    border-radius: 8px;
    padding: 11px 18px;
    background: #171717;
    color: #ffffff;
    box-shadow: none;
}

.button.small-button:hover,
.button.small-button.topbar-cta:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}

/* CTA móvil */
.nav a.nav-mobile-cta {
    border-radius: 8px;
    background: var(--accent) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.nav a.nav-mobile-cta:hover {
    background: var(--accent-dark) !important;
    color: #ffffff !important;
}

/* Botones ghost */
.button.ghost {
    border: 1px solid rgba(23, 23, 23, .16);
    background: transparent;
    color: var(--ink);
    box-shadow: none;
}

.button.ghost:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: none;
}

/* Botón ghost oscuro usado sobre fondos oscuros */
.button.ghost-dark {
    border: 1px solid rgba(255,255,255,.18);
    background: #171717;
    color: #ffffff;
    box-shadow: none;
}

.button.ghost-dark:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: none;
}

/* Acentos del hero */
.pill-arrow,
.hero-btn-secondary span,
.hero-magnetic-word.is-active::before {
    color: var(--accent);
}

/* Botones propios del hero */
.hero-btn-primary {
    background: #ffffff;
    color: #171717;
}

.hero-btn-primary:hover {
    background: var(--accent);
    color: #ffffff;
}

.hero-btn-secondary {
    border-color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.06);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

/* Números de la sección ¿Es para mí? */
.insight-card span {
    color: var(--accent);
}

/* Iconos de proceso */
.process-icon {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: var(--accent-line);
}

/* Iconos de ventajas */
.line-icon {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: var(--accent-line);
}

/* Eyebrows / etiquetas */
.eyebrow::before,
.eyebrow-light::before {
    background: var(--accent);
}

/* Decoraciones antiguas tipo scribble */
.scribble::after {
    background: rgba(255, 98, 61, .18);
    border-bottom-color: var(--accent);
}

.scribble::before {
    background: var(--accent);
}

/* Formularios / numeradores si se usan en registro */
.form-section-title span {
    background: var(--accent);
    color: #ffffff;
}

/* Focus inputs */
input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 98, 61, .68);
    box-shadow: 0 0 0 4px rgba(255, 98, 61, .13);
}

/* Notice */
.notice {
    border-left-color: var(--accent);
}

/* Texto de apoyo en sección oscura */
.section-kicker {
    max-width: 720px;
    color: rgba(255,255,255,.78) !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
}

/* Cards oscuras: números Hommies */
.insight-card span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--accent);
    font-size: 42px;
    font-weight: 950;
}

/* Footer */
.footer-links a:hover {
    color: var(--accent);
}

/* Hovers de tarjetas */
.trust-list article:hover,
.benefit:hover,
.panel:hover,
.insight-card:hover,
.process-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 54px rgba(255, 98, 61, .12);
}

/* Overlay del hero con naranja, sin fucsia */
.hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 10, 12, .88) 0%, rgba(35, 18, 20, .70) 42%, rgba(35, 18, 20, .54) 100%),
        radial-gradient(circle at 18% 12%, rgba(255, 98, 61, .28), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(215, 255, 87, .12), transparent 30%);
}

/* Mobile */
@media (max-width: 760px) {
    .button,
    .hero-btn {
        border-radius: 8px;
    }

    .section-kicker {
        font-size: 16px;
    }

    .insight-card span {
        font-size: 36px;
        margin-bottom: 24px;
    }
}

/* SECCIÓN PRIVACIDAD / SEGURIDAD REHECHA */
.safety-section-clean {
    background:
        radial-gradient(circle at 8% 14%, rgba(255, 98, 61, .08), transparent 24%),
        linear-gradient(180deg, #f4ece3 0%, #efe5da 100%);
}

.safety-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .92fr);
    gap: 34px;
    align-items: center;
}

.safety-clean-media {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255,255,255,.42);
    box-shadow: 0 24px 60px rgba(60, 34, 18, .10);
    min-height: 620px;
}

.safety-clean-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center center;
    transition: transform .9s ease, opacity .9s ease, filter .9s ease;
}

/* efecto suave de entrada */
.media-fade {
    opacity: 0;
    transform: translateY(20px);
}

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

.media-fade.is-visible img {
    transform: scale(1.02);
}

/* bloque de texto */
.safety-clean-copy {
    max-width: 560px;
}

.safety-tagline {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .01em;
    line-height: 1.2;
    text-transform: none;
}

.safety-clean-copy h2 {
    margin: 0 0 18px;
    color: #171717;
    font-size: clamp(44px, 4.8vw, 74px);
    line-height: .96;
    letter-spacing: -.05em;
    font-weight: 950;
}

.safety-clean-copy .safety-lead {
    margin-bottom: 18px;
    color: #3c342f;
    font-size: clamp(22px, 1.9vw, 29px);
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -.02em;
}

.safety-clean-copy p:not(.safety-tagline):not(.safety-lead) {
    color: #6b625b;
    font-size: 17px;
    line-height: 1.65;
}

/* pequeño efecto de entrada del copy */
.text-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.trust-list-clean {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.trust-list-clean article {
    padding: 18px 18px 17px;
    border: 1px solid rgba(23,23,23,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.56);
    backdrop-filter: blur(4px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.trust-list-clean article:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 98, 61, .22);
    box-shadow: 0 16px 34px rgba(255, 98, 61, .10);
}

.trust-list-clean strong {
    display: block;
    margin-bottom: 6px;
    color: #171717;
    font-size: 17px;
    line-height: 1.2;
}

.trust-list-clean span {
    color: #6b625b;
    font-size: 15px;
    line-height: 1.5;
}

.safety-section-clean .center-action {
    margin-top: 28px;
}

/* responsive */
@media (max-width: 1080px) {
    .safety-clean-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .safety-clean-copy {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .safety-clean-media,
    .safety-clean-media img {
        min-height: 360px;
    }

    .safety-clean-copy h2 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: .98;
    }

    .safety-clean-copy .safety-lead {
        font-size: 20px;
        line-height: 1.3;
    }

    .safety-clean-copy p:not(.safety-tagline):not(.safety-lead) {
        font-size: 16px;
    }
}

.safety-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 42px;
    align-items: center;
}

.safety-clean-media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: auto;
    padding: 0;
}

.safety-clean-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center left;
    border-radius: 0;
    transition: transform .9s ease, opacity .9s ease, filter .9s ease;
}

.media-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.media-fade.is-visible img {
    transform: scale(1.01);
}

@media (max-width: 1080px) {
    .safety-clean-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .safety-clean-copy {
        max-width: none;
    }

    .safety-clean-media {
        justify-content: center;
    }

    .safety-clean-media img {
        object-position: center;
    }
}

@media (max-width: 760px) {
    .safety-clean-copy h2 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: .98;
    }

    .safety-clean-copy .safety-lead {
        font-size: 20px;
        line-height: 1.3;
    }

    .safety-clean-copy p:not(.safety-tagline):not(.safety-lead) {
        font-size: 16px;
    }
}

/* HERO degradado Hommies definitivo */
.hero-magnetic {
    position: relative;
    min-height: calc(100vh - 91px);
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 98, 61, .28), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(240, 196, 145, .18), transparent 30%),
        radial-gradient(circle at 74% 84%, rgba(117, 62, 41, .40), transparent 34%),
        linear-gradient(135deg, #151211 0%, #2b211d 46%, #5a2a1f 100%);
    color: white;
}

.hero-magnetic-bg {
    display: none;
}

.hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 10, 9, .38) 0%, rgba(12, 10, 9, .12) 48%, rgba(12, 10, 9, .30) 100%),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.16) 100%);
}

.hero-magnetic::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.25));
}

.hero-magnetic-grid {
    position: relative;
    z-index: 1;
}

/* HERO con imagen heroe_background.png + overlay degradado */
.hero-magnetic {
    position: relative;
    min-height: calc(100vh - 91px);
    overflow: hidden;
    background: #171717;
    color: white;
}

/* Activamos de nuevo la imagen de fondo */
.hero-magnetic-bg {
    display: block;
    position: absolute;
    inset: 0;
    background-image: url('/media/heroe_background_heroe.png') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    filter: saturate(.95) contrast(1.04);
}

/* Overlay adulto con naranja Hommies */
.hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(12, 10, 9, .86) 0%,
            rgba(20, 13, 10, .70) 38%,
            rgba(28, 15, 11, .52) 68%,
            rgba(12, 10, 9, .66) 100%
        ),
        radial-gradient(
            circle at 16% 18%,
            rgba(255, 98, 61, .28),
            transparent 32%
        ),
        radial-gradient(
            circle at 86% 14%,
            rgba(255, 197, 136, .16),
            transparent 30%
        );
}

/* Quitamos textura/grid si estaba activa */
.hero-magnetic::after {
    content: none !important;
}

/* Aseguramos que el contenido quede encima */
.hero-magnetic-grid {
    position: relative;
    z-index: 1;
}

/* =========================
   PROCESO PRO / METODOLOGÍA
   ========================= */

.process-section-pro {
    background:
        radial-gradient(circle at 10% 14%, rgba(255, 98, 61, .08), transparent 24%),
        linear-gradient(180deg, #f4ece3 0%, #efe5da 100%);
}

.process-section-pro .process-head {
    max-width: 980px;
    margin-bottom: 34px;
}

.process-section-pro .process-head h2 {
    max-width: 920px;
    margin-bottom: 18px;
}

.process-section-pro .process-head p {
    max-width: 760px;
    font-size: 19px;
    line-height: 1.6;
    color: #655d56;
}

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

.process-pro-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 30px;
    background-color: #201815;
    background-image:
        linear-gradient(180deg, rgba(19, 15, 14, .10) 0%, rgba(19, 15, 14, .76) 100%),
        url('/media/heroe_background.png');
    background-size: cover;
    background-position: center center;
    border: 1px solid rgba(23, 23, 23, .06);
    box-shadow: 0 20px 50px rgba(55, 34, 22, .10);
    transition: transform .25s ease, box-shadow .25s ease, background-position .4s ease;
}

.process-pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(55, 34, 22, .16);
    background-position: center top;
}

.process-pro-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 14, 13, .08) 0%, rgba(17, 14, 13, .82) 100%),
        radial-gradient(circle at 14% 14%, rgba(255, 98, 61, .18), transparent 30%);
    pointer-events: none;
}

.process-pro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 28px 28px 26px;
}

.process-step-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.process-pro-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 33px;
    line-height: 1.02;
    letter-spacing: -.03em;
    font-weight: 900;
    max-width: 540px;
}

.process-pro-card p {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.6;
}

.process-section-pro .process-cta {
    margin-top: 34px;
}

/* opcional: pequeñas variaciones visuales por card */
.process-step-1 { background-position: center left; }
.process-step-2 { background-position: center center; }
.process-step-3 { background-position: center right; }
.process-step-4 { background-position: center center; }
.process-step-5 { background-position: center left; }
.process-step-6 { background-position: center right; }

@media (max-width: 980px) {
    .process-pro-grid {
        grid-template-columns: 1fr;
    }

    .process-pro-card {
        min-height: 280px;
    }
}

@media (max-width: 760px) {
    .process-section-pro .process-head p {
        font-size: 17px;
    }

    .process-pro-card {
        min-height: 250px;
        border-radius: 24px;
    }

    .process-pro-content {
        padding: 22px 22px 20px;
    }

    .process-pro-card h3 {
        font-size: 26px;
        line-height: 1.06;
    }

    .process-pro-card p {
        font-size: 15px;
        line-height: 1.55;
    }

    .process-step-label {
        font-size: 12px;
        padding: 7px 10px;
    }
}

/* =========================
   PROCESO PRO MÁS AMABLE
   ========================= */

.process-section-pro {
    background:
        radial-gradient(circle at 10% 14%, rgba(255, 98, 61, .08), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(255, 210, 150, .16), transparent 26%),
        linear-gradient(180deg, #fff7ef 0%, #f3e9df 100%);
}

.process-pro-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 30px;
    background-color: #fff8f1;
    background-image:
        linear-gradient(180deg, rgba(255, 248, 241, .52) 0%, rgba(255, 248, 241, .94) 100%),
        url('/media/heroe_background.png');
    background-size: cover;
    background-position: center center;
    border: 1px solid rgba(23, 23, 23, .08);
    box-shadow: 0 20px 48px rgba(55, 34, 22, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-position .4s ease;
}

.process-pro-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 98, 61, .24);
    box-shadow: 0 28px 70px rgba(55, 34, 22, .14);
    background-position: center top;
}

.process-pro-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .28) 0%, rgba(255, 248, 241, .96) 78%),
        radial-gradient(circle at 14% 14%, rgba(255, 98, 61, .16), transparent 30%);
    pointer-events: none;
}

.process-pro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 28px 28px 26px;
}

.process-step-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 98, 61, .12);
    border: 1px solid rgba(255, 98, 61, .22);
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.process-pro-card h3 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 31px;
    line-height: 1.04;
    letter-spacing: -.035em;
    font-weight: 950;
    max-width: 540px;
}

.process-pro-card p {
    margin: 0;
    max-width: 570px;
    color: #5f5750;
    font-size: 16px;
    line-height: 1.62;
}

/* =========================
   INSIGHTS MÁS AMABLE
   ========================= */

.insights-section {
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 98, 61, .12), transparent 26%),
        radial-gradient(circle at 8% 88%, rgba(255, 211, 145, .18), transparent 28%),
        linear-gradient(180deg, #fff7ef 0%, #f1e7dc 100%);
    color: #171717;
}

.insights-section .eyebrow {
    border-color: rgba(23, 23, 23, .12);
    background: rgba(255, 255, 255, .72);
    color: #3d372f;
}

.insights-section h2 {
    color: #171717;
}

.insights-section .section-title p,
.section-kicker {
    max-width: 760px;
    color: #655d56 !important;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.6;
}

.insight-card {
    min-height: 285px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,250,245,.94) 100%);
    border: 1px solid rgba(23, 23, 23, .08);
    box-shadow: 0 18px 42px rgba(55, 34, 22, .08);
}

.insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 98, 61, .22);
    box-shadow: 0 24px 60px rgba(55, 34, 22, .13);
}

.insight-card span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--accent);
    font-size: 38px;
    font-weight: 950;
}

.insight-card h3 {
    color: #171717;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.insight-card p {
    color: #655d56;
    font-size: 15px;
    line-height: 1.55;
}

/* Botón sobre insights ahora ya no necesita ser oscuro */
.insights-section .button.ghost-dark {
    border: 1px solid rgba(23,23,23,.14);
    background: #171717;
    color: #ffffff;
}

.insights-section .button.ghost-dark:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 760px) {
    .process-pro-card {
        min-height: 250px;
        border-radius: 24px;
    }

    .process-pro-content {
        padding: 22px 22px 20px;
    }

    .process-pro-card h3 {
        font-size: 25px;
        line-height: 1.07;
    }

    .process-pro-card p {
        font-size: 15px;
    }

    .insight-card {
        min-height: auto;
    }

    .insight-card span {
        font-size: 34px;
        margin-bottom: 24px;
    }
}
/* =========================
   INSIGHTS CON FONDO NARANJA
   ========================= */

.insights-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,.22), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(255, 216, 160, .28), transparent 30%),
        linear-gradient(135deg, #ff623d 0%, #ef542f 48%, #c94425 100%);
    color: #ffffff;
}

.insights-section .eyebrow {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.16);
    color: #ffffff;
}

.insights-section .eyebrow::before {
    background: #ffffff;
}

.insights-section h2 {
    color: #ffffff;
}

.insights-section .section-title p,
.insights-section .section-kicker {
    max-width: 760px;
    color: rgba(255,255,255,.82) !important;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.6;
}

.insight-grid {
    gap: 16px;
}

.insight-card {
    min-height: 285px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,248,242,.98) 100%);
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 22px 54px rgba(80, 24, 10, .16);
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.52);
    box-shadow: 0 30px 70px rgba(80, 24, 10, .22);
}

.insight-card span {
    display: inline-flex;
    margin-bottom: 34px;
    color: #ff623d;
    font-size: 38px;
    font-weight: 950;
}

.insight-card h3 {
    color: #171717;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.insight-card p {
    color: #625850;
    font-size: 15px;
    line-height: 1.55;
}

/* Botón sobre fondo naranja */
.insights-section .button.ghost-dark {
    border: 1px solid rgba(255,255,255,.28);
    background: #171717;
    color: #ffffff;
}

.insights-section .button.ghost-dark:hover {
    background: #ffffff;
    color: #171717;
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 760px) {
    .insight-card {
        min-height: auto;
    }

    .insight-card span {
        font-size: 34px;
        margin-bottom: 24px;
    }
}

/* =========================
   MOBILE HEADER + HERO CLEAN
   ========================= */

@media (max-width: 760px) {
    /* Header limpio */
    .topbar {
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin: 0;
        padding: 12px 16px;
        border-radius: 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(23, 23, 23, .08);
        box-shadow: none;
    }

    /* Logo más grande */
    .brand-logo {
        height: 48px !important;
        max-width: 210px !important;
        width: auto;
        object-fit: contain;
    }

    .topbar .brand {
        min-width: 0;
        padding-left: 0;
    }

    /* Ocultamos el botón Crear perfil fuera del menú */
    .topbar-cta {
        display: none !important;
    }

    /* Botón hamburguesa */
    .menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid rgba(23, 23, 23, .12);
        box-shadow: none;
    }

    /* Menú móvil cerrado */
    .nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 10px;
        padding: 10px;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid rgba(23, 23, 23, .08);
        box-shadow: 0 18px 38px rgba(0, 0, 0, .10);
    }

    /* Menú móvil abierto */
    .nav.is-open {
        display: grid !important;
        gap: 8px;
    }

    .nav a:not(.nav-mobile-cta) {
        display: block;
        padding: 13px 14px;
        border-radius: 12px;
        background: rgba(23, 23, 23, .04);
        color: #171717;
        font-weight: 850;
        text-decoration: none;
    }

    .nav a:not(.nav-mobile-cta):hover {
        background: #171717;
        color: #ffffff;
    }

    /* Crear perfil dentro del menú */
    .nav a.nav-mobile-cta {
        display: inline-flex !important;
        width: 100%;
        margin-top: 6px;
        min-height: 48px;
        border-radius: 12px;
        background: #171717 !important;
        color: #ffffff !important;
        box-shadow: none !important;
    }

    .nav a.nav-mobile-cta:hover {
        background: var(--accent) !important;
        color: #ffffff !important;
        transform: none !important;
    }

    /* Ocultar las palabras rotatorias del hero en móvil */
    .hero-magnetic-keywords {
        display: none !important;
    }

    /* Hero móvil más limpio */
    .hero-magnetic {
        min-height: calc(100vh - 73px);
    }

    .hero-magnetic-grid {
        display: grid;
        grid-template-columns: 1fr;
        min-height: calc(100vh - 73px);
        padding-top: 42px;
        padding-bottom: 46px;
    }

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

    .hero-pill {
        margin-bottom: 24px;
        max-width: 100%;
        font-size: 12px;
    }

    .hero-magnetic h1 {
        max-width: 430px;
        font-size: clamp(43px, 12vw, 62px);
        line-height: .95;
        letter-spacing: -.055em;
    }

    .hero-magnetic p {
        max-width: 410px;
        font-size: 17px;
        line-height: 1.5;
        font-weight: 750;
    }

    .hero-magnetic-actions {
        display: grid;
        gap: 12px;
        margin-top: 28px;
    }

    .hero-btn {
        width: 100%;
        min-height: 50px;
        border-radius: 9px;
    }
}

/* =========================
   FAQ FINAL
   ========================= */

.faq-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 98, 61, .08), transparent 26%),
        linear-gradient(180deg, #fff7ef 0%, #f4ece3 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 54px;
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: 110px;
}

.faq-copy h2 {
    max-width: 620px;
    margin-bottom: 18px;
}

.faq-copy p {
    max-width: 520px;
    color: #655d56;
    font-size: 18px;
    line-height: 1.6;
}

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

.faq-list details {
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 16px 40px rgba(55, 34, 22, .07);
    overflow: hidden;
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: #171717;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.2;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 98, 61, .12);
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -6px 24px 22px;
    color: #655d56;
    font-size: 16px;
    line-height: 1.58;
}

/* =========================
   FOOTER PRO
   ========================= */

.site-footer-pro {
    margin-top: 0;
    padding: 64px 0 0;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 98, 61, .20), transparent 28%),
        #171717;
    color: #ffffff;
}

.footer-pro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(160px, .45fr) minmax(180px, .55fr) minmax(240px, .72fr);
    gap: 42px;
    align-items: start;
    padding-bottom: 48px;
}

.footer-pro-brand p {
    max-width: 470px;
    margin: 18px 0 24px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.6;
}

.footer-main-cta {
    width: fit-content;
}

.footer-pro-col {
    display: grid;
    gap: 10px;
}

.footer-pro-col h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-pro-col a {
    width: fit-content;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.footer-pro-col a:hover {
    color: var(--accent);
}

.footer-pro-note {
    display: grid;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 20px;
    background: rgba(255,255,255,.07);
}

.footer-pro-note strong {
    color: #ffffff;
    font-size: 18px;
}

.footer-pro-note span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.5;
}

.footer-pro-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 20px 0 24px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

@media (max-width: 980px) {
    .faq-grid,
    .footer-pro-grid {
        grid-template-columns: 1fr;
    }

    .faq-copy {
        position: static;
    }

    .footer-pro-bottom {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .faq-list summary {
        padding: 18px 18px;
        font-size: 17px;
    }

    .faq-list details p {
        margin: -4px 18px 18px;
        font-size: 15px;
    }

    .site-footer-pro {
        padding-top: 46px;
    }
}

/* =========================
   PROCESO 6 PASOS EN SWIPE
   limpio, sin foto, sin sombra
   ========================= */

.process-slider-section {
    background:
        radial-gradient(circle at 10% 14%, rgba(255, 98, 61, .08), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(255, 210, 150, .16), transparent 26%),
        linear-gradient(180deg, #fff7ef 0%, #f3e9df 100%);
}

.process-slider-section .process-head {
    max-width: 920px;
    margin-bottom: 34px;
}

.process-slider-section .process-head h2 {
    max-width: 860px;
    margin-bottom: 18px;
}

.process-slider-section .process-head p {
    max-width: 760px;
    color: #655d56;
    font-size: 19px;
    line-height: 1.6;
}

.process-slider-wrap {
    position: relative;
}

.process-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 16px;
    scrollbar-width: none;
}

.process-slider::-webkit-scrollbar {
    display: none;
}

.process-slide {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: 30px;
    scroll-snap-align: start;
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 98, 61, .09), transparent 26%),
        rgba(255, 255, 255, .62);
    border: 1px solid rgba(23, 23, 23, .10);
    box-shadow: none;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.process-slide:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 98, 61, .30);
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 98, 61, .13), transparent 28%),
        rgba(255, 255, 255, .78);
}

.process-slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 410px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 34px 30px 30px;
}

.process-slide .process-step-label {
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 98, 61, .10);
    border: 1px solid rgba(255, 98, 61, .22);
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.process-slide h3 {
    max-width: 420px;
    margin: 0 0 18px;
    color: #171717;
    font-size: clamp(30px, 2.9vw, 46px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 950;
}

.process-slide p {
    max-width: 430px;
    margin: 0;
    color: #5f5750;
    font-size: 16px;
    line-height: 1.62;
}

.process-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(23, 23, 23, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #171717;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    transform: translateY(-50%);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.process-slider-btn:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.process-slider-prev {
    left: -22px;
}

.process-slider-next {
    right: -22px;
}

.process-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.process-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(23, 23, 23, .20);
    transition: width .2s ease, background .2s ease;
}

.process-slider-dots span.is-active {
    width: 26px;
    background: var(--accent);
}

@media (max-width: 1100px) {
    .process-slider {
        grid-auto-columns: 72%;
    }

    .process-slider-btn {
        display: none;
    }
}

@media (max-width: 760px) {
    .process-slider {
        grid-auto-columns: 88%;
        gap: 14px;
        padding-bottom: 14px;
    }

    .process-slide {
        min-height: 390px;
        border-radius: 24px;
    }

    .process-slide-content {
        min-height: 390px;
        padding: 24px 22px 22px;
    }

    .process-slide h3 {
        font-size: 31px;
        line-height: 1;
    }

    .process-slide p {
        font-size: 15px;
        line-height: 1.56;
    }
}

/* Corrección scroll slider 6 pasos */
.process-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 16px;
    scrollbar-width: none;
}

.process-slider::-webkit-scrollbar {
    display: none;
}

.process-slide {
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 1100px) {
    .process-slider {
        grid-auto-columns: 72%;
    }
}

@media (max-width: 760px) {
    .process-slider {
        grid-auto-columns: 88%;
    }
}

/* Slider proceso: desktop 3 visibles, móvil con flechas */
.process-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 16px;
    scrollbar-width: none;
}

.process-slider::-webkit-scrollbar {
    display: none;
}

.process-slide {
    scroll-snap-align: start;
    min-width: 0;
}

.process-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.process-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(23, 23, 23, .20);
    transition: width .2s ease, background .2s ease;
}

.process-slider-dots span.is-active {
    width: 26px;
    background: var(--accent);
}

.process-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(23, 23, 23, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #171717;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    transform: translateY(-50%);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.process-slider-btn:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.process-slider-prev {
    left: -22px;
}

.process-slider-next {
    right: -22px;
}

@media (max-width: 1100px) {
    .process-slider {
        grid-auto-columns: 72%;
    }

    .process-slider-prev {
        left: -8px;
    }

    .process-slider-next {
        right: -8px;
    }
}

@media (max-width: 760px) {
    .process-slider {
        grid-auto-columns: 88%;
        gap: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .process-slider-btn {
        display: grid !important;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .process-slider-prev {
        left: -6px;
    }

    .process-slider-next {
        right: -6px;
    }
}

/* Ajuste slider proceso: velocidad visual y altura móvil */
@media (max-width: 760px) {
    .process-slider {
        grid-auto-columns: 88%;
        gap: 14px;
        padding-bottom: 12px;
    }

    .process-slide {
        min-height: auto !important;
        height: auto !important;
        border-radius: 24px;
    }

    .process-slide-content {
        min-height: auto !important;
        height: auto !important;
        padding: 24px 22px 24px;
    }

    .process-slide .process-step-label {
        margin-bottom: 18px;
    }

    .process-slide h3 {
        font-size: 30px;
        line-height: 1.02;
        margin-bottom: 14px;
    }

    .process-slide p {
        font-size: 15px;
        line-height: 1.55;
    }

    .process-slider-btn {
        display: grid !important;
        width: 38px;
        height: 38px;
        font-size: 26px;
        background: rgba(255, 255, 255, .96);
    }

    .process-slider-prev {
        left: -4px;
    }

    .process-slider-next {
        right: -4px;
    }
}
/* SVG ilustraciones audiencia */
.audience-profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 140px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.audience-profile-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.audience-profile-icon .svg-ink {
    stroke: rgba(43, 36, 32, 0.72);
}

.audience-profile-icon .svg-accent {
    stroke: #ff623d;
}

@media (max-width: 1100px) {
    .audience-profile-icon {
        width: 140px;
        height: 116px;
    }
}

@media (max-width: 620px) {
    .audience-profile-icon {
        width: 120px;
        height: 100px;
    }
}
/* ==================================================
   FIX AUDIENCE HOMMIES
   círculo centrado desktop + móvil compacto
   ================================================== */

.audience-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
    margin-top: 48px;
}

/* Cards desktop */
.audience-profile-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 26px;
    min-height: 230px;
    padding: 30px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .32);
    color: #2b2420;
    box-shadow: 0 22px 46px rgba(23, 21, 20, .14);
}

/* SVG */
.audience-profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 116px;
    padding: 0;
    border-radius: 22px;
    background: rgba(255, 98, 61, .055);
    border: 1px solid rgba(255, 98, 61, .13);
}

.audience-profile-icon svg {
    display: block;
    width: 112px;
    height: 92px;
}

.audience-profile-icon .svg-ink {
    stroke: rgba(43, 36, 32, .72);
}

.audience-profile-icon .svg-accent {
    stroke: #ff623d;
}

.audience-profile-copy h3 {
    margin: 0 0 12px;
    color: #171514;
    font-size: clamp(30px, 2.4vw, 42px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 950;
}

.audience-profile-copy p {
    max-width: 410px;
    margin: 0;
    color: #514a45;
    font-size: 18px;
    line-height: 1.44;
    font-weight: 700;
}

/* Círculo desktop: centrado real entre las 4 cards */
.audience-center-badge {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 198px;
    min-height: 198px;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: 999px;
    background: #fff;
    border: 4px solid rgba(255, 98, 61, .64);
    color: #2b2420;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 42px rgba(23, 21, 20, .16);
}

.audience-center-badge::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 98, 61, .32);
}

.audience-center-badge strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 136px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.16;
    font-weight: 950;
}

.audience-center-badge em {
    color: #ff623d;
    font-style: normal;
}

/* Tablet: mantenemos 2 columnas pero bajamos tamaños */
@media (max-width: 1100px) {
    .audience-profile-card {
        grid-template-columns: 120px 1fr;
        gap: 20px;
        min-height: 200px;
        padding: 26px;
    }

    .audience-profile-icon {
        width: 112px;
        height: 96px;
    }

    .audience-profile-icon svg {
        width: 94px;
        height: 78px;
    }

    .audience-center-badge {
        width: 176px;
        min-height: 176px;
        padding: 22px;
    }

    .audience-center-badge strong {
        max-width: 124px;
        font-size: 16px;
    }
}

/* Móvil: nada de círculo flotante.
   Badge compacto + cards horizontales aprovechando espacio */
@media (max-width: 860px) {
    .audience-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
    }

    .audience-center-badge {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: -1;
        width: 100%;
        min-height: auto;
        padding: 16px 18px;
        border-radius: 18px;
        border-width: 2px;
        box-shadow: none;
    }

    .audience-center-badge::before {
        display: none;
    }

    .audience-center-badge strong {
        max-width: none;
        font-size: 17px;
        line-height: 1.25;
    }

    .audience-profile-card {
        grid-template-columns: 82px 1fr;
        gap: 16px;
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
        box-shadow: none;
    }

    .audience-profile-icon {
        width: 78px;
        height: 72px;
        border-radius: 18px;
    }

    .audience-profile-icon svg {
        width: 68px;
        height: 58px;
    }

    .audience-profile-copy h3 {
        margin-bottom: 6px;
        font-size: 25px;
        line-height: 1;
    }

    .audience-profile-copy p {
        max-width: none;
        font-size: 14.5px;
        line-height: 1.38;
        font-weight: 650;
    }

    .insights-audience-section .center-action {
        margin-top: 28px;
    }
}

/* Móvil muy pequeño */
@media (max-width: 420px) {
    .audience-profile-card {
        grid-template-columns: 70px 1fr;
        gap: 13px;
        padding: 16px;
    }

    .audience-profile-icon {
        width: 68px;
        height: 64px;
    }

    .audience-profile-icon svg {
        width: 58px;
        height: 50px;
    }

    .audience-profile-copy h3 {
        font-size: 23px;
    }

    .audience-profile-copy p {
        font-size: 14px;
    }
}

/* =========================
   BENEFICIOS HOMMIES
   más limpio y respirado
   ========================= */

.benefits-hommies-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 98, 61, .05), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(43, 36, 32, .03), transparent 30%),
        linear-gradient(180deg, #fffaf4 0%, #f6f1e9 100%);
    color: #2b2420;
}

.benefits-hommies-head {
    max-width: 980px;
    margin-bottom: 38px;
}

.benefits-hommies-head h2 {
    max-width: 980px;
    margin: 0;
    color: #2b2420;
    font-size: clamp(38px, 4.8vw, 70px);
    line-height: 1.03;
    letter-spacing: -.055em;
    font-weight: 950;
}

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

.benefit-hommies-card {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
    min-height: 250px;
    padding: 26px 24px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(43, 36, 32, .08);
    box-shadow: 0 16px 34px rgba(43, 36, 32, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.benefit-hommies-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(43, 36, 32, .08);
    border-color: rgba(255, 98, 61, .20);
}

.benefit-hommies-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 82px;
    height: 82px;
    border-radius: 18px;
    background: rgba(255, 98, 61, .045);
    border: 1px solid rgba(255, 98, 61, .10);
}

.benefit-hommies-icon svg {
    display: block;
    width: 72px;
    height: 72px;
    margin-left: 4px;
}

.benefit-hommies-icon .svg-ink {
    stroke: rgba(43, 36, 32, .80);
}

.benefit-hommies-icon .svg-accent {
    stroke: #ff623d;
}

.benefit-hommies-card > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.benefit-hommies-card h3 {
    margin: 0;
    color: #171514;
    font-size: clamp(22px, 1.8vw, 32px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 950;
    text-wrap: balance;
}

.benefit-hommies-card p {
    margin: 0;
    color: #514a45;
    font-size: 16px;
    line-height: 1.42;
    font-weight: 650;
    max-width: none;
}

/* Quitamos el efecto escalonado anterior */
.benefits-hommies-card:nth-child(2),
.benefits-hommies-card:nth-child(5) {
    transform: none !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .benefits-hommies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .benefit-hommies-card {
        min-height: 230px;
        padding: 24px 22px 22px;
    }

    .benefit-hommies-icon {
        width: 74px;
        height: 74px;
    }

    .benefit-hommies-icon svg {
        width: 64px;
        height: 64px;
    }

    .benefit-hommies-card h3 {
        font-size: clamp(22px, 2.6vw, 30px);
    }

    .benefit-hommies-card p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .benefits-hommies-head {
        margin-bottom: 26px;
    }

    .benefits-hommies-head h2 {
        font-size: clamp(34px, 9.6vw, 50px);
        line-height: 1.04;
    }

    .benefits-hommies-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-hommies-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
        box-shadow: none;
        gap: 14px;
    }

    .benefit-hommies-icon {
        width: 66px;
        height: 66px;
        border-radius: 16px;
    }

    .benefit-hommies-icon svg {
        width: 58px;
        height: 58px;
    }

    .benefit-hommies-card h3 {
        font-size: 24px;
        line-height: 1;
    }

    .benefit-hommies-card p {
        font-size: 14.5px;
        line-height: 1.38;
    }
}

/* =========================
   HOW IT WORKS - EDITORIAL DARK
   sección oscura premium
   ========================= */

.process-editorial-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 98, 61, .20), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(255, 255, 255, .08), transparent 26%),
        linear-gradient(135deg, #171514 0%, #2b2420 52%, #4a3329 100%);
    color: #fff;
}

.process-editorial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 82%);
    pointer-events: none;
}

.process-editorial-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: clamp(36px, 5vw, 74px);
    align-items: start;
}

.process-editorial-copy {
    position: sticky;
    top: 106px;
}

.process-editorial-copy .eyebrow {
    color: rgba(255, 255, 255, .62) !important;
}

.process-editorial-copy h2 {
    max-width: 560px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.06em;
    font-weight: 950;
}

.process-editorial-copy > p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16.5px;
    line-height: 1.48;
    font-weight: 650;
}

.process-editorial-claim {
    margin: 26px 0 24px;
    padding-left: 18px;
    border-left: 4px solid #ff623d;
    color: #ffffff;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 950;
}

.process-editorial-copy .button {
    background: #ff623d !important;
    border-color: #ff623d !important;
    color: #fff !important;
}

.process-editorial-copy .button:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #171514 !important;
}

.process-editorial-steps {
    display: grid;
    gap: 0;
}

.editorial-step {
    position: relative;
    display: grid;
    grid-template-columns: 52px 74px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.editorial-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.editorial-step-number {
    color: rgba(255, 255, 255, .32);
    font-size: 15px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.03em;
}

.editorial-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 58px;
}

.editorial-step-icon svg {
    display: block;
    width: 66px;
    height: 58px;
}

.editorial-step-icon .svg-ink {
    stroke: rgba(255, 255, 255, .74);
}

.editorial-step-icon .svg-accent {
    stroke: #ff623d;
}

.editorial-step h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: clamp(25px, 2.3vw, 36px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 950;
}

.editorial-step p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15.5px;
    line-height: 1.38;
    font-weight: 650;
}

.editorial-step::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #ff623d;
    transition: width .28s ease;
}

.editorial-step:hover::after {
    width: 100%;
}

.editorial-step:hover .editorial-step-number,
.editorial-step:hover h3 {
    color: #ff623d;
}

.editorial-step:hover .editorial-step-icon .svg-ink {
    stroke: rgba(255, 255, 255, .95);
}

/* Tablet */
@media (max-width: 980px) {
    .process-editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-editorial-copy {
        position: relative;
        top: auto;
    }

    .process-editorial-copy h2 {
        max-width: 720px;
    }

    .process-editorial-copy > p {
        max-width: 720px;
    }

    .process-editorial-claim {
        max-width: 520px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .process-editorial-copy h2 {
        font-size: clamp(34px, 9.2vw, 48px);
        line-height: 1.04;
    }

    .process-editorial-copy > p {
        font-size: 15.5px;
        line-height: 1.46;
    }

    .process-editorial-claim {
        margin: 22px 0 20px;
        font-size: 24px;
        border-left-width: 3px;
        padding-left: 14px;
    }

    .editorial-step {
        grid-template-columns: 36px 54px 1fr;
        gap: 12px;
        padding: 17px 0;
    }

    .editorial-step-number {
        font-size: 13px;
    }

    .editorial-step-icon {
        width: 50px;
        height: 46px;
    }

    .editorial-step-icon svg {
        width: 50px;
        height: 46px;
    }

    .editorial-step h3 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .editorial-step p {
        font-size: 14px;
        line-height: 1.34;
    }
}

@media (max-width: 420px) {
    .editorial-step {
        grid-template-columns: 34px 1fr;
        gap: 10px 12px;
    }

    .editorial-step-icon {
        display: none;
    }

    .editorial-step-number {
        color: #ff623d;
    }

    .editorial-step h3 {
        font-size: 23px;
    }

    .editorial-step p {
        font-size: 13.8px;
    }
}

/* =========================
   MOBILE SWIPE CARDS HOMMIES
   audiencia + beneficios
   ========================= */

@media (max-width: 760px) {

    /* Evita que el swipe corte feo los laterales */
    .insights-audience-section .shell,
    .benefits-hommies-section .shell {
        overflow: visible;
    }

    /* AUDIENCIA: swipe 1 a 1 */
    .audience-layout {
        display: grid !important;
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        grid-template-columns: none !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        padding: 0 0 14px;
        margin-top: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .audience-layout::-webkit-scrollbar {
        display: none;
    }

    .audience-profile-card {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100%;
        min-width: 0;
    }

    /* BENEFICIOS: swipe 1 a 1 */
    .benefits-hommies-grid {
        display: grid !important;
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        grid-template-columns: none !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        padding: 0 0 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .benefits-hommies-grid::-webkit-scrollbar {
        display: none;
    }

    .benefit-hommies-card {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100%;
        min-width: 0;
    }

    /* Indicador visual sutil de que hay swipe */
    .audience-layout::after,
    .benefits-hommies-grid::after {
        content: "";
        width: 1px;
    }

    /* FUENTES MÓVIL: mantener peso */
    .hero-magnetic h1,
    .section-title h2,
    .benefits-hommies-head h2,
    .process-editorial-copy h2,
    .faq-copy h2,
    .audience-profile-copy h3,
    .benefit-hommies-card h3,
    .editorial-step h3 {
        font-weight: 950 !important;
        font-synthesis-weight: none;
        -webkit-font-smoothing: antialiased;
        text-rendering: geometricPrecision;
    }

    .hero-magnetic-copy p,
    .section-kicker,
    .audience-profile-copy p,
    .benefit-hommies-card p,
    .editorial-step p,
    .faq-copy p {
        font-weight: 650 !important;
    }
}

/* Móvil pequeño: un poco más de aire lateral */
@media (max-width: 420px) {
    .audience-layout,
    .benefits-hommies-grid {
        grid-auto-columns: 88%;
    }
}
/* =========================
   MOBILE SWIPE CARDS + DOTS
   audiencia + beneficios
   ========================= */

.mobile-card-swipe-controls {
    display: none;
}

@media (max-width: 760px) {
    .insights-audience-section .shell,
    .benefits-hommies-section .shell {
        overflow: visible;
    }

    .audience-layout,
    .benefits-hommies-grid {
        display: grid !important;
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        grid-template-columns: none !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0 0 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .audience-layout::-webkit-scrollbar,
    .benefits-hommies-grid::-webkit-scrollbar {
        display: none;
    }

    .audience-profile-card,
    .benefit-hommies-card {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100%;
        min-width: 0;
    }

    .mobile-card-swipe-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 6px;
    }

    .mobile-card-arrow {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 999px;
        border: 1px solid rgba(23, 21, 20, .12);
        background: rgba(255, 255, 255, .94);
        color: #171514;
        font-size: 28px;
        line-height: 1;
        font-weight: 900;
        cursor: pointer;
        box-shadow: 0 10px 22px rgba(23, 21, 20, .10);
    }

    .mobile-card-arrow:active {
        transform: scale(.96);
    }

    .mobile-card-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-width: 86px;
    }

    .mobile-card-dots span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(23, 21, 20, .24);
        transition: width .2s ease, background .2s ease;
    }

    .mobile-card-dots span.is-active {
        width: 24px;
        background: #ff623d;
    }

    /* Mantener peso visual en móvil */
    .hero-magnetic h1,
    .section-title h2,
    .benefits-hommies-head h2,
    .process-editorial-copy h2,
    .faq-copy h2,
    .audience-profile-copy h3,
    .benefit-hommies-card h3,
    .editorial-step h3 {
        font-weight: 950 !important;
        font-synthesis-weight: none;
        -webkit-font-smoothing: antialiased;
        text-rendering: geometricPrecision;
    }

    .hero-magnetic-copy p,
    .section-kicker,
    .audience-profile-copy p,
    .benefit-hommies-card p,
    .editorial-step p,
    .faq-copy p {
        font-weight: 650 !important;
    }
}

@media (max-width: 420px) {
    .audience-layout,
    .benefits-hommies-grid {
        grid-auto-columns: 88%;
    }

    .mobile-card-arrow {
        width: 36px;
        height: 36px;
        font-size: 26px;
    }
}

/* =========================
   HERO APP MOCKUP 3D
   ========================= */

.hero-app-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-phone-glow {
    position: absolute;
    width: min(470px, 88%);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 42% 42%, rgba(255, 98, 61, .42), transparent 42%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, .18), transparent 48%);
    filter: blur(34px);
    opacity: .9;
    transform: translate3d(0, 22px, -80px);
    pointer-events: none;
}

.hero-phone-img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(430px, 92%);
    height: auto;
    object-fit: contain;
    transform:
        rotateX(var(--phone-rx, 0deg))
        rotateY(var(--phone-ry, 0deg))
        translateY(0);
    transform-style: preserve-3d;
    filter:
        drop-shadow(0 34px 52px rgba(0, 0, 0, .38))
        drop-shadow(0 10px 18px rgba(255, 98, 61, .20));
    animation: heroPhoneFloat 7s ease-in-out infinite;
    transition: transform .18s ease-out, filter .18s ease-out;
    will-change: transform;
}

.hero-app-visual:hover .hero-phone-img {
    filter:
        drop-shadow(0 42px 64px rgba(0, 0, 0, .42))
        drop-shadow(0 14px 22px rgba(255, 98, 61, .26));
}

@keyframes heroPhoneFloat {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -14px;
    }
}

.hero-phone-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .34);
    color: #171514;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.hero-phone-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: #ff623d;
}

.hero-phone-chip-top {
    top: 18%;
    left: 4%;
    animation: chipFloatA 6s ease-in-out infinite;
}

.hero-phone-chip-bottom {
    right: 0;
    bottom: 19%;
    animation: chipFloatB 6.8s ease-in-out infinite;
}

@keyframes chipFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 40px);
    }

    50% {
        transform: translate3d(0, -10px, 40px);
    }
}

@keyframes chipFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 46px);
    }

    50% {
        transform: translate3d(0, 10px, 46px);
    }
}

/* Por si quedara el bloque antiguo en algún lado */
.hero-magnetic-keywords {
    display: none;
}

/* Tablet */
@media (max-width: 1100px) {
    .hero-app-visual {
        min-height: 520px;
    }

    .hero-phone-img {
        width: min(380px, 86vw);
    }

    .hero-phone-chip-top {
        left: 8%;
    }

    .hero-phone-chip-bottom {
        right: 8%;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .hero-app-visual {
        min-height: auto;
        margin-top: 20px;
        padding-bottom: 8px;
        perspective: none;
    }

    .hero-phone-glow {
        width: min(300px, 82vw);
        filter: blur(26px);
        opacity: .74;
    }

    .hero-phone-img {
        width: min(300px, 78vw);
        transform: none !important;
        animation-duration: 7.5s;
        filter:
            drop-shadow(0 22px 34px rgba(0, 0, 0, .30))
            drop-shadow(0 8px 16px rgba(255, 98, 61, .18));
    }

    .hero-phone-chip {
        display: none;
    }
}

/* =========================
   HERO OSCURO HOMMIES APP
   versión final sobre foto
   ========================= */

.hero-magnetic-app {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    background: #171514;
}

.hero-magnetic-app .hero-magnetic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.hero-magnetic-app .hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(12, 10, 9, .88) 0%,
            rgba(12, 10, 9, .80) 35%,
            rgba(12, 10, 9, .52) 64%,
            rgba(12, 10, 9, .68) 100%
        ),
        radial-gradient(circle at 74% 50%, rgba(255, 98, 61, .18), transparent 36%);
}

.hero-magnetic-app .hero-magnetic-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(360px, .86fr);
    align-items: center;
    gap: clamp(38px, 5vw, 76px);
    padding-top: clamp(64px, 7vw, 104px);
    padding-bottom: clamp(54px, 6vw, 88px);
}

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

.hero-magnetic-app .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 28px;
    padding: 10px 12px 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 850;
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.hero-magnetic-app .hero-pill strong {
    color: #ffffff;
    font-weight: 950;
}

.hero-magnetic-app .pill-arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #ff623d;
    color: #ffffff;
    font-weight: 950;
}

.hero-magnetic-app h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(50px, 5.9vw, 92px);
    line-height: .92;
    letter-spacing: -.07em;
    font-weight: 950 !important;
}

.hero-magnetic-app .hero-magnetic-copy p {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.5;
    font-weight: 700;
}

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

.hero-magnetic-app .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 950;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.hero-magnetic-app .hero-btn-primary {
    background: #ffffff;
    color: #171514;
    border: 1px solid #ffffff;
}

.hero-magnetic-app .hero-btn-primary:hover {
    transform: translateY(-2px);
    background: #ff623d;
    border-color: #ff623d;
    color: #ffffff;
}

.hero-magnetic-app .hero-btn-secondary {
    gap: 9px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .28);
}

.hero-magnetic-app .hero-btn-secondary span {
    color: #ff623d;
}

.hero-magnetic-app .hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 98, 61, .42);
}

/* Mockup */
.hero-app-visual {
    position: relative;
    z-index: 2;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: visible;
}

.hero-phone-glow {
    position: absolute;
    width: min(430px, 86%);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 98, 61, .30), transparent 58%);
    filter: blur(36px);
    opacity: .78;
    pointer-events: none;
}

.hero-phone-img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(430px, 92%);
    height: auto;
    object-fit: contain;
    background: transparent !important;
    transform:
        rotateX(var(--phone-rx, 0deg))
        rotateY(var(--phone-ry, 0deg));
    transform-style: preserve-3d;
    transition: transform .18s ease-out, filter .18s ease-out;
    will-change: transform;
    animation: heroPhoneFloat 7s ease-in-out infinite;
    filter:
        drop-shadow(0 34px 52px rgba(0, 0, 0, .34))
        drop-shadow(0 10px 18px rgba(255, 98, 61, .12));
}

@keyframes heroPhoneFloat {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

/* Chips */
.hero-phone-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #171514;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.hero-phone-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: #ff623d;
}

.hero-phone-chip-top {
    top: 20%;
    left: 4%;
    animation: heroChipA 6s ease-in-out infinite;
}

.hero-phone-chip-mid {
    top: 45%;
    right: 0;
    animation: heroChipB 6.6s ease-in-out infinite;
}

.hero-phone-chip-bottom {
    right: 4%;
    bottom: 22%;
    animation: heroChipC 7s ease-in-out infinite;
}

@keyframes heroChipA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes heroChipB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes heroChipC {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Tablet */
@media (max-width: 1100px) {
    .hero-magnetic-app .hero-magnetic-grid {
        grid-template-columns: 1fr;
    }

    .hero-app-visual {
        min-height: 500px;
    }

    .hero-phone-img {
        width: min(380px, 84vw);
    }
}

/* Mobile */
@media (max-width: 760px) {
    .hero-magnetic-app {
        min-height: auto;
    }

    .hero-magnetic-app .hero-magnetic-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding-top: 42px;
        padding-bottom: 52px;
    }

    /* Imagen primero en móvil */
    .hero-app-visual {
        order: -1;
        min-height: auto;
        width: 100%;
        perspective: none;
    }

    .hero-magnetic-copy {
        order: 2;
        width: 100%;
    }

    .hero-magnetic-app .hero-pill {
        margin-bottom: 22px;
    }

    .hero-magnetic-app .hero-pill span {
        font-size: 12px;
    }

    .hero-magnetic-app h1 {
        font-size: clamp(42px, 11vw, 64px);
        line-height: .94;
        letter-spacing: -.065em;
        font-weight: 950 !important;
    }

    .hero-magnetic-app .hero-magnetic-copy p {
        font-size: 16.5px;
        line-height: 1.5;
    }

    .hero-magnetic-app .hero-btn {
        width: 100%;
    }

    .hero-phone-glow {
        width: min(280px, 76vw);
        filter: blur(26px);
    }

    .hero-phone-img {
        width: min(330px, 88vw);
        transform: none !important;
        animation-duration: 7.5s;
    }

    .hero-phone-chip {
        display: none;
    }
}

/* =========================
   FIX HERO OSCURO HOMMIES
   no full screen / más contenido
   ========================= */

.hero-magnetic-app {
    min-height: auto !important;
    padding: 0 !important;
}

.hero-magnetic-app .hero-magnetic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-magnetic-app .hero-magnetic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(12, 10, 9, .86) 0%,
            rgba(12, 10, 9, .78) 38%,
            rgba(12, 10, 9, .48) 68%,
            rgba(12, 10, 9, .64) 100%
        ),
        radial-gradient(circle at 73% 48%, rgba(255, 98, 61, .18), transparent 34%);
}

/* clave: vuelve a meter el contenido dentro de ancho de web */
.hero-magnetic-app .hero-magnetic-grid {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
    padding: clamp(70px, 7vw, 108px) 0 clamp(58px, 6vw, 88px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(340px, .85fr) !important;
    align-items: center !important;
    gap: clamp(34px, 5vw, 72px) !important;
}

.hero-magnetic-app .hero-magnetic-copy {
    max-width: 680px !important;
}

/* título más contenido */
.hero-magnetic-app h1 {
    max-width: 680px !important;
    margin: 0 !important;
    font-size: clamp(46px, 5vw, 78px) !important;
    line-height: .94 !important;
    letter-spacing: -.065em !important;
    font-weight: 950 !important;
    color: #fff !important;
}

.hero-magnetic-app .hero-magnetic-copy p {
    max-width: 620px !important;
    margin-top: 26px !important;
    font-size: clamp(17px, 1.25vw, 21px) !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, .84) !important;
}

.hero-magnetic-app .hero-pill {
    margin-bottom: 26px !important;
}

/* mockup más integrado y sin desbordar */
.hero-magnetic-app .hero-app-visual {
    min-height: 540px !important;
    width: 100% !important;
    overflow: visible !important;
}

.hero-magnetic-app .hero-phone-img {
    width: min(410px, 90%) !important;
    max-width: 410px !important;
}

/* chips dentro del área, no fuera de pantalla */
.hero-magnetic-app .hero-phone-chip-top {
    top: 19% !important;
    left: 2% !important;
}

.hero-magnetic-app .hero-phone-chip-mid {
    top: 44% !important;
    right: 2% !important;
}

.hero-magnetic-app .hero-phone-chip-bottom {
    right: 3% !important;
    bottom: 20% !important;
}

/* botones */
.hero-magnetic-app .hero-magnetic-actions {
    margin-top: 32px !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .hero-magnetic-app .hero-magnetic-grid {
        grid-template-columns: 1fr !important;
        width: min(920px, calc(100% - 40px)) !important;
        gap: 30px !important;
    }

    .hero-magnetic-app .hero-app-visual {
        min-height: 440px !important;
    }

    .hero-magnetic-app .hero-phone-img {
        width: min(360px, 80vw) !important;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .hero-magnetic-app .hero-magnetic-grid {
        width: min(100%, calc(100% - 32px)) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 38px 0 48px !important;
        gap: 26px !important;
    }

    /* imagen primero en móvil */
    .hero-magnetic-app .hero-app-visual {
        order: -1 !important;
        min-height: auto !important;
        width: 100% !important;
    }

    .hero-magnetic-app .hero-magnetic-copy {
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
    }

    .hero-magnetic-app h1 {
        max-width: 100% !important;
        font-size: clamp(40px, 10.8vw, 60px) !important;
        line-height: .95 !important;
        letter-spacing: -.06em !important;
    }

    .hero-magnetic-app .hero-magnetic-copy p {
        max-width: 100% !important;
        font-size: 16.5px !important;
        line-height: 1.5 !important;
    }

    .hero-magnetic-app .hero-phone-img {
        width: min(320px, 86vw) !important;
        max-width: none !important;
    }

    .hero-magnetic-app .hero-phone-chip {
        display: none !important;
    }

    .hero-magnetic-app .hero-btn {
        width: 100% !important;
    }
}

/* =========================
   FIX HERO MOBILE HOMMIES
   versión app-first potente
   ========================= */

@media (max-width: 760px) {

    html,
    body {
        overflow-x: hidden;
    }

    .hero-magnetic-app {
        min-height: auto !important;
        overflow: hidden !important;
        background: #171514 !important;
    }

    .hero-magnetic-app .hero-magnetic-bg {
        position: absolute !important;
        inset: 0 !important;
        background-size: cover !important;
        background-position: center top !important;
        opacity: 1 !important;
        transform: scale(1.04);
    }

    .hero-magnetic-app .hero-magnetic-overlay {
        position: absolute !important;
        inset: 0 !important;
        background:
            linear-gradient(180deg,
                rgba(12, 10, 9, .70) 0%,
                rgba(12, 10, 9, .78) 34%,
                rgba(12, 10, 9, .92) 72%,
                rgba(12, 10, 9, .98) 100%
            ),
            radial-gradient(circle at 50% 20%, rgba(255, 98, 61, .22), transparent 42%) !important;
    }

    .hero-magnetic-app .hero-magnetic-grid {
        width: min(100%, calc(100% - 28px)) !important;
        margin-inline: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        padding: 24px 0 42px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* Imagen primero, pero controlada */
    .hero-magnetic-app .hero-app-visual {
        order: -1 !important;
        width: 100% !important;
        min-height: 330px !important;
        height: 330px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        perspective: none !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .hero-magnetic-app .hero-phone-glow {
        width: 250px !important;
        height: 250px !important;
        opacity: .78 !important;
        filter: blur(28px) !important;
        background: radial-gradient(circle, rgba(255, 98, 61, .38), transparent 62%) !important;
    }

    .hero-magnetic-app .hero-phone-img {
        width: min(285px, 78vw) !important;
        max-width: none !important;
        transform: none !important;
        animation: heroPhoneMobileFloat 6.5s ease-in-out infinite !important;
        filter:
            drop-shadow(0 22px 32px rgba(0, 0, 0, .34))
            drop-shadow(0 8px 18px rgba(255, 98, 61, .18)) !important;
    }

    @keyframes heroPhoneMobileFloat {
        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    /* En móvil los chips ensucian */
    .hero-magnetic-app .hero-phone-chip {
        display: none !important;
    }

    .hero-magnetic-app .hero-magnetic-copy {
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
        position: relative !important;
        z-index: 3 !important;
    }

    /* La pill queda demasiado grande arriba: la hacemos compacta */
    .hero-magnetic-app .hero-pill {
        max-width: 100% !important;
        margin-bottom: 18px !important;
        padding: 8px 9px 8px 12px !important;
        gap: 8px !important;
        background: rgba(255, 255, 255, .11) !important;
        border: 1px solid rgba(255, 255, 255, .18) !important;
        backdrop-filter: blur(10px) !important;
    }

    .hero-magnetic-app .hero-pill strong {
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .hero-magnetic-app .hero-pill span:not(.pill-arrow) {
        font-size: 12px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 220px !important;
    }

    .hero-magnetic-app .pill-arrow {
        flex: 0 0 28px !important;
        width: 28px !important;
        height: 28px !important;
    }

    /* Titular potente pero no monstruoso */
    .hero-magnetic-app h1 {
        max-width: 100% !important;
        margin: 0 !important;
        color: #ffffff !important;
        font-size: clamp(40px, 11vw, 56px) !important;
        line-height: .94 !important;
        letter-spacing: -.065em !important;
        font-weight: 950 !important;
        text-wrap: balance;
    }

    .hero-magnetic-app .hero-magnetic-copy p {
        max-width: 100% !important;
        margin-top: 18px !important;
        color: rgba(255, 255, 255, .84) !important;
        font-size: 16px !important;
        line-height: 1.48 !important;
        font-weight: 700 !important;
    }

    .hero-magnetic-app .hero-magnetic-actions {
        margin-top: 24px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .hero-magnetic-app .hero-btn {
        width: 100% !important;
        min-height: 52px !important;
        border-radius: 11px !important;
        font-weight: 950 !important;
    }

    .hero-magnetic-app .hero-btn-primary {
        background: #ffffff !important;
        color: #171514 !important;
        border-color: #ffffff !important;
    }

    .hero-magnetic-app .hero-btn-secondary {
        background: rgba(255, 255, 255, .08) !important;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, .18) !important;
    }
}

/* Móvil muy pequeño */
@media (max-width: 420px) {
    .hero-magnetic-app .hero-app-visual {
        height: 300px !important;
        min-height: 300px !important;
    }

    .hero-magnetic-app .hero-phone-img {
        width: min(255px, 76vw) !important;
    }

    .hero-magnetic-app h1 {
        font-size: clamp(38px, 10.8vw, 50px) !important;
    }

    .hero-magnetic-app .hero-pill span:not(.pill-arrow) {
        max-width: 180px !important;
    }
}

.hero-magnetic-app h1 .hero-orange-text {
    color: #ff623d;
    display: inline;
    text-shadow: 0 10px 34px rgba(255, 98, 61, .22);
}

/* ==================================================
   FORCE: OCULTAR MOCKUP EN MÓVIL
   debe ir al FINAL del CSS
   ================================================== */

@media screen and (max-width: 760px) {
    section#presentacion.hero-magnetic-app .hero-app-visual,
    section#presentacion.hero-magnetic-app .hero-phone-glow,
    section#presentacion.hero-magnetic-app .hero-phone-img,
    section#presentacion.hero-magnetic-app .hero-phone-chip {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    section#presentacion.hero-magnetic-app .hero-magnetic-grid {
        display: block !important;
        width: min(100%, calc(100% - 32px)) !important;
        margin-inline: auto !important;
        padding: 54px 0 56px !important;
    }

    section#presentacion.hero-magnetic-app .hero-magnetic-copy {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    section#presentacion.hero-magnetic-app h1 {
        max-width: 100% !important;
        font-size: clamp(44px, 12vw, 64px) !important;
        line-height: .94 !important;
        letter-spacing: -.065em !important;
        font-weight: 950 !important;
    }

    section#presentacion.hero-magnetic-app .hero-magnetic-copy p {
        max-width: 100% !important;
        margin-top: 20px !important;
        font-size: 16.5px !important;
        line-height: 1.5 !important;
        font-weight: 700 !important;
    }

    section#presentacion.hero-magnetic-app .hero-magnetic-actions {
        margin-top: 28px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    section#presentacion.hero-magnetic-app .hero-btn {
        width: 100% !important;
        min-height: 52px !important;
    }
}

/* =========================
   CONTACTO HOMMIES
   ========================= */

.contact-section {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 98, 61, .08), transparent 28%),
        linear-gradient(180deg, #fffaf4 0%, #f6f1e9 100%);
    color: #2b2420;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    padding: clamp(32px, 5vw, 58px);
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(43, 36, 32, .10);
    box-shadow: 0 22px 44px rgba(43, 36, 32, .08);
}

.contact-copy {
    max-width: 820px;
}

.contact-copy h2 {
    max-width: 760px;
    margin: 0 0 16px;
    color: #171514;
    font-size: clamp(38px, 4.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -.06em;
    font-weight: 950;
}

.contact-copy p {
    max-width: 680px;
    margin: 0;
    color: #514a45;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 650;
}

.contact-actions {
    display: grid;
    gap: 12px;
    min-width: 220px;
}

.contact-actions .button {
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 28px;
        border-radius: 24px;
    }

    .contact-copy h2 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .contact-actions {
        min-width: 0;
        width: 100%;
    }

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

/* =========================
   CONTACTO CANALES
   WhatsApp + Email
   ========================= */

.contact-actions-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 260px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 62px;
    padding: 12px 16px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-channel:hover {
    transform: translateY(-2px);
}

.contact-channel-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
}

.contact-channel strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
}

.contact-channel small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 800;
    opacity: .78;
}

/* WhatsApp */
.contact-channel-whatsapp {
    background: #25D366;
    border: 1px solid #25D366;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(37, 211, 102, .22);
}

.contact-channel-whatsapp .contact-channel-icon {
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
}

.contact-channel-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #ffffff;
    box-shadow: 0 20px 38px rgba(37, 211, 102, .28);
}

/* Email */
.contact-channel-email {
    background: #171514;
    border: 1px solid #171514;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(23, 21, 20, .16);
}

.contact-channel-email .contact-channel-icon {
    background: rgba(255, 98, 61, .16);
    color: #ff623d;
}

.contact-channel-email:hover {
    background: #ff623d;
    border-color: #ff623d;
    color: #ffffff;
    box-shadow: 0 20px 38px rgba(255, 98, 61, .24);
}

.contact-channel-email:hover .contact-channel-icon {
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
}

@media (max-width: 860px) {
    .contact-actions-two {
        width: 100%;
        min-width: 0;
    }

    .contact-channel {
        width: 100%;
    }
}

/* =========================
   CONTACTO FRIENDLY
   ========================= */

.contact-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 98, 61, .08), transparent 22%),
        linear-gradient(180deg, #fffaf4 0%, #f6f0e8 100%);
}

.contact-friendly {
    padding: clamp(30px, 5vw, 54px);
    border-radius: 30px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(43, 36, 32, .08);
    box-shadow: 0 18px 42px rgba(43, 36, 32, .08);
    backdrop-filter: blur(10px);
}

.contact-friendly-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.contact-friendly-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(43, 36, 32, .10);
    color: #2b2420;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.contact-friendly-badge-icon {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: #ff623d;
}

.contact-friendly-head h2 {
    margin: 0 0 14px;
    color: #171514;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.06em;
    font-weight: 950;
}

.contact-friendly-head p {
    max-width: 720px;
    margin: 0;
    color: #5a524c;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 650;
}

.contact-friendly-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-friendly-card {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 18px 18px;
    border-radius: 22px;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    border: 1px solid transparent;
}

.contact-friendly-card:hover {
    transform: translateY(-3px);
}

.contact-friendly-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 56px;
}

.contact-friendly-copy strong {
    display: block;
    color: #171514;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 5px;
}

.contact-friendly-copy span {
    display: block;
    color: #655d57;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.contact-friendly-arrow {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    opacity: .7;
}

/* WhatsApp */
.contact-friendly-card-whatsapp {
    background: linear-gradient(180deg, #ffffff 0%, #f6fff9 100%);
    border-color: rgba(37, 211, 102, .18);
    box-shadow: 0 14px 28px rgba(37, 211, 102, .10);
}

.contact-friendly-card-whatsapp .contact-friendly-icon {
    background: rgba(37, 211, 102, .12);
    color: #25D366;
}

.contact-friendly-card-whatsapp:hover {
    box-shadow: 0 20px 36px rgba(37, 211, 102, .16);
    border-color: rgba(37, 211, 102, .34);
}

/* Email */
.contact-friendly-card-email {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
    border-color: rgba(255, 98, 61, .18);
    box-shadow: 0 14px 28px rgba(255, 98, 61, .08);
}

.contact-friendly-card-email .contact-friendly-icon {
    background: rgba(255, 98, 61, .12);
    color: #ff623d;
}

.contact-friendly-card-email:hover {
    box-shadow: 0 20px 36px rgba(255, 98, 61, .14);
    border-color: rgba(255, 98, 61, .34);
}

@media (max-width: 900px) {
    .contact-friendly-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .contact-friendly {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .contact-friendly-head {
        margin-bottom: 20px;
    }

    .contact-friendly-head h2 {
        font-size: clamp(34px, 10vw, 50px);
        line-height: 1.04;
    }

    .contact-friendly-head p {
        font-size: 15.5px;
        line-height: 1.5;
    }

    .contact-friendly-card {
        grid-template-columns: 50px 1fr auto;
        min-height: 84px;
        padding: 14px 14px;
        border-radius: 18px;
        gap: 12px;
    }

    .contact-friendly-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .contact-friendly-copy strong {
        font-size: 16px;
    }

    .contact-friendly-copy span {
        font-size: 13px;
    }

    .contact-friendly-arrow {
        font-size: 20px;
    }
}

.hommies-ways-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 98, 61, .12), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(255, 98, 61, .08), transparent 34%),
        #fff8f3;
}

.hommies-ways-head {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hommies-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 54px;
}

.hommies-way-card {
    position: relative;
    min-height: 390px;
    padding: 30px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(23, 21, 20, .10);
    box-shadow: 0 24px 80px rgba(23, 21, 20, .08);
    overflow: hidden;
}

.hommies-way-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 98, 61, .08);
}

.hommies-way-card-featured {
    background: #171514;
    color: #ffffff;
    transform: translateY(-14px);
}

.hommies-way-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hommies-way-number {
    font-size: .82rem;
    font-weight: 950;
    color: #ff623d;
}

.hommies-way-tag {
    font-size: .78rem;
    font-weight: 900;
    color: rgba(23, 21, 20, .62);
    background: rgba(255, 98, 61, .10);
    padding: 8px 11px;
    border-radius: 999px;
}

.hommies-way-card-featured .hommies-way-tag {
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .12);
}

.hommies-way-icon {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: #fff4ee;
    margin-bottom: 34px;
}

.hommies-way-card-featured .hommies-way-icon {
    background: rgba(255, 255, 255, .10);
}

.hommies-way-icon svg {
    width: 72px;
    height: 64px;
}

.hommies-way-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -.055em;
    color: #171514;
}

.hommies-way-card-featured h3 {
    color: #ffffff;
}

.hommies-way-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(23, 21, 20, .68);
    line-height: 1.55;
    font-weight: 650;
}

.hommies-way-card-featured p {
    color: rgba(255, 255, 255, .74);
}

.hommies-ways-claim {
    margin: 42px auto 0;
    max-width: 760px;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 18px;
}

.hommies-ways-claim p {
    margin: 0;
    color: rgba(23, 21, 20, .74);
    font-weight: 850;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

@media (max-width: 980px) {
    .hommies-ways-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-inline: auto;
    }

    .hommies-way-card {
        min-height: auto;
    }

    .hommies-way-card-featured {
        transform: none;
    }
}
.hommies-ways-section .hommies-way-icon {
    color: #171514;
}

.hommies-ways-section .hommies-way-icon .svg-ink {
    stroke: #171514 !important;
}

.hommies-ways-section .hommies-way-icon .svg-accent {
    stroke: #ff623d !important;
}

.hommies-ways-section .hommies-way-card-featured .hommies-way-icon .svg-ink {
    stroke: #ffffff !important;
}

.hommies-ways-section .hommies-way-card-featured .hommies-way-icon .svg-accent {
    stroke: #ff623d !important;
}

.hommies-ways-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-inline: auto;
}

@media (max-width: 760px) {
    .hommies-ways-grid-two {
        grid-template-columns: 1fr;
    }
}

/* Modal vídeo Hommies */
.button-video {
    background: #171514 !important;
    color: #ffffff !important;
    border-color: #171514 !important;
}

.button-video::before {
    content: "▶";
    margin-right: 8px;
    font-size: .78em;
}

.video-modal-open {
    overflow: hidden;
}

.hommies-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    place-items: center;
    padding: 22px;
}

.hommies-video-modal.is-open {
    display: grid;
}

.hommies-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 21, 20, .72);
    backdrop-filter: blur(12px);
}

.hommies-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    border-radius: 34px;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,243,.92));
    box-shadow: 0 34px 120px rgba(0,0,0,.38);
    border: 1px solid rgba(255,255,255,.34);
}

.hommies-video-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 8px 58px 16px 10px;
}

.hommies-video-modal-head span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: #ff623d;
    color: #ffffff;
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hommies-video-modal-head strong {
    color: #171514;
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: -.03em;
}

.hommies-video-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #171514;
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.hommies-video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 24px;
    background: #171514;
}

@media (max-width: 680px) {
    .hommies-video-modal {
        padding: 12px;
    }

    .hommies-video-modal-dialog {
        border-radius: 24px;
        padding: 10px;
    }

    .hommies-video-modal-head {
        display: grid;
        padding: 6px 52px 14px 6px;
    }

    .hommies-video-player {
        border-radius: 18px;
    }
}
<style id="hommies-private-match-section">
.private-match-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 98, 61, .10), transparent 30%),
        linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.private-match-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -140px;
    border-radius: 50%;
    background: rgba(255, 98, 61, .07);
    pointer-events: none;
}

.private-match-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(31, 39, 35, .04);
    pointer-events: none;
}

.private-match-section .shell {
    position: relative;
    z-index: 1;
}

.private-match-head {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.private-match-head h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.private-match-head .section-kicker {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.private-match-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.private-match-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(31, 39, 35, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 50px rgba(31, 39, 35, .07);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.private-match-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 98, 61, .35);
    box-shadow: 0 24px 60px rgba(31, 39, 35, .11);
}

.private-match-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: #ff623d;
    opacity: .9;
}

.private-match-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    border-radius: 14px;
    background: #ff623d;
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.private-match-card h3 {
    margin: 0 0 12px;
    color: #1f2723;
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    line-height: 1.15;
}

.private-match-card p {
    margin: 0;
    color: rgba(31, 39, 35, .72);
    font-size: .98rem;
    line-height: 1.65;
}

.private-match-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    width: fit-content;
    max-width: 100%;
    margin: 38px auto 0;
    padding: 16px 22px;
    border: 1px solid rgba(255, 98, 61, .22);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(31, 39, 35, .06);
    text-align: center;
}

.private-match-claim strong {
    color: #1f2723;
    font-size: 1rem;
}

.private-match-claim span {
    color: #ff623d;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .private-match-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .private-match-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .private-match-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .private-match-head h2,
    .private-match-head .section-kicker {
        margin-left: 0;
        margin-right: 0;
    }

    .private-match-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .private-match-grid::-webkit-scrollbar {
        display: none;
    }

    .private-match-card {
        flex: 0 0 86%;
        min-height: 240px;
        scroll-snap-align: start;
        padding: 24px;
        border-radius: 22px;
    }

    .private-match-card:hover {
        transform: none;
    }

    .private-match-claim {
        width: 100%;
        border-radius: 20px;
        padding: 15px 18px;
    }
}

@media (max-width: 480px) {
    .private-match-card {
        flex-basis: 90%;
    }

    .private-match-number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

/* HM TOPBAR FINAL START */

/*
 * Evita que overflow:hidden convierta el body en un contenedor
 * que impida funcionar a position:sticky.
 */
html,
body,
body.hommies-app {
    overflow-x: clip !important;
}

/*
 * Cabecera común: landing, acceso, registro y recuperación.
 */
.topbar {
    position: sticky !important;
    top: 12px !important;
    z-index: 10000 !important;
}

/*
 * Elementos exclusivos del menú desplegable móvil.
 */
.nav-mobile-login,
.nav-mobile-cta {
    display: none !important;
}

/*
 * Acciones de escritorio.
 */
.topbar-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.topbar-login {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--ink, #171514) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.topbar-login:hover {
    color: var(--accent, #ff623d) !important;
    background: transparent !important;
}

.button.small-button.topbar-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    white-space: nowrap !important;
}

/*
 * Menú móvil.
 */
@media (max-width: 760px) {
    .topbar {
        top: 0 !important;
        z-index: 10000 !important;
    }

    .topbar-actions {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex !important;
        position: relative !important;
        z-index: 10002 !important;
    }

    .nav {
        position: relative !important;
        z-index: 10001 !important;
    }

    .nav.is-open {
        display: grid !important;
    }

    .nav.is-open .nav-mobile-login {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 46px !important;
        padding: 12px 14px !important;
        border: 1px solid rgba(23, 23, 23, 0.12) !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: var(--ink, #171514) !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .nav.is-open .nav-mobile-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 48px !important;
        margin-top: 6px !important;
        padding: 12px 16px !important;
        border-radius: 999px !important;
        background: var(--ink, #171514) !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }
}

/* HM TOPBAR FINAL END */

/* HM MOBILE HERO HEIGHT START */

@media (max-width: 760px) {
    .hero-magnetic.hero-magnetic-app {
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 34px !important;
    }

    .hero-magnetic-app .hero-magnetic-grid {
        min-height: auto !important;
        padding-bottom: 0 !important;
    }
}

/* HM MOBILE HERO HEIGHT END */

/* HM MENU ACTION BUTTONS START */

.topbar-login {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    min-height: 42px !important;
    padding: 0 17px !important;

    border: 1px solid #171514 !important;
    border-radius: 999px !important;
    background: #171514 !important;
    box-shadow: none !important;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.topbar-login:hover {
    border-color: #2d2927 !important;
    background: #2d2927 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.hm-login-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: currentColor;
}

.hm-login-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.button.small-button.topbar-cta,
.nav a.nav-mobile-cta {
    border: 1px solid #ff623d !important;
    background: #ff623d !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.button.small-button.topbar-cta:hover,
.nav a.nav-mobile-cta:hover {
    border-color: #e9502f !important;
    background: #e9502f !important;
    color: #ffffff !important;
}

@media (max-width: 760px) {
    .nav.is-open .nav-mobile-login {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 9px !important;

        width: 100% !important;
        min-height: 48px !important;
        padding: 12px 16px !important;

        border: 1px solid #171514 !important;
        border-radius: 999px !important;
        background: #171514 !important;

        color: #ffffff !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }

    .nav.is-open .nav-mobile-login:hover {
        background: #2d2927 !important;
        color: #ffffff !important;
    }

    .nav.is-open .nav-mobile-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-height: 48px !important;
        padding: 12px 16px !important;

        border: 1px solid #ff623d !important;
        border-radius: 999px !important;
        background: #ff623d !important;

        color: #ffffff !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }
}

/* HM MENU ACTION BUTTONS END */

/* HM SAME MENU RADIUS START */

.topbar-login,
.button.small-button.topbar-cta,
.nav.is-open .nav-mobile-login,
.nav.is-open .nav-mobile-cta {
    border-radius: 999px !important;
}

/* HM SAME MENU RADIUS END */

/* HM VIDEO MODAL CLEAN START */

.hommies-video-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 20000 !important;
    display: grid !important;
    place-items: center !important;
    padding: 24px !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .22s ease,
        visibility .22s ease;
}

.hommies-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hommies-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 9, .9);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.hommies-video-modal-dialog {
    position: relative !important;
    z-index: 1;
    width: min(1080px, 94vw) !important;
    max-width: none !important;
    padding: 0 !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 26px !important;
    background: #000 !important;
    box-shadow:
        0 35px 100px rgba(0, 0, 0, .5);
}

.hommies-video-modal-head {
    display: none !important;
}

.hommies-video-player {
    display: block;
    width: 100% !important;
    height: auto;
    max-height: 86vh !important;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
    object-fit: contain;
}

.hommies-video-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 5;
    width: 44px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    border-radius: 999px !important;
    background: rgba(15, 15, 15, .74) !important;
    color: #fff !important;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition:
        transform .18s ease,
        background .18s ease;
}

.hommies-video-close:hover {
    transform: scale(1.06);
    background: #ff623d !important;
}

.hommies-video-close svg {
    display: block;
}

html.video-modal-open,
html.video-modal-open body {
    overflow: hidden !important;
}

@media (max-width: 760px) {
    .hommies-video-modal {
        padding: 0 !important;
        background: #000;
    }

    .hommies-video-modal-backdrop {
        background: #000;
        backdrop-filter: none;
    }

    .hommies-video-modal-dialog {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        display: grid !important;
        place-items: center;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .hommies-video-player {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
    }

    .hommies-video-close {
        position: fixed !important;
        top: max(
            16px,
            env(safe-area-inset-top)
        ) !important;
        right: 16px !important;
        width: 46px !important;
        height: 46px !important;
    }
}

/* HM VIDEO MODAL CLEAN END */

/* HM TABLET HOME START */

@media (min-width: 761px) and (max-width: 1050px) {
    .topbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 10000 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 46px !important;
        align-items: center !important;
        gap: 16px !important;
        min-height: 62px !important;
        padding: 9px 12px !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, .97) !important;
        box-shadow: 0 8px 24px rgba(23, 21, 20, .08);
        backdrop-filter: blur(14px);
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: auto !important;
        max-width: 145px !important;
        height: auto !important;
    }

    .menu-toggle {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        justify-self: end;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(23, 21, 20, .12) !important;
        border-radius: 13px !important;
        background: #ffffff !important;
        color: #171514 !important;
        box-shadow: 0 6px 18px rgba(23, 21, 20, .07);
        cursor: pointer;
    }

    .menu-toggle-line {
        display: block !important;
        width: 19px !important;
        height: 2px !important;
        flex: 0 0 2px;
        border-radius: 999px;
        background: currentColor !important;
        transition:
            transform .2s ease,
            opacity .2s ease;
    }

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

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

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

    .topbar-actions {
        display: none !important;
    }

    .nav {
        position: fixed !important;
        top: 72px !important;
        left: 14px !important;
        right: 14px !important;
        z-index: 10001 !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        max-height: calc(100dvh - 90px);
        padding: 14px !important;
        overflow-y: auto;
        border: 1px solid rgba(23, 21, 20, .1) !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, .99) !important;
        box-shadow: 0 24px 60px rgba(23, 21, 20, .2) !important;
        backdrop-filter: blur(16px);
    }

    .nav.is-open {
        display: grid !important;
    }

    .nav > a {
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        padding: 10px 13px !important;
        border-radius: 12px !important;
        color: #171514 !important;
        font-size: .92rem !important;
        font-weight: 850 !important;
        line-height: 1.2 !important;
        text-decoration: none !important;
        white-space: normal !important;
    }

    .nav > a:hover {
        background: #fff1eb !important;
    }

    .nav-mobile-login,
    .nav-mobile-cta {
        display: flex !important;
        justify-content: center !important;
        margin-top: 5px !important;
        text-align: center;
    }

    .nav-mobile-login {
        background: #171514 !important;
        color: #ffffff !important;
    }

    .nav-mobile-cta {
        background: #ff623d !important;
        color: #ffffff !important;
    }

    .hero-magnetic.hero-magnetic-app {
        min-height: auto !important;
        height: auto !important;
        padding-top: 48px !important;
        padding-bottom: 34px !important;
    }

    .hero-magnetic-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        min-height: auto !important;
    }

    .hero-magnetic-copy {
        width: 100%;
        max-width: 720px;
    }

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

    .hero-magnetic-copy h1 {
        max-width: 700px;
        font-size: clamp(2.45rem, 6.2vw, 3.65rem) !important;
        line-height: .98 !important;
    }

    .hero-magnetic-copy > p {
        max-width: 640px;
        font-size: 1rem !important;
        line-height: 1.55 !important;
    }

    .hero-magnetic-actions {
        flex-wrap: wrap;
    }

    .hero-app-visual {
        width: min(100%, 620px) !important;
        min-height: 380px !important;
        margin-inline: auto;
    }

    .hero-phone-img {
        width: min(245px, 38vw) !important;
        max-width: 245px !important;
    }

    .hero-phone-chip {
        font-size: .76rem !important;
        padding: 9px 13px !important;
    }
}

/* HM TABLET HOME END */

/* HM MENU THREE BARS START */

@media (max-width: 1050px) {
    .menu-toggle {
        position: relative !important;
        display: block !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        border: 1px solid rgba(23, 21, 20, .13) !important;
        border-radius: 13px !important;
        background: #ffffff !important;
        color: #171514 !important;
        box-shadow: 0 5px 15px rgba(23, 21, 20, .07) !important;
    }

    .menu-toggle .menu-toggle-line {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 19px !important;
        height: 2px !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #171514 !important;
        opacity: 1 !important;
        transform: translate(-50%, -50%) !important;
        transition:
            transform .2s ease,
            opacity .2s ease !important;
    }

    .menu-toggle .menu-toggle-line:nth-child(1) {
        transform:
            translate(-50%, calc(-50% - 6px))
            !important;
    }

    .menu-toggle .menu-toggle-line:nth-child(2) {
        transform:
            translate(-50%, -50%)
            !important;
    }

    .menu-toggle .menu-toggle-line:nth-child(3) {
        display: block !important;
        transform:
            translate(-50%, calc(-50% + 6px))
            !important;
    }

    .menu-toggle[aria-expanded="true"]
    .menu-toggle-line:nth-child(1) {
        transform:
            translate(-50%, -50%)
            rotate(45deg)
            !important;
    }

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

    .menu-toggle[aria-expanded="true"]
    .menu-toggle-line:nth-child(3) {
        transform:
            translate(-50%, -50%)
            rotate(-45deg)
            !important;
    }
}

/* HM MENU THREE BARS END */

/* HM IPAD PORTRAIT AS MOBILE START */

@media
    (min-width: 761px)
    and (max-width: 1050px)
    and (orientation: portrait) {

    .hero-magnetic.hero-magnetic-app {
        min-height: auto !important;
        height: auto !important;
        padding:
            48px
            0
            28px
            !important;
    }

    .hero-magnetic-bg {
        background-position: center center !important;
        background-size: cover !important;
    }

    .hero-magnetic-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 8, .58) 0%,
                rgba(8, 8, 8, .72) 50%,
                rgba(8, 8, 8, .84) 100%
            ) !important;
    }

    .hero-magnetic-grid {
        width: 100% !important;
        max-width: none !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding:
            0
            clamp(18px, 4vw, 34px)
            !important;
    }

    .hero-magnetic-copy {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .hero-pill {
        width: fit-content !important;
        max-width: 100% !important;
        overflow: hidden;
        white-space: nowrap;
    }

    .hero-pill span:not(.pill-arrow) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-magnetic-copy h1 {
        width: 100% !important;
        max-width: 760px !important;
        margin-top: 22px !important;
        font-size:
            clamp(3rem, 7vw, 4.7rem)
            !important;
        line-height: .97 !important;
        letter-spacing: -.055em !important;
    }

    .hero-magnetic-copy > p {
        width: 100% !important;
        max-width: 680px !important;
        margin-top: 20px !important;
        font-size: 1.08rem !important;
        line-height: 1.55 !important;
    }

    .hero-magnetic-actions {
        width: 100% !important;
        max-width: 680px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 26px !important;
    }

    .hero-magnetic-actions .hero-btn {
        width: 100% !important;
        min-height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 18px !important;
        text-align: center !important;
    }

    .hero-app-visual {
        width: 100% !important;
        max-width: 650px !important;
        min-height: 480px !important;
        margin:
            0
            auto
            !important;
    }

    .hero-phone-img {
        width: min(280px, 42vw) !important;
        max-width: 280px !important;
    }

    .hero-phone-chip {
        font-size: .78rem !important;
        padding: 9px 13px !important;
    }

    .hero-phone-chip-top {
        left: 0 !important;
        right: auto !important;
    }

    .hero-phone-chip-mid {
        left: auto !important;
        right: 0 !important;
    }

    .hero-phone-chip-bottom {
        left: auto !important;
        right: 2% !important;
    }
}

/* HM IPAD PORTRAIT AS MOBILE END */

/* HM IPAD PORTRAIT CLEAN HERO START */

@media
    (min-width: 761px)
    and (max-width: 1050px)
    and (orientation: portrait) {

    .hero-magnetic.hero-magnetic-app {
        min-height: calc(100dvh - 62px) !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        padding: 54px 0 62px !important;
    }

    .hero-magnetic-bg {
        background-position: center center !important;
        background-size: cover !important;
    }

    .hero-magnetic-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 8, .54) 0%,
                rgba(8, 8, 8, .7) 56%,
                rgba(8, 8, 8, .84) 100%
            ) !important;
    }

    .hero-magnetic-grid {
        width: 100% !important;
        min-height: auto !important;
        display: block !important;
        padding:
            0
            clamp(24px, 6vw, 58px)
            !important;
    }

    .hero-magnetic-copy {
        width: 100% !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }

    .hero-pill {
        width: fit-content !important;
        max-width: 100% !important;
    }

    .hero-magnetic-copy h1 {
        width: 100% !important;
        max-width: 700px !important;
        margin-top: 25px !important;
        font-size:
            clamp(3.15rem, 7.7vw, 4.75rem)
            !important;
        line-height: .97 !important;
        letter-spacing: -.055em !important;
    }

    .hero-magnetic-copy > p {
        width: 100% !important;
        max-width: 650px !important;
        margin-top: 22px !important;
        font-size: 1.08rem !important;
        line-height: 1.58 !important;
    }

    .hero-magnetic-actions {
        width: 100% !important;
        max-width: 650px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 28px !important;
    }

    .hero-magnetic-actions .hero-btn {
        width: 100% !important;
        min-height: 56px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        text-align: center !important;
    }

    /*
     * En vertical mostramos el hero limpio,
     * igual que en móvil.
     */
    .hero-app-visual,
    .hero-phone-img,
    .hero-phone-chip,
    .hero-phone-glow {
        display: none !important;
    }
}

/* HM IPAD PORTRAIT CLEAN HERO END */

/* HM RESPONSIVE HEADER FINAL START */

@media (max-width: 1250px) {
    .topbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 10000 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 46px !important;
        align-items: center !important;
        gap: 16px !important;
        min-height: 66px !important;
        padding: 9px 16px !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, .98) !important;
        box-shadow: 0 8px 24px rgba(23, 21, 20, .08);
        backdrop-filter: blur(14px);
    }

    .topbar .brand {
        min-width: 0 !important;
        justify-self: start !important;
    }

    .topbar .brand-logo {
        width: auto !important;
        max-width: 180px !important;
        height: auto !important;
    }

    .topbar-actions {
        display: none !important;
    }

    .menu-toggle {
        position: relative !important;
        display: block !important;
        justify-self: end !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        border: 1px solid rgba(23, 21, 20, .13) !important;
        border-radius: 13px !important;
        background: #fff !important;
        color: #171514 !important;
        box-shadow: 0 5px 15px rgba(23, 21, 20, .07) !important;
        cursor: pointer;
    }

    .menu-toggle .menu-toggle-line {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        display: block !important;
        width: 19px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 999px !important;
        background: #171514 !important;
        opacity: 1 !important;
        transition:
            transform .2s ease,
            opacity .2s ease !important;
    }

    .menu-toggle .menu-toggle-line:nth-child(1) {
        transform:
            translate(-50%, calc(-50% - 6px))
            !important;
    }

    .menu-toggle .menu-toggle-line:nth-child(2) {
        transform:
            translate(-50%, -50%)
            !important;
    }

    .menu-toggle .menu-toggle-line:nth-child(3) {
        transform:
            translate(-50%, calc(-50% + 6px))
            !important;
    }

    .menu-toggle[aria-expanded="true"]
    .menu-toggle-line:nth-child(1) {
        transform:
            translate(-50%, -50%)
            rotate(45deg)
            !important;
    }

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

    .menu-toggle[aria-expanded="true"]
    .menu-toggle-line:nth-child(3) {
        transform:
            translate(-50%, -50%)
            rotate(-45deg)
            !important;
    }

    .topbar .nav {
        position: fixed !important;
        top: 76px !important;
        left: 16px !important;
        right: 16px !important;
        z-index: 10001 !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        max-height: calc(100dvh - 94px) !important;
        padding: 14px !important;
        overflow-y: auto !important;
        border: 1px solid rgba(23, 21, 20, .1) !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, .99) !important;
        box-shadow: 0 24px 60px rgba(23, 21, 20, .2) !important;
        backdrop-filter: blur(16px);
    }

    .topbar .nav.is-open {
        display: grid !important;
    }

    .topbar .nav > a {
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        padding: 10px 13px !important;
        border-radius: 12px !important;
        color: #171514 !important;
        font-size: .93rem !important;
        font-weight: 850 !important;
        line-height: 1.2 !important;
        text-decoration: none !important;
        white-space: normal !important;
    }

    .topbar .nav > a:hover {
        background: #fff1eb !important;
    }

    .topbar .nav-mobile-login,
    .topbar .nav-mobile-cta {
        display: flex !important;
        justify-content: center !important;
        margin-top: 5px !important;
        text-align: center !important;
    }

    .topbar .nav-mobile-login {
        background: #171514 !important;
        color: #fff !important;
    }

    .topbar .nav-mobile-cta {
        background: #ff623d !important;
        color: #fff !important;
    }
}

@media (min-width: 1251px) {
    .menu-toggle {
        display: none !important;
    }

    .topbar .nav {
        display: flex !important;
    }

    .topbar-actions {
        display: flex !important;
    }

    .topbar .nav-mobile-login,
    .topbar .nav-mobile-cta {
        display: none !important;
    }
}

/* HM RESPONSIVE HEADER FINAL END */


/* ==========================================
   ¿QUÉ ES HOMMIES? — VÍDEO
   ========================================== */

.hommies-video-feature-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(255, 98, 61, .10),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(255, 208, 156, .18),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fffaf4 0%,
            #f3e9df 100%
        );
}

.hommies-video-feature-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, .74fr)
        minmax(0, 1.26fr);
    gap: clamp(42px, 6vw, 78px);
    align-items: center;
}

.hommies-video-feature-copy {
    max-width: 520px;
}

.hommies-video-feature-copy h2 {
    margin: 20px 0 22px;
    color: #171514;
    font-size: clamp(44px, 5vw, 74px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 950;
}

.hommies-video-feature-lead {
    margin: 0 0 14px;
    color: #2f2925;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.2;
    letter-spacing: -.03em;
    font-weight: 900;
}

.hommies-video-feature-text {
    max-width: 470px;
    margin: 0;
    color: #665d56;
    font-size: 17px;
    line-height: 1.58;
    font-weight: 650;
}

.hommies-video-feature-cta {
    width: fit-content;
    margin-top: 28px;
}

.hommies-video-feature-media {
    min-width: 0;
}

.hommies-video-feature-mobile {
    display: none;
}

.hommies-video-feature-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(23, 21, 20, .10);
    border-radius: 30px;
    background: #171514;
    box-shadow:
        0 32px 80px rgba(55, 34, 22, .18),
        0 8px 22px rgba(55, 34, 22, .08);
}

.hommies-video-feature-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .10);
}

.hommies-video-feature-player {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #171514;
    object-fit: cover;
}

.hommies-video-feature-caption {
    margin: 16px 4px 0;
    color: #675e57;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 750;
    text-align: center;
}

@media (max-width: 980px) {
    .hommies-video-feature-section {
        padding: 78px 0;
    }

    .hommies-video-feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hommies-video-feature-copy {
        max-width: 720px;
    }

    .hommies-video-feature-media {
        max-width: 900px;
    }
}

@media (max-width: 760px) {
    .hommies-video-feature-section {
        padding: 64px 0;
    }

    .hommies-video-feature-grid {
        display: block;
    }

    .hommies-video-feature-copy {
        max-width: none;
    }

    .hommies-video-feature-copy h2 {
        margin: 17px 0 24px;
        font-size: clamp(39px, 10.5vw, 54px);
        line-height: .97;
    }

    /*
     * En móvil mostramos el vídeo situado dentro
     * del bloque de copy, justo después del título.
     */
    .hommies-video-feature-mobile {
        display: block;
        margin-bottom: 26px;
    }

    /*
     * Ocultamos la copia de escritorio para evitar
     * reproducir dos vídeos en la misma pantalla.
     */
    .hommies-video-feature-media {
        display: none;
    }

    .hommies-video-feature-frame {
        width: 100%;
        border-radius: 21px;
        box-shadow:
            0 20px 46px rgba(55, 34, 22, .15);
    }

    .hommies-video-feature-lead {
        margin-bottom: 12px;
        font-size: 21px;
        line-height: 1.25;
    }

    .hommies-video-feature-text {
        font-size: 16px;
        line-height: 1.52;
    }

    .hommies-video-feature-cta {
        width: 100%;
        margin-top: 24px;
    }
}

/* ==========================================
   PLAY CENTRAL SOBRE EL VÍDEO
   ========================================== */

.hommies-video-feature-frame {
    position: relative;
}

.hommies-video-feature-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: rgba(23, 21, 20, .76);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .30),
        0 0 0 10px rgba(255, 255, 255, .10);
    transform: translate(-50%, -50%);
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

.hommies-video-feature-play:hover {
    background: #ff623d;
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, .34),
        0 0 0 12px rgba(255, 98, 61, .18);
}

.hommies-video-feature-play svg {
    display: block;
    margin-left: 4px;
}

.hommies-video-feature-frame.is-playing
.hommies-video-feature-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 760px) {
    .hommies-video-feature-play {
        width: 68px;
        height: 68px;
    }

    .hommies-video-feature-play svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 760px) {
    .hommies-video-feature-play {
        width: 72px;
        height: 72px;
        border: 0;
        background: rgba(23, 21, 20, .84);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .30);
    }
}

/* ==================================================
   CONVERSIÓN HOME — ORDEN Y COPY RESPONSIVE
   ================================================== */

.home-intro-flow {
    display: flex;
    flex-direction: column;
}

.home-intro-flow .hero-magnetic-app {
    order: 1;
}

.home-intro-flow .hommies-video-feature-section {
    order: 2;
}

.copy-mobile {
    display: none !important;
}

.copy-desktop {
    display: inline;
}

.hero-friction-note {
    margin-top: 14px !important;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
}

.hommies-video-mobile-intro,
.hommies-video-mobile-trust {
    display: none;
}

@media (max-width: 760px) {
    .home-intro-flow .hommies-video-feature-section {
        order: 1;
    }

    .home-intro-flow .hero-magnetic-app {
        order: 2;
    }

    .copy-desktop {
        display: none !important;
    }

    .copy-mobile {
        display: inline !important;
    }

    .hommies-video-mobile-intro.copy-mobile,
    .hommies-video-mobile-trust.copy-mobile {
        display: block !important;
    }

    .hommies-video-feature-section {
        padding-top: 38px !important;
        padding-bottom: 56px !important;
    }

    .hommies-video-feature-copy h2 {
        margin: 18px 0 16px !important;
        font-size: clamp(40px, 11vw, 57px) !important;
        line-height: .96 !important;
    }

    .hommies-video-mobile-intro {
        margin: 0 0 22px;
        color: #514a45;
        font-size: 17px;
        line-height: 1.48;
        font-weight: 700;
    }

    .hommies-video-feature-mobile {
        margin-bottom: 24px !important;
    }

    .hommies-video-feature-cta {
        width: 100%;
        margin-top: 22px !important;
    }

    .hommies-video-mobile-trust {
        margin: 13px 0 0;
        color: #6b625b;
        font-size: 12.5px;
        line-height: 1.4;
        font-weight: 800;
        text-align: center;
    }

    .hero-magnetic-app {
        min-height: auto !important;
    }

    .hero-magnetic-app .hero-magnetic-grid {
        padding-top: 50px !important;
        padding-bottom: 56px !important;
    }

    .hero-magnetic-app h1 {
        font-size: clamp(42px, 11vw, 60px) !important;
        line-height: .95 !important;
    }

    .hero-friction-note {
        text-align: center;
        font-size: 12.5px !important;
    }
}

/* =========================================================
   HOME — TEASER ÁREA PRIVADA
   ========================================================= */
.home-inside-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 98, 61, .12), transparent 26%),
        radial-gradient(circle at 8% 88%, rgba(255, 218, 168, .18), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #fff5ec 100%);
}

.home-inside-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
    gap: 64px;
    align-items: center;
}

.home-inside-copy {
    max-width: 520px;
}

.home-inside-copy h2 {
    margin: 16px 0 20px;
    color: #171514;
    font-size: clamp(44px, 4.8vw, 70px);
    line-height: .98;
    letter-spacing: -.05em;
}

.home-inside-lead {
    margin-bottom: 26px;
    color: #655d57;
    font-size: 17px;
    line-height: 1.62;
}

.home-inside-points {
    display: grid;
    border-top: 1px solid rgba(23, 21, 20, .10);
}

.home-inside-points > div {
    display: grid;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(23, 21, 20, .10);
}

.home-inside-points strong {
    color: #171514;
    font-size: 15px;
}

.home-inside-points span {
    color: #746c66;
    font-size: 13px;
    line-height: 1.5;
}

.home-inside-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.home-inside-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #171514;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.home-inside-link span {
    color: var(--accent);
    font-size: 20px;
}

.home-inside-preview {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-inside-browser {
    overflow: hidden;
    border: 1px solid rgba(23, 21, 20, .10);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(60, 35, 20, .13);
    transition: transform .22s ease, box-shadow .22s ease;
}

.home-inside-preview:hover .home-inside-browser {
    transform: translateY(-4px);
    box-shadow: 0 38px 90px rgba(60, 35, 20, .17);
}

.home-inside-browser-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 45px;
    padding: 8px 13px;
    border-bottom: 1px solid rgba(23, 21, 20, .08);
    background: #faf8f5;
}

.home-inside-browser-bar > div {
    display: flex;
    gap: 5px;
}

.home-inside-browser-bar i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ff6b62;
}

.home-inside-browser-bar i:nth-child(2) {
    background: #ffc44f;
}

.home-inside-browser-bar i:nth-child(3) {
    background: #5bc45b;
}

.home-inside-browser-bar > span {
    justify-self: center;
    color: #7b736d;
    font-size: 10px;
    font-weight: 850;
}

.home-inside-browser-bar > b {
    border-radius: 999px;
    padding: 6px 8px;
    background: #fff1e9;
    color: var(--accent);
    font-size: 8px;
    font-weight: 950;
    text-transform: uppercase;
}

.home-inside-panel {
    padding: 24px;
    background:
        radial-gradient(circle at 98% 0%, rgba(255, 98, 61, .05), transparent 24%),
        #fff;
}

.home-inside-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.home-inside-panel-head small {
    color: var(--accent);
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
}

.home-inside-panel-head h3 {
    margin: 4px 0 3px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.home-inside-panel-head p {
    margin: 0;
    color: #7a726c;
    font-size: 10px;
}

.home-inside-panel-head > span {
    height: fit-content;
    border-radius: 999px;
    padding: 7px 10px;
    background: #fff1e9;
    color: var(--accent);
    font-size: 9px;
    font-weight: 900;
}

.home-inside-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.home-inside-profile-card,
.home-inside-match-card {
    min-height: 210px;
    border: 1px solid rgba(23, 21, 20, .08);
    border-radius: 16px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(50, 32, 20, .05);
}

.home-inside-profile-card > small,
.home-inside-match-card > small {
    color: #6e665f;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-inside-person {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 11px;
    align-items: center;
    margin-top: 16px;
}

.home-inside-person img {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    object-fit: cover;
}

.home-inside-person strong,
.home-inside-match-card strong {
    display: block;
    color: #171514;
    font-size: 11px;
}

.home-inside-person span,
.home-inside-match-card small {
    display: block;
    margin-top: 3px;
    color: #847b74;
    font-size: 8.5px;
}

.home-inside-progress {
    height: 6px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: #eee9e5;
}

.home-inside-progress i {
    display: block;
    width: 94%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}

.home-inside-profile-card > b {
    display: block;
    margin-top: 7px;
    color: var(--accent);
    font-size: 9px;
    text-align: right;
}

.home-inside-match-card > div {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 9px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(23, 21, 20, .08);
}

.home-inside-match-card > div:last-child {
    border-bottom: 0;
}

.home-inside-match-card img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.home-inside-match-card > div > b {
    color: var(--accent);
    font-size: 11px;
}

.home-inside-preview-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #171514;
    font-size: 13px;
    font-weight: 900;
}

.home-inside-preview-cta b {
    color: var(--accent);
    font-size: 19px;
}

@media (max-width: 1040px) {
    .home-inside-grid {
        grid-template-columns: 1fr;
    }

    .home-inside-copy {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .home-inside-section {
        padding: 64px 0;
    }

    .home-inside-grid {
        gap: 36px;
    }

    .home-inside-copy h2 {
        font-size: clamp(38px, 10.5vw, 52px);
    }

    .home-inside-lead {
        font-size: 16px;
    }

    .home-inside-actions {
        display: grid;
        gap: 14px;
    }

    .home-inside-actions .button {
        width: 100%;
    }

    .home-inside-link {
        justify-content: center;
    }

    .home-inside-browser {
        border-radius: 20px;
    }

    .home-inside-browser-bar > b {
        display: none;
    }

    .home-inside-panel {
        padding: 15px;
    }

    .home-inside-panel-grid {
        grid-template-columns: 1fr;
    }

    .home-inside-profile-card,
    .home-inside-match-card {
        min-height: auto;
    }

    .home-inside-match-card > div:last-child {
        display: none;
    }
}


/* === HM AREA PREVIEW FINAL START === */

.hm-area-preview {
    position: relative;
    overflow: hidden;
    padding: 96px 0 94px;
    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(255, 98, 61, .11),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #fff5ec 100%
        );
}


/* CABECERA */

.hm-area-preview-head {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.hm-area-preview-head .eyebrow {
    margin: 0 auto;
}

.hm-area-preview-head h2 {
    max-width: 880px;
    margin: 16px auto 18px;
    color: #171514;
    font-size: clamp(
        46px,
        5.2vw,
        74px
    );
    line-height: .97;
    letter-spacing: -.055em;
    font-weight: 950;
}

.hm-area-preview-head > p {
    max-width: 720px;
    margin: 0 auto;
    color: #6b625c;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 550;
}

.hm-area-preview-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
}

.hm-area-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #171514;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
}

.hm-area-preview-link span {
    color: #ff623d;
    font-size: 21px;
}


/* MOCKUP */

.hm-area-preview-product {
    display: block;
    width: min(
        1040px,
        100%
    );
    margin: 0 auto;
    color: inherit;
    text-decoration: none;
}

.hm-area-browser {
    overflow: hidden;
    border: 1px solid rgba(
        23,
        21,
        20,
        .10
    );
    border-radius: 30px;
    background: #ffffff;
    box-shadow:
        0 32px 90px
        rgba(62, 38, 23, .15);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.hm-area-preview-product:hover
.hm-area-browser {
    transform: translateY(-5px);
    box-shadow:
        0 42px 105px
        rgba(62, 38, 23, .19);
}


/* BARRA SUPERIOR */

.hm-area-browser-top {
    display: grid;
    grid-template-columns:
        auto
        1fr
        auto;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 10px 17px;
    border-bottom: 1px solid
        rgba(23, 21, 20, .08);
    background: #faf8f5;
}

.hm-area-browser-dots {
    display: flex;
    gap: 6px;
}

.hm-area-browser-dots i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff6b62;
}

.hm-area-browser-dots i:nth-child(2) {
    background: #ffc44f;
}

.hm-area-browser-dots i:nth-child(3) {
    background: #5bc45b;
}

.hm-area-browser-top > span {
    justify-self: center;
    color: #77706a;
    font-size: 11px;
    font-weight: 850;
}

.hm-area-browser-top > b {
    border-radius: 999px;
    padding: 7px 10px;
    background: #fff0e8;
    color: #ff623d;
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
}


/* DASHBOARD */

.hm-area-dashboard {
    min-height: 480px;
    padding: 38px;
    background:
        radial-gradient(
            circle at 96% 0%,
            rgba(255, 98, 61, .05),
            transparent 25%
        ),
        #ffffff;
}

.hm-area-dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
}

.hm-area-dashboard-head small {
    color: #ff623d;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .035em;
}

.hm-area-dashboard-head h3 {
    margin: 6px 0 4px;
    color: #171514;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 950;
}

.hm-area-dashboard-head p {
    margin: 0;
    color: #77706a;
    font-size: 12px;
}

.hm-area-status {
    border: 1px solid
        rgba(255, 98, 61, .16);
    border-radius: 999px;
    padding: 9px 13px;
    background: #fff3ed;
    color: #ff623d;
    font-size: 10px;
    font-weight: 900;
}


/* DOS TARJETAS */

.hm-area-dashboard-grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 20px;
}

.hm-area-profile,
.hm-area-proposals {
    min-height: 300px;
    border: 1px solid
        rgba(23, 21, 20, .09);
    border-radius: 22px;
    padding: 24px;
    background: #ffffff;
    box-shadow:
        0 14px 36px
        rgba(58, 36, 23, .055);
}

.hm-area-card-label {
    color: #746b65;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .02em;
}


/* PERFIL */

.hm-area-person {
    display: grid;
    grid-template-columns:
        92px
        1fr;
    gap: 17px;
    align-items: center;
    margin-top: 22px;
}

.hm-area-person img {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    object-fit: cover;
}

.hm-area-person strong {
    display: block;
    color: #171514;
    font-size: 16px;
    font-weight: 950;
}

.hm-area-person span {
    display: block;
    margin-top: 5px;
    color: #7a726c;
    font-size: 11px;
    line-height: 1.4;
}

.hm-area-description {
    margin: 20px 0 0;
    color: #77706a;
    font-size: 12px;
    line-height: 1.5;
}

.hm-area-progress {
    height: 7px;
    margin-top: 23px;
    overflow: hidden;
    border-radius: 999px;
    background: #ede8e4;
}

.hm-area-progress span {
    display: block;
    width: 94%;
    height: 100%;
    border-radius: inherit;
    background: #ff623d;
}

.hm-area-percent {
    display: block;
    margin-top: 8px;
    color: #ff623d;
    font-size: 11px;
    text-align: right;
}


/* PROPUESTAS */

.hm-area-proposal {
    display: grid;
    grid-template-columns:
        66px
        1fr
        auto;
    gap: 14px;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid
        rgba(23, 21, 20, .08);
}

.hm-area-proposal:last-child {
    border-bottom: 0;
}

.hm-area-proposal img {
    width: 66px;
    height: 66px;
    border-radius: 999px;
    object-fit: cover;
}

.hm-area-proposal strong {
    display: block;
    color: #171514;
    font-size: 15px;
    font-weight: 950;
}

.hm-area-proposal span {
    display: block;
    margin-top: 4px;
    color: #817871;
    font-size: 10px;
}

.hm-area-proposal > b {
    color: #ff623d;
    font-size: 17px;
    font-weight: 950;
}


/* ENLACE INFERIOR */

.hm-area-preview-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #171514;
    font-size: 14px;
    font-weight: 950;
}

.hm-area-preview-more b {
    color: #ff623d;
    font-size: 20px;
}


/* 3 BENEFICIOS */

.hm-area-preview-features {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    width: min(
        1040px,
        100%
    );
    margin: 32px auto 0;
    border-top: 1px solid
        rgba(23, 21, 20, .10);
    border-bottom: 1px solid
        rgba(23, 21, 20, .10);
}

.hm-area-preview-features article {
    display: grid;
    grid-template-columns:
        36px
        1fr;
    gap: 14px;
    padding: 24px 28px;
    border-right: 1px solid
        rgba(23, 21, 20, .10);
}

.hm-area-preview-features article:last-child {
    border-right: 0;
}

.hm-area-preview-features
article > span {
    color: #ff623d;
    font-size: 11px;
    font-weight: 950;
}

.hm-area-preview-features strong {
    display: block;
    margin-bottom: 6px;
    color: #171514;
    font-size: 15px;
    font-weight: 950;
}

.hm-area-preview-features p {
    margin: 0;
    color: #756c65;
    font-size: 13px;
    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 760px) {

    .hm-area-preview {
        padding: 64px 0 68px;
    }

    .hm-area-preview-head {
        margin-bottom: 32px;
        text-align: left;
    }

    .hm-area-preview-head .eyebrow {
        margin: 0;
    }

    .hm-area-preview-head h2 {
        margin-left: 0;
        margin-right: 0;
        font-size: clamp(
            38px,
            10vw,
            50px
        );
        text-align: left;
    }

    .hm-area-preview-head > p {
        margin-left: 0;
        margin-right: 0;
        font-size: 16px;
        text-align: left;
    }

    .hm-area-preview-actions {
        display: grid;
        gap: 14px;
    }

    .hm-area-preview-actions
    .button {
        width: 100%;
    }

    .hm-area-preview-link {
        justify-content: center;
    }

    .hm-area-browser {
        border-radius: 22px;
    }

    .hm-area-browser-top > b {
        display: none;
    }

    .hm-area-dashboard {
        min-height: auto;
        padding: 17px;
    }

    .hm-area-dashboard-head h3 {
        font-size: 27px;
    }

    .hm-area-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hm-area-profile,
    .hm-area-proposals {
        min-height: auto;
        padding: 17px;
        border-radius: 17px;
    }

    .hm-area-person {
        grid-template-columns:
            72px
            1fr;
    }

    .hm-area-person img {
        width: 72px;
        height: 72px;
    }

    .hm-area-description {
        display: none;
    }

    .hm-area-proposal {
        grid-template-columns:
            54px
            1fr
            auto;
        padding: 14px 0;
    }

    .hm-area-proposal img {
        width: 54px;
        height: 54px;
    }

    .hm-area-proposals
    .hm-area-proposal:last-child {
        display: none;
    }

    .hm-area-preview-features {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .hm-area-preview-features article {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid
            rgba(23, 21, 20, .10);
    }

    .hm-area-preview-features article:last-child {
        border-bottom: 0;
    }
}

/* === HM AREA PREVIEW FINAL END === */


/* === HM HOME PRODUCT SLIDER START === */

.hm-home-product {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 84% 8%, rgba(255,98,61,.11), transparent 27%),
        linear-gradient(180deg, #fffdf9 0%, #fff5ec 100%);
}

.hm-home-product-head {
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
}

.hm-home-product-head .eyebrow {
    margin: 0 auto;
}

.hm-home-product-head h2 {
    max-width: 900px;
    margin: 16px auto 18px;
    color: #171514;
    font-size: clamp(46px,5.2vw,74px);
    line-height: .97;
    letter-spacing: -.055em;
    font-weight: 950;
}

.hm-home-product-head p {
    max-width: 720px;
    margin: 0 auto;
    color: #6e665f;
    font-size: 18px;
    line-height: 1.6;
}

.hm-home-slider {
    position: relative;
    width: min(1080px,100%);
    margin: 0 auto;
}

.hm-home-slider-window {
    overflow: hidden;
    border-radius: 30px;
}

.hm-home-slider-track {
    display: flex;
    transition: transform .55s cubic-bezier(.22,.8,.28,1);
    will-change: transform;
}

.hm-home-slide {
    flex: 0 0 100%;
}

.hm-home-screen {
    overflow: hidden;
    border: 1px solid rgba(23,21,20,.10);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(62,38,23,.14);
}

.hm-home-browser-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 50px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(23,21,20,.08);
    background: #faf8f5;
}

.hm-home-browser-dots {
    display: flex;
    gap: 6px;
}

.hm-home-browser-dots i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff6b62;
}

.hm-home-browser-dots i:nth-child(2) {
    background: #ffc44f;
}

.hm-home-browser-dots i:nth-child(3) {
    background: #5bc45b;
}

.hm-home-browser-bar > span {
    justify-self: center;
    color: #77706a;
    font-size: 10px;
    font-weight: 850;
}

.hm-home-browser-bar > b {
    border-radius: 999px;
    padding: 7px 10px;
    background: #fff0e8;
    color: #ff623d;
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
}

.hm-home-desktop {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 560px;
}

.hm-home-sidebar {
    display: flex;
    flex-direction: column;
    padding: 28px 18px;
    border-right: 1px solid rgba(23,21,20,.08);
    background: linear-gradient(180deg,#fffdfa,#fff8f2);
}

.hm-home-sidebar img {
    width: auto;
    height: 42px;
    object-fit: contain;
    margin: 0 8px 28px;
}

.hm-home-sidebar nav {
    display: grid;
    gap: 7px;
}

.hm-home-sidebar nav span {
    padding: 13px 14px;
    border-radius: 13px;
    color: #625a54;
    font-size: 12px;
    font-weight: 850;
}

.hm-home-sidebar nav span.is-active {
    background: rgba(255,98,61,.10);
    color: #ff623d;
}

.hm-home-dashboard {
    padding: 36px;
    background:
        radial-gradient(circle at 96% 0%,rgba(255,98,61,.04),transparent 26%),
        #fff;
}

.hm-home-dashboard-head,
.hm-home-proposal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.hm-home-dashboard-head small,
.hm-home-label {
    color: #ff623d;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .04em;
}

.hm-home-dashboard-head h3,
.hm-home-proposal-head h3 {
    margin: 6px 0 4px;
    color: #171514;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 950;
}

.hm-home-dashboard-head p,
.hm-home-proposal-head p {
    margin: 0;
    color: #766e68;
    font-size: 12px;
}

.hm-home-dashboard-head > span,
.hm-home-proposal-head > span {
    border-radius: 999px;
    padding: 9px 12px;
    background: #fff2eb;
    color: #ff623d;
    font-size: 10px;
    font-weight: 900;
}

.hm-home-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hm-home-card {
    min-height: 320px;
    border: 1px solid rgba(23,21,20,.09);
    border-radius: 22px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(58,36,23,.055);
}

.hm-home-card h4 {
    margin: 10px 0 22px;
    font-size: 21px;
    letter-spacing: -.03em;
}

.hm-home-person {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    align-items: center;
}

.hm-home-person img {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    object-fit: cover;
}

.hm-home-person strong,
.hm-home-mini-person strong {
    display: block;
    color: #171514;
    font-size: 14px;
    font-weight: 950;
}

.hm-home-person span,
.hm-home-mini-person span {
    display: block;
    margin-top: 5px;
    color: #7b736c;
    font-size: 10px;
}

.hm-home-progress {
    height: 7px;
    margin-top: 25px;
    overflow: hidden;
    border-radius: 999px;
    background: #eee8e4;
}

.hm-home-progress i {
    display: block;
    width: 94%;
    height: 100%;
    border-radius: inherit;
    background: #ff623d;
}

.hm-home-progress-number {
    display: block;
    margin-top: 8px;
    color: #ff623d;
    font-size: 13px;
    text-align: right;
}

.hm-home-mini-person {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23,21,20,.08);
}

.hm-home-mini-person:last-child {
    border-bottom: 0;
}

.hm-home-mini-person img {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    object-fit: cover;
}

.hm-home-mini-person > b {
    color: #ff623d;
    font-size: 16px;
}

.hm-home-profile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.hm-home-profile-person {
    display: flex;
    align-items: center;
    gap: 17px;
}

.hm-home-profile-person img {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    object-fit: cover;
}

.hm-home-profile-person h3 {
    margin: 5px 0 3px;
    font-size: 32px;
    letter-spacing: -.04em;
}

.hm-home-profile-person p {
    margin: 0;
    font-size: 11px;
}

.hm-home-profile-head > strong {
    border-radius: 16px;
    padding: 13px 15px;
    background: #fff1ea;
    color: #ff623d;
    font-size: 25px;
}

.hm-home-profile-list {
    overflow: hidden;
    border: 1px solid rgba(23,21,20,.09);
    border-radius: 20px;
}

.hm-home-profile-list > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 70px;
    padding: 14px 19px;
    border-bottom: 1px solid rgba(23,21,20,.08);
}

.hm-home-profile-list > div:last-child {
    border-bottom: 0;
}

.hm-home-profile-list strong {
    display: block;
    font-size: 13px;
}

.hm-home-profile-list small {
    display: block;
    margin-top: 4px;
    color: #766e68;
    font-size: 10px;
}

.hm-home-profile-list b {
    border-radius: 999px;
    padding: 7px 9px;
    background: #fff1ea;
    color: #ff623d;
    font-size: 10px;
}

.hm-home-proposal-card {
    display: grid;
    grid-template-columns: 112px 1fr 112px;
    gap: 17px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(23,21,20,.09);
    border-radius: 21px;
    padding: 18px;
    background: #fff;
}

.hm-home-proposal-card > img {
    width: 112px;
    height: 112px;
    border-radius: 20px;
    object-fit: cover;
}

.hm-home-proposal-card small {
    color: #ff623d;
    font-size: 9px;
    font-weight: 950;
}

.hm-home-proposal-card h4 {
    margin: 7px 0 5px;
    font-size: 18px;
}

.hm-home-proposal-card p {
    margin: 0;
    color: #746c66;
    font-size: 11px;
    line-height: 1.45;
}

.hm-home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.hm-home-tags span {
    border-radius: 999px;
    padding: 5px 7px;
    background: #f3efeb;
    color: #655d57;
    font-size: 8px;
    font-weight: 800;
}

.hm-home-score {
    display: grid;
    justify-items: center;
    gap: 5px;
    border-radius: 16px;
    padding: 17px 8px;
    background: #fff1ea;
}

.hm-home-score strong {
    font-size: 29px;
}

.hm-home-score span {
    color: #a95029;
    font-size: 8px;
}

.hm-home-proposal-card footer {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid rgba(23,21,20,.08);
}

.hm-home-proposal-card button,
.hm-home-mobile-actions button,
.hm-home-contact-actions button {
    min-height: 39px;
    border: 1px solid #ff623d;
    border-radius: 9px;
    padding: 0 16px;
    background: #ff623d;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.hm-home-proposal-card button.is-light,
.hm-home-mobile-actions button.is-light,
.hm-home-contact-actions button.is-light {
    border-color: rgba(23,21,20,.12);
    background: #fff;
    color: #171514;
}

.hm-home-proposal-secondary {
    opacity: .76;
}

.hm-home-contact {
    display: grid;
    justify-items: center;
    min-height: 560px;
    padding: 62px 24px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 12%,rgba(255,98,61,.10),transparent 28%),
        linear-gradient(135deg,#fff9f4,#fff);
}

.hm-home-contact-check {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 999px;
    background: #e8f8ee;
    color: #259655;
    font-size: 29px;
    font-weight: 950;
}

.hm-home-contact > small {
    margin-top: 18px;
    color: #259655;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .05em;
}

.hm-home-contact h3 {
    margin: 9px 0 10px;
    font-size: 38px;
    letter-spacing: -.045em;
}

.hm-home-contact > p {
    max-width: 600px;
    margin: 0;
    font-size: 15px;
}

.hm-home-contact-people {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
    gap: 16px;
    margin: 30px 0;
}

.hm-home-contact-people > div {
    display: grid;
    justify-items: center;
    gap: 5px;
}

.hm-home-contact-people img {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    object-fit: cover;
}

.hm-home-contact-people i {
    height: 2px;
    background: linear-gradient(90deg,#25a15b,#ff623d);
}

.hm-home-contact-people strong {
    font-size: 14px;
}

.hm-home-contact-people span {
    color: #259655;
    font-size: 10px;
}

.hm-home-contact-actions {
    display: flex;
    gap: 10px;
}

.hm-home-contact-actions .hm-home-whatsapp {
    border-color: #25d366;
    background: #25d366;
}

.hm-home-contact em {
    margin-top: 14px;
    color: #736b65;
    font-size: 10px;
    font-style: normal;
}

.hm-home-mobile {
    display: none;
}

.hm-home-slide-copy {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    max-width: 820px;
    margin: 23px auto 0;
}

.hm-home-slide-copy > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,98,61,.10);
    color: #ff623d;
    font-size: 12px;
    font-weight: 950;
}

.hm-home-slide-copy h3 {
    margin: 0 0 5px;
    font-size: 26px;
    letter-spacing: -.03em;
}

.hm-home-slide-copy p {
    margin: 0;
    color: #6f6761;
    font-size: 14px;
}

.hm-home-slider-arrow {
    position: absolute;
    top: 42%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(23,21,20,.10);
    border-radius: 999px;
    background: #fff;
    color: #171514;
    font-size: 31px;
    box-shadow: 0 14px 34px rgba(40,26,18,.12);
    transform: translateY(-50%);
    cursor: pointer;
}

.hm-home-slider-prev {
    left: -24px;
}

.hm-home-slider-next {
    right: -24px;
}

.hm-home-slider-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 19px;
}

.hm-home-slider-dots {
    display: flex;
    gap: 7px;
}

.hm-home-slider-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(23,21,20,.20);
}

.hm-home-slider-dots button.is-active {
    width: 28px;
    background: #ff623d;
}

.hm-home-slider-bottom > span {
    color: #756d67;
    font-size: 12px;
    font-weight: 850;
}

.hm-home-slider-bottom b {
    color: #ff623d;
}

.hm-home-product-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: min(1020px,100%);
    margin: 34px auto 0;
    border-top: 1px solid rgba(23,21,20,.10);
    border-bottom: 1px solid rgba(23,21,20,.10);
}

.hm-home-product-features > div {
    padding: 21px 26px;
    border-right: 1px solid rgba(23,21,20,.10);
}

.hm-home-product-features > div:last-child {
    border-right: 0;
}

.hm-home-product-features strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.hm-home-product-features span {
    color: #756d67;
    font-size: 12px;
}

.hm-home-product-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.hm-home-product-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #171514;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
}

.hm-home-product-register span {
    color: #ff623d;
    font-size: 20px;
}

@media (max-width: 760px) {

    .hm-home-product {
        padding: 64px 0;
    }

    .hm-home-product-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .hm-home-product-head .eyebrow {
        margin: 0;
    }

    .hm-home-product-head h2 {
        margin-left: 0;
        font-size: clamp(38px,10.5vw,50px);
    }

    .hm-home-product-head p {
        margin-left: 0;
        font-size: 16px;
    }

    .hm-home-slider-window {
        border-radius: 22px;
    }

    .hm-home-screen {
        border-radius: 22px;
    }

    .hm-home-browser-bar > b {
        display: none;
    }

    .hm-home-desktop {
        display: none;
    }

    .hm-home-mobile {
        display: block;
        min-height: 520px;
        background: #fff;
    }

    .hm-home-mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(23,21,20,.08);
    }

    .hm-home-mobile-top img {
        width: auto;
        height: 34px;
        object-fit: contain;
    }

    .hm-home-mobile-top > span {
        border-radius: 999px;
        padding: 7px 9px;
        background: #fff1ea;
        color: #ff623d;
        font-size: 9px;
        font-weight: 900;
    }

    .hm-home-mobile-content {
        padding: 22px 17px;
    }

    .hm-home-mobile-content > h3 {
        margin: 5px 0 3px;
        font-size: 29px;
        letter-spacing: -.04em;
    }

    .hm-home-mobile-content > p {
        margin: 0 0 17px;
        font-size: 11px;
    }

    .hm-home-mobile-card,
    .hm-home-mobile-proposal {
        margin-top: 12px;
        border: 1px solid rgba(23,21,20,.09);
        border-radius: 18px;
        padding: 15px;
        background: #fff;
    }

    .hm-home-mobile-card > small {
        color: #ff623d;
        font-size: 9px;
        font-weight: 950;
    }

    .hm-home-mobile-person,
    .hm-home-mobile-proposal-top {
        display: grid;
        grid-template-columns: 64px 1fr auto;
        gap: 11px;
        align-items: center;
        margin-top: 13px;
    }

    .hm-home-mobile-person img,
    .hm-home-mobile-proposal-top img {
        width: 64px;
        height: 64px;
        border-radius: 999px;
        object-fit: cover;
    }

    .hm-home-mobile-person strong,
    .hm-home-mobile-proposal-top strong {
        display: block;
        font-size: 13px;
    }

    .hm-home-mobile-person span,
    .hm-home-mobile-proposal-top span {
        display: block;
        margin-top: 4px;
        color: #776f68;
        font-size: 9px;
    }

    .hm-home-mobile-person > b,
    .hm-home-mobile-proposal-top > b {
        color: #ff623d;
    }

    .hm-home-mobile-profile-head {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .hm-home-mobile-profile-head img {
        width: 68px;
        height: 68px;
        border-radius: 999px;
        object-fit: cover;
    }

    .hm-home-mobile-profile-head small {
        color: #ff623d;
        font-size: 9px;
        font-weight: 950;
    }

    .hm-home-mobile-profile-head h3 {
        margin: 4px 0 0;
        font-size: 27px;
    }

    .hm-home-mobile-profile-list {
        margin-top: 18px;
        border: 1px solid rgba(23,21,20,.08);
        border-radius: 17px;
        overflow: hidden;
    }

    .hm-home-mobile-profile-list > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid rgba(23,21,20,.08);
    }

    .hm-home-mobile-profile-list > div:last-child {
        border-bottom: 0;
    }

    .hm-home-mobile-profile-list strong {
        font-size: 12px;
    }

    .hm-home-mobile-profile-list b {
        color: #ff623d;
        font-size: 10px;
    }

    .hm-home-mobile-proposal > p {
        margin: 13px 0;
        font-size: 11px;
        line-height: 1.45;
    }

    .hm-home-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hm-home-contact {
        min-height: 520px;
        padding: 40px 18px;
    }

    .hm-home-contact h3 {
        font-size: 31px;
    }

    .hm-home-contact > p {
        font-size: 13px;
    }

    .hm-home-contact-people {
        grid-template-columns: 1fr 42px 1fr;
        margin: 25px 0;
    }

    .hm-home-contact-people img {
        width: 70px;
        height: 70px;
    }

    .hm-home-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hm-home-slide-copy {
        grid-template-columns: 38px 1fr;
        gap: 11px;
        margin-top: 17px;
    }

    .hm-home-slide-copy > span {
        width: 36px;
        height: 36px;
    }

    .hm-home-slide-copy h3 {
        font-size: 22px;
    }

    .hm-home-slide-copy p {
        font-size: 13px;
    }

    .hm-home-slider-arrow {
        top: 34%;
        width: 40px;
        height: 40px;
        font-size: 27px;
    }

    .hm-home-slider-prev {
        left: -6px;
    }

    .hm-home-slider-next {
        right: -6px;
    }

    .hm-home-product-features {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .hm-home-product-features > div {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(23,21,20,.10);
    }

    .hm-home-product-features > div:last-child {
        border-bottom: 0;
    }

    .hm-home-product-cta {
        display: grid;
        gap: 14px;
    }

    .hm-home-product-cta .button {
        width: 100%;
    }

    .hm-home-product-register {
        justify-content: center;
    }
}

/* === HM HOME PRODUCT SLIDER END === */
