/* Era Soft Design System — public site tokens + chrome. Does not change routes or forms. */
:root {
    --background: #0f172a;
    --surface: #182235;
    --surface-secondary: #202b3e;
    --foreground: #e8eef8;
    --muted: #94a3b8;
    --border: rgba(148, 163, 184, 0.18);
    --primary: #22d3ee;
    --primary-hover: #38bdf8;
    --accent: #60a5fa;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.18);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.28);
    --shadow-glow: 0 16px 40px rgba(34, 211, 238, 0.16);
    --nav-h: 76px;
    --es-container: 1400px;
    --es-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html.light {
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-secondary: #f1f5f9;
    --foreground: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --primary: #0891b2;
    --primary-hover: #0ea5e9;
    --accent: #2563eb;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 12px 28px rgba(14, 165, 233, 0.12);
}

html.dark {
    --background: #0f172a;
    --surface: #182235;
    --surface-secondary: #202b3e;
    --foreground: #e8eef8;
    --muted: #94a3b8;
    --border: rgba(148, 163, 184, 0.18);
    --primary: #22d3ee;
    --primary-hover: #38bdf8;
    --accent: #60a5fa;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.18);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.28);
    --shadow-glow: 0 16px 40px rgba(34, 211, 238, 0.16);
}

html.es-site,
html.es-site.dark {
    color-scheme: dark;
    background: var(--background);
}
html.es-site.light { color-scheme: light; }

body.es-site.es-ds {
    font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    overflow-x: hidden;
    background: var(--background) !important;
}
body.es-site.es-ds .font-display {
    font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -0.03em;
}
@media (max-width: 767px) {
    body.es-site.es-ds { font-size: 15px; }
}

body.es-site.es-ds .es-container {
    width: 100%;
    max-width: var(--es-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}
@media (max-width: 480px) {
    body.es-site.es-ds .es-container { padding-left: 16px; padding-right: 16px; }
}

/* Atmosphere: slate, not pure black */
body.es-site.es-ds .es-velaris-bg,
body.es-site.es-ds .es-atmosphere,
body.es-site.es-ds .es-atmosphere__mesh {
    background: var(--background) !important;
    overflow: hidden !important;
    max-width: 100vw;
}
body.es-site.es-ds .es-atmosphere__mesh {
    background:
        radial-gradient(ellipse 60% 42% at 12% -8%, rgba(34, 211, 238, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 38% at 92% 6%, rgba(96, 165, 250, 0.12), transparent 52%),
        var(--background) !important;
}
body.es-site.es-ds .es-atmosphere__grid {
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
}
body.es-site.es-ds .es-atmosphere__vignette {
    background: radial-gradient(ellipse 80% 70% at 50% 30%, transparent 40%, rgba(15, 23, 42, 0.55) 100%);
}
html.light body.es-site.es-ds .es-atmosphere__mesh {
    background:
        radial-gradient(ellipse 60% 42% at 10% -8%, rgba(14, 165, 233, 0.1), transparent 52%),
        radial-gradient(ellipse 50% 40% at 95% 0%, rgba(37, 99, 235, 0.07), transparent 48%),
        #f8fafc !important;
}
html.light body.es-site.es-ds .es-atmosphere__vignette {
    background: radial-gradient(ellipse 80% 70% at 50% 30%, transparent 42%, rgba(248, 250, 252, 0.72) 100%);
}

/* Utility bar */
.es-utilbar {
    display: none;
    height: 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(24, 34, 53, 0.55);
    color: var(--muted);
    font-size: 12px;
}
@media (min-width: 768px) {
    .es-utilbar { display: block; }
}
html.light .es-utilbar { background: rgba(255, 255, 255, 0.7); }
.es-utilbar .es-container {
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}
.es-utilbar a { color: inherit; text-decoration: none; }
.es-utilbar a.is-active,
.es-utilbar a:hover { color: var(--foreground); }

/* Navbar */
body.es-site.es-ds .es-site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    height: auto;
    overflow: visible;
    background: rgba(15, 23, 42, 0.62) !important;
    border-bottom: 1px solid var(--border) !important;
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    transition: background 0.28s var(--es-ease), box-shadow 0.28s var(--es-ease);
}
body.es-site.es-ds .es-site-header.is-compact {
    background: rgba(15, 23, 42, 0.82) !important;
    box-shadow: var(--shadow-sm);
}
html.light body.es-site.es-ds .es-site-header {
    background: rgba(248, 250, 252, 0.78) !important;
}
html.light body.es-site.es-ds .es-site-header.is-compact {
    background: rgba(255, 255, 255, 0.9) !important;
}
.es-nav-row {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    height: var(--nav-h);
    min-width: 0;
    overflow: visible;
}
.es-nav-brand {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}
.es-nav-center {
    display: none;
    flex: 1 1 auto;
    justify-content: center;
    align-items: stretch;
    gap: 0.1rem;
    min-width: 0;
}
.es-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    margin-left: auto;
    flex: 0 0 auto;
}
@media (min-width: 1280px) {
    .es-nav-center { display: flex; }
    .es-nav-burger { display: none !important; }
    .es-drawer, .es-drawer-scrim { display: none !important; }
}
.es-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.62rem;
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 550;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.es-nav-link:hover { color: var(--foreground); background: rgba(148, 163, 184, 0.1); }
.es-icon-hit {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--foreground);
    text-decoration: none;
    transition: box-shadow 0.2s var(--es-ease), transform 0.2s var(--es-ease), border-color 0.2s var(--es-ease);
}
.es-icon-hit:hover {
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}
.es-icon-hit:active { transform: scale(0.98); }
.es-nav-cta {
    display: none;
    min-height: 44px;
    padding: 0 1.05rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 650;
    text-decoration: none;
    align-items: center;
}
@media (min-width: 1280px) {
    .es-nav-cta { display: inline-flex; }
}
.es-nav-cta.is-ghost {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--foreground);
}
.es-nav-cta.is-primary {
    border: 0;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    color: #042f2e;
}
.es-nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.es-nav-cta:active { transform: scale(0.98); }

