:root {
    color-scheme: light;
    --orange: #f97316;
    --orange-dark: #c2410c;
    --orange-soft: #fff1e6;
    --orange-pale: #fff8f2;
    --ink: #172033;
    --ink-soft: #475569;
    --muted: #64748b;
    --line: #f1d8c5;
    --white: #ffffff;
    --panel: #ffffff;
    --shadow: 0 24px 70px rgba(148, 72, 20, .14);
    --shadow-soft: 0 14px 42px rgba(148, 72, 20, .10);
    --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.label-mobile { display: none; }

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}
.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 14px;
    border: 1px solid rgba(249, 115, 22, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 36px rgba(82, 38, 10, .10);
    pointer-events: auto;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: auto; max-width: min(238px, 46vw); max-height: 45px; }
.main-nav { display: flex; align-items: center; gap: 7px; }
.nav-link, .nav-primary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.nav-link { color: var(--orange-dark); }
.nav-link:hover { background: var(--orange-soft); transform: translateY(-1px); }
.nav-primary { color: #fff; background: var(--orange); box-shadow: 0 12px 26px rgba(249, 115, 22, .22); }
.nav-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.access-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 122px 0 54px;
    background:
        radial-gradient(circle at 8% 20%, rgba(249,115,22,.14), transparent 30%),
        radial-gradient(circle at 90% 14%, rgba(255,191,133,.24), transparent 34%),
        linear-gradient(135deg, #fffaf6 0%, #ffffff 52%, #fff0e4 100%);
}
.access-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image: radial-gradient(rgba(249,115,22,.20) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, #000, transparent 62%);
}
.hero-decoration { position: absolute; border-radius: 999px; pointer-events: none; filter: blur(2px); }
.hero-decoration-one { width: 430px; height: 430px; left: -180px; bottom: -170px; border: 70px solid rgba(249,115,22,.08); }
.hero-decoration-two { width: 180px; height: 180px; right: 6%; top: 15%; background: rgba(249,115,22,.08); }
.access-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
}
.access-copy { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .62fr); align-items: end; gap: 12px; }
.hero-message { position: relative; z-index: 2; padding-top: 18px; }
.eyebrow, .section-kicker {
    margin: 0 0 14px;
    color: var(--orange-dark);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-soft); }
