:root {
    --violet: #7C3AED;
    --violet-soft: #8B5CF6;
    --orange: #F97316;
    --dark: #1E1B4B;
    --dark-2: #15123A;
    --light: #FAFAFA;
    --ink: #0F0D2E;
    --muted: #6B6A86;
    --line: rgba(15, 13, 46, 0.10);
    --line-dark: rgba(255, 255, 255, 0.12);
    --max: 1280px;
    --pad-x: clamp(20px, 5vw, 80px);
    --section-y: clamp(80px, 11vw, 160px);
    --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    color: var(--ink);
    background: var(--light);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }

  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  /* ---------- Type ---------- */
  .eyebrow {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    line-height: 1;
  }
  .eyebrow.lg {
    font-size: clamp(16px, 1.6vw, 22px);
    letter-spacing: 0.22em;
  }
  .eyebrow.dark { color: var(--orange); }
  .eyebrow.muted { color: var(--muted); }

  .display {
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-wrap: balance;
  }

  .h-hero { font-size: clamp(36px, 6.2vw, 84px); }
  .h-1 { font-size: clamp(38px, 6.2vw, 84px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; }
  .h-xl { font-size: clamp(48px, 8vw, 108px); font-weight: 300; letter-spacing: -0.035em; line-height: 1.0; text-wrap: balance; }
  .h-2 { font-size: clamp(26px, 3.6vw, 44px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.1; }
  .lead  { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--muted); max-width: 60ch; }
  .lead.dark { color: rgba(255,255,255,0.72); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: 999px;
    transition: transform 120ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, opacity 200ms ease;
    line-height: 1;
    white-space: nowrap;
  }
  .btn-primary { background: var(--violet); color: #fff; }
  .btn-primary:hover { background: #6B25E0; }
  .btn-outline-light { border: 1px solid rgba(255,255,255,0.28); color: #fff; }
  .btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
  .btn-outline-dark { border: 1px solid rgba(15,13,46,0.18); color: var(--ink); }
  .btn-outline-dark:hover { border-color: var(--ink); }
  .btn-ghost { color: var(--ink); padding: 10px 0; }
  .btn-ghost:hover { color: var(--violet); }
  .btn .arrow { transition: transform 200ms ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- Header ---------- */
  .header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 250, 250, 0.78);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, background 200ms ease;
  }
  .header.scrolled { border-bottom-color: var(--line); }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 104px;
  }
  @media (max-width: 600px) { .header-inner { height: 84px; } }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand .wordmark {
    font-family: var(--font);
    font-weight: 300;
    font-size: clamp(34px, 3vw, 46px);
    letter-spacing: -0.045em;
    line-height: 1;
    display: inline-block;
    padding-bottom: 2px;
  }
  .brand .wordmark .pri { color: var(--violet); }
  .brand .wordmark .ac { color: var(--orange); }
  .brand .wordmark.dark .pri { color: #fff; }
  .brand .wordmark.dark .ac { color: var(--orange); }
  @media (max-width: 600px) { .brand .wordmark { font-size: 30px; } }
  .nav {
    display: flex; align-items: center; gap: 36px;
  }
  .nav a {
    font-size: 14px; color: var(--ink);
    position: relative;
    padding: 6px 0;
  }
  .nav a:hover { color: var(--violet); }
  .nav a.active { color: var(--violet); }
  .nav a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1px; background: var(--violet);
  }
  .header-cta { display: flex; align-items: center; gap: 18px; }
  .menu-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 8px;
  }
  .menu-toggle span {
    width: 18px; height: 1.5px; background: var(--ink);
    position: relative;
  }
  .menu-toggle span::before, .menu-toggle span::after {
    content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  }
  .menu-toggle span::before { top: -6px; }
  .menu-toggle span::after { top: 6px; }

  @media (max-width: 900px) {
    .nav, .header-cta .btn { display: none; }
    .menu-toggle { display: inline-flex; }
  }

  /* ---------- Hero ---------- */
  .hero {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: clamp(80px, 12vw, 160px);
    padding-bottom: clamp(80px, 12vw, 160px);
  }
  .hero::before, .hero::after {
    content: ""; position: absolute; pointer-events: none;
    width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
  }
  .hero::before {
    background: var(--violet);
    top: -20%; right: -15%;
  }
  .hero::after {
    background: var(--orange);
    bottom: -25%; left: -15%;
    opacity: 0.12;
  }
  .hero-inner { position: relative; z-index: 1; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
  }
  .hero-eyebrow { margin-bottom: 40px; display: inline-block; }
  .hero-title {
    color: #fff;
    margin: 0 0 48px 0;
    max-width: 22ch;
    font-weight: 300;
  }
  .hero-title .accent { color: var(--violet-soft); }
  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: clamp(28px, 4vw, 40px);
  }
  .hero-tagline {
    font-family: var(--mono);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex; flex-wrap: wrap; gap: 18px;
    align-items: center;
    margin-top: 8px;
  }
  .hero-tagline .dot { color: rgba(255,255,255,0.35); }
  .hero-tagline .s1 { color: var(--violet-soft); }
  .hero-tagline .s2 { color: var(--orange); }
  .hero-tagline .s3 { color: var(--violet-soft); }
  .hero-meta {
    display: flex; flex-direction: column; gap: 28px;
    padding-bottom: 6px;
  }
  .hero-meta .meta-row {
    display: flex; gap: 16px; align-items: flex-start;
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
  }
  .hero-meta .meta-key {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    flex: 0 0 90px;
    padding-top: 2px;
  }
  .hero-meta .meta-val {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
  }

  .section-violet { background: var(--violet); color: #fff; padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; overflow: hidden; }
  .section-violet p { color: rgba(255,255,255,0.88); }
  /* ---------- Section base ---------- */
  section { position: relative; }
  .section-light { background: var(--light); padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .section-dark { background: var(--dark); color: #fff; padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .section-dark .lead, .section-dark p { color: rgba(255,255,255,0.72); }

  /* ---------- Contexto: left-aligned ---------- */
  .ctx-left-block {
    max-width: 980px;
    text-align: left;
  }
  .ctx-left-block .eyebrow { display: inline-block; margin-bottom: 16px; }
  .ctx-left-block .lead {
    margin: 36px 0 0;
    max-width: 56ch;
    font-size: clamp(18px, 1.6vw, 22px);
  }
  .ctx-left-block .ctx-divider {
    width: 64px; height: 1px;
    background: var(--violet);
    margin: 56px 0 36px;
  }
  .ctx-left-block .ctx-callout {
    margin: 0;
    padding: 0;
    border: 0;
    max-width: 34ch;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 300;
    letter-spacing: -0.022em;
    line-height: 1.25;
    color: var(--ink);
    text-wrap: balance;
  }
  .ctx-left-block .ctx-callout em { font-style: normal; color: var(--violet); }

  /* ---------- Qué es Entropyx: editorial ---------- */
  .editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 4vw, 56px);
  }
  .editorial .lede {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }
  @media (min-width: 900px) {
    .editorial .lede { grid-template-columns: 2fr 1fr; }
  }
  .editorial .body {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
    padding-top: 8px;
  }
  @media (min-width: 900px) {
    .editorial .body { grid-template-columns: 1fr 2fr; }
  }
  .editorial-meta {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.8;
  }
  .editorial-meta .label { color: var(--ink); display: block; font-weight: 500; }
  .editorial p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: #2C2A4A; max-width: 60ch; }
  .editorial .callout {
    margin-top: 16px;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    letter-spacing: -0.022em;
    line-height: 1.25;
    color: var(--ink);
    text-wrap: balance;
  }
  .editorial .callout::before {
    content: "“";
    display: block;
    font-family: var(--font);
    color: var(--orange);
    font-size: 1em;
    line-height: 0.4;
    margin-bottom: 8px;
  }

  /* ---------- Qué es Entropyx: bloque oscuro ---------- */
  .qe-wrap { max-width: 1100px; }
  .qe-eyebrow {
    font-family: var(--mono);
    font-size: clamp(16px, 1.6vw, 22px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: clamp(28px, 3vw, 40px);
    display: inline-block;
  }
  .qe-body {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(28px, 3.5vw, 48px);
    align-items: start;
  }
  @media (min-width: 900px) {
    .qe-body { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
  }
  .qe-body p {
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
    margin: 0;
    max-width: 42ch;
    font-weight: 300;
    letter-spacing: -0.01em;
  }
  .qe-final {
    grid-column: 1 / -1;
    margin-top: clamp(24px, 3vw, 40px);
    padding-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid rgba(255,255,255,0.22);
    font-size: clamp(32px, 4.2vw, 64px) !important;
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    max-width: 26ch !important;
    text-wrap: balance;
  }
  .qe-final em { font-style: normal; color: var(--orange); }

  .approach-footnote {
    margin-top: clamp(40px, 5vw, 64px);
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--muted);
    max-width: 60ch;
    line-height: 1.5;
  }
  /* ---------- Enfoque: 3 cards distintas ---------- */
  .approach-head {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(28px, 3vw, 40px);
    align-items: end;
    margin-bottom: clamp(48px, 6vw, 72px);
  }
  @media (min-width: 900px) {
    .approach-head { grid-template-columns: 1fr 1fr; }
    .approach-head.approach-head-single { grid-template-columns: 1fr; }
  }
  .solutions-head.solutions-head-single { grid-template-columns: 1fr !important; }
  .approach-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 20px;
  }
  @media (min-width: 760px) {
    .approach-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  }
  .a-card {
    padding: 36px 32px 36px;
    border-radius: 20px;
    min-height: 360px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    transition: transform 240ms ease;
  }
  .a-card:hover { transform: translateY(-3px); }
  .a-card .tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .a-card .a-title {
    font-size: clamp(28px, 2.6vw, 36px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 12px 0 0 0;
  }
  .a-card .a-desc {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 14px;
    max-width: 26ch;
  }
  .a-card .a-meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 24px;
  }
  .a-card-1 {
    background: var(--light);
    border: 1px solid var(--line);
    color: var(--ink);
  }
  .a-card-1 .tag { color: var(--muted); }
  .a-card-1 .a-desc { color: var(--muted); }
  .a-card-2 {
    background: var(--violet);
    color: #fff;
  }
  .a-card-2 .tag { color: rgba(255,255,255,0.7); }
  .a-card-2 .a-desc { color: rgba(255,255,255,0.85); }
  .a-card-3 {
    background: var(--dark);
    color: #fff;
  }
  .a-card-3 .tag { color: rgba(255,255,255,0.55); }
  .a-card-3 .a-title { color: var(--orange); }
  .a-card-3 .a-desc { color: rgba(255,255,255,0.75); }

  .a-card .glyph {
    position: absolute;
    right: 18px; top: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.45;
  }

  /* ---------- Soluciones: acordeón editorial ---------- */
  .solutions-head { margin-bottom: clamp(40px, 5vw, 72px); }
  .solutions-list {
    list-style: none; padding: 0; margin: 0;
    border-top: 1px solid var(--line);
  }
  .sol-row {
    border-bottom: 1px solid var(--line);
  }
  .sol-row summary { list-style: none; cursor: pointer; }
  .sol-row summary::-webkit-details-marker { display: none; }
  .sol-summary {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1.1fr) 48px;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    transition: padding 240ms ease;
  }
  .sol-row:hover .sol-summary { padding-left: 8px; }
  .sol-num {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--orange);
    font-weight: 500;
  }
  .sol-title {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--ink);
    transition: color 200ms ease;
    line-height: 1.15;
  }
  .sol-row:hover .sol-title,
  .sol-row[open] .sol-title { color: var(--violet); }
  .sol-phrase {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.45;
    max-width: 42ch;
  }
  .sol-toggle {
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    position: relative;
    transition: border-color 200ms ease, background 200ms ease;
    justify-self: end;
  }
  .sol-toggle span {
    position: absolute;
    background: var(--ink);
    transition: transform 220ms ease, background 220ms ease;
  }
  .sol-toggle span:nth-child(1) { width: 14px; height: 1.5px; }
  .sol-toggle span:nth-child(2) { width: 1.5px; height: 14px; }
  .sol-row[open] .sol-toggle { background: var(--violet); border-color: var(--violet); }
  .sol-row[open] .sol-toggle span { background: #fff; }
  .sol-row[open] .sol-toggle span:nth-child(2) { transform: scaleY(0); }

  .sol-panel {
    padding: 8px 0 48px 80px;
    display: grid; grid-template-columns: 1fr;
    gap: 36px;
    max-width: 1000px;
    animation: solOpen 280ms ease both;
  }
  @keyframes solOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
  .sol-desc {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: #2C2A4A;
    max-width: 70ch;
    margin: 0;
  }
  .sol-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 36px;
  }
  @media (min-width: 900px) {
    .sol-grid { grid-template-columns: 1.6fr 1fr; gap: 56px; }
  }
  .sol-col-title {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin: 0 0 18px 0;
  }
  .sol-list, .sol-when {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr;
    gap: 8px 28px;
  }
  @media (min-width: 700px) {
    .sol-list { grid-template-columns: 1fr 1fr; }
  }
  .sol-list li, .sol-when li {
    font-size: 14.5px;
    line-height: 1.55;
    color: #3A3858;
    padding-left: 18px;
    position: relative;
  }
  .sol-list li::before {
    content: "—";
    position: absolute; left: 0; top: 0;
    color: var(--violet); font-weight: 500;
  }
  .sol-when li {
    padding-left: 22px;
    margin-bottom: 4px;
    color: var(--ink);
  }
  .sol-when li::before {
    content: "›";
    position: absolute; left: 4px; top: -1px;
    color: var(--orange); font-weight: 600;
  }
  .sol-sub { margin-bottom: 28px; }
  .sol-sub:last-child { margin-bottom: 0; }
  .sol-sub-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 12px 0;
  }

  .solutions-footnote {
    margin-top: clamp(36px, 4.5vw, 56px);
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--muted);
    line-height: 1.5;
    max-width: 64ch;
  }
  .solutions-cta { margin-top: clamp(32px, 4vw, 48px); }

  @media (max-width: 720px) {
    .sol-summary {
      grid-template-columns: 56px 1fr 40px;
      grid-template-areas: "num title toggle" "num phrase phrase";
      gap: 8px 14px;
      padding: 24px 0;
    }
    .sol-num { grid-area: num; align-self: start; padding-top: 4px; }
    .sol-title { grid-area: title; }
    .sol-phrase { grid-area: phrase; }
    .sol-toggle { grid-area: toggle; }
    .sol-panel { padding: 4px 0 36px 56px; }
    .sol-list { grid-template-columns: 1fr; }
  }

  /* ---------- Cómo trabajamos: timeline ---------- */
  .how-head { text-align: left; margin-bottom: clamp(56px, 7vw, 96px); }
  .how-head .eyebrow { display: inline-block; margin-bottom: 24px; }
  .how-title {
    font-family: var(--font);
    font-weight: 300;
    letter-spacing: -0.035em;
    font-size: clamp(36px, 7vw, 92px);
    line-height: 1.02;
    display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 0.25em 0.4em;
    color: #fff;
    margin: 0;
  }
  .how-title .seg { display: inline-flex; align-items: center; gap: 0.45em; }
  .how-title .dot { color: rgba(255,255,255,0.25); font-weight: 300; }
  .how-title .a { color: var(--violet-soft); }
  .how-title .b { color: #fff; }
  .how-title .c { color: var(--orange); }
  .how-steps {
    display: grid; grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: clamp(56px, 7vw, 88px);
    position: relative;
  }
  @media (min-width: 820px) {
    .how-steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .how-steps::before {
      content: ""; position: absolute;
      top: 22px; left: 5%; right: 5%;
      height: 1px; background: var(--line-dark);
      z-index: 0;
    }
  }
  .how-step {
    padding-right: clamp(0px, 3vw, 48px);
    position: relative; z-index: 1;
  }
  .how-step .marker {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
  }
  .how-step .marker-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 0 0 8px var(--dark);
  }
  .how-step:nth-child(1) .marker-dot { background: var(--violet); border-color: var(--violet); }
  .how-step:nth-child(2) .marker-dot { background: #fff; border-color: #fff; }
  .how-step:nth-child(3) .marker-dot { background: var(--orange); border-color: var(--orange); }
  .how-step .step-num {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
  }
  .how-step h3 {
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 10px 0;
  }
  .how-step p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    max-width: 28ch;
    margin: 0;
  }
  .how-callout {
    border-top: 1px solid var(--line-dark);
    padding-top: clamp(40px, 5vw, 56px);
    max-width: 36ch;
    margin: 0;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #fff;
    text-wrap: balance;
  }
  .how-callout em { font-style: normal; color: var(--violet-soft); }

  /* ---------- Valores: grilla 3x2 minimal ---------- */
  .val-head { margin-bottom: clamp(56px, 7vw, 88px); max-width: 60ch; }
  .val-grid {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(40px, 4vw, 56px) clamp(32px, 4vw, 64px);
  }
  @media (min-width: 700px) {
    .val-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 1024px) {
    .val-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .val-item { display: flex; flex-direction: column; gap: 12px; max-width: 38ch; }
  .val-num {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .val-title {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 300;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 0;
    line-height: 1.15;
  }
  .val-desc {
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
  }
  /* ---------- Diferenciales: vertical list ---------- */
  .diff-head { margin-bottom: clamp(48px, 6vw, 72px); max-width: 24ch; }
  .diff-list { display: flex; flex-direction: column; }
  .diff-item {
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
  }
  .diff-item:last-child { border-bottom: 1px solid var(--line); }
  .diff-num {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--orange);
    font-weight: 500;
  }
  .diff-title {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .diff-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 50ch;
  }
  @media (max-width: 760px) {
    .diff-item { grid-template-columns: 60px 1fr; gap: 14px 16px; padding: 24px 0; }
    .diff-desc { grid-column: 2; }
  }

  /* ---------- CTA Final ---------- */
  .cta-final {
    text-align: left;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: ""; position: absolute; inset: auto -20% -40% auto;
    width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
    border-radius: 50%;
    background: var(--violet);
    filter: blur(140px);
    opacity: 0.18;
    pointer-events: none;
  }
  .cta-final::after {
    content: ""; position: absolute; inset: -30% auto auto -20%;
    width: 40vw; height: 40vw; max-width: 600px; max-height: 600px;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(140px);
    opacity: 0.10;
    pointer-events: none;
  }
  .cta-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
  }
  @media (min-width: 900px) {
    .cta-inner { grid-template-columns: 1.6fr 1fr; gap: 80px; }
  }
  .cta-title {
    color: #fff;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(36px, 5.6vw, 72px);
    max-width: 16ch;
    margin: 0;
    text-wrap: balance;
  }
  .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

  /* ---------- Footer ---------- */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: clamp(64px, 7vw, 96px);
    padding-bottom: 32px;
  }
  .foot-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: clamp(56px, 7vw, 80px);
  }
  @media (min-width: 760px) {
    .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
  }
  .foot-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin: 0 0 20px 0;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color 160ms ease; }
  .foot-col a:hover { color: #fff; }
  .foot-brand-tag {
    color: rgba(255,255,255,0.6);
    font-size: 14px; line-height: 1.55;
    max-width: 32ch;
    margin-top: 18px;
  }
  .foot-brand img { height: 28px; width: auto; margin-bottom: 6px; }
  .foot-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .foot-bottom .tagline-mini { display: flex; gap: 10px; align-items: center; }
  .foot-bottom .tagline-mini .s1 { color: var(--violet-soft); }
  .foot-bottom .tagline-mini .s2 { color: var(--orange); }
  .foot-bottom .tagline-mini .dot { color: rgba(255,255,255,0.3); }

  /* ---------- WhatsApp floating ---------- */
  .wa-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 60;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .wa-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5), 0 6px 12px rgba(0,0,0,0.18); }
  .wa-fab svg { width: 28px; height: 28px; }
  @media (max-width: 600px) {
    .wa-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .wa-fab svg { width: 26px; height: 26px; }
  }

  /* utility */
  .stack { display: flex; flex-direction: column; }
  .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }

