/* ═══════════════════════════════════════════════════════════
   HABDOMUS International — Estilos principales
   Paleta derivada de la identidad de marca:
   navy #0a1f44 · deep #071835 · gold #c9a227 · gold-light #e3c567
   teal #17b8a6 · warm-white #f8f6f0
   ═══════════════════════════════════════════════════════════ */

:root {
    --navy:       #0a1f44;
    --navy-deep:  #071835;
    --navy-soft:  #12305f;
    --gold:       #c9a227;
    --gold-light: #e3c567;
    --teal:       #17b8a6;
    --white-warm: #f8f6f0;
    --gray-line:  #dcd8cc;
    --ink:        #21304e;
    --ink-soft:   #5b6a87;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body:    "Manrope", "Segoe UI", system-ui, sans-serif;
    --radius: 14px;
    --shadow: 0 12px 40px rgba(7, 24, 53, .16);
    --header-h: 76px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white-warm);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 .6em;
    letter-spacing: .01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.28rem; font-weight: 700; }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 760px; }
.narrow-wide { max-width: 880px; margin-inline: auto; }
.narrow-center { max-width: 760px; margin-inline: auto; text-align: center; }
.small { font-size: .9rem; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--gold); color: var(--navy); padding: .6rem 1rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── Eyebrows ── */
.eyebrow {
    display: inline-block;
    font-size: .8rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 .8rem;
    padding-bottom: .35rem;
    border-bottom: 2px solid var(--gold-light);
}
.eyebrow--teal { color: var(--teal); border-bottom-color: var(--teal); }

/* ── Botones ── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700; font-size: .95rem;
    text-decoration: none; text-align: center;
    padding: .82rem 1.7rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn--header { padding: .62rem 1.25rem; font-size: .85rem; white-space: nowrap; }
.btn--sm { padding: .5rem 1.05rem; font-size: .85rem; }

.btn--gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy-deep);
    box-shadow: 0 8px 24px rgba(201, 162, 39, .35);
}
.btn--gold:hover { box-shadow: 0 12px 30px rgba(201, 162, 39, .5); }

.btn--outline {
    background: transparent; color: var(--white-warm);
    border-color: rgba(248, 246, 240, .55);
}
.btn--outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--navy { background: var(--navy); color: var(--white-warm); }
.btn--navy:hover { background: var(--navy-soft); }

.btn--ghost { background: transparent; color: var(--white-warm); border-color: rgba(248,246,240,.4); }

.btn--wa {
    background: #1fae54; color: #fff; width: 100%;
    margin-bottom: .6rem;
}
.btn--wa:hover { background: #189347; }

/* ═══════════ HEADER ═══════════ */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--header-h);
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(201, 162, 39, .25);
    transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-transparent {
    background: transparent; border-bottom-color: transparent;
}
.site-header.is-scrolled {
    background: rgba(7, 24, 53, .96);
    border-bottom-color: rgba(201, 162, 39, .25);
    box-shadow: 0 6px 24px rgba(4, 12, 28, .45);
    backdrop-filter: blur(8px);
}

.header-inner {
    width: min(1400px, 100% - 2.5rem);   /* header más ancho que el contenido */
    height: 100%;
    display: flex; align-items: center; gap: 1.1rem;
}

.brand {
    display: flex; align-items: center; gap: .65rem;
    text-decoration: none; margin-right: auto;
    flex-shrink: 0;
}
.brand-iso { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.42rem; letter-spacing: .06em;
    color: var(--white-warm);
}
.brand-sub {
    font-size: .62rem; font-weight: 600;
    letter-spacing: .34em; text-transform: uppercase;
    color: var(--gold-light);
}

.main-nav ul {
    display: flex; gap: 1rem;
    list-style: none; margin: 0; padding: 0;
}
.main-nav a {
    color: var(--white-warm); text-decoration: none;
    white-space: nowrap;
    font-size: .84rem; font-weight: 600;
    padding: .35rem 0;
    border-bottom: 2px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}
.main-nav a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.nav-extra { display: none; }

.header-actions { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }

.lang-select { display: flex; gap: .15rem; }
.lang-select a {
    color: var(--white-warm); text-decoration: none;
    font-size: .75rem; font-weight: 700; padding: .3rem .45rem;
    border-radius: 6px; opacity: .7;
}
.lang-select a.is-active, .lang-select a:hover { opacity: 1; background: rgba(201,162,39,.2); }

.icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    color: var(--white-warm);
    transition: color .18s ease, background .18s ease;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn--wa:hover { color: #25d366; background: rgba(37, 211, 102, .12); }

.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
    display: block; height: 2px; width: 24px; margin-inline: auto;
    background: var(--white-warm); border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center;
    padding: calc(var(--header-h) + 3rem) 0 4.5rem;
    background: var(--navy-deep);
    color: var(--white-warm);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-map { width: 100%; height: 100%; }

.map-arcs .arc {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: arcDraw 7s ease-in-out infinite;
}
.arc-2 { animation-delay: 1.6s; }
.arc-3 { animation-delay: 3.1s; }
.arc-4 { animation-delay: 4.6s; }
@keyframes arcDraw {
    0%   { stroke-dashoffset: 700; opacity: 0; }
    12%  { opacity: 1; }
    55%  { stroke-dashoffset: 0; opacity: 1; }
    80%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
.map-nodes circle { animation: nodePulse 3.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.map-nodes circle:nth-child(2n) { animation-delay: 1.7s; }
@keyframes nodePulse {
    0%, 100% { opacity: .55; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.5); }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-kicker {
    font-size: .85rem; font-weight: 700;
    letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold-light); margin: 0 0 1rem;
}
.hero h1 {
    color: var(--white-warm);
    text-shadow: 0 4px 30px rgba(4, 12, 28, .5);
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 720px; color: #dfe6f2; }
.hero-extra { font-size: .95rem; color: #aebbd4; max-width: 640px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero-pills {
    display: flex; flex-wrap: wrap; gap: .55rem;
    list-style: none; margin: 2.2rem 0 0; padding: 0;
}
.hero-pills li {
    font-size: .78rem; font-weight: 600; letter-spacing: .04em;
    color: var(--gold-light);
    padding: .42rem .95rem;
    border: 1px solid rgba(201, 162, 39, .45);
    border-radius: 999px;
    background: rgba(7, 24, 53, .45);
}

/* ═══════════ SECCIONES ═══════════ */
.section { padding: 5.5rem 0; }
.section--light { background: var(--white-warm); color: var(--ink); }
.section--light h2 { color: var(--navy); }
.section--navy { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #dfe6f2; }
.section--navy h2 { color: var(--white-warm); }
.section--navy h3 { color: var(--gold-light); }

.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.2rem; margin-top: 1rem;
}

.mvv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem; margin-top: 3rem;
}
.mvv-card {
    background: #fff;
    border-top: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow);
}
.mvv-card:nth-child(2) { border-top-color: var(--teal); }
.mvv-card:nth-child(3) { border-top-color: var(--navy); }
.mvv-card h3 { color: var(--navy); }

.values-list {
    display: flex; flex-wrap: wrap; gap: .4rem;
    list-style: none; margin: 0; padding: 0;
}
.values-list li {
    font-size: .8rem; font-weight: 600;
    color: var(--navy);
    background: rgba(23, 184, 166, .12);
    border: 1px solid rgba(23, 184, 166, .3);
    padding: .28rem .7rem; border-radius: 999px;
}

.grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem; margin-top: 2.6rem;
}
.grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem; margin-top: 2.6rem;
}

.point-card {
    background: rgba(248, 246, 240, .05);
    border: 1px solid rgba(201, 162, 39, .28);
    border-radius: var(--radius);
    padding: 1.5rem 1.3rem;
    transition: border-color .2s ease, transform .2s ease;
}
.point-card:hover { border-color: var(--gold-light); transform: translateY(-4px); }
.point-card h3 { font-size: 1.08rem; }
.point-card p { font-size: .9rem; margin: 0; color: #b9c5da; }

.tech-card {
    background: #fff;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius);
    padding: 1.7rem 1.4rem;
    box-shadow: 0 6px 20px rgba(7, 24, 53, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}
.tech-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tech-card h3 { color: var(--navy); font-size: 1.1rem; }
.tech-card p { font-size: .9rem; margin: 0; color: var(--ink-soft); }
.tech-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 62px; height: 62px; margin-bottom: 1rem;
    border-radius: 16px;
    color: var(--gold);
    background: linear-gradient(150deg, rgba(201,162,39,.14), rgba(23,184,166,.12));
    border: 1px solid rgba(201, 162, 39, .35);
}
.tech-icon svg { width: 36px; height: 36px; }

/* ── Split (Franquicia / Master) ── */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }
.split--reverse { grid-template-columns: .95fr 1.05fr; }
.split--reverse .split-text { order: 2; }
.split-double { display: grid; gap: 1.3rem; }

