:root {
    --color-ink: #182322;
    --color-muted: #667371;
    --color-line: #dce4e1;
    --color-paper: #f8faf7;
    --color-soft: #eef3f0;
    --color-mint: #e3f1ed;
    --color-mint-strong: #176b67;
    --color-petrol: #153f46;
    --color-petrol-soft: #edf5f3;
    --color-tomato: #ee6a4d;
    --color-tomato-dark: #bd412d;
    --color-gold: #efc45a;
    --color-night: #132223;
    --shadow-soft: 0 18px 45px rgba(19, 34, 35, 0.1);
    --shadow-card: 0 10px 26px rgba(19, 34, 35, 0.07);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --header-height: 76px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-paper);
    color: var(--color-ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: calc(var(--container) + 32px);
    padding-inline: 16px;
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    border-radius: var(--radius-sm);
    background: var(--color-ink);
    color: #fff;
    padding: 10px 14px;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(248, 250, 247, 0.94);
    border-bottom: 1px solid rgba(220, 229, 223, 0.78);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
    text-decoration: none;
}

.site-brand img {
    max-width: 180px;
    max-height: 56px;
}

.site-brand__mark {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-petrol);
    color: #fff;
    font-weight: 900;
}

.site-brand__text {
    font-size: 1.04rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.primary-nav__list,
.footer-nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a,
.footer-nav a {
    color: var(--color-ink);
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a:hover,
.footer-nav a:hover {
    color: var(--color-petrol);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--color-ink);
    content: "";
}

.nav-toggle__bar::before {
    transform: translateY(-7px);
}

.nav-toggle__bar::after {
    transform: translateY(5px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
    background: var(--color-tomato);
    color: #fff;
    box-shadow: 0 12px 26px rgba(238, 106, 77, 0.28);
}

.button--primary:hover {
    background: var(--color-tomato-dark);
    color: #fff;
}

.button--secondary {
    background: #fff;
    color: var(--color-ink);
    border-color: var(--color-line);
}

.button--small {
    min-height: 40px;
    padding: 10px 14px;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 70px 0 58px;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-line);
}

.hero--compact {
    padding: 58px 0 42px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: 54px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-petrol);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(2.35rem, 3.25rem, 4rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero__text {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 1.16rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.proof-list li {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 11px;
    border: 1px solid rgba(18, 63, 70, 0.18);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-ink);
    font-weight: 800;
}

.proof-list li::before {
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--color-petrol);
    content: "";
}

.hero-visual {
    position: relative;
    min-height: 600px;
}

.hero-visual--lean {
    min-height: 520px;
}

.hero-visual__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.phone-mockup {
    position: absolute;
    right: 28px;
    bottom: 0;
    width: min(270px, 52%);
    min-height: 440px;
    padding: 13px;
    border: 8px solid #18261f;
    border-radius: 34px;
    background: #0c1511;
    box-shadow: 0 28px 60px rgba(20, 37, 31, 0.32);
}

.phone-mockup__top {
    width: 70px;
    height: 6px;
    margin: 0 auto 12px;
    border-radius: 99px;
    background: #2e4338;
}

.phone-mockup__screen {
    min-height: 386px;
    padding: 18px;
    border-radius: 24px;
    background: #fffdf7;
}

.phone-mockup h2 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    line-height: 1.15;
}

.mock-label {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 4px 8px;
    border-radius: 99px;
    background: var(--color-mint);
    color: var(--color-petrol);
    font-size: 0.78rem;
    font-weight: 900;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-muted);
    font-size: 0.88rem;
}

.pay-panel {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--color-soft);
}

.mock-button {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    border-radius: var(--radius-sm);
    background: var(--color-petrol);
    color: #fff;
    padding: 12px;
    font-weight: 900;
}

.kitchen-card {
    position: absolute;
    left: 0;
    bottom: 70px;
    display: grid;
    gap: 4px;
    min-width: 210px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 247, 0.92);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.kitchen-card svg {
    width: 28px;
    height: 28px;
    fill: var(--color-tomato);
}

.kitchen-card p {
    margin: 0;
    color: var(--color-muted);
}