/* ============ INNER PAGES ============ */

/* Inner hero (smaller than home hero) */
.inner-hero {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(80px, 12vw, 160px);
}
.inner-hero::before, .inner-hero::after {
  content: ""; position: absolute; pointer-events: none;
  width: 50vw; height: 50vw; max-width: 800px; max-height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
}
.inner-hero::before { background: var(--violet); top: -25%; right: -15%; }
.inner-hero::after { background: var(--orange); bottom: -30%; left: -15%; opacity: 0.10; }
.inner-hero-inner { position: relative; z-index: 1; max-width: 980px; }
.inner-hero .eyebrow { display: inline-block; margin-bottom: 24px; }
.inner-hero h1 {
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(44px, 7.4vw, 100px);
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
.inner-hero .lead {
  color: rgba(255,255,255,0.78);
  margin-top: 36px;
  max-width: 64ch;
  font-size: clamp(18px, 1.6vw, 22px);
}
.inner-hero .hero-callout {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid var(--line-dark);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  max-width: 50ch;
  text-wrap: balance;
}
.inner-hero .hero-callout em { font-style: normal; color: var(--violet-soft); }

/* Sticky internal nav (Soluciones page) */
.sol-nav-wrap {
  background: var(--light);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 104px;
  z-index: 30;
}
@media (max-width: 600px) { .sol-nav-wrap { top: 84px; } }
.sol-nav {
  display: flex; align-items: center; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 0;
}
.sol-nav::-webkit-scrollbar { display: none; }
.sol-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
}
.sol-nav a:hover { color: var(--ink); border-color: var(--line); }
.sol-nav a.active { color: var(--violet); border-color: var(--violet); background: rgba(124,58,237,0.06); }
.sol-nav a .n { color: var(--orange); }