/* Logo lockup */
body.es-site.es-ds .es-logo {
    display: inline-flex;
    align-items: center;
}
body.es-site.es-ds .es-logo--md .es-logo__wordmark { width: 10.2rem; }
@media (max-width: 430px) {
    body.es-site.es-ds .es-logo--md .es-logo__wordmark { width: 8.2rem; }
}

/* Theme button */
.es-theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--foreground);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.es-theme-btn:hover { box-shadow: var(--shadow-glow); }
.es-theme-btn .es-theme-icon {
    position: absolute;
    transition: opacity 0.25s var(--es-ease), transform 0.25s var(--es-ease);
}
html.dark .es-theme-icon--sun { opacity: 0; transform: rotate(-80deg) scale(0.4); }
html.dark .es-theme-icon--moon { opacity: 1; transform: none; }
html.light .es-theme-icon--moon { opacity: 0; transform: rotate(80deg) scale(0.4); }
html.light .es-theme-icon--sun { opacity: 1; transform: none; }

/* Drawer */
.es-drawer-scrim {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
}
.es-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 81;
    display: flex;
    flex-direction: column;
    width: min(22rem, 92vw);
    height: 100%;
    height: 100dvh;
    padding: 1.25rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom));
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
}
.es-drawer a, .es-drawer button.es-drawer-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 0.75rem;
    border-radius: 12px;
    color: var(--foreground);
    text-decoration: none;
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
}
.es-drawer a:hover { background: var(--surface-secondary); }
.es-drawer-sep { height: 1px; margin: 0.75rem 0; background: var(--border); }
body.es-drawer-lock { overflow: hidden; }

.es-mega {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.es-mega > .es-nav-link {
    height: 100%;
}
.es-mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 80;
    width: min(22rem, 78vw);
    transform: translateX(-50%);
    padding: 0.75rem 0.6rem 0.6rem;
    margin: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--border);
    border-top-color: transparent;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}
.es-mega-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.85rem;
    height: 0.85rem;
}