.split-panel {
    background: rgba(248, 246, 240, .06);
    border: 1px solid rgba(201, 162, 39, .3);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
}
.split-panel--light {
    background: #fff;
    border-color: var(--gray-line);
    box-shadow: 0 6px 20px rgba(7, 24, 53, .07);
}
.split-panel--light h3 { color: var(--navy); }

.check-list {
    list-style: none; margin: 0; padding: 0;
    columns: 1; font-size: .92rem;
}
.check-list li {
    padding: .3rem 0 .3rem 1.6rem;
    position: relative;
    break-inside: avoid;
}
.check-list li::before {
    content: "";
    position: absolute; left: 0; top: .62rem;
    width: .95rem; height: .5rem;
    border-left: 2.5px solid var(--teal);
    border-bottom: 2.5px solid var(--teal);
    transform: rotate(-45deg);
}

.notice {
    font-size: .85rem;
    color: var(--ink-soft);
    border-left: 3px solid var(--gold);
    padding: .6rem 1rem;
    background: rgba(201, 162, 39, .08);
    border-radius: 0 8px 8px 0;
}
.section--navy .notice { color: #b9c5da; }

/* ── Expansión ── */
.market-card {
    background: rgba(248, 246, 240, .05);
    border: 1px solid rgba(23, 184, 166, .3);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    text-align: center;
}
.market-card h3 { margin-bottom: .2rem; }
.market-domain { font-size: .88rem; color: var(--gold-light); margin: .1rem 0 .8rem; }
.market-status {
    display: inline-block;
    font-size: .75rem; font-weight: 700; letter-spacing: .05em;
    color: var(--teal);
    border: 1px solid rgba(23, 184, 166, .5);
    padding: .3rem .85rem; border-radius: 999px;
}

/* ── Beneficios ── */
.benefit-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: .9rem;
    list-style: none; margin: 2.4rem 0 0; padding: 0;
}
.benefit-grid li {
    background: #fff;
    border: 1px solid var(--gray-line);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: .95rem 1.1rem;
    font-size: .92rem; font-weight: 600;
    color: var(--navy);
}
.benefit-grid li:nth-child(2n) { border-left-color: var(--teal); }

/* ── Experiencia ── */
.section--trust {
    background:
        radial-gradient(ellipse at 50% -20%, rgba(201, 162, 39, .18), transparent 55%),
        var(--navy-deep);
    color: #dfe6f2;
    text-align: center;
}
.section--trust h2 { color: var(--gold-light); }
.section--trust p { font-size: 1.05rem; }

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(120deg, var(--navy-soft), var(--navy-deep) 70%);
    border-block: 1px solid rgba(201, 162, 39, .35);
    color: #dfe6f2;
    padding: 4.5rem 0;
    text-align: center;
}
.cta-band h2 { color: var(--white-warm); }
.cta-band .hero-actions { justify-content: center; margin-top: 1.6rem; }