/* Solution full block (Soluciones page) */
.sol-block {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  scroll-margin-top: 180px;
}
.sol-block.alt { background: #F4F2ED; }
.sol-block .container { position: relative; }
.sol-block .bg-num {
  position: absolute;
  top: -8px; right: -8px;
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(120px, 20vw, 280px);
  line-height: 0.85;
  color: rgba(15,13,46,0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sol-block.alt .bg-num { color: rgba(15,13,46,0.06); }
.sol-block-inner { position: relative; z-index: 1; max-width: 1100px; }
.sol-block .sb-eyebrow {
  font-family: var(--mono);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 20px;
}
.sol-block h2 {
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(36px, 5.4vw, 72px);
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
  text-wrap: balance;
}
.sol-block .sb-phrase {
  margin-top: 24px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--violet);
  max-width: 38ch;
  line-height: 1.3;
}
.sol-block .sb-desc {
  margin-top: clamp(40px, 5vw, 56px);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: #2C2A4A;
  max-width: 70ch;
}
.sol-block .sb-grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 4vw, 64px);
}
@media (min-width: 900px) {
  .sol-block .sb-grid { grid-template-columns: 1.5fr 1fr; gap: clamp(48px, 6vw, 96px); }
}
.sol-block .sb-col-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin: 0 0 20px 0;
}
.sol-block .sb-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 8px 28px;
}
@media (min-width: 700px) {
  .sol-block .sb-list { grid-template-columns: 1fr 1fr; }
}
.sol-block .sb-list li {
  font-size: 15px;
  line-height: 1.5;
  color: #3A3858;
  padding-left: 18px;
  position: relative;
}
.sol-block .sb-list li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--violet); font-weight: 500;
}
.sol-block .sb-sub { margin-bottom: 32px; }
.sol-block .sb-sub:last-child { margin-bottom: 0; }
.sol-block .sb-sub-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px 0;
}
.sol-block .sb-when {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.sol-block .sb-when li {
  padding: 16px 18px;
  background: rgba(124,58,237,0.04);
  border-left: 2px solid var(--violet);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  border-radius: 0 8px 8px 0;
}
.sol-block.alt .sb-when li { background: rgba(124,58,237,0.07); }

/* Nosotros — Forma de trabajar */
.work-list { border-top: 1px solid var(--line); }
.work-item {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.work-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; color: var(--orange); font-weight: 500; }
.work-title { font-size: clamp(24px, 2.4vw, 32px); font-weight: 300; letter-spacing: -0.022em; color: var(--ink); line-height: 1.15; }
.work-desc { font-size: 16px; color: var(--muted); line-height: 1.55; max-width: 56ch; }
@media (max-width: 760px) {
  .work-item { grid-template-columns: 60px 1fr; gap: 14px 16px; padding: 28px 0; }
  .work-desc { grid-column: 2; }
}

/* Contacto — form + channels */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: 1.5fr 1fr; gap: clamp(56px, 6vw, 96px); }
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field label .req { color: var(--orange); }
.field input,
.field textarea,
.field select {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  outline: none;
  transition: border-color 200ms ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.field select { padding-right: 24px; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 14px) center, calc(100% - 8px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--violet); }
