﻿:root {
    --bg-main: #f4f7fb;
    --bg-alt: #eaf0f6;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --line: #c9d6e5;
    --ink-900: #10243a;
    --ink-700: #2b4966;
    --ink-500: #5b7693;
    --brand-900: #143a63;
    --brand-700: #1c588b;
    --brand-500: #2f79bb;
    --accent: #d57b1a;
    --accent-strong: #b86208;
    --ok: #1f7a4a;
    --error: #b03a2e;
    --shadow: 0 14px 36px rgba(16, 36, 58, 0.12);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --maxw: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-main);
    color: var(--ink-900);
    font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -100px;
    background: #ffffff;
    color: var(--brand-900);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    z-index: 1000;
}

.skip-link:focus {
    top: 12px;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(11, 33, 54, 0.95);
    border-bottom: 1px solid rgba(201, 214, 229, 0.24);
    backdrop-filter: blur(8px);
}

.topbar .container {
    width: min(1520px, calc(100% - 36px));
}

.topbar-inner {
    min-height: 94px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.brand img {
    width: 53px;
    height: 53px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 4px;
    align-content: center;
}

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 1;
}

.brand-copy span {
    font-size: 13px;
    color: #d2deea;
    line-height: 1.05;
}

.main-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.main-nav a {
    color: #e6eef8;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    white-space: nowrap;
}

.main-nav a:hover {
    background: rgba(47, 121, 187, 0.18);
    border-color: rgba(201, 214, 229, 0.35);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(201, 214, 229, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 8px 11px;
    font-size: 19px;
}

.topbar-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.topbar-side-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.topbar-side-actions > * {
    flex: 0 0 auto;
}

.locale-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 214, 229, 0.3);
}

.locale-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 214, 229, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.locale-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}

.locale-btn.is-active {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 219, 169, 0.75);
    box-shadow: 0 0 0 2px rgba(213, 123, 26, 0.22);
}

.topbar-locale-switcher {
    margin-left: 4px;
}

.currency-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 214, 229, 0.3);
}

.currency-btn {
    min-width: 52px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(201, 214, 229, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.currency-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}

.currency-btn.is-active {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 219, 169, 0.75);
    box-shadow: 0 0 0 2px rgba(213, 123, 26, 0.22);
}