.eyebrow span { width: 9px; height: 9px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 6px rgba(249,115,22,.13); }
h1, h2, h3, p { text-wrap: pretty; }
h1 {
    max-width: 650px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(48px, 6.5vw, 82px);
    line-height: .94;
    letter-spacing: -.075em;
    font-weight: 950;
}
.access-lead { max-width: 640px; margin: 23px 0 0; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.58; }
.access-lead strong { color: var(--orange-dark); }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hero-points span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.86); color: var(--ink); font-size: 13px; font-weight: 850; }
.hero-chati-wrap { position: relative; align-self: end; min-height: 410px; display: grid; place-items: end center; }
.hero-chati { position: relative; z-index: 2; width: min(330px, 100%); height: auto; display: block; filter: drop-shadow(0 28px 24px rgba(111,53,13,.16)); }
.speech-bubble { position: absolute; z-index: 3; top: 18px; right: -4px; padding: 12px 16px; border: 2px solid rgba(249,115,22,.24); border-radius: 20px 20px 20px 5px; background: #fff; color: var(--ink); box-shadow: var(--shadow-soft); font-weight: 900; animation: bubblePulse 2.8s ease-in-out infinite; }

.home-login-card {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 16px;
    padding: clamp(24px, 3.5vw, 34px);
    border: 1px solid rgba(249, 115, 22, .28);
    border-radius: 28px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 34px 90px rgba(107, 52, 16, .18);
}
.home-login-card::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: radial-gradient(circle at top right, rgba(249,115,22,.16), transparent 44%); }
.home-login-kicker { margin: 0; color: var(--orange-dark); font-size: 12px; font-weight: 950; letter-spacing: .07em; line-height: 1.35; text-transform: uppercase; }
.home-login-card h2 { margin: 5px 0 0; font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.home-login-card p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; }
.home-login-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; border: 1px solid #fed7aa; border-radius: 13px; background: #fff7ed; }
.home-login-tabs a, .home-login-tabs span { min-height: 43px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9px; color: #9a3412; font-size: 14px; font-weight: 950; text-decoration: none; }
.home-login-tabs .active { color: var(--ink); background: #fff; box-shadow: 0 8px 18px rgba(124,45,18,.08); }
.home-login-form { display: grid; gap: 13px; }
.home-login-field { display: grid; gap: 7px; }
.home-login-field label { color: var(--ink); font-size: 13px; font-weight: 900; }
.home-login-field input { width: 100%; min-height: 50px; border: 1px solid #fed7aa; border-radius: 11px; background: #fff; color: var(--ink); padding: 0 14px; }
.home-login-field input:focus { border-color: var(--orange); outline: 3px solid rgba(249,115,22,.15); }
.home-login-submit, .home-register-button, .cta-button, .secondary-button { min-height: 51px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; padding: 0 18px; font-weight: 950; text-decoration: none; }
.home-login-submit { width: 100%; border: 0; background: linear-gradient(135deg, #fb923c, #f97316); color: #fff; cursor: pointer; box-shadow: 0 14px 30px rgba(249,115,22,.24); }
.home-login-submit:hover { background: var(--orange-dark); }
.home-register-button { width: 100%; border: 1px solid #fed7aa; background: #fff7ed; color: var(--orange-dark); }
.home-login-links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 14px; font-weight: 850; }
.home-login-links a { color: var(--orange-dark); text-decoration: none; }
.home-login-separator { height: 1px; background: #fed7aa; }
.register-copy { margin: 0 !important; }

.trust-strip { position: relative; z-index: 3; padding: 0 0 34px; background: #fff; }
.trust-grid { transform: translateY(-4px); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.trust-grid article { min-height: 96px; display: grid; align-content: center; gap: 5px; padding: 18px 22px; border-right: 1px solid var(--line); }
.trust-grid article:last-child { border-right: 0; }
.trust-grid strong { color: var(--orange); font-size: 24px; letter-spacing: -.04em; }
.trust-grid span { color: var(--muted); font-size: 13px; font-weight: 750; }

.feature-section, .faq-section, .pricing-section { position: relative; padding: 88px 0; overflow: hidden; background: #fff; }
.feature-section-soft, .faq-section { background: var(--orange-pale); }
.feature-section-orange { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); color: #fff; }
.story-grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr); align-items: center; gap: clamp(34px, 7vw, 90px); }
.story-grid-reverse .story-copy { order: -1; }
.story-art { min-height: 500px; display: grid; place-items: center; }
.chati-stage { position: relative; width: min(100%, 500px); min-height: 500px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.15), transparent 64%); }
.chati-stage img { position: relative; z-index: 2; width: min(390px, 90%); display: block; filter: drop-shadow(0 26px 25px rgba(106,50,12,.15)); }
.mini-bubble { position: absolute; z-index: 3; max-width: 190px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); color: var(--ink); font-size: 13px; font-weight: 850; }
.mini-bubble-a { top: 16%; right: 0; }
.mini-bubble-b { left: 0; bottom: 18%; }
.idea-glow { position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(249,115,22,.14); filter: blur(14px); animation: glowPulse 2.8s ease-in-out infinite; }
.story-copy h2, .section-heading h2, .pricing-copy h2, .final-copy h2 { margin: 0; color: var(--ink); font-size: clamp(38px, 5.5vw, 66px); line-height: .98; letter-spacing: -.065em; font-weight: 950; }
.story-copy > p:not(.section-kicker), .section-heading > p:not(.section-kicker), .pricing-copy > p:not(.section-kicker), .final-copy > p:not(.section-kicker) { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.check-list { display: grid; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: var(--ink-soft); line-height: 1.5; }
.check-list li::before { content: "✓"; width: 23px; height: 23px; flex: 0 0 23px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-size: 12px; font-weight: 950; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.feature-chips span { padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; box-shadow: var(--shadow-soft); color: var(--ink); font-weight: 850; }
.section-heading { max-width: 830px; margin-inline: auto; }
.section-heading.center { text-align: center; }
.section-kicker-light { color: #fff3e8; }
.feature-section-orange .section-heading h2, .feature-section-orange .section-heading > p:not(.section-kicker) { color: #fff; }
.easy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(230px, .8fr); align-items: stretch; gap: 14px; margin-top: 36px; }
.easy-card { min-height: 250px; padding: 25px; border: 1px solid rgba(255,255,255,.25); border-radius: 24px; background: rgba(255,255,255,.13); backdrop-filter: blur(12px); }
.step-number { display: inline-flex; margin-bottom: 48px; color: #fff; font-size: 13px; font-weight: 950; letter-spacing: .08em; }
.easy-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.04em; }
.easy-card p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.58; }
.easy-chati { min-height: 250px; display: grid; align-items: end; justify-items: center; overflow: hidden; }
.easy-chati img { width: min(280px, 100%); display: block; transform: translateY(12px); filter: drop-shadow(0 25px 20px rgba(80,29,0,.22)); }
.feature-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.feature-card { min-height: 260px; padding: 25px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-soft); }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--orange-soft); font-size: 26px; }
.feature-card h3 { margin: 22px 0 10px; font-size: 24px; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.feature-card-chati { grid-column: 1 / -1; min-height: 290px; display: grid; grid-template-columns: minmax(230px, .55fr) 1fr; align-items: center; gap: 28px; overflow: hidden; background: linear-gradient(135deg, var(--orange-pale), #fff); }
.feature-card-chati img { width: min(330px, 100%); max-height: 310px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 20px 20px rgba(106,50,12,.15)); }
.feature-card-chati h3 { margin-top: 0; font-size: clamp(30px, 4vw, 48px); }
.price-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.price-mini-grid div { padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.price-mini-grid strong { display: block; color: var(--orange); font-size: 30px; letter-spacing: -.04em; }
.price-mini-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; font-weight: 800; }

.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, .7fr); align-items: center; gap: clamp(34px, 7vw, 88px); }
.pricing-copy { position: relative; min-height: 590px; padding-bottom: 260px; }
.pricing-chati { position: absolute; left: 0; bottom: -42px; width: min(470px, 90%); max-height: 470px; object-fit: contain; object-position: left bottom; filter: drop-shadow(0 25px 22px rgba(106,50,12,.14)); }
.price-card { position: relative; padding: clamp(28px, 4vw, 42px); border: 1px solid rgba(249,115,22,.26); border-radius: 32px; background: linear-gradient(160deg, #fff, #fff7ed); box-shadow: var(--shadow); }
.trial-badge { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 950; }
.price-card h3 { margin: 23px 0 0; font-size: 23px; }
.price-main { margin: 13px 0 7px; color: var(--ink); font-size: clamp(52px, 6vw, 76px); line-height: .94; letter-spacing: -.065em; font-weight: 950; }
.price-main small { color: var(--muted); font-size: 17px; letter-spacing: 0; }
.annual { margin: 0; color: var(--muted); font-size: 18px; }
.annual strong { color: var(--orange-dark); }
.check-list.compact { margin-bottom: 26px; }
.cta-button { width: 100%; border: 0; background: var(--orange); color: #fff; box-shadow: 0 14px 30px rgba(249,115,22,.22); }
.cta-button:hover { background: var(--orange-dark); }
.cta-button span { margin-left: 8px; }
.price-note { display: block; margin-top: 13px; color: var(--muted); text-align: center; }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.faq-item summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 900; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--orange); font-size: 26px; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.62; }

.final-cta { padding: 62px 0 0; overflow: hidden; background: linear-gradient(135deg, #f97316, #c2410c); color: #fff; }
.final-cta-inner { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr); align-items: center; gap: clamp(28px, 6vw, 80px); }
.final-chati { align-self: end; display: grid; place-items: end center; }
.final-chati img { width: min(430px, 100%); max-height: 520px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 24px 22px rgba(66,20,0,.24)); }
.final-copy { padding: 70px 0 82px; }
.final-copy h2, .final-copy > p:not(.section-kicker) { color: #fff; }
.final-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.cta-button-white { width: auto; background: #fff; color: var(--orange-dark); box-shadow: none; }
.cta-button-white:hover { background: #fff4eb; }
.secondary-button { border: 1px solid rgba(255,255,255,.45); background: transparent; color: #fff; }

.site-footer { padding: 27px 0 34px; border-top: 1px solid #f3dfd0; background: #fff; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-inner a { color: var(--orange-dark); font-weight: 850; text-decoration: none; }

.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0, 0); }
[data-chati-float] { transform-origin: center bottom; animation: chatiFloat 3.6s ease-in-out infinite; }

@keyframes chatiFloat { 0%,100% { transform: translateY(0) rotate(-.7deg); } 50% { transform: translateY(-13px) rotate(.7deg); } }
@keyframes bubblePulse { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.02); } }
@keyframes glowPulse { 0%,100% { transform: scale(.9); opacity: .65; } 50% { transform: scale(1.1); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    .access-grid { grid-template-columns: 1fr; }
    .home-login-card { max-width: 680px; margin-inline: auto; }
    .access-copy { grid-template-columns: minmax(0, 1fr) minmax(220px, .52fr); }
    .easy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .easy-chati { grid-column: 1 / -1; min-height: 320px; }
    .feature-card-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-copy { min-height: 500px; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 24px, var(--max)); }
    .site-header { top: 8px; }
    .header-inner { min-height: auto; flex-direction: column; gap: 8px; padding: 10px; border-radius: 23px; }
    .brand img { max-height: 38px; }
    .main-nav { justify-content: center; width: 100%; }
    .nav-hide-mobile { display: none; }
    .nav-link, .nav-primary { min-height: 38px; padding: 0 14px; font-size: 13px; }
    .label-desktop { display: none; }
    .label-mobile { display: inline; }

    .access-hero { min-height: auto; padding: 138px 0 42px; }
    .access-grid { display: flex; flex-direction: column; gap: 30px; }
    .home-login-card { order: -1; width: 100%; padding: 22px; border-radius: 21px; }
    .access-copy { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
    .hero-message { order: 1; text-align: left; }
    .hero-chati-wrap { order: 2; min-height: 360px; }
    .hero-chati { width: min(330px, 86vw); }
    .speech-bubble { top: 18px; right: 4%; }
    h1 { font-size: clamp(43px, 12vw, 62px); }
    .access-lead { font-size: 17px; }
    .hero-points { display: grid; grid-template-columns: 1fr; }

    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid article:nth-child(2) { border-right: 0; }
    .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

    .feature-section, .faq-section, .pricing-section { padding: 58px 0; }
    .story-grid, .story-grid-reverse { grid-template-columns: 1fr; gap: 18px; }
    .story-grid-reverse .story-copy { order: initial; }
    .story-art { min-height: 390px; }
    .chati-stage { min-height: 390px; }
    .chati-stage img { width: min(330px, 88%); }
    .story-copy h2, .section-heading h2, .pricing-copy h2, .final-copy h2 { font-size: clamp(36px, 10.5vw, 52px); }
    .story-copy > p:not(.section-kicker), .section-heading > p:not(.section-kicker), .pricing-copy > p:not(.section-kicker), .final-copy > p:not(.section-kicker) { font-size: 16px; }
    .mini-bubble { font-size: 12px; }
    .easy-grid { grid-template-columns: 1fr; }
    .easy-card { min-height: 210px; }
    .step-number { margin-bottom: 35px; }
    .easy-chati { grid-column: auto; min-height: 320px; }
    .feature-card-grid { grid-template-columns: 1fr; }
    .feature-card-chati { grid-column: auto; grid-template-columns: 1fr; text-align: center; }
    .feature-card-chati img { margin-inline: auto; }
    .price-mini-grid { grid-template-columns: 1fr; }
    .pricing-copy { min-height: 550px; padding-bottom: 310px; }
    .pricing-chati { bottom: -35px; width: 100%; max-height: 390px; object-position: center bottom; }
    .faq-grid { grid-template-columns: 1fr; }
    .final-cta { padding-top: 46px; }
    .final-cta-inner { grid-template-columns: 1fr; }
    .final-chati { order: 2; }
    .final-chati img { max-height: 390px; }
    .final-copy { padding: 20px 0 0; text-align: center; }
    .final-actions { display: grid; grid-template-columns: 1fr; }
    .cta-button-white, .secondary-button { width: 100%; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
    .home-login-links { display: grid; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-grid article:last-child { border-bottom: 0; }
    .speech-bubble { max-width: 160px; font-size: 13px; }
}

/* === DESCARGAS CHATRESERVA === */
.home-app-downloads {
    width: 100%;
    min-width: 0;
    display: grid;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #fed7aa;
}

.home-app-downloads-heading {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.home-app-downloads-kicker {
    margin: 0 !important;
    color: var(--orange-dark) !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    font-weight: 950 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-app-downloads-heading h3 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.home-app-downloads-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.home-app-download-buttons {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.home-app-download-button {
    min-width: 0;
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    overflow: hidden;
    border: 1px solid #fed7aa;
    border-radius: 15px;
    color: var(--ink);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-app-download-button:hover {
    transform: translateY(-2px);
    border-color: var(--orange);
    box-shadow: 0 12px 24px rgba(124,45,18,.10);
}

.home-app-download-android {
    background: linear-gradient(135deg, #effcf3, #ffffff);
}

.home-app-download-windows {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.home-app-platform-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 16px rgba(15,23,42,.08);
    color: #0f172a;
    font-size: 20px;
    line-height: 1;
}

.home-app-download-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
    line-height: 1.1;
    overflow: hidden;
}

.home-app-download-copy small,
.home-app-download-copy strong {
    min-width: 0;
    display: block;
    overflow-wrap: anywhere;
}

.home-app-download-copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.home-app-download-copy strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 950;
}

@media (max-width: 560px) {
    .home-app-download-buttons {
        grid-template-columns: 1fr;
    }

    .home-app-download-button {
        width: 100%;
        min-height: 62px;
    }
}