.stats-band {
    background: var(--color-night);
    color: #fff;
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.stats-band__grid > div {
    padding: 24px;
    background: var(--color-night);
}

.stats-band strong {
    display: block;
    color: var(--color-gold);
    font-size: 2rem;
    line-height: 1;
}

.stats-band span {
    color: rgba(255, 255, 255, 0.78);
}

.section {
    padding: 82px 0;
}

.section--tight {
    padding: 58px 0;
}

.section--tint {
    background: #f6f7f1;
}

.section--dark {
    background: var(--color-night);
    color: #fff;
}

.section-heading {
    max-width: 710px;
    margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1 {
    margin: 0;
}

.section-heading h2 {
    font-size: clamp(2rem, 2.5rem, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
    margin: 15px 0 0;
    color: var(--color-muted);
    font-size: 1.04rem;
}

.section--dark .section-heading p:not(.eyebrow),
.section--dark .pricing-card p,
.section--dark .pricing-card li {
    color: rgba(255, 255, 255, 0.78);
}

.step-grid,
.benefit-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.section-heading--sticky {
    position: sticky;
    top: calc(var(--header-height) + 26px);
}

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

.step-card,
.feature-card,
.benefit-card,
.pricing-card,
.post-card,
.demo-panel {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.step-card,
.feature-card,
.benefit-card,
.pricing-card,
.post-card {
    padding: 24px;
}

.step-card__number,
.feature-card__icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-mint);
    color: var(--color-petrol);
    font-weight: 900;
}

.feature-card__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.step-card h3,
.feature-card h3,
.benefit-card h3,
.pricing-card h3,
.post-card h2 {
    margin: 0 0 10px;
    font-size: 1.22rem;
    line-height: 1.25;
}

.step-card p,
.feature-card p,
.benefit-card p,
.pricing-card p {
    margin: 0;
    color: var(--color-muted);
}

.benefit-card {
    background: #fff;
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 46px;
    align-items: center;
}

.split-showcase h2 {
    margin: 0;
    font-size: clamp(2rem, 2.45rem, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.split-showcase p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--color-muted);
}

.showcase-image,
.media-card img {
    width: 100%;
    object-fit: cover;
    background: var(--color-petrol-soft);
}

.showcase-image {
    aspect-ratio: 16 / 10;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.link-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 13px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-ink);
    font-weight: 900;
    text-decoration: none;
}

.link-grid a::after {
    color: var(--color-tomato);
    content: "→";
}

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

.media-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.media-card img {
    aspect-ratio: 16 / 10;
}

.media-card div {
    padding: 20px;
}

.media-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.media-card p {
    margin: 0;
    color: var(--color-muted);
}

.media-card a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--color-petrol);
    font-weight: 900;
    text-decoration: none;
}

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.benefit-strip article {
    padding: 26px;
    background: var(--color-night);
}

.benefit-strip h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.25;
}

.benefit-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.pricing-card__price {
    margin: 2px 0 6px;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.pricing-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.pricing-card li {
    display: flex;
    gap: 8px;
}

.pricing-card li::before {
    color: var(--color-gold);
    content: "✓";
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
}

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

details {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 18px 20px;
}

summary {
    cursor: pointer;
    font-weight: 900;
}

details p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.demo-section {
    background:
        linear-gradient(135deg, rgba(238, 106, 77, 0.1), rgba(228, 240, 241, 0.95)),
        var(--color-soft);
}

.demo-section__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
    align-items: start;
}

.demo-panel {
    padding: 26px;
}

.ot-contact-section {
    background:
        linear-gradient(135deg, rgba(238, 106, 77, 0.08), rgba(228, 240, 241, 0.96)),
        var(--color-soft);
}

.ot-contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 38px;
    align-items: start;
}