.flag-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(16, 36, 58, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.flag-es {
    background:
        linear-gradient(to bottom, #c61b2a 0 30%, #f4c542 30% 70%, #c61b2a 70% 100%);
}

.flag-us {
    background:
        linear-gradient(to bottom,
            #b22234 0 7.69%,
            #ffffff 7.69% 15.38%,
            #b22234 15.38% 23.07%,
            #ffffff 23.07% 30.76%,
            #b22234 30.76% 38.45%,
            #ffffff 38.45% 46.14%,
            #b22234 46.14% 53.83%,
            #ffffff 53.83% 61.52%,
            #b22234 61.52% 69.21%,
            #ffffff 69.21% 76.9%,
            #b22234 76.9% 84.59%,
            #ffffff 84.59% 92.28%,
            #b22234 92.28% 100%);
    position: relative;
    overflow: hidden;
}

.flag-us::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 46%;
    height: 54%;
    background: #3c3b6e;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 0;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 13px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(16, 36, 58, 0.2);
}

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

.btn-primary:hover {
    background: var(--accent-strong);
}

.btn-secondary {
    background: #ffffff;
    color: var(--brand-900);
    border: 1px solid var(--line);
}

.btn-sm {
    padding: 11px 14px;
    font-size: 13px;
}

.btn-topbar {
    padding: 11px 14px;
    font-size: 15px;
    border-radius: 10px;
    white-space: nowrap;
}

.btn-login {
    background: #ffffff;
    color: var(--brand-900);
    border: 1px solid var(--line);
}
.btn-calc {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(201, 214, 229, 0.42);
}

.btn-calc:hover {
    background: rgba(255, 255, 255, 0.22);
}

.nav-calc-link {
    display: none;
}

.hero {
    position: relative;
    min-height: 86vh;
    display: grid;
    align-items: center;
    background-image: url("./assets/FONDO_HTML_TUDASH2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(104deg, rgba(9, 29, 48, 0.86) 0%, rgba(14, 47, 76, 0.74) 45%, rgba(16, 54, 84, 0.52) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 26px;
    align-items: center;
    padding-block: 54px;
}

.hero-copy {
    color: #ffffff;
}

.hero-badge {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(202, 219, 236, 0.48);
    background: rgba(255, 255, 255, 0.12);
}

.hero h1 {
    margin: 0;
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.1;
}

.hero-brand-line {
    color: #ffdba9;
}

.hero-subtitle {
    margin: 18px 0 0;
    max-width: 65ch;
    color: #dfe9f4;
    font-size: 17px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-demo-access {
    border: 1px solid rgba(181, 98, 8, 0.12);
}

.btn-demo-access:hover {
    background: var(--accent-strong);
}

.hero-trust {
    margin: 14px 0 0;
    color: #d3e2f1;
    font-size: 13px;
    font-weight: 600;
}

.hero-benefits {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hero-benefits li::before {
    content: "✔";
    color: #7be0b0;
    font-weight: 700;
    line-height: 1.2;
}

.hero-benefits strong {
    color: #ffffff;
}

.hero-stats {
    display: grid;
    gap: 12px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 214, 229, 0.9);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    margin: 0;
    font-size: 34px;
    color: var(--brand-900);
}

.stat-card p {
    margin: 5px 0 0;
    color: var(--ink-700);
    font-size: 14px;
}

.section {
    padding: 76px 0;
}

.section h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.2;
}

.section-sub {
    margin: 0;
    color: var(--ink-700);
}

.section-sub-soft {
    margin-top: 6px;
    font-size: 14px;
    color: var(--ink-500);
}

.section-demo-guide {
    position: relative;
    background-image:
        radial-gradient(circle at top right, rgba(47, 121, 187, 0.14), transparent 34%),
        linear-gradient(160deg, rgba(245, 249, 253, 0.9) 0%, rgba(232, 241, 249, 0.84) 100%),
        url("./assets/OFICINA1.jpg");
    background-size: auto, auto, cover;
    background-position: top right, center, center;
    background-repeat: no-repeat;
}

.demo-guide-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.demo-guide-kicker {
    margin: 0 0 10px;
    color: var(--brand-700);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-guide-subtitle {
    margin: 0;
    max-width: 62ch;
    color: var(--ink-700);
    font-size: 16px;
}

.demo-guide-steps {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.demo-guide-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 22px rgba(16, 36, 58, 0.07);
}

.demo-guide-step-index {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, var(--brand-700) 0%, var(--brand-500) 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.demo-guide-step h3 {
    margin: 0;
    font-size: 19px;
}

.demo-guide-step p {
    margin: 5px 0 0;
    color: var(--ink-700);
    font-size: 14px;
}

.demo-guide-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.demo-guide-media {
    min-width: 0;
}

.demo-guide-frame {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #bfd0e2;
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.demo-guide-frame-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.demo-guide-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(28, 88, 139, 0.1);
    color: var(--brand-900);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.demo-guide-meta {
    color: var(--ink-500);
    font-size: 13px;
    font-weight: 700;
}

.demo-guide-video {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #091d30;
    border: 1px solid rgba(16, 36, 58, 0.12);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.demo-guide-preview {
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #091d30;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(16, 36, 58, 0.18);
}

.demo-guide-preview:hover {
    transform: translateY(-2px);
}

.demo-guide-video-preview {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0.92;
}

.demo-guide-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(7, 21, 35, 0.18) 0%, rgba(7, 21, 35, 0.62) 100%);
    color: #ffffff;
    text-align: left;
}

.demo-guide-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(213, 123, 26, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    font-size: 30px;
    line-height: 1;
    padding-left: 4px;
    flex: 0 0 auto;
}

.demo-guide-preview-copy {
    display: grid;
    gap: 4px;
}

.demo-guide-preview-copy strong {
    font-size: 21px;
    line-height: 1.1;
}

.demo-guide-preview-copy span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.demo-guide-note {
    margin: 12px 0 0;
    color: var(--ink-700);
    font-size: 14px;
}

.section-compare {
    position: relative;
    background-image:
        radial-gradient(circle at top right, rgba(47, 121, 187, 0.14), transparent 34%),
        linear-gradient(160deg, rgba(245, 249, 253, 0.9) 0%, rgba(232, 241, 249, 0.84) 100%),
        url("./RECURSOS/OFICINA3.jpg");
    background-size: auto, auto, cover;
    background-position: top right, center, center;
    background-repeat: no-repeat;
}

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

.compare-head h2 {
    margin: 0 0 16px;
}

.compare-card {
    border-radius: var(--radius-lg);
    padding: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.compare-card h3 {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.2;
}

.compare-before {
    background: #ffffff;
}

.compare-after {
    background: linear-gradient(160deg, #ecf4ff 0%, #f8fbff 100%);
    border-color: #9fbce0;
}

.compare-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.compare-after ul {
    padding-left: 0;
    list-style: none;
}

.compare-after li {
    display: flex;
    gap: 8px;
    color: #16395c;
    font-weight: 600;
}

.compare-after li::before {
    content: "✔";
    color: var(--brand-700);
    font-weight: 800;
}

.compare-result {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    color: var(--ink-700);
}

.section-nontech {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(145deg, rgba(9, 29, 48, 0.86) 0%, rgba(14, 47, 76, 0.72) 56%, rgba(16, 54, 84, 0.62) 100%),
        url("./assets/FONDO_HTML_TUDASH2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-nontech::before {
    content: none;
}

.section-nontech .container {
    position: relative;
    z-index: 1;
}

.nontech-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: none;
    justify-items: center;
    text-align: center;
}

.nontech-head h2 {
    margin: 0;
    width: min(100%, 980px);
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    color: #ffffff;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.06;
    text-shadow: 0 3px 10px rgba(5, 20, 34, 0.34);
}

.nontech-subtitle {
    margin: 0;
    width: min(100%, 1040px);
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.75;
    text-shadow: 0 2px 8px rgba(5, 20, 34, 0.3);
}

.nontech-grid {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nontech-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #c9d8e8;
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 30px rgba(16, 36, 58, 0.08);
}

.nontech-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 92px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(213, 123, 26, 0.12);
    color: #8e4d0c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nontech-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink-900);
}

.nontech-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 15px;
}

.nontech-cta {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(14, 47, 76, 0.78) 0%, rgba(22, 76, 118, 0.72) 100%);
    border: 1px solid rgba(191, 208, 226, 0.28);
    box-shadow: 0 18px 34px rgba(9, 29, 48, 0.14);
    backdrop-filter: blur(3px);
}

.nontech-cta-copy {
    display: grid;
    gap: 6px;
}

.nontech-cta-copy strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
}

.nontech-cta-copy p {
    margin: 0;
    color: #d9e8f5;
    font-size: 15px;
}

.nontech-cta .btn {
    flex: 0 0 auto;
}

.section-steps {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(145deg, rgba(9, 29, 48, 0.86) 0%, rgba(14, 47, 76, 0.72) 56%, rgba(16, 54, 84, 0.62) 100%),
        url("./assets/FONDO_HTML_TUDASH.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.steps-copy h2 {
    color: #ffffff;
}

.steps-list {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 14px;
    align-items: start;
    max-width: 1080px;
}

.steps-subtitle {
    margin: 6px 0 0;
    color: #dfe9f4;
    font-size: 17px;
    font-weight: 700;
}

.steps-support {
    margin: 7px 0 0;
    color: #c8daec;
    font-size: 14px;
}

.step-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #b8cde2;
    border-radius: var(--radius-md);
    padding: 16px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: start;
    box-shadow: 0 10px 24px rgba(5, 20, 34, 0.24);
    width: 100%;
    max-width: 520px;
    justify-self: start;
}

.step-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.step-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.step-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.step-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.step-card:nth-child(5) {
    grid-column: 1 / span 2;
    grid-row: 3;
    justify-self: center;
}

.step-index {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, var(--brand-700) 0%, var(--brand-500) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
}

.step-card h3 {
    margin: 0;
    font-size: 20px;
}

.step-card p {
    margin: 4px 0 0;
    color: #3c5670;
}
.section-features {
    position: relative;
    background-image:
        linear-gradient(140deg, rgba(233, 241, 249, 0.96) 0%, rgba(236, 244, 252, 0.95) 100%),
        url("./assets/OFICINA2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-groups {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-group {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
}

.feature-group-title {
    margin: 0 0 10px;
    font-size: 19px;
    color: var(--brand-900);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 8px 20px rgba(16, 36, 58, 0.07);
}

.feature-card h3,
.feature-card h4 {
    margin: 0;
    font-size: 17px;
}

.feature-card p {
    margin: 8px 0 0;
    color: var(--ink-700);
    font-size: 14px;
}

.feature-note {
    margin: 14px 0 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink-700);
}

.section-plans {
    position: relative;
    background-image:
        linear-gradient(145deg, rgba(9, 29, 48, 0.86) 0%, rgba(14, 47, 76, 0.72) 56%, rgba(16, 54, 84, 0.62) 100%),
        url("./assets/OFICINA1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.section-plans .section-sub {
    color: #dfe9f4;
}

.section-plans .section-sub-soft {
    color: #c8daec;
}

.plans-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin: 18px 0 22px;
}

.plans-toolbar-copy {
    display: grid;
    gap: 3px;
    justify-items: end;
}

.plans-currency-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dbe8f4;
}

.plans-currency-status {
    font-size: 14px;
    font-weight: 700;
    color: #f8fbff;
}

.plan-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    height: 100%;
}

.plan-card h3 {
    margin: 0;
    font-size: 23px;
}

.price {
    margin: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--brand-900);
}

