/*
 * Vanadian.io · Hoja de estilos principal
 * (c) PixUP Web Business SL · 2026
 */

/* ============ DESIGN TOKENS ============ */
  :root {
    --c-bg: #FFFFFF;
    --c-bg-soft: #F7F8FA;
    --c-bg-card: #F2F4F6;
    --c-text: #0E1A24;
    --c-text-muted: #5A6772;
    --c-text-soft: #8A95A1;
    --c-border: #E5E9ED;

    --c-orange: #F97838;
    --c-orange-hover: #E5631F;
    --c-orange-soft: #FFF1E7;

    --c-teal: #003A49;
    --c-teal-dark: #002630;
    --c-teal-soft: #E5EEF1;
    --c-cyan: #2BB8C9;

    --c-success: #10A37F;
    --c-danger:  #D03A3A;

    --font-display: 'Montserrat', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(0,38,48,.04), 0 2px 6px rgba(0,38,48,.04);
    --shadow-md: 0 4px 12px rgba(0,38,48,.06), 0 8px 24px rgba(0,38,48,.06);
    --shadow-lg: 0 12px 32px rgba(0,38,48,.10), 0 24px 64px rgba(0,38,48,.08);

    --container: 1200px;
    --gutter: clamp(20px, 4vw, 48px);

    --t-fast: 180ms ease;
    --t-base: 280ms cubic-bezier(.2,.7,.3,1);
  }

  /* ============ RESET ============ */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--c-text);
  }
  p { margin: 0 0 1em; }

  ::selection { background: var(--c-orange); color: #fff; }

  /* ============ LAYOUT ============ */
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  /* ============ HEADER ============ */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--c-border);
  }
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--c-text);
    letter-spacing: -.01em;
  }
  .brand__mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
  }
  .nav-primary {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-primary a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-weight: 500;
    color: var(--c-text-muted);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
  }
  .nav-primary a:hover { color: var(--c-text); background: var(--c-bg-soft); }
  .nav-primary a[aria-current="page"] { color: var(--c-orange); font-weight: 600; }
  .nav-aside { display: flex; align-items: center; gap: 12px; }
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 600;
  }
  .lang-switch a {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all var(--t-fast);
  }
  .lang-switch a.is-active { background: var(--c-text); color: #fff; }
  .lang-switch a:hover:not(.is-active) { color: var(--c-text); }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
    white-space: nowrap;
  }
  .btn--primary {
    background: var(--c-orange);
    color: #fff;
    box-shadow: 0 6px 14px rgba(249,120,56,.25);
  }
  .btn--primary:hover { background: var(--c-orange-hover); transform: translateY(-1px); }
  .btn--ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border);
  }
  .btn--ghost:hover { background: var(--c-bg-soft); border-color: var(--c-text-muted); }
  .btn--dark { background: var(--c-teal); color: #fff; }
  .btn--dark:hover { background: var(--c-teal-dark); }
  .btn--sm { padding: 9px 16px; font-size: .85rem; }

  /* ============ MOBILE MENU TOGGLE ============ */
  .menu-toggle { display: none; }

  /* ============ EYEBROW / BADGE ============ */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--c-orange);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px;
  }
  .eyebrow--soft {
    background: var(--c-orange-soft);
    color: var(--c-orange);
  }
  .eyebrow--teal {
    background: var(--c-teal);
    color: #fff;
  }

  /* ============ BREADCRUMB ============ */
  .breadcrumb {
    padding-top: 28px;
    font-size: .85rem;
    color: var(--c-text-soft);
  }
  .breadcrumb a:hover { color: var(--c-orange); }
  .breadcrumb__sep {
    margin: 0 8px;
    color: var(--c-border);
  }

  /* ============ HERO ============ */
  .hero {
    padding: 56px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero__copy h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
  }
  .hero__h1 .accent { color: var(--c-orange); }
  .hero__lead {
    font-size: 1.18rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    max-width: 560px;
  }
  .hero__sub {
    font-size: 1.02rem;
    color: var(--c-teal);
    font-weight: 500;
    margin-bottom: 32px;
  }
  .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero__visual {
    position: relative;
  }

  /* === HERO H1 COAS (sense patilla) === */
  .hero__h1-coas {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw + .5rem, 1.4rem);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
    color: var(--c-orange);
    margin: 0 0 18px;
    line-height: 1.3;
  }
  .hero__h1-coas--on-dark {
    color: var(--c-orange);
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
  }
  /* === HERO H2 (degradat des de H1) === */
  .hero__h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw + .4rem, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0 0 22px;
    color: var(--c-teal-dark);
  }
  .hero__h2 .accent { color: var(--c-orange); }
  .hero__h2--on-dark { color: #fff; }
  .hero__h2--on-dark .accent { color: var(--c-orange); }

  /* === HERO SLIDER FULL-WIDTH (Home) === */
  .hero--slider {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 0;
    display: flex;
    align-items: center;
    color: #fff;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(0,38,48,.34) 0%, rgba(0,38,48,.22) 55%, rgba(0,38,48,.06) 100%),
      linear-gradient(180deg, rgba(0,38,48,.16) 0%, transparent 30%, rgba(0,38,48,.24) 100%);
  }
  .hero__inner {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    width: 100%;
  }
  .hero__copy--centered {
    max-width: 720px;
    margin: 0;
  }
  .hero__h1--on-dark { color: #fff; }
  .hero__h1--on-dark .accent { color: var(--c-orange); }
  .hero__lead--on-dark { color: rgba(255,255,255,.88); }
  .hero__sub--on-dark { color: rgba(255,255,255,.7); }
  .hero__sub--on-dark::before { background: var(--c-orange); }
  .eyebrow--on-dark {
    color: var(--c-orange);
    background: rgba(249,120,56,.15);
    border-color: rgba(249,120,56,.3);
  }
  .btn--on-dark {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
  }
  .btn--on-dark:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
  }
  @media (max-width: 760px) {
    .hero--slider { min-height: 540px; }
    .hero__bg img { object-position: 70% 30%; }
    .hero__overlay {
      background:
        linear-gradient(180deg, rgba(0,38,48,.2) 0%, rgba(0,38,48,.34) 100%);
    }
    .hero__inner { padding: 60px 20px; }
  }
  .hero-card {
    background: var(--c-teal-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .hero-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .hero-card__title b {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .98rem;
  }
  .state-tag {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(249,120,56,.2);
    color: #FFB58A;
  }
  .state-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .state-item {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.06);
    font-size: .88rem;
  }
  .state-item--done { background: rgba(16,163,127,.12); border-color: rgba(16,163,127,.3); }
  .state-item--current { background: rgba(249,120,56,.12); border-color: rgba(249,120,56,.4); }
  .state-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: .72rem;
    font-weight: 700;
  }
  .state-item--done .state-num { background: var(--c-success); }
  .state-item--current .state-num { background: var(--c-orange); }
  .state-meta {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
  }
  .hero-card__footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
  }
  .hero-card__footer .pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-cyan);
    font-weight: 600;
  }
  .pulse__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-cyan);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
  }

  /* ============ SECTION BASE ============ */
  .section {
    padding: 88px 0;
  }
  .section--alt { background: var(--c-bg-soft); }
  .section--dark { background: var(--c-teal-dark); color: #fff; }
  .section--dark h2, .section--dark h3 { color: #fff; }
  .section__intro {
    /* No cap by default: when there's no side widget/visual next to it,
       the intro title/paragraph should use the full container width instead
       of wrapping early inside an invisible narrower column. Pages that
       want the old narrower measure set max-width:760px inline themselves
       (see the 3 instances on the homepage, kept as-is on purpose). */
    max-width: none;
    margin-bottom: 56px;
  }
  .section__intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
  }
  .section__intro p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
  }
  .section--dark .section__intro p { color: rgba(255,255,255,.75); }

  /* ============ FEATURES GRID ============ */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .feature {
    background: var(--c-bg-card);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid transparent;
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  }
  .feature:hover {
    border-color: var(--c-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .feature__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--c-teal);
    color: var(--c-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .feature__icon svg { width: 24px; height: 24px; }
  .feature h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .feature p {
    color: var(--c-text-muted);
    font-size: .96rem;
    margin: 0;
  }

  /* ============ SPLIT SECTION ============ */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .split--reverse .split__visual { order: -1; }
  .split__copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 18px;
  }
  .split__copy h3 {
    font-size: 1.1rem;
    color: var(--c-orange);
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0;
  }
  .split__copy p { color: var(--c-text-muted); font-size: 1.02rem; }
  .split__copy ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
  }
  .split__copy li {
    position: relative;
    padding-left: 36px;
    font-size: .98rem;
    color: var(--c-text);
  }
  .split__copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--c-orange-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97838' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  }
  .split__copy li b { color: var(--c-text); font-weight: 700; }

  /* ============ METRIC CARD ============ */
  .metric-card {
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  .metric-card::before {
    content: "";
    position: absolute;
    inset: -50% -10% auto auto;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(43,184,201,.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .metric-card::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='40 74 123 146'><path fill='%23F97838' d='M63.71,140.31h0c-10.19,.01-18.53-8.32-18.54-18.5l-.02-24.17c-.01-10.19,8.32-18.53,18.5-18.54,10.19-.01,18.53,8.32,18.54,18.5l.02,24.17c.01,10.19-8.32,18.53-18.5,18.54'/><path fill='%23F97838' d='M97.34,214.19h0c-9.57-3.48-14.56-14.17-11.07-23.74l36.35-99.41c3.48-9.57,14.17-14.56,23.74-11.07,9.57,3.48,14.56,14.17,11.07,23.74l-36.35,99.41c-3.48,9.57-14.17,14.56-23.74,11.07'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
    pointer-events: none;
  }
  .metric-card__value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.6rem);
    font-weight: 800;
    color: var(--c-orange);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -.04em;
  }
  .metric-card__label {
    font-size: 1.02rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 24px;
  }
  .metric-card__divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 24px 0;
  }
  .metric-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: .92rem;
  }
  .metric-card__row span:last-child {
    color: var(--c-cyan);
    font-weight: 700;
  }

  /* ============ COMPARE TABLE ============ */
  .compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    background: #fff;
  }
  table.compare {
    width: 100%;
    border-collapse: collapse;
    font-size: .94rem;
    min-width: 720px;
  }
  table.compare th,
  table.compare td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
  }
  table.compare thead th {
    background: var(--c-bg-soft);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    color: var(--c-text);
  }
  table.compare thead th.is-vanadian {
    background: var(--c-orange);
    color: #fff;
    position: relative;
  }
  table.compare tbody td:first-child {
    font-weight: 600;
    color: var(--c-text);
    background: var(--c-bg-soft);
    width: 26%;
  }
  table.compare tbody tr:last-child td { border-bottom: 0; }
  table.compare td.col-vanadian {
    background: rgba(249,120,56,.04);
    font-weight: 500;
    color: var(--c-text);
  }
  .pill {
    display: inline-block;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .pill--bad  { background: #FBEAEA; color: var(--c-danger); }
  .pill--mid  { background: #FFF4D9; color: #B27A07; }
  .pill--good { background: #E6F4F0; color: var(--c-success); }

  /* ============ FAQ ============ */
  .faq-list { display: grid; gap: 12px; }
  .faq-item {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
  }
  .faq-item[open] {
    border-color: var(--c-orange);
    box-shadow: var(--shadow-sm);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--c-text);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--c-orange-soft);
    color: var(--c-orange);
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform var(--t-base);
  }
  .faq-item[open] summary::after {
    content: "−";
    background: var(--c-orange);
    color: #fff;
  }
  .faq-item__answer {
    padding: 0 24px 22px;
    color: var(--c-text-muted);
    font-size: .98rem;
    line-height: 1.7;
  }

  /* ============ CTA BANNER ============ */
  .cta-banner {
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: "";
    position: absolute;
    inset: auto auto -40% -10%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(249,120,56,.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-banner::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -30px;
    width: 220px;
    height: 220px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='40 74 123 146'><path fill='%23F97838' d='M63.71,140.31h0c-10.19,.01-18.53-8.32-18.54-18.5l-.02-24.17c-.01-10.19,8.32-18.53,18.5-18.54,10.19-.01,18.53,8.32,18.54,18.5l.02,24.17c.01,10.19-8.32,18.53-18.5,18.54'/><path fill='%23F97838' d='M97.34,214.19h0c-9.57-3.48-14.56-14.17-11.07-23.74l36.35-99.41c3.48-9.57,14.17-14.56,23.74-11.07,9.57,3.48,14.56,14.17,11.07,23.74l-36.35,99.41c-3.48,9.57-14.17,14.56-23.74,11.07'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    transform: rotate(-8deg);
  }
  .cta-banner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
  }
  .cta-banner p {
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
    max-width: 580px;
    margin: 0 auto 28px;
  }
  .cta-banner__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .cta-banner .btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.3);
    color: #fff;
  }
  .cta-banner .btn--ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: #fff;
  }

  /* ============ FOOTER ============ */
  .site-footer {
    background: var(--c-teal-dark);
    color: rgba(255,255,255,.7);
    padding: 64px 0 32px;
    font-size: .9rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-grid h4 {
    color: #fff;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-body);
  }
  .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  .footer-grid a:hover { color: var(--c-orange); }
  .footer-brand p { color: rgba(255,255,255,.6); max-width: 320px; }
  .footer-brand .brand { color: #fff; margin-bottom: 16px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    .hero__grid, .split { grid-template-columns: 1fr; gap: 48px; }
    .split--reverse .split__visual { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  /* Nav collapses to the hamburger menu here: below this width the full
     desktop nav (logo + 6 items incl. 2 dropdowns + lang switch) no longer
     fits in a single row and would overflow/overlap. Kept as its own query
     (rather than 780px) so it stays in sync with the dropdown static-mode
     breakpoint below — do not change one without the other. */
  @media (max-width: 1100px) {
    .nav-primary { display: none; }
    .menu-toggle {
      display: inline-flex;
      width: 40px; height: 40px;
      align-items: center; justify-content: center;
      border-radius: var(--radius-sm);
      background: var(--c-bg-soft);
      flex-shrink: 0;
    }
    .site-header--open .nav-primary {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: fixed;
      top: 72px;
      left: 0; right: 0;
      /* Explicit height instead of relying only on bottom:0: Android Chrome's
         collapsing/expanding address bar changes the visual viewport height,
         and svh/dvh account for that so the panel doesn't get clipped or
         leave part of the menu unreachable. vh kept first as a safe fallback
         for browsers without dvh support. */
      height: calc(100vh - 72px);
      height: calc(100dvh - 72px);
      background: var(--c-bg);
      padding: 16px 24px 48px;
      z-index: 99;
      gap: 2px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
    }
    .site-header--open .nav-primary a { font-size: 1rem; padding: 12px 16px; }
    /* backdrop-filter on .site-header creates a containing block for
       position:fixed descendants (same effect as transform), which traps
       the fixed .nav-primary panel inside the ~72px header box instead of
       letting it cover the viewport. Drop the filter while open so the
       panel positions against the viewport as intended. */
    .site-header--open {
      position: sticky;
      z-index: 200;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .nav-aside .btn--primary { display: none; }
    /* Stops the page underneath from scrolling while the mobile panel is
       open, so touch scrolling on Android Chrome reliably scrolls the menu
       list itself instead of the background page behind it. */
    body.nav-open { overflow: hidden; }
  }
  @media (max-width: 780px) {
    .section { padding: 64px 0; }
    .hero { padding: 32px 0 56px; }
    .cta-banner { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  /* ============ COOKIE CONSENT ============ */
  .vn-cc-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,38,48,.18), 0 4px 12px rgba(0,38,48,.08);
    border: 1px solid var(--c-border);
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 24px;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 360ms cubic-bezier(.2,.7,.3,1), opacity 240ms ease;
    visibility: hidden;
  }
  .vn-cc-banner[data-visible="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .vn-cc-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .vn-cc-banner__content p {
    margin: 0 0 4px;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.5;
  }
  .vn-cc-banner__content p:first-child {
    color: var(--c-text);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
  }
  .vn-cc-banner__content a {
    color: var(--c-orange);
    text-decoration: underline;
  }
  .vn-cc-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .vn-cc-banner__actions .btn { padding: 10px 16px; font-size: .85rem; }

  /* Modal */
  .vn-cc-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 240ms ease, visibility 0s linear 240ms;
    padding: 16px;
  }
  .vn-cc-modal[data-visible="true"] {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }
  .vn-cc-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,38,48,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .vn-cc-modal__inner {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0,38,48,.28);
    width: min(540px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    padding: 32px;
  }
  .vn-cc-modal__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--c-bg-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--c-text);
    transition: background var(--t-fast);
  }
  .vn-cc-modal__close:hover { background: var(--c-border); }
  .vn-cc-modal__inner > h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    padding-right: 40px;
  }
  .vn-cc-modal__intro {
    color: var(--c-text-muted);
    font-size: .94rem;
    margin-bottom: 20px;
  }
  .vn-cc-cat {
    padding: 18px 0;
    border-top: 1px solid var(--c-border);
  }
  .vn-cc-cat:last-of-type {
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 22px;
  }
  .vn-cc-cat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 12px;
  }
  .vn-cc-cat__head strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--c-text);
  }
  .vn-cc-cat p {
    margin: 0;
    font-size: .86rem;
    color: var(--c-text-muted);
    line-height: 1.5;
  }
  .vn-cc-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .vn-cc-toggle input {
    opacity: 0; width: 0; height: 0;
    position: absolute;
  }
  .vn-cc-toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--c-border);
    border-radius: 24px;
    transition: background .2s ease;
  }
  .vn-cc-toggle__slider::before {
    content: "";
    position: absolute;
    height: 18px; width: 18px;
    left: 3px; top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.18);
  }
  .vn-cc-toggle input:checked + .vn-cc-toggle__slider {
    background: var(--c-orange);
  }
  .vn-cc-toggle input:checked + .vn-cc-toggle__slider::before {
    transform: translateX(20px);
  }
  .vn-cc-toggle input:focus-visible + .vn-cc-toggle__slider {
    outline: 2px solid var(--c-orange);
    outline-offset: 2px;
  }
  .vn-cc-locked {
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-success);
    background: rgba(16,163,127,.12);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .vn-cc-modal__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .vn-cc-modal__actions .btn { padding: 11px 18px; font-size: .9rem; }

  @media (max-width: 640px) {
    .vn-cc-banner { left: 8px; right: 8px; bottom: 8px; padding: 18px 20px; }
    .vn-cc-banner__inner { grid-template-columns: 1fr; gap: 16px; }
    .vn-cc-banner__actions { flex-direction: column-reverse; }
    .vn-cc-banner__actions .btn { width: 100%; }
    .vn-cc-modal__inner { padding: 24px 20px; }
    .vn-cc-modal__actions { flex-direction: column-reverse; }
    .vn-cc-modal__actions .btn { width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }
  /* ============ FORMS ============ */
  .form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--c-border);
  }
  .form-card__title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--c-teal-dark);
    line-height: 1.2;
  }
  .form-card__intro {
    color: var(--c-text-soft);
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field--full { grid-column: 1 / -1; }
  .form-field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-teal-dark);
  }
  .form-field label .required { color: var(--c-orange); margin-left: 2px; }
  .form-field label .optional {
    color: var(--c-text-soft);
    font-weight: 400;
    font-size: .78rem;
    margin-left: 6px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 11px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--c-text);
    background: #FAFBFC;
    transition: border-color .15s, background .15s, box-shadow .15s;
    width: 100%;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--c-orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(249,120,56,.12);
  }
  .form-field textarea { min-height: 96px; resize: vertical; font-family: var(--font-body); }
  .form-field__help {
    font-size: .78rem;
    color: var(--c-text-soft);
    margin: 2px 0 0;
  }
  .form-section-title {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--c-teal-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 14px 0 4px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-orange-soft);
  }
  .form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .85rem;
    color: var(--c-text-soft);
    line-height: 1.5;
    width: 100%;
    cursor: pointer;
  }
  .form-checkbox input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--c-orange);
    width: 16px;
    height: 16px;
  }
  .form-checkbox > span { flex: 1; min-width: 0; }
  .form-checkbox a { color: var(--c-orange); text-decoration: underline; }
  .form-submit {
    grid-column: 1 / -1;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  .form-submit__note {
    font-size: .82rem;
    color: var(--c-text-soft);
  }
  .options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .option-card {
    background: #fff;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .option-card:hover {
    border-color: var(--c-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .option-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--c-orange-soft);
    color: var(--c-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .option-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--c-teal-dark);
    font-weight: 700;
    margin: 0;
  }
  .option-card__desc { font-size: .92rem; color: var(--c-text-soft); margin: 0; line-height: 1.55; }
  .option-card__cta {
    margin-top: auto;
    color: var(--c-orange);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @media (max-width: 760px) {
    .form-card { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
  }


  
  /* === STATE LIST RICH (Bloc COAS) === */
  .state-list--rich { gap: 14px; }
  .state-item--rich {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
  }
  .state-item--rich .state-num { margin-top: 2px; }
  .state-item--rich .state-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .state-item--rich .state-content b {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.3;
  }
  .state-item--rich .state-desc {
    color: rgba(255,255,255,.62);
    font-size: .82rem;
    line-height: 1.45;
  }

  /* === NAV DROPDOWN === */
  .nav-item {
    position: relative;
    display: inline-block;
  }
  .nav-item--has-dropdown > .nav-item__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .nav-item__arrow {
    transition: transform .2s ease;
    color: inherit;
    opacity: .7;
  }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(0,38,48,.12);
    padding: 8px;
    margin-top: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 100;
  }
  .nav-dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: .92rem;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
  }
  .nav-dropdown a:hover {
    background: var(--c-orange-soft);
    color: var(--c-orange);
  }
  .nav-item--has-dropdown:hover > .nav-dropdown,
  .nav-item--has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item--has-dropdown:hover .nav-item__arrow,
  .nav-item--has-dropdown:focus-within .nav-item__arrow {
    transform: rotate(180deg);
  }
  /* Must match the 1100px nav-collapse breakpoint above: this is what makes
     the dropdown render as a flat, always-open stacked list inside the
     mobile hamburger panel instead of the desktop hover popup. */
  @media (max-width: 1100px) {
    .nav-dropdown {
      position: static;
      box-shadow: none;
      border: none;
      padding: 0 0 0 16px;
      margin: 0;
      opacity: 1;
      visibility: visible;
      transform: none;
      min-width: 0;
    }
    .nav-item__arrow { display: none; }
  }

  /* Checkbox/radio groups apilats (un per línia) per a disponibilitat i motiu */
  .form-options-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }
  .form-option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: #FAFBFC;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: .9rem;
    color: var(--c-text);
    transition: border-color .15s, background .15s, color .15s;
    user-select: none;
  }
  .form-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .form-option:hover { border-color: var(--c-orange); }
  .form-option:has(input:checked) {
    background: var(--c-teal-dark);
    border-color: var(--c-teal-dark);
    color: #fff;
  }
  .form-option input:checked + span { font-weight: 600; }
  .form-submit {
    grid-column: 1 / -1;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  .form-submit__note {
    font-size: .82rem;
    color: var(--c-text-soft);
  }
  .options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .option-card {
    background: #fff;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .option-card:hover {
    border-color: var(--c-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .option-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--c-orange-soft);
    color: var(--c-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .option-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--c-teal-dark);
    font-weight: 700;
    margin: 0;
  }
  .option-card__desc { font-size: .92rem; color: var(--c-text-soft); margin: 0; line-height: 1.55; }
  .option-card__cta {
    margin-top: auto;
    color: var(--c-orange);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @media (max-width: 760px) {
    .form-card { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
  }

  /* === LEGAL DOC === */
  .legal-doc { max-width: 820px; margin: 0 auto; }
  .legal-doc h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--c-teal-dark);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-orange-soft);
    line-height: 1.3;
  }
  .legal-doc h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--c-teal-dark);
    margin: 24px 0 10px;
    line-height: 1.35;
  }
  .legal-doc p, .legal-doc li {
    color: var(--c-text);
    font-size: .96rem;
    line-height: 1.7;
  }
  .legal-doc p { margin: 0 0 14px; }
  .legal-doc ul, .legal-doc ol { margin: 0 0 18px; padding-left: 22px; }
  .legal-doc li { margin-bottom: 8px; }
  .legal-doc a { color: var(--c-orange); }
  .legal-doc a:hover { text-decoration: underline; }
  .legal-doc__meta {
    font-size: .85rem;
    color: var(--c-text-soft);
    background: var(--c-orange-soft);
    border-left: 3px solid var(--c-orange);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin: 0 0 32px;
  }
  .legal-doc__data {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin: 22px 0;
  }
  .legal-doc__data dt { font-weight: 600; color: var(--c-teal-dark); margin-top: 10px; }
  .legal-doc__data dt:first-child { margin-top: 0; }
  .legal-doc__data dd { margin: 4px 0 0 0; color: var(--c-text); font-size: .94rem; }
  /* === CTA PRICING PILL (Home CTA final) === */
  .cta-pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(249,120,56,.12);
    border: 1px solid rgba(249,120,56,.3);
    border-radius: var(--radius-pill);
    padding: 12px 22px;
    margin: 20px auto 28px;
    font-size: .92rem;
    color: rgba(255,255,255,.85);
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-pricing-pill svg { color: #FFB58A; flex-shrink: 0; }
  .cta-pricing-pill b { color: #FFB58A; font-weight: 700; }
  .cta-pricing-pill__link {
    color: #FFB58A;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }
  .cta-pricing-pill__link:hover { color: var(--c-orange); }
  @media (max-width: 720px) {
    .cta-pricing-pill { flex-direction: column; text-align: center; padding: 16px 22px; }
  }

  /* === PRICING CARDS === */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
  }
  .pricing-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
  }
  .pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .pricing-card--highlighted {
    border: 2px solid var(--c-orange);
    box-shadow: 0 12px 36px rgba(249,120,56,.18);
    transform: scale(1.02);
  }
  .pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
  }
  .pricing-card__header {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
  }
  .pricing-card__level {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-teal-dark);
  }
  .pricing-card--highlighted .pricing-card__level { color: var(--c-orange); }
  .pricing-card__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .pricing-card__row:last-child { border-bottom: none; }
  .pricing-card__label {
    font-size: .82rem;
    color: var(--c-text-soft);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
  }
  .pricing-card__price {
    font-size: 1rem;
    color: var(--c-text);
  }
  .pricing-card__price b {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--c-teal-dark);
    font-weight: 700;
  }
  .pricing-card--highlighted .pricing-card__price b { color: var(--c-orange); }
  .pricing-card__row--featured {
    background: var(--c-orange-soft);
    margin: 12px -24px -28px;
    padding: 16px 24px 24px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: none;
  }
  .pricing-card--highlighted .pricing-card__row--featured {
    background: rgba(249,120,56,.12);
  }
  .pricing-card__price sup { color: var(--c-text-soft); font-size: .7rem; }

  .pricing-note {
    text-align: center;
    margin-top: 28px;
    font-size: .95rem;
    color: var(--c-text-soft);
  }
  .promo-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--c-orange-soft);
    border-left: 4px solid var(--c-orange);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-top: 28px;
    color: var(--c-teal-dark);
  }
  .promo-banner svg { color: var(--c-orange); flex-shrink: 0; margin-top: 2px; }
  .promo-banner p { margin: 0; font-size: .92rem; }

  @media (max-width: 920px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card--highlighted { transform: none; }
  }

  /* === STEP CARDS (Cómo empezar) === */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .step-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    position: relative;
  }
  .step-card__num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-orange);
    line-height: 1;
    display: block;
    margin-bottom: 14px;
  }
  .step-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--c-teal-dark);
    margin: 0 0 8px;
    line-height: 1.3;
  }
  .step-card p {
    font-size: .92rem;
    color: var(--c-text-soft);
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 920px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .steps-grid { grid-template-columns: 1fr; }
  }
  /* === SECTORS LIST (4 sectors en files horitzontals) === */
  .sectors-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .sector-row {
    background: var(--c-bg-card);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    border: 1px solid transparent;
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 28px;
    align-items: start;
  }
  .sector-row > *:not(.feature__icon) {
    grid-column: 2;
  }
  .sector-row:hover {
    border-color: var(--c-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .sector-row .feature__icon {
    width: 56px;
    height: 56px;
    margin: 0;
    background: var(--c-orange-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-orange);
  }
  .sector-row .feature__icon svg {
    width: 28px;
    height: 28px;
  }
  .sector-row h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--c-teal-dark);
    margin: 0 0 14px;
    line-height: 1.3;
  }
  .sector-row p {
    margin: 0 0 10px;
    line-height: 1.6;
  }
  @media (max-width: 720px) {
    .sector-row {
      grid-template-columns: 1fr;
      padding: 22px 22px;
      gap: 14px;
    }
    .sector-row .feature__icon { width: 48px; height: 48px; }
  }

  /* === FEATURES 4 COLUMNES (bloc Cuatro ventajas estructurales) === */
  .features--four-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .features--four-cols .feature { padding: 24px 22px; }
  .features--four-cols .feature h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .features--four-cols .feature p {
    font-size: .92rem;
    line-height: 1.55;
  }
  @media (max-width: 1024px) {
    .features--four-cols { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .features--four-cols { grid-template-columns: 1fr; }
  }
  /* === PROGRAMS GRID (Partners + Inversores Home) === */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    align-items: stretch;
  }
  .program-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
  }
  .program-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-orange);
  }
  .program-card--alt {
    background: linear-gradient(135deg, var(--c-orange-soft) 0%, #fff 100%);
  }
  .program-card__icon {
    width: 52px;
    height: 52px;
    background: var(--c-orange-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-orange);
    margin-bottom: 16px;
  }
  .program-card--alt .program-card__icon {
    background: rgba(249,120,56,.25);
  }
  .program-card__icon svg {
    width: 26px;
    height: 26px;
  }
  .program-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--c-teal-dark);
    margin: 0 0 14px;
    line-height: 1.25;
  }
  .program-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--c-text);
    flex-grow: 1;
  }
  .program-card .btn--sm {
    align-self: flex-start;
    padding: 9px 18px;
    font-size: .88rem;
  }
  @media (max-width: 720px) {
    .programs-grid { grid-template-columns: 1fr; }
  }