.ot-contact-intro {
    display: grid;
    gap: 18px;
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(21, 63, 70, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
}

.ot-contact-intro h2,
.ot-contact-intro p {
    margin: 0;
}

.ot-contact-intro h2 {
    font-size: clamp(1.75rem, 2.15rem, 2.5rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.ot-contact-intro p:not(.eyebrow) {
    color: var(--color-muted);
    font-size: 1.03rem;
}

.ot-contact-form-card {
    width: 100%;
    max-width: 760px;
    justify-self: end;
    padding: 30px;
}

.orderto-page-formulario-contacto .section-heading--sticky,
.orderto-page-contacto .section-heading--sticky,
.ot-contact-page .section-heading--sticky {
    position: static;
}

.orderto-page-formulario-contacto .demo-section__grid,
.orderto-page-contacto .demo-section__grid {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 38px;
    align-items: start;
}

.orderto-page-formulario-contacto .demo-section__grid > .section-heading,
.orderto-page-contacto .demo-section__grid > .section-heading {
    display: grid;
    gap: 18px;
    max-width: none;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(21, 63, 70, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
}

.orderto-page-formulario-contacto .demo-section__grid > .section-heading h2,
.orderto-page-contacto .demo-section__grid > .section-heading h2,
.orderto-page-formulario-contacto .demo-section__grid > .section-heading p,
.orderto-page-contacto .demo-section__grid > .section-heading p {
    margin: 0;
}

.orderto-page-formulario-contacto .demo-section__grid > .demo-panel,
.orderto-page-contacto .demo-section__grid > .demo-panel {
    display: contents;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.orderto-page-formulario-contacto .demo-section__grid .demo-form,
.orderto-page-contacto .demo-section__grid .demo-form,
.orderto-page-formulario-contacto .demo-section__grid > .demo-form,
.orderto-page-contacto .demo-section__grid > .demo-form {
    width: 100%;
    max-width: 760px;
    justify-self: end;
    padding: 30px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.demo-form {
    display: grid;
    gap: 18px;
    width: 100%;
}

.demo-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 0;
}

.form-grid__wide {
    grid-column: 1 / -1;
}

.demo-form label {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: var(--color-ink);
    font-weight: 800;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fffdfb;
    color: var(--color-ink);
    padding: 12px 13px;
}

.demo-form textarea {
    resize: vertical;
}

.check-row {
    display: flex;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.94rem;
}

.check-row input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.demo-form__submit {
    width: 100%;
    min-height: 52px;
}

.form-message {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-weight: 800;
}

.form-message--success {
    background: var(--color-mint);
    color: var(--color-petrol);
}

.form-message--error {
    background: #fde7df;
    color: var(--color-tomato-dark);
}

.page-hero {
    padding: 76px 0 58px;
    background: linear-gradient(135deg, var(--color-petrol-soft), var(--color-paper));
}

.page-hero__text {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--color-muted);
    font-size: 1.13rem;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
    gap: 42px;
    align-items: center;
}

.page-hero__media {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.page-hero__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

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

.feature-panel {
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.feature-panel h2 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.2;
}

.feature-panel p {
    margin: 0;
    color: var(--color-muted);
}

.feature-panel ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.feature-panel li,
.pricing-card--light li {
    display: flex;
    gap: 8px;
}

.feature-panel li::before,
.pricing-card--light li::before {
    color: var(--color-tomato);
    content: "✓";
}

.comparison-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 38px;
    align-items: start;
}

.comparison-table {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.comparison-table > div {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1px;
    border-bottom: 1px solid var(--color-line);
}

.comparison-table > div:last-child {
    border-bottom: 0;
}

.comparison-table span,
.comparison-table strong {
    padding: 15px;
    background: #fff;
}

.comparison-table strong {
    background: var(--color-petrol);
    color: #fff;
}

.pricing-grid--page {
    align-items: stretch;
}

.pricing-card--light {
    background: #fff;
    border-color: var(--color-line);
    color: var(--color-ink);
    box-shadow: var(--shadow-card);
}

.pricing-card--light.is-featured {
    border-color: rgba(238, 106, 77, 0.55);
    box-shadow: 0 18px 50px rgba(238, 106, 77, 0.16);
}

.pricing-card--light h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.pricing-card--light .pricing-card__price {
    color: var(--color-ink);
}

.pricing-card--light .pricing-card__note {
    color: var(--color-tomato-dark);
    font-weight: 900;
}

.pricing-card--light p,
.pricing-card--light li {
    color: var(--color-muted);
}

.pricing-card--light .button {
    margin-top: auto;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.9rem, 2.35rem, 2.8rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.faq-hero {
    max-width: 900px;
}

.faq-page-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 26px);
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.faq-sidebar a {
    padding: 9px 0;
    color: var(--color-ink);
    font-weight: 900;
    text-decoration: none;
}

.faq-list--page {
    gap: 14px;
}

.content-section {
    padding: 70px 0;
}

.content-layout {
    display: grid;
    gap: 20px;
}

.prose {
    max-width: 780px;
}

.prose--legal {
    max-width: 860px;
    padding: 34px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.prose > *:first-child {
    margin-top: 0;
}

.prose a {
    color: var(--color-petrol);
    font-weight: 800;
}

.prose h2 {
    margin-top: 2.1em;
    padding-top: 1.1em;
    border-top: 1px solid var(--color-line);
}

.prose p,
.prose li {
    color: var(--color-muted);
}

.prose .orderto-highlight,
.post-prose .orderto-highlight {
    margin: 32px 0;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-soft);
}

.prose .orderto-highlight > *,
.post-prose .orderto-highlight > * {
    margin-block: 0;
}

.legacy-marketing-content {
    padding-top: 0;
}

.legacy-prose {
    max-width: var(--container);
}

.legacy-prose > main,
.legacy-prose > .wp-block-group,
.legacy-prose > .kb-row-layout-wrap {
    display: grid;
    gap: 68px;
}

.legacy-prose > main > :first-child,
.legacy-prose > :first-child {
    margin-top: 0;
}

.legacy-prose h1,
.legacy-prose h2,
.legacy-prose h3 {
    max-width: 860px;
    margin: 0 0 16px;
    color: var(--color-ink);
    line-height: 1.08;
    letter-spacing: 0;
}

.legacy-prose h1 {
    font-size: clamp(2.25rem, 3.25rem, 4rem);
}

.legacy-prose h2 {
    font-size: clamp(1.75rem, 2.35rem, 2.75rem);
}

.legacy-prose h3 {
    font-size: 1.35rem;
    line-height: 1.22;
}

.legacy-prose p,
.legacy-prose li {
    color: var(--color-muted);
    font-size: 1.03rem;
}

.legacy-prose p {
    max-width: 760px;
}

.legacy-prose > main > p:first-child,
.legacy-prose > p:first-child,
.legacy-prose main > section > p:first-child,
.legacy-prose main > article > p:first-child {
    margin: 0 0 12px;
    color: var(--color-petrol);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.legacy-prose a {
    color: var(--color-petrol);
    font-weight: 900;
}

.legacy-prose a[href*="formulario-contacto"],
.legacy-prose a[href*="#demo"],
.legacy-prose a[href*="pricing"],
.legacy-prose a[href*="precios"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 10px 10px 0 0;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: var(--color-tomato);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(238, 106, 77, 0.24);
}

.legacy-prose a[href*="pricing"]:not(.wp-block-button__link):not(.wp-element-button),
.legacy-prose a[href*="precios"]:not(.wp-block-button__link):not(.wp-element-button) {
    background: #fff;
    color: var(--color-ink);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.legacy-prose .wp-block-column,
.legacy-prose .kb-column-inner-wrap,
.legacy-prose .kt-inside-inner-col,
.legacy-prose .wp-block-group:is(.is-layout-constrained, .is-layout-flow) {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.legacy-prose .wp-block-column,
.legacy-prose .kb-column-inner-wrap,
.legacy-prose .kt-inside-inner-col,
.legacy-prose .wp-block-group:is(.is-layout-constrained, .is-layout-flow) {
    padding: 24px;
}

.legacy-prose main > article,
.legacy-prose section > article {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.legacy-prose ul,
.legacy-prose ol {
    display: grid;
    gap: 9px;
    padding-left: 1.2rem;
}

.legacy-prose table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

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

.legacy-prose th {
    background: var(--color-petrol);
    color: #fff;
}

.legacy-prose td strong {
    color: var(--color-petrol);
}

.legacy-prose img {
    border-radius: var(--radius-sm);
}

.legacy-prose .wp-block-columns,
.legacy-prose .kt-row-column-wrap,
.legacy-prose .wp-block-kadence-rowlayout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.legacy-prose .kt-row-column-wrap > *,
.legacy-prose .wp-block-columns > * {
    min-width: 0;
}

.legacy-prose .wp-block-kadence-column,
.legacy-prose [class*="kadence-column"] {
    min-width: 0;
}

.legacy-prose [class*="price"],
.legacy-prose [class*="pricing"] {
    overflow-wrap: anywhere;
}

.legacy-prose .wp-block-columns:has(> :nth-child(3)),
.legacy-prose .kt-row-column-wrap:has(> :nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card h2 a {
    text-decoration: none;
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.blog-card__media {
    display: block;
    overflow: hidden;
    background: var(--color-petrol-soft);
}

.blog-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 180ms ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.025);
}

.blog-card__body {
    padding: 22px;
}

.post-meta {
    margin: 0 0 10px;
    color: var(--color-petrol);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.22;
}

.blog-card h2 a {
    text-decoration: none;
}

.entry-summary {
    margin-top: 12px;
    color: var(--color-muted);
}

.entry-summary p {
    margin: 0;
}

.pagination-wrap {
    margin-top: 34px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-ink);
    font-weight: 900;
    text-decoration: none;
}

.nav-links .current {
    background: var(--color-petrol);
    color: #fff;
}

.post-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    gap: 48px;
    align-items: start;
}

.post-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 26px);
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.post-sidebar p {
    margin: 0 0 10px;
    color: var(--color-muted);
}

.post-sidebar a {
    display: inline-flex;
    margin: 4px 4px 0 0;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    background: var(--color-petrol-soft);
    color: var(--color-petrol);
    font-weight: 900;
    text-decoration: none;
}

.post-prose {
    max-width: none;
}

.post-prose h2,
.post-prose h3 {
    margin-top: 2em;
    line-height: 1.14;
    letter-spacing: 0;
}

.post-prose h1,
.post-prose h2,
.post-prose h3,
.prose h1,
.prose h2,
.prose h3 {
    letter-spacing: 0;
}

.post-prose p,
.post-prose li {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.post-prose ul,
.prose ul,
.post-prose ol,
.prose ol {
    padding-left: 1.25rem;
}

.post-prose table,
.prose table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.post-prose th,
.post-prose td,
.prose th,
.prose td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
}

.post-prose th,
.prose th {
    background: var(--color-paper);
    color: var(--color-ink);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.post-prose blockquote {
    margin: 32px 0;
    padding: 22px 24px;
    border-left: 4px solid var(--color-tomato);
    background: var(--color-petrol-soft);
    border-radius: var(--radius-sm);
}

.prose .wp-block-buttons,
.post-prose .wp-block-buttons,
.legacy-prose .wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.prose .wp-block-button,
.post-prose .wp-block-button,
.legacy-prose .wp-block-button {
    margin: 0;
}

.prose .wp-block-button__link,
.prose .wp-element-button,
.post-prose .wp-block-button__link,
.post-prose .wp-element-button,
.post-prose .kb-button,
.post-prose .kt-button,
.legacy-prose .kb-button,
.legacy-prose .kt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--color-tomato);
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(238, 106, 77, 0.24);
}

.prose .is-style-outline .wp-block-button__link,
.post-prose .is-style-outline .wp-block-button__link,
.legacy-prose .is-style-outline .wp-block-button__link {
    background: #fff;
    color: var(--color-ink);
    border-color: var(--color-line);
    box-shadow: var(--shadow-card);
}

.post-prose img,
.prose img {
    border-radius: var(--radius-sm);
}

.post-prose figure,
.prose figure {
    margin: 32px 0;
}

.post-prose figcaption,
.prose figcaption {
    margin-top: 10px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.ot-page {
    display: block;
}

.ot-section {
    padding: 78px 0;
}

.ot-section--soft {
    background: var(--color-soft);
}

.ot-section--dark {
    background: var(--color-night);
    color: #fff;
}

.ot-section--dark .ot-section__lead,
.ot-section--dark p,
.ot-section--dark li {
    color: rgba(255, 255, 255, 0.76);
}

.ot-hero {
    padding: 80px 0 68px;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-ink);
}

.ot-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 54px;
    align-items: center;
}

.ot-kicker {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 18px;
    padding: 6px 10px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-paper);
    color: var(--color-petrol);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ot-hero h1,
.ot-section__heading h1,
.ot-section__heading h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.08;
}

.ot-hero h1 {
    max-width: 820px;
    font-size: clamp(2.25rem, 3.45rem, 4.15rem);
}

.ot-hero__lead,
.ot-section__lead {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.ot-hero__lead {
    color: var(--color-muted);
}

.ot-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 650px;
    margin: 30px 0 0;
}

.ot-metric {
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-paper);
}

.ot-metric strong {
    display: block;
    color: var(--color-ink);
    font-size: 1.75rem;
    line-height: 1;
}

.ot-metric span {
    display: block;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.ot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ot-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--color-tomato);
    color: #fff;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(238, 106, 77, 0.28);
}

.ot-button:hover {
    background: var(--color-tomato-dark);
    color: #fff;
    text-decoration: none;
}

.ot-button--secondary {
    background: #fff;
    color: var(--color-ink);
    border-color: var(--color-line);
    box-shadow: var(--shadow-card);
}

.ot-button--secondary:hover {
    background: var(--color-paper);
    color: var(--color-ink);
}

.ot-visual-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-paper);
    box-shadow: var(--shadow-soft);
}