/* Buttons */
body.es-site.es-ds .es-btn,
body.es-site.es-ds .es-btn-primary,
body.es-site.es-ds .es-btn-secondary,
body.es-site.es-ds .es-hero-btn-solid,
body.es-site.es-ds .es-hero-btn-ghost {
    min-height: 46px;
    border-radius: 13px;
    padding: 0 1.2rem;
    font-weight: 650;
    transition: transform 0.2s var(--es-ease), box-shadow 0.2s var(--es-ease);
}
body.es-site.es-ds .es-btn-primary,
body.es-site.es-ds .es-hero-btn-solid {
    background: linear-gradient(135deg, #22d3ee, #3b82f6) !important;
    color: #042f2e !important;
    border: 0 !important;
}
body.es-site.es-ds .es-btn-secondary,
body.es-site.es-ds .es-hero-btn-ghost {
    background: var(--surface) !important;
    color: var(--foreground) !important;
    border: 1px solid var(--border) !important;
}
body.es-site.es-ds .es-btn-primary:hover,
body.es-site.es-ds .es-hero-btn-solid:hover,
body.es-site.es-ds .es-btn-secondary:hover,
body.es-site.es-ds .es-hero-btn-ghost:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}
body.es-site.es-ds .es-btn-primary:active,
body.es-site.es-ds .es-hero-btn-solid:active { transform: scale(0.98); }

/* Hero */
.es-hero-ds .es-reveal { opacity: 1; transform: none; }
.es-hero-grid {
    display: grid;
    gap: 2.4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .es-hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); min-height: min(68vh, 38rem); }
}
.es-hero-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}
.es-hero-title {
    margin-top: 1.1rem;
    font-size: clamp(36px, 10vw, 52px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
    color: var(--foreground);
}
@media (min-width: 768px) {
    .es-hero-title { font-size: clamp(44px, 5vw, 76px); line-height: 0.98; }
}
.es-hero-lead {
    margin-top: 1.15rem;
    max-width: 36rem;
    font-size: 1.05rem;
    color: var(--muted);
}
.es-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.es-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.es-trust span {
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(24, 34, 53, 0.55);
    padding: 0.38rem 0.7rem;
    font-size: 0.75rem;
    color: var(--muted);
}
html.light .es-trust span { background: #fff; }
@media (max-width: 375px) {
    .es-hero-ctas a { width: 100%; justify-content: center; }
}

.es-infra-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(24, 34, 53, 0.88), rgba(15, 23, 42, 0.92));
    min-height: 18rem;
    overflow: hidden;
    padding: 1.2rem;
}
html.light .es-infra-card { background: linear-gradient(180deg, #fff, #f1f5f9); }
.es-infra-svg { width: 100%; height: auto; display: block; }
.es-pkt {
    offset-path: path("M48 210 C130 210 150 72 210 72 C270 72 300 210 372 210");
    offset-distance: 0%;
    animation: es-pkt 5.5s linear infinite;
}
.es-pkt--b {
    offset-path: path("M48 72 C130 72 150 210 210 210 C270 210 300 72 372 72");
    animation-duration: 6.4s;
    animation-delay: -2s;
}
@keyframes es-pkt {
    to { offset-distance: 100%; }
}
.es-node-lab { font-size: 9px; fill: #94a3b8; font-family: Inter, sans-serif; }

.es-sol-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) { .es-sol-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .es-sol-grid { grid-template-columns: repeat(4, 1fr); } }
.es-sol-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 1.35rem 1.3rem 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s var(--es-ease), box-shadow 0.22s var(--es-ease), border-color 0.22s var(--es-ease);
}
.es-sol-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: var(--shadow-glow);
}
.es-sol-ico {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.12);
    color: var(--primary);
    margin-bottom: 1rem;
}
.es-sol-card h3 { font-size: 1.12rem; font-weight: 700; }
.es-sol-card p { margin-top: 0.45rem; font-size: 0.875rem; color: var(--muted); flex: 1; }
.es-sol-card em { margin-top: 1rem; font-style: normal; font-size: 0.82rem; font-weight: 650; color: var(--primary); }