.price-currency {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.price-value {
    font-size: 56px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.01em;
}

.price-period {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-top: 8px;
}

.plan-tagline {
    margin: 0;
    color: var(--ink-700);
    font-size: 15px;
    font-weight: 600;
    min-height: 46px;
}

.sheets {
    margin: 0;
    font-size: 14px;
    color: var(--ink-700);
}

.plan-includes {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-500);
}

.plan-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    color: var(--ink-700);
    font-size: 14px;
    margin-top: 2px;
}

.plan-card .btn {
    margin-top: 2px;
    width: 100%;
    justify-content: center;
}

.plan-featured {
    background: linear-gradient(170deg, #103559 0%, #1c588b 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(16, 36, 58, 0.22);
}

.plan-featured .price,
.plan-featured .price-currency,
.plan-featured .price-value,
.plan-featured .price-period,
.plan-featured .plan-tagline,
.plan-featured .sheets,
.plan-featured .plan-includes,
.plan-featured ul {
    color: #edf4fc;
}

.badge {
    position: absolute;
    top: -11px;
    right: 14px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 11px;
}

.plan-compare-wrap {
    margin-top: 18px;
    background: rgba(9, 29, 48, 0.34);
    border: 1px solid rgba(201, 214, 229, 0.35);
    border-radius: var(--radius-md);
    padding: 14px;
}

.plan-compare-title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 18px;
}