.ot-visual-card img {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
}

.ot-section__heading {
    max-width: 860px;
    margin-bottom: 36px;
}

.ot-section__heading h2 {
    font-size: clamp(1.9rem, 2.55rem, 3rem);
}

.ot-section__heading h1 {
    font-size: clamp(2.15rem, 3rem, 3.55rem);
}

.ot-section__lead {
    color: var(--color-muted);
}

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

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

.ot-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.ot-card h3,
.ot-card h2 {
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ot-card p {
    margin: 0;
    color: var(--color-muted);
}

.ot-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.ot-card li {
    display: flex;
    gap: 8px;
    color: var(--color-muted);
}

.ot-card li::before {
    color: var(--color-petrol);
    font-weight: 900;
    content: "✓";
}

.ot-flow-card {
    position: relative;
    overflow: hidden;
    padding-top: 28px;
    border-color: rgba(31, 95, 139, 0.24);
    background:
        linear-gradient(180deg, rgba(239, 247, 255, 0.96), #fff 56%),
        #fff;
    box-shadow: 0 16px 36px rgba(31, 95, 139, 0.12);
}

.ot-flow-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: #1f5f8b;
    content: "";
}

.ot-flow-card--postpaid {
    border-color: rgba(23, 107, 103, 0.26);
    background:
        linear-gradient(180deg, rgba(239, 248, 243, 0.98), #fff 56%),
        #fff;
    box-shadow: 0 16px 36px rgba(23, 107, 103, 0.12);
}

.ot-flow-card--postpaid::before {
    background: #176b67;
}

.ot-flow-card h3 {
    margin-bottom: 8px;
    color: #1f5f8b;
    font-size: 1.55rem;
}

.ot-flow-card--postpaid h3 {
    color: #176b67;
}

.ot-flow-card .ot-flow-card__subtitle {
    max-width: 620px;
    color: var(--color-ink);
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.35;
}

.ot-feature-row {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
    align-items: center;
}

.ot-feature-row + .ot-feature-row {
    margin-top: 62px;
}

.ot-feature-row:nth-child(even) {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.ot-feature-row:nth-child(even) .ot-feature-row__content {
    order: 2;
}

.ot-mock {
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.ot-mock__bar,
.ot-mock__line {
    display: block;
    border-radius: 999px;
    background: var(--color-petrol-soft);
}

.ot-mock__bar {
    width: 42%;
    height: 12px;
    margin-bottom: 22px;
}

.ot-mock__line {
    height: 10px;
    margin-top: 12px;
}

.ot-mock__line:nth-child(2) {
    width: 76%;
}

.ot-mock__line:nth-child(3) {
    width: 58%;
}

.ot-mock__line:nth-child(4) {
    width: 88%;
}

.ot-price-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ot-price-card:first-child {
    border-color: rgba(21, 63, 70, 0.24);
}

.ot-price {
    color: var(--color-ink);
    font-size: 2.15rem;
    font-weight: 950;
    line-height: 1;
}

.ot-price-note {
    color: var(--color-petrol);
    font-weight: 900;
}

.ot-faq {
    display: grid;
    gap: 14px;
}

.ot-faq details {
    position: relative;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 0;
    box-shadow: var(--shadow-card);
}

.ot-faq summary {
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    min-height: 62px;
    padding: 19px 22px 18px 58px;
    color: var(--color-ink);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.25;
    list-style: none;
}

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

.ot-faq summary::before {
    position: absolute;
    top: 18px;
    left: 20px;
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-petrol-soft);
    color: var(--color-petrol);
    content: "+";
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.ot-faq details[open] summary::before {
    background: rgba(238, 106, 77, 0.14);
    color: var(--color-tomato-dark);
    content: "×";
}

.ot-faq p {
    max-width: 820px;
    margin: 0;
    padding: 0 22px 20px 58px;
    color: var(--color-muted);
}

.ot-copy-note {
    margin-top: 18px;
    color: var(--color-muted);
    font-size: 0.94rem;
}

.ot-savings {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 34px;
    align-items: stretch;
}

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

.ot-saving-metric {
    padding: 20px;
    border: 1px solid rgba(23, 107, 103, 0.16);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.ot-saving-metric strong {
    display: block;
    color: var(--color-petrol);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.ot-saving-metric span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-weight: 800;
    line-height: 1.35;
}

.ot-savings__card {
    padding: 26px;
    border: 1px solid rgba(21, 63, 70, 0.2);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.ot-savings__row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-muted);
}

.ot-savings__row:first-child {
    padding-top: 0;
}

.ot-savings__row strong {
    flex-shrink: 0;
    color: var(--color-ink);
    font-size: 1.1rem;
}

.ot-savings__row--highlight strong {
    color: var(--color-petrol);
    font-size: 1.45rem;
}

.ot-savings__note {
    margin: 16px 0 0;
    color: var(--color-muted);
    font-size: 0.93rem;
}

.ot-cost-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.ot-cost-box {
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.ot-cost-box h3 {
    margin: 0 0 12px;
    color: var(--color-ink);
    font-size: 1.2rem;
}

.ot-cost-box ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ot-cost-box li {
    display: flex;
    gap: 8px;
    color: var(--color-muted);
}

.ot-cost-box li::before {
    color: var(--color-petrol);
    font-weight: 900;
    content: "✓";
}

.ot-cost-box--out h3,
.ot-cost-box--out li::before {
    color: var(--color-tomato-dark);
}

.ot-comparison {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.ot-comparison th,
.ot-comparison td {
    padding: 17px 18px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
}

.ot-comparison th:last-child,
.ot-comparison td:last-child {
    border-right: 0;
}

.ot-comparison th {
    background: var(--color-petrol);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ot-comparison th:first-child {
    background: var(--color-tomato);
}

.ot-comparison tbody tr:nth-child(even) td {
    background: rgba(237, 245, 243, 0.58);
}

.ot-comparison td:first-child {
    color: var(--color-ink);
    font-weight: 900;
}

.ot-comparison td:last-child {
    background: rgba(227, 241, 237, 0.72);
    color: var(--color-petrol);
    font-weight: 900;
}

.ot-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.ot-inline-list li {
    padding: 8px 11px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-ink);
    font-weight: 800;
}

.ot-flow-steps {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
    counter-reset: flow;
}

.ot-flow-steps li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--color-muted);
    counter-increment: flow;
}

.ot-flow-steps li::before {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    background: var(--color-petrol-soft);
    color: var(--color-petrol);
    content: counter(flow);
    font-size: 0.85rem;
    font-weight: 900;
}

.payment-marks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
}

.payment-marks li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 42px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 6px 8px;
    gap: 0;
    color: inherit;
}

.payment-marks li::before {
    display: none !important;
    content: none !important;
}

.payment-marks img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.payment-marks--footer {
    gap: 10px;
    margin-top: 10px;
}

.payment-marks--footer img {
    max-width: 86px;
}

.payment-marks--footer li {
    width: 104px;
    height: 48px;
    padding: 7px 9px;
}

.site-footer {
    background: #0f1c17;
    color: #fff;
    padding: 46px 0;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.35fr);
    gap: 44px;
    align-items: start;
}

.site-footer p {
    max-width: 410px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer .site-brand {
    color: #fff;
}

.site-footer .site-brand__mark {
    background: var(--color-gold);
    color: var(--color-night);
}

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

.footer-nav h2,
.site-footer__payments span {
    margin: 0 0 12px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.site-footer__legal {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    font-size: 0.92rem;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: #fff;
}

.cmplz-cookiebanner {
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-soft) !important;
    font-family: var(--font-sans) !important;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    border-radius: var(--radius-sm) !important;
    font-weight: 800 !important;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 24px;
        background: var(--color-paper);
        border-bottom: 1px solid var(--color-line);
        box-shadow: var(--shadow-soft);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav__list {
        display: grid;
        gap: 4px;
    }

    .primary-nav__list a {
        display: block;
        padding: 12px 0;
    }

    .nav-cta {
        width: 100%;
    }

    .hero__grid,
    .feature-layout,
    .faq-layout,
    .split-showcase,
    .page-hero__grid,
    .comparison-layout,
    .faq-page-layout,
    .post-layout,
    .ot-contact-layout,
    .orderto-page-formulario-contacto .demo-section__grid,
    .orderto-page-contacto .demo-section__grid,
    .demo-section__grid,
    .site-footer__inner,
    .site-footer__navs {
        grid-template-columns: 1fr;
    }

    .ot-contact-form-card,
    .orderto-page-formulario-contacto .demo-section__grid .demo-form,
    .orderto-page-contacto .demo-section__grid .demo-form,
    .orderto-page-formulario-contacto .demo-section__grid > .demo-form,
    .orderto-page-contacto .demo-section__grid > .demo-form {
        max-width: none;
        justify-self: stretch;
    }

    .section-heading--sticky {
        position: static;
    }

    .faq-sidebar {
        position: static;
    }

    .post-sidebar {
        position: static;
    }

    .post-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .post-layout > *,
    .post-prose {
        min-width: 0;
        max-width: 100%;
    }

    .legacy-prose .wp-block-columns,
    .legacy-prose .kt-row-column-wrap {
        grid-template-columns: 1fr;
    }

    .ot-hero__grid,
    .ot-savings,
    .ot-feature-row,
    .ot-feature-row:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .ot-feature-row:nth-child(even) .ot-feature-row__content {
        order: initial;
    }

    .ot-grid,
    .ot-grid--2,
    .ot-cost-columns,
    .ot-metrics {
        grid-template-columns: 1fr;
    }

    .ot-comparison {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-visual {
        min-height: 540px;
    }
}

@media (max-width: 680px) {
    .ot-contact-intro,
    .ot-contact-form-card,
    .orderto-page-formulario-contacto .demo-section__grid > .section-heading,
    .orderto-page-contacto .demo-section__grid > .section-heading,
    .orderto-page-formulario-contacto .demo-section__grid .demo-form,
    .orderto-page-contacto .demo-section__grid .demo-form,
    .demo-panel {
        padding: 22px;
    }

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

@media (max-width: 760px) {
    .container {
        padding-inline: 12px;
    }

    .hero {
        padding: 48px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.55rem;
    }

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

    .hero-visual {
        min-height: 470px;
    }

    .phone-mockup {
        right: 10px;
        width: 230px;
        min-height: 390px;
    }

    .phone-mockup__screen {
        min-height: 336px;
        padding: 15px;
    }

    .kitchen-card {
        bottom: 34px;
        min-width: 180px;
    }

    .stats-band__grid,
    .step-grid,
    .feature-grid,
    .feature-page-grid,
    .blog-grid,
    .benefit-grid,
    .media-card-grid,
    .benefit-strip,
    .pricing-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-band {
        display: grid;
    }

    .comparison-table {
        overflow-x: auto;
    }

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

    .comparison-table > div,
    .legacy-prose table,
    .post-prose table,
    .prose table {
        min-width: 680px;
    }

    .legacy-prose table,
    .post-prose table,
    .prose table {
        display: block;
        overflow-x: auto;
    }

    .ot-comparison {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .section {
        padding: 62px 0;
    }

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

    .payment-marks img {
        width: 100px;
    }

    .payment-marks--footer img {
        width: 82px;
    }
}

@media (max-width: 460px) {
    .hero h1,
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .hero-visual {
        min-height: 430px;
    }

    .phone-mockup {
        width: 205px;
        border-width: 6px;
        border-radius: 28px;
    }

    .phone-mockup h2 {
        font-size: 1.08rem;
    }

    .menu-row {
        font-size: 0.78rem;
    }

    .kitchen-card {
        max-width: 170px;
    }
}