body.es-site.es-ds .es-plan-card,
body.es-site.es-ds .es-card-service,
body.es-site.es-ds .es-metric,
body.es-site.es-ds .es-step-card {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border) !important;
    background: var(--surface) !important;
    color: var(--foreground);
}
body.es-site.es-ds .es-plan-card:hover,
body.es-site.es-ds .es-card-service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Hide left dock; keep WhatsApp on small screens */
body.es-site.es-ds .es-dock { display: none !important; }
.es-fab-stack { z-index: 40; }
@media (min-width: 768px) {
    body.es-site.es-ds .es-fab-stack { display: none; }
}

.es-foot {
    background: var(--surface);
    border-top: 1px solid var(--border);
    color: var(--muted);
}
.es-foot-grid {
    display: grid;
    gap: 1.75rem 1.5rem;
    padding: 3rem 0 2rem;
}
@media (min-width: 900px) {
    .es-foot-grid { grid-template-columns: 1.45fr 1fr 1fr 1fr 1fr; }
}
.es-foot-col h3 {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--foreground);
}
.es-foot-col ul {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.es-foot details summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--foreground);
    list-style: none;
}
.es-foot details summary::-webkit-details-marker { display: none; }
.es-foot details ul { margin-top: 0.85rem; display: grid; gap: 0.45rem; }
.es-foot a { color: inherit; text-decoration: none; }
.es-foot a:hover { color: var(--foreground); }
@media (min-width: 900px) {
    .es-foot details { display: block; }
    .es-foot details summary { pointer-events: none; }
    .es-foot details:not([open]) ul { display: grid !important; }
}
.es-foot-base {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding: 1.15rem 0 1.6rem;
    font-size: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
    .es-pkt, .es-sol-card, .es-nav-cta, .es-btn, .es-hero-btn-solid { animation: none !important; transition: none !important; }
}

html.light body.es-site.es-ds .text-white,
html.light body.es-site.es-ds .es-section-title,
html.light body.es-site.es-ds .font-display { color: var(--foreground) !important; }
html.light body.es-site.es-ds .text-white\/70,
html.light body.es-site.es-ds .es-section-lead { color: var(--muted) !important; }

html.es-site { overflow-x: hidden; }
body.es-site.es-ds img, body.es-site.es-ds svg { max-width: 100%; }

.es-nav-search,
.es-nav-theme { display: none; }
@media (min-width: 1280px) {
    .es-nav-search { display: inline-flex; }
    .es-nav-theme { display: inline-flex; }
}
.es-nav-theme .es-theme-btn { display: grid; }

body.es-site.es-ds .es-hero-btn-solid,
body.es-site.es-ds .es-hero-btn-ghost,
body.es-site.es-ds .es-btn-primary,
body.es-site.es-ds .es-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.es-plan-ribbon {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    padding: 0.22rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(96, 165, 250, 0.18));
    color: var(--primary);
    border: 1px solid rgba(34, 211, 238, 0.28);
}
body.es-site.es-ds .es-plan-card {
    position: relative;
    padding: 1.4rem 1.3rem 1.25rem !important;
    transition: transform 0.22s var(--es-ease), box-shadow 0.22s var(--es-ease), border-color 0.22s var(--es-ease);
}
body.es-site.es-ds .es-plan-card.is-featured {
    border-color: rgba(34, 211, 238, 0.45) !important;
    box-shadow: var(--shadow-glow);
}

.es-spotlight { position: relative; overflow: hidden; }
.es-spotlight::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(420px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(34, 211, 238, 0.12), transparent 42%);
    opacity: 0;
    transition: opacity 0.25s var(--es-ease);
}
.es-spotlight:hover::after { opacity: 1; }

.es-infra-card { transition: transform 0.35s var(--es-ease); }