.plan-compare-scroll {
    overflow-x: auto;
}

.plan-compare-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    overflow: hidden;
}

.plan-compare-table th,
.plan-compare-table td {
    border: 1px solid #d8e3ef;
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
    color: var(--ink-700);
}

.plan-compare-table th {
    background: #eff5fb;
    color: var(--ink-900);
    font-weight: 800;
}

.plan-compare-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

.legal-note {
    margin: 14px 0 0;
    color: #d3e2f1;
    font-size: 13px;
    background: rgba(9, 29, 48, 0.38);
    border: 1px solid rgba(201, 214, 229, 0.35);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.plan-policy {
    margin: 8px 0 0;
    color: var(--ink-500);
    font-size: 12px;
    background: rgba(236, 244, 252, 0.8);
    border: 1px dashed #b7cade;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.section-faq {
    position: relative;
    background-image:
        linear-gradient(150deg, rgba(236, 244, 252, 0.97) 0%, rgba(242, 247, 252, 0.96) 100%),
        url("./assets/OFICINA2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-list {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: clip;
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    border: 0;
    background: #ffffff;
    color: var(--ink-900);
    font: inherit;
    font-weight: 700;
    padding: 14px 18px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--brand-700);
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
}

.faq-answer {
    padding: 0 18px 16px;
    color: var(--ink-700);
    font-size: 14px;
}

.section-contact {
    position: relative;
    background-image: url("./assets/FONDO_HTML_BIENVENIDO.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
    background: linear-gradient(140deg, rgba(8, 28, 47, 0.9), rgba(20, 58, 99, 0.72));
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.contact-copy {
    color: #ffffff;
}

.contact-copy p {
    color: #d7e4f1;
}

.contact-copy ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.contact-copy a {
    color: #ffffff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(201, 214, 229, 0.88);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: grid;
    gap: 8px;
}

.contact-form h3 {
    margin: 0 0 6px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px;
    font: inherit;
    color: var(--ink-900);
    background: #ffffff;
}

.form-feedback {
    margin: 4px 0 0;
    min-height: 22px;
    font-size: 13px;
    font-weight: 700;
}

.form-feedback.error {
    color: var(--error);
}

.form-feedback.ok {
    color: var(--ok);
}

.policy-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    margin: 6px 0 4px;
    padding: 11px 12px;
    border: 1px solid rgba(30, 78, 120, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(236, 244, 252, 0.72);
    color: var(--ink-700);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.policy-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--brand-700);
}

.policy-consent a {
    color: var(--brand-700);
    font-weight: 800;
}

.demo-policy-consent {
    background: rgba(255, 255, 255, 0.82);
}

.footer {
    background: #0e2235;
    color: #dbe8f4;
    border-top: 1px solid rgba(201, 214, 229, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    gap: 16px;
    align-items: start;
    padding: 26px 0;
}

.footer-grid p {
    margin: 6px 0 0;
    color: #b4cae0;
    font-size: 14px;
}

.footer-nav {
    display: grid;
    gap: 6px;
}

.footer-nav a {
    color: #eaf3fb;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-inline-link {
    color: #eaf3fb;
}

.legal-body {
    background: #f5f8fb;
    color: var(--ink-900);
}

.legal-topbar {
    position: sticky;
}

.legal-main {
    background:
        linear-gradient(180deg, rgba(247, 250, 253, 0.94), rgba(245, 248, 251, 0.98) 340px),
        url("./assets/FONDO_HTML_TUDASH2.jpg") center top / cover no-repeat;
}

.legal-hero {
    padding: 92px 0 44px;
    color: var(--ink-900);
}

.legal-hero-content {
    max-width: 920px;
}

.legal-hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.legal-hero p:not(.hero-badge) {
    max-width: 760px;
    color: var(--ink-700);
    font-size: 17px;
}

.legal-hero .hero-badge {
    color: var(--brand-700);
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(30, 78, 120, 0.22);
}

.legal-document-section {
    padding: 0 0 74px;
}

.legal-contact-section {
    padding: 0 0 34px;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 24px;
    align-items: start;
    max-width: 1040px;
}

.legal-contact-copy {
    color: #ffffff;
    background: rgba(9, 29, 48, 0.54);
    border: 1px solid rgba(201, 214, 229, 0.28);
    border-radius: var(--radius-lg);
    padding: 22px;
    backdrop-filter: blur(8px);
}

.legal-contact-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
}

.legal-contact-copy p,
.legal-contact-copy li {
    color: #dbe8f4;
    line-height: 1.6;
}

.legal-contact-copy ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.legal-contact-copy a {
    color: #ffffff;
    font-weight: 800;
}

.legal-document-wrap {
    max-width: 980px;
}

.legal-document {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(201, 214, 229, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 42px rgba(16, 36, 58, 0.12);
    padding: clamp(22px, 4vw, 42px);
}

.legal-document h2,
.legal-document h3 {
    color: var(--ink-900);
    letter-spacing: 0;
}

.legal-document h2 {
    margin: 30px 0 12px;
    font-size: clamp(22px, 3vw, 30px);
}

.legal-document h3 {
    margin: 22px 0 10px;
    font-size: 18px;
}

.legal-document p,
.legal-document li {
    color: var(--ink-700);
    font-size: 15px;
    line-height: 1.72;
}

.legal-document p {
    margin: 0 0 12px;
}

.legal-document ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

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

@media (max-width: 860px) {
    .legal-contact-grid,
    .legal-footer-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



@media (min-width: 841px) {
    .topbar-inner {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .brand {
        flex: 0 0 auto;
    }

    .main-nav {
        flex: 1 1 auto;
        justify-content: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 6px;
        min-width: 0;
        margin-left: 4px;
        margin-right: 4px;
    }

    .main-nav a {
        font-size: 15px;
        padding: 8px 9px;
    }

    .topbar-cta {
        gap: 8px;
    }

    .topbar-side-actions {
        margin-left: auto;
        gap: 10px;
    }

    .btn-topbar {
        padding: 11px 14px;
        font-size: 15px;
    }
}


body.modal-open {
    overflow: hidden;
}

.savings-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.savings-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.savings-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 14, 24, 0.72);
    backdrop-filter: blur(3px);
}

.savings-modal-panel {
    position: relative;
    width: min(1040px, calc(100vw - 42px));
    max-height: 88vh;
    overflow: auto;
    background-image:
        linear-gradient(104deg, rgba(9, 29, 48, 0.86) 0%, rgba(14, 47, 76, 0.74) 45%, rgba(16, 54, 84, 0.52) 100%),
        url("./assets/FONDO_HTML_TUDASH2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(201, 214, 229, 0.42);
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(6, 21, 35, 0.42);
    padding: 26px;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.savings-modal.is-open .savings-modal-panel {
    transform: translateY(0) scale(1);
}

.savings-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #b7cade;
    background: #ffffff;
    color: #123557;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.savings-head {
    margin-right: 32px;
}

.savings-kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffdba9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.savings-head h2 {
    margin: 6px 0 8px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.savings-head p {
    margin: 0;
    color: #e4edf7;
}

.savings-comparisons {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.saving-card {
    background: #ffffff;
    border: 1px solid #c8d7e6;
    border-radius: 12px;
    padding: 14px;
}

.saving-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    color: #15395d;
}

.saving-vs-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
}

.saving-side {
    border: 1px solid #cddceb;
    border-radius: 10px;
    padding: 12px;
    background: #f8fbff;
}

.saving-side p {
    margin: 0;
    color: #35536f;
    font-size: 14px;
}

.saving-side strong {
    display: inline-block;
    margin-top: 8px;
    font-size: 24px;
    line-height: 1;
}

.saving-side-title {
    font-weight: 800;
    color: #123557;
    margin-bottom: 6px !important;
}

.saving-side-old {
    background: #f3f7fb;
}

.saving-side-old strong {
    color: #3a4f67;
}

.saving-side-zentro {
    background: linear-gradient(165deg, #0f3559 0%, #1b5f95 100%);
    border-color: #164b78;
}

.saving-side-zentro .saving-side-title,
.saving-side-zentro p,
.saving-side-zentro strong {
    color: #eef5fd;
}

.saving-vs {
    align-self: center;
    justify-self: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: #234f78;
    border: 1px solid #173f63;
}

.saving-highlight {
    margin: 10px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff4df;
    border: 1px solid #ebc381;
    color: #8a4c00;
    font-weight: 800;
}

.savings-foot {
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #b8cde2;
    background: #edf5ff;
    display: grid;
    gap: 10px;
}

.savings-foot p {
    margin: 0;
    color: #214563;
}

.savings-foot .btn {
    justify-self: start;
}

.demo-access-modal {
    position: fixed;
    inset: 0;
    z-index: 125;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.demo-access-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.demo-access-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 14, 24, 0.72);
    backdrop-filter: blur(3px);
}

.demo-access-panel {
    position: relative;
    width: min(620px, calc(100vw - 34px));
    max-height: 88vh;
    overflow: auto;
    background-image:
        linear-gradient(104deg, rgba(9, 29, 48, 0.86) 0%, rgba(14, 47, 76, 0.74) 45%, rgba(16, 54, 84, 0.52) 100%),
        url("./assets/FONDO_HTML_TUDASH2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(201, 214, 229, 0.42);
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(6, 21, 35, 0.42);
    padding: 22px;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.24s ease;
}

.demo-access-modal.is-open .demo-access-panel {
    transform: translateY(0) scale(1);
}

.demo-access-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d7e4f1;
    background: #ffffff;
    color: #123557;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.demo-access-head {
    margin-right: 32px;
}

.demo-access-kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffdba9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.demo-access-head h2 {
    margin: 6px 0 8px;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.demo-access-head p {
    margin: 0;
    color: #e4edf7;
}

.demo-access-credentials {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.demo-access-chip {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #d8e3ef;
    background: #f8fbff;
}

.demo-access-chip-title {
    color: var(--brand-900);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.demo-access-chip-meta {
    color: var(--ink-900);
    font-size: 16px;
    font-weight: 800;
}

.demo-access-chip-note {
    color: var(--ink-500);
    font-size: 13px;
    font-weight: 600;
}

.demo-access-form-wrap {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    background-image: linear-gradient(160deg, rgba(244, 248, 252, 0.96) 0%, rgba(236, 244, 252, 0.95) 100%), url("./assets/OFICINA2.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid #d3dfeb;
}

.demo-access-form-wrap h3 {
    margin: 0;
    font-size: 18px;
    color: var(--ink-900);
}

.demo-access-form-wrap > p {
    margin: 6px 0 0;
    color: var(--ink-700);
    font-size: 13px;
}

.demo-access-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.demo-access-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-900);
}

.demo-access-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    color: var(--ink-900);
    background: #ffffff;
}

.demo-access-form .btn {
    width: max-content;
    min-width: 200px;
}

.demo-access-feedback {
    margin: 2px 0 0;
    min-height: 20px;
    font-size: 13px;
    font-weight: 700;
}

.demo-access-feedback.error {
    color: var(--error);
}

.demo-access-feedback.ok {
    color: var(--ok);
}

.video-guide-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 42px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.video-guide-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-guide-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 14, 24, 0.76);
    backdrop-filter: blur(4px);
}

.video-guide-panel {
    position: relative;
    width: min(1240px, calc(100vw - 56px));
    max-height: min(90vh, 980px);
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(191, 208, 226, 0.95);
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(6, 21, 35, 0.44);
    padding: 16px 16px 14px;
    transform: translateY(12px) scale(0.985);
    transition: transform 0.24s ease;
}

.video-guide-modal.is-open .video-guide-panel {
    transform: translateY(0) scale(1);
}

.video-guide-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #bfd0e2;
    background: #ffffff;
    color: var(--brand-900);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.video-guide-head {
    margin-right: 24px;
}

.video-guide-kicker {
    margin: 0;
    color: var(--brand-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-guide-head h2 {
    margin: 6px 0 8px;
    font-size: clamp(24px, 2.7vw, 31px);
    line-height: 1.15;
    color: var(--brand-900);
}

.video-guide-head p {
    margin: 0;
    color: var(--ink-700);
    font-size: 14px;
}

.video-guide-player-wrap {
    margin-top: 12px;
}

.video-guide-player {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #091d30;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 24px rgba(16, 36, 58, 0.16);
}

@media (max-width: 1080px) {
    .hero-content,
    .demo-guide-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .video-guide-panel {
        width: min(980px, calc(100vw - 28px));
        max-height: 90vh;
        padding: 16px;
    }

    .steps-list {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .step-card {
        width: 100%;
        max-width: none;
        grid-column: auto !important;
        grid-row: auto !important;
        align-self: stretch !important;
    }

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

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

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

}

@media (max-width: 840px) {
    .topbar-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
        justify-content: space-between;
        min-height: 78px;
        gap: 12px;
    }

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

    .desktop-only,
    .topbar-cta {
        display: none;
    }

    .topbar-locale-switcher {
        gap: 6px;
        padding: 5px 8px;
    }

    .topbar-side-actions {
        justify-self: end;
    }

    .plans-toolbar {
        justify-content: flex-start;
    }

    .plans-toolbar-copy {
        justify-items: start;
    }

    .locale-btn {
        width: 36px;
        height: 36px;
    }

    .flag-icon {
        width: 20px;
        height: 20px;
    }

    .currency-switcher {
        gap: 6px;
        padding: 5px 8px;
    }

    .currency-btn {
        min-width: 46px;
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .brand {
        gap: 10px;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

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

    .brand-copy span {
        font-size: 12px;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(11, 33, 54, 0.98);
        border-bottom: 1px solid rgba(201, 214, 229, 0.24);
        padding: 12px 18px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        font-size: 18px;
        padding: 10px 12px;
    }

    .main-nav .nav-calc-link {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(201, 214, 229, 0.4);
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-weight: 800;
        margin-top: 4px;
    }

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

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

    .nontech-head h2,
    .nontech-subtitle {
        width: 100%;
    }

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

    .hero-actions {
        gap: 10px;
    }

    .video-guide-head h2 {
        font-size: clamp(22px, 3vw, 28px);
    }
}

@media (max-width: 640px) {
    .topbar-locale-switcher {
        padding: 4px 6px;
        gap: 4px;
    }

    .locale-btn {
        width: 32px;
        height: 32px;
    }

    .flag-icon {
        width: 18px;
        height: 18px;
    }

    .plans-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nontech-card {
        padding: 18px;
    }

    .nontech-head h2 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .nontech-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .nontech-card h3 {
        font-size: 20px;
    }

    .nontech-cta {
        padding: 18px;
    }

    .nontech-cta-copy strong {
        font-size: 18px;
    }

    .currency-switcher {
        padding: 4px 6px;
        gap: 4px;
    }

    .currency-btn {
        min-width: 42px;
        height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .plan-compare-table th,
    .plan-compare-table td {
        padding: 9px 10px;
        font-size: 13px;
    }

    .savings-modal {
        padding: 12px;
    }

    .savings-modal-panel {
        width: min(100vw - 18px, 100%);
        max-height: 90vh;
        padding: 18px;
    }

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

    .saving-vs {
        width: 36px;
        height: 36px;
        justify-self: start;
    }

    .savings-foot .btn {
        width: 100%;
    }

    .demo-access-panel {
        width: min(100vw - 18px, 100%);
        padding: 18px;
    }

    .demo-access-form .btn {
        width: 100%;
    }
    .container {
        width: min(var(--maxw), calc(100% - 26px));
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-block: 44px;
    }

    .hero-benefits {
        gap: 7px;
    }

    .demo-guide-step {
        grid-template-columns: 44px 1fr;
        padding: 13px;
    }

    .demo-guide-step-index {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .demo-guide-frame {
        padding: 14px;
        border-radius: 18px;
    }

    .demo-guide-preview-overlay {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .demo-guide-play-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .video-guide-modal {
        padding: 10px;
    }

    .video-guide-panel {
        width: min(100vw - 8px, 100%);
        max-height: 90vh;
        padding: 12px;
        border-radius: 18px;
    }

    .video-guide-head {
        margin-right: 22px;
    }

    .video-guide-head h2 {
        font-size: 21px;
    }

    .video-guide-head p {
        font-size: 13px;
    }

    .video-guide-close {
        top: 8px;
        right: 8px;
    }

    .brand-copy span {
        display: none;
    }

    .whatsapp-sticky {
        display: inline-flex;
    }
}

@media (min-width: 1081px) {
    .hero-actions {
        flex-wrap: nowrap;
        align-items: center;
    }

    .hero-actions .btn {
        white-space: nowrap;
    }
}