.field input::placeholder, .field textarea::placeholder { color: rgba(15,13,46,0.35); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
@media (max-width: 640px) { .radio-group { grid-template-columns: 1fr; } }
.radio-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
  font-size: 15px;
  color: var(--ink);
}
.radio-opt:hover { border-color: var(--ink); }
.radio-opt input { position: absolute; opacity: 0; pointer-events: none; }
.radio-opt .dot-out {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: border-color 180ms ease;
}
.radio-opt .dot-out::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--violet); border-radius: 50%;
  transform: scale(0); transition: transform 180ms ease;
}
.radio-opt input:checked + .dot-out { border-color: var(--violet); }
.radio-opt input:checked + .dot-out::after { transform: scale(1); }
.radio-opt:has(input:checked) { border-color: var(--violet); background: rgba(124,58,237,0.04); }
.btn-submit { align-self: flex-start; margin-top: 8px; padding: 16px 28px; font-size: 16px; }
.form-success {
  display: none;
  padding: 24px;
  background: rgba(124,58,237,0.06);
  border-left: 2px solid var(--violet);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.form-success.active { display: block; }

/* Contact channels */
.channels {
  background: #F4F2ED;
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  gap: 0;
}
.channels h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 24px 0;
}
.channel {
  display: flex; flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.channel:last-child { border-bottom: 0; padding-bottom: 0; }
.channel.featured {
  margin: 0 -16px 8px;
  padding: 24px 16px;
  background: var(--violet);
  border-radius: 14px;
  border-bottom: 0;
  color: #fff;
}
.channel.featured .ch-label { color: rgba(255,255,255,0.7); }
.channel.featured .ch-value { color: #fff; }
.channel.featured .ch-cta { color: #fff; }
.channel.featured .ch-cta:hover { color: var(--orange); }
.ch-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.ch-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(15,13,46,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.channel.featured .ch-icon { background: rgba(255,255,255,0.15); color: #fff; }
.ch-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.ch-value { font-size: 18px; color: var(--ink); font-weight: 400; margin-bottom: 12px; }
.ch-cta {
  font-family: var(--font);
  font-size: 14px;
  color: var(--violet);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 160ms ease;
}
.ch-cta:hover { color: var(--ink); }
.channel.featured .ch-cta { color: #fff; }
.channels .socials {
  display: flex; gap: 10px;
  margin-top: 12px;
}
.channels .socials a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color 160ms ease, color 160ms ease;
}
.channels .socials a:hover { border-color: var(--violet); color: var(--violet); }

/* Quiénes somos editorial 2-col */
.who-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 980px) {
  .who-grid { grid-template-columns: 5fr 7fr; gap: clamp(60px, 8vw, 120px); }
}
.who-left .eyebrow { margin-bottom: 24px; display: inline-block; }
.who-left h2 { font-weight: 300; letter-spacing: -0.03em; line-height: 1.04; font-size: clamp(38px, 5.4vw, 72px); margin: 0; max-width: 14ch; }
.who-right p { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: #2C2A4A; max-width: 60ch; margin: 0 0 24px; }
.who-right p:last-child { margin-bottom: 0; }


/* ============ MOBILE MENU DRAWER ============ */
.header { z-index: 70; }
.header.menu-open {
  background: var(--dark) !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
.header.menu-open .brand .wordmark .pri { color: #fff; }
.header.menu-open .menu-toggle span,
.header.menu-open .menu-toggle span::before,
.header.menu-open .menu-toggle span::after { background: #fff; }

.menu-toggle span { transition: background 180ms ease; }
.menu-toggle span::before, .menu-toggle span::after {
  transition: transform 220ms ease, top 220ms ease, background 180ms ease;
}
.menu-toggle.open span { background: transparent !important; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 65;
  display: flex; flex-direction: column;
  padding: 104px 24px 32px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.6,.05,.3,1), visibility 0s linear 320ms;
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms cubic-bezier(.6,.05,.3,1), visibility 0s linear 0s;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 50vh;
  background: var(--violet);
  filter: blur(140px);
  opacity: 0.18;
  pointer-events: none;
}
.mobile-menu-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.mobile-nav {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-dark);
  margin-top: 8px;
}
.mobile-nav a {
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 180ms ease, padding-left 220ms ease;
}
.mobile-nav a::after {
  content: "→";
  font-size: 20px;
  color: rgba(255,255,255,0.35);
  transition: color 180ms ease, transform 220ms ease;
}
.mobile-nav a:hover, .mobile-nav a:active { color: var(--violet-soft); padding-left: 8px; }
.mobile-nav a:hover::after, .mobile-nav a:active::after { color: var(--orange); transform: translateX(4px); }
.mobile-nav a.active { color: var(--violet-soft); }
.mobile-nav a.active::after { color: var(--orange); }

.mobile-menu-cta {
  display: flex; flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
}
.mobile-menu-cta .btn { justify-content: center; width: 100%; padding: 18px 22px; font-size: 16px; }
.mobile-menu-foot {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.mobile-menu-foot .s1 { color: var(--violet-soft); }
.mobile-menu-foot .s2 { color: var(--orange); }
.mobile-menu-foot .dot { color: rgba(255,255,255,0.3); }

@media (min-width: 901px) {
  .mobile-menu { display: none; }
}