.es-foot-legal { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.es-foot details summary { display: flex; align-items: center; justify-content: space-between; min-height: 44px; }
.es-foot details summary::after { content: "+"; color: var(--muted); font-weight: 500; }
.es-foot details[open] summary::after { content: "–"; }
@media (min-width: 900px) {
    .es-foot details summary { min-height: 0; }
    .es-foot details summary::after { display: none; }
    .es-foot details ul { display: grid !important; }
}

body.es-site.es-ds .es-logo__wordmark {
    display: block;
}
body.es-site.es-ds .es-catalog-card,
body.es-site.es-ds .es-section-card,
body.es-site.es-ds .es-glass {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border) !important;
    background: var(--surface) !important;
    color: var(--foreground);
}

body.es-auth-page.es-ds {
    background: var(--background) !important;
    min-height: 100dvh;
}

.es-section { padding: 4.25rem 0; }
@media (max-width: 767px) {
    .es-section { padding: 2.75rem 0; }
    .es-hero-ds { padding: 1.4rem 0 2.4rem; text-align: center; }
    .es-hero-lead { margin-left: auto; margin-right: auto; }
    .es-hero-ctas, .es-trust { justify-content: center; }
    .es-hero-badge { margin-left: auto; margin-right: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .es-infra-card, .es-spotlight::after { transition: none !important; }
}

/* Cycle buttons + prices — readable in both themes */
body.es-site.es-ds .es-choice {
    position: relative;
    z-index: 2;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    color: var(--foreground);
}
body.es-site.es-ds .es-choice:hover {
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--foreground);
}
body.es-site.es-ds .es-choice.is-active {
    background: rgba(34, 211, 238, 0.14) !important;
    border-color: rgba(34, 211, 238, 0.5) !important;
    color: var(--foreground) !important;
}
body.es-site.es-ds .es-choice__meta {
    margin-top: 0.2rem;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
}
body.es-site.es-ds .es-choice.is-active .es-choice__meta {
    color: var(--foreground);
}
body.es-site.es-ds .es-price,
body.es-site.es-ds .es-software-price {
    font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 750;
    letter-spacing: -0.03em;
    color: var(--primary);
}