/* ── FAQ ── */
.faq-list { margin-top: 2.2rem; }
.faq-item {
    background: #fff;
    border: 1px solid var(--gray-line);
    border-radius: 12px;
    margin-bottom: .8rem;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700; font-size: 1rem;
    color: var(--navy);
    padding: 1.05rem 3rem 1.05rem 1.3rem;
    position: relative;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    position: absolute; right: 1.3rem; top: 50%;
    width: .65rem; height: .65rem;
    border-right: 2.5px solid var(--gold);
    border-bottom: 2.5px solid var(--gold);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item[open] summary { color: var(--teal); }
.faq-item p { margin: 0; padding: 0 1.3rem 1.15rem; font-size: .95rem; color: var(--ink-soft); }

/* ── Contacto ── */
.contact-wrap {
    display: grid; grid-template-columns: 1.6fr .8fr;
    gap: 2.2rem; margin-top: 2.4rem;
}
.contact-form {
    background: rgba(248, 246, 240, .05);
    border: 1px solid rgba(201, 162, 39, .3);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
}
.form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
}
.form-grid label, .check-inline { display: block; }
.form-grid label span {
    display: block; font-size: .8rem; font-weight: 600;
    letter-spacing: .03em; color: var(--gold-light);
    margin-bottom: .3rem;
}
.form-grid .fw { grid-column: 1 / -1; }

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body); font-size: .95rem;
    color: var(--white-warm);
    background: rgba(7, 24, 53, .6);
    border: 1px solid rgba(248, 246, 240, .25);
    border-radius: 9px;
    padding: .68rem .85rem;
    transition: border-color .18s ease;
}
.contact-form select option { color: var(--ink); background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(23, 184, 166, .2);
}
.contact-form input.is-invalid, .contact-form select.is-invalid {
    border-color: #e0655f;
}
.contact-form textarea { resize: vertical; }

.check-inline {
    display: flex; gap: .6rem; align-items: flex-start;
    font-size: .87rem; margin-top: 1rem;
    color: #c8d2e4;
}
.check-inline input { margin-top: .25rem; accent-color: var(--gold); }
.check-inline a { color: var(--gold-light); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; margin: 0; }

.form-feedback { min-height: 1.4rem; margin: 1rem 0 .6rem; font-size: .92rem; font-weight: 600; }
.form-feedback.ok { color: var(--teal); }
.form-feedback.err { color: #ff9a94; }

.contact-side { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-card {
    background: rgba(248, 246, 240, .05);
    border: 1px solid rgba(23, 184, 166, .3);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
}
.contact-card h3 { font-size: 1.05rem; }
.contact-card a { color: var(--gold-light); }
.contact-card .btn--wa { color: #fff; }

/* ── Redes ── */
.social-links {
    display: flex; gap: .6rem;
    list-style: none; margin: 1rem 0 0; padding: 0;
}
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, .4);
    transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.social-links a:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.social-links svg { width: 18px; height: 18px; }

/* ═══════════ FOOTER ═══════════ */
.site-footer {
    background: var(--navy-deep);
    color: #b9c5da;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 162, 39, .3);
    font-size: .92rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.4rem;
}
.footer-logo-plate {
    display: inline-block;
    background: var(--white-warm);
    border-radius: 10px;
    padding: .7rem 1rem;
    margin-bottom: 1rem;
}
.footer-col h3 {
    font-family: var(--font-body);
    font-size: .8rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-light);
}
.footer-h-space { margin-top: 1.6rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: #b9c5da; text-decoration: none; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    margin-top: 3rem; padding-top: 1.6rem;
    border-top: 1px solid rgba(248, 246, 240, .12);
    text-align: center;
}
.footer-copy { font-weight: 600; color: var(--white-warm); }
.footer-note { font-size: .82rem; }
.footer-legal-notice { font-size: .74rem; color: #7d8aa5; max-width: 900px; margin-inline: auto; }

/* ── WhatsApp flotante ── */
.wa-float {
    position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
    display: inline-flex; align-items: center; justify-content: center;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #1fae54; color: #fff;
    box-shadow: 0 10px 30px rgba(31, 174, 84, .45);
    transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ── Cookies ── */
.cookie-banner {
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120;
    display: flex; justify-content: center;
}
.cookie-inner {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 1.2rem 1.4rem;
    max-width: 760px;
    font-size: .88rem;
}
.cookie-inner p { margin: 0 0 .8rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-actions .btn--ghost { color: var(--navy); border-color: var(--gray-line); }
.cookie-config { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: .9rem; font-weight: 600; }
.cookie-config input { accent-color: var(--teal); }

/* ── Páginas legales ── */
.legal-page h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 2.8rem); }
.legal-page h2 { font-size: 1.25rem; color: var(--navy); margin-top: 2rem; }
.legal-page p { color: var(--ink-soft); }
.legal-page a { color: var(--teal); }

/* ── Animaciones de aparición ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .map-arcs .arc, .map-nodes circle { animation: none; }
    .btn, .point-card, .tech-card, .wa-float { transition: none; }
}