html.light body.es-site.es-ds .es-choice {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}
html.light body.es-site.es-ds .es-choice * {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    opacity: 1 !important;
}
html.light body.es-site.es-ds .es-choice:hover {
    background: #fff;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}
html.light body.es-site.es-ds .es-choice.is-active {
    background: #bae6fd !important;
    border-color: #0284c7 !important;
    color: #0c4a6e !important;
    -webkit-text-fill-color: #0c4a6e !important;
}
html.light body.es-site.es-ds .es-choice.is-active * {
    color: #0c4a6e !important;
    -webkit-text-fill-color: #0c4a6e !important;
    opacity: 1 !important;
}
html.light body.es-site.es-ds .es-choice__meta {
    color: #475569 !important;
}
html.light body.es-site.es-ds .es-choice.is-active .es-choice__meta {
    color: #0f766e !important;
}
html.light body.es-site.es-ds .es-price,
html.light body.es-site.es-ds .es-software-price {
    color: #0e7490 !important;
}

/* Pale dark-theme utilities must not stay washed-out on light surfaces */
html.light body.es-site.es-ds .text-white,
html.light body.es-site.es-ds .text-white\/90,
html.light body.es-site.es-ds .text-white\/80,
html.light body.es-site.es-ds .text-white\/75,
html.light body.es-site.es-ds .text-white\/70,
html.light body.es-site.es-ds .text-white\/65,
html.light body.es-site.es-ds .text-white\/60,
html.light body.es-site.es-ds .text-white\/55,
html.light body.es-site.es-ds .text-white\/50,
html.light body.es-site.es-ds .text-white\/45,
html.light body.es-site.es-ds .text-white\/40,
html.light body.es-site.es-ds .text-white\/30,
html.light body.es-site.es-ds .text-slate-300,
html.light body.es-site.es-ds .text-slate-400,
html.light body.es-site.es-ds .text-cyan-50,
html.light body.es-site.es-ds .text-cyan-50\/90,
html.light body.es-site.es-ds .text-cyan-100,
html.light body.es-site.es-ds .text-cyan-100\/80,
html.light body.es-site.es-ds .text-cyan-200,
html.light body.es-site.es-ds .text-cyan-200\/80,
html.light body.es-site.es-ds .text-cyan-300,
html.light body.es-site.es-ds .text-emerald-50,
html.light body.es-site.es-ds .text-emerald-50\/90,
html.light body.es-site.es-ds .text-emerald-50\/85,
html.light body.es-site.es-ds .text-emerald-100,
html.light body.es-site.es-ds .text-emerald-200,
html.light body.es-site.es-ds .text-emerald-300,
html.light body.es-site.es-ds .text-emerald-400,
html.light body.es-site.es-ds .text-sky-100,
html.light body.es-site.es-ds .text-sky-100\/85 {
    color: var(--muted) !important;
    -webkit-text-fill-color: currentColor;
}
html.light body.es-site.es-ds h1.text-white,
html.light body.es-site.es-ds h2.text-white,
html.light body.es-site.es-ds h3.text-white,
html.light body.es-site.es-ds .font-display.text-white,
html.light body.es-site.es-ds .font-semibold.text-white,
html.light body.es-site.es-ds .text-white.font-semibold,
html.light body.es-site.es-ds .text-white.font-medium,
html.light body.es-site.es-ds .text-emerald-300.font-display,
html.light body.es-site.es-ds .text-cyan-200 {
    color: var(--foreground) !important;
    -webkit-text-fill-color: var(--foreground);
}
html.light body.es-site.es-ds .text-emerald-300 {
    color: #0e7490 !important;
}

html.light body.es-site.es-ds .es-field,
html.light body.es-site.es-ds .es-input,
html.light body.es-site.es-ds input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
html.light body.es-site.es-ds textarea,
html.light body.es-site.es-ds select {
    background: #fff !important;
    border-color: #e2e8f0 !important;
    color: #0f172a !important;
}
html.light body.es-site.es-ds ::placeholder {
    color: #64748b !important;
    opacity: 1;
}
html.light body.es-site.es-ds .es-plan-card,
html.light body.es-site.es-ds .es-catalog-card,
html.light body.es-site.es-ds .es-metric,
html.light body.es-site.es-ds .es-step-card,
html.light body.es-site.es-ds .es-glass,
html.light body.es-site.es-ds .es-section-card {
    color: var(--foreground) !important;
}
html.light body.es-site.es-ds .es-filter-chip {
    background: #fff;
    border-color: #e2e8f0;
    color: #0f172a !important;
}
html.light body.es-site.es-ds .es-filter-chip.is-active {
    background: #ecfeff;
    border-color: #0891b2;
    color: #0e7490 !important;
}
html.light body.es-site.es-ds .es-plan-chips li {
    color: #334155;
    border-color: #e2e8f0;
    background: #f8fafc;
}
html.light body.es-site.es-ds .es-node-lab { fill: #64748b; }

.es-deal-chip {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: #f59e0b;
    color: #111827 !important;
    -webkit-text-fill-color: #111827 !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.28);
}
.es-deal-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 0.3rem;
    border-radius: 999px;
    padding: 0.12rem 0.4rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    vertical-align: middle;
    background: #f59e0b;
    color: #111827 !important;
    -webkit-text-fill-color: #111827 !important;
    white-space: nowrap;
}
.es-deal-was {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.62;
}
.es-deal-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border-radius: 0.8rem;
    padding: 0.62rem 0.75rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.5);
}
.es-deal-banner__pct {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    border-radius: 0.55rem;
    padding: 0.28rem 0.4rem;
    background: #f59e0b;
    color: #111827 !important;
    -webkit-text-fill-color: #111827 !important;
    font-size: 0.78rem;
    font-weight: 800;
}
.es-deal-banner__copy {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fbbf24;
}
.es-deal-banner__save {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.72rem;
    font-weight: 600;
}
html.light body.es-site .es-deal-banner {
    background: #fff7ed;
    border-color: #f59e0b;
}
html.light body.es-site .es-deal-banner__copy {
    color: #9a3412 !important;
    -webkit-text-fill-color: #9a3412 !important;
}


