    /* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --green:        #4A7A6E;
      --green-dark:   #365C53;
      --green-light:  #9DC5BB;
      --green-pale:   #EBF3F1;
      --amber:        #B8894F;
      --amber-light:  #E8D5BE;
      --ink:          #151A1C;
      --ink-mid:      #4A5568;
      --ink-soft:     #718096;
      --bg:           #FFFFFF;
      --bg-warm:      #FAF8F5;
      --bg-sand:      #F2EDE5;
      --border:       #E2D9CE;
      --serif:        'DM Serif Display', Georgia, serif;
      --sans:         'Inter', system-ui, sans-serif;
      --r:            14px;
      --r-sm:         8px;
      --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
      --max:          1160px;
    }

    /* ============================================================
       RESET
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--green); text-decoration: none; }
    ul, ol { list-style: none; }
    button { font-family: var(--sans); }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--ink); }
    h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); letter-spacing: -0.02em; }
    h2 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
    h4 { font-size: 1.1rem; }
    p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.85; }
    strong { font-weight: 700; color: var(--ink); }

    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 16px;
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
    .section { padding: 112px 0; }
    .section--warm { background: var(--bg-warm); }
    .section--sand { background: var(--bg-sand); }
    .section--dark { background: var(--ink); }
    .section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
    .section-header h2 { margin-bottom: 16px; }
    .section-header p { color: var(--ink-mid); }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    @keyframes revealUp {
      from { opacity: 0; transform: translateY(32px); clip-path: inset(20% 0 0 0); }
      to   { opacity: 1; transform: translateY(0);    clip-path: inset(0% 0 0 0); }
    }
    @keyframes revealLeft {
      from { opacity: 0; transform: translateX(-24px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.94); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes lineGrow {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    .anim {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .anim.visible { opacity: 1; transform: translateY(0); }
    .anim-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-spring); }
    .anim-scale.visible { opacity: 1; transform: scale(1); }

    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }
    .d4 { transition-delay: 0.32s; }

    /* ============================================================
       NAVBAR
    ============================================================ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }

    .nav-brand { display: flex; flex-direction: row; align-items: center; gap: 10px; }
    .nav-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
    .nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
    .nav-brand .brand-name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
    .nav-brand .brand-sub  { font-size: 0.68rem; color: var(--ink-soft); letter-spacing: 0.04em; }

    .nav-right { display: flex; align-items: center; gap: 8px; }

    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500; color: var(--ink-mid);
      padding: 8px 12px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--green); background: var(--green-pale); }
    .nav-cta {
      background: var(--green) !important; color: #fff !important;
      padding: 10px 22px !important; border-radius: 50px !important;
      font-weight: 600 !important; font-size: 0.88rem !important;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); color: #fff !important; }

    /* Lang toggle */
    .lang-toggle {
      display: flex; align-items: center;
      background: var(--bg-warm); border: 1px solid var(--border);
      border-radius: 50px; padding: 3px; gap: 2px;
      margin-right: 8px;
    }
    .lang-btn {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
      padding: 5px 10px; border-radius: 50px; border: none; cursor: pointer;
      background: transparent; color: var(--ink-soft);
      transition: background 0.2s, color 0.2s;
    }
    .lang-btn.active { background: var(--green); color: #fff; }

    /* Mobile toggle */
    .menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
    .menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 899; }
    .nav-overlay.open { display: block; }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      min-height: 100svh;
      padding: 120px 0 80px;
      background: var(--bg-warm);
      position: relative;
      overflow: hidden;
      display: flex; align-items: center;
    }
    /* decorative vertical stripe */
    .hero::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
      background: linear-gradient(180deg, var(--green) 0%, var(--amber) 100%);
    }
    /* large ghost text */
    .hero-ghost {
      position: absolute;
      right: -40px; bottom: -60px;
      font-family: var(--serif);
      font-size: clamp(8rem, 18vw, 18rem);
      color: var(--green-pale);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .hero .container { position: relative; z-index: 1; width: 100%; }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
    }
    .hero-eyebrow-line { width: 40px; height: 2px; background: var(--amber); flex-shrink: 0; }
    .hero-eyebrow span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); }

    .hero-text h1 { margin-bottom: 28px; }
    .hero-text h1 em { color: var(--green); font-style: italic; }
    .hero-lead { font-size: 1.1rem; color: var(--ink-mid); margin-bottom: 12px; line-height: 1.9; max-width: 520px; }
    .hero-tagline { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--amber); margin-bottom: 40px; }

    .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green); color: #fff;
      padding: 16px 36px; border-radius: 50px;
      font-size: 1rem; font-weight: 600;
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
      border: none; cursor: pointer;
    }
    .btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,122,110,0.28); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--ink-mid); font-size: 0.9rem; font-weight: 500;
      padding: 4px 0;
      border-bottom: 1.5px solid var(--border);
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--green); border-color: var(--green); }

    .hero-image { position: relative; }
    .hero-image-wrap {
      border-radius: 24px 24px 120px 24px;
      overflow: hidden; aspect-ratio: 4/5;
      box-shadow: 0 32px 80px rgba(0,0,0,0.14);
      background: var(--bg-sand);
    }
    .hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
    .hero-image-wrap:hover img { transform: scale(1.03); }

    .hero-badge {
      position: absolute; bottom: -16px; left: -24px;
      background: #fff; border-radius: var(--r);
      padding: 18px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      display: flex; flex-direction: column; gap: 2px;
    }
    .hero-badge .badge-name { font-family: var(--serif); font-size: 1.2rem; color: var(--green); }
    .hero-badge .badge-col  { font-size: 0.72rem; color: var(--ink-soft); font-weight: 500; }

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .trust-bar {
      background: var(--ink);
      padding: 28px 0;
      overflow: hidden;
    }
    .trust-inner {
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500;
    }
    .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }

    /* ============================================================
       AREAS
    ============================================================ */
    .areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .area-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--r); padding: 40px 36px;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
      position: relative; overflow: hidden;
    }
    .area-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--green) 0%, var(--amber) 100%);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s var(--ease);
    }
    .area-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); border-color: var(--green-light); }
    .area-card:hover::after { transform: scaleX(1); }
    .area-num { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; color: var(--green-light); margin-bottom: 20px; display: block; }
    .area-card h3 { color: var(--ink); margin-bottom: 10px; }
    .area-card p { font-size: 0.95rem; }

    /* ============================================================
       ENFOQUE
    ============================================================ */
    .enfoque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .enfoque-image { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 20px 60px rgba(0,0,0,0.10); background: var(--bg-sand); }
    .enfoque-image img { width: 100%; height: 100%; object-fit: cover; }

    .enfoque-steps { margin: 32px 0; display: flex; flex-direction: column; gap: 0; }
    .enfoque-step {
      display: flex; gap: 20px; padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }
    .enfoque-step:last-child { border-bottom: none; }
    .e-num {
      flex-shrink: 0; width: 42px; height: 42px;
      border-radius: 50%;
      border: 2px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 800; color: var(--green);
      margin-top: 2px;
    }
    .enfoque-step h3 { margin-bottom: 4px; font-size: 1.15rem; }
    .enfoque-step p { font-size: 0.95rem; }

    .blockquote {
      border-left: 3px solid var(--amber);
      padding: 20px 0 20px 28px;
      margin-top: 32px;
    }
    .blockquote p { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); line-height: 1.6; font-style: italic; }

    /* ============================================================
       QUIÉN SOY
    ============================================================ */
    .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .bio-image { border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 12px 48px rgba(0,0,0,0.10); background: var(--bg-sand); position: sticky; top: 90px; }
    .bio-image img { width: 100%; height: 100%; object-fit: cover; }

    .bio-text .label { margin-bottom: 8px; }
    .bio-text h2 { margin-bottom: 20px; }
    .bio-text p { margin-bottom: 16px; }

    .pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
    .pillar { padding: 18px 0; border-bottom: 1px solid var(--border); }
    .pillar:first-child { border-top: 1px solid var(--border); }
    .pillar h3 { color: var(--green-dark); margin-bottom: 4px; font-size: 1.05rem; }
    .pillar p { font-size: 0.93rem; margin: 0; }

    /* ============================================================
       FORMACIÓN (NEW)
    ============================================================ */
    .formacion-grid {
      display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
    }
    .formacion-intro h2 { margin-bottom: 16px; }
    .formacion-intro p { font-size: 0.95rem; }

    .colegiado-badge {
      margin-top: 32px;
      background: var(--green); color: #fff;
      border-radius: var(--r); padding: 24px 28px;
      display: inline-block;
    }
    .colegiado-badge .col-num { font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
    .colegiado-badge .col-label { font-size: 0.75rem; opacity: 0.8; margin-top: 4px; font-weight: 500; letter-spacing: 0.04em; }

    .timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
    .timeline::before {
      content: '';
      position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px;
      background: linear-gradient(180deg, var(--green) 0%, var(--amber) 100%);
    }
    .tl-item {
      display: flex; gap: 32px; padding: 0 0 40px 0;
      position: relative;
    }
    .tl-item:last-child { padding-bottom: 0; }
    .tl-dot {
      flex-shrink: 0; width: 32px; height: 32px;
      border-radius: 50%; background: #fff; border: 2px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      margin-top: 4px; position: relative; z-index: 1;
    }
    .tl-dot-fill { width: 12px; height: 12px; border-radius: 50%; background: var(--green); }
    .tl-dot.amber { border-color: var(--amber); }
    .tl-dot.amber .tl-dot-fill { background: var(--amber); }

    .tl-body { flex: 1; }
    .tl-year { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; color: var(--ink-soft); text-transform: uppercase; margin-bottom: 4px; }
    .tl-body h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
    .tl-body p { font-size: 0.9rem; color: var(--ink-mid); margin: 0; }
    .tl-tag {
      display: inline-block; margin-top: 8px;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 50px;
      background: var(--green-pale); color: var(--green);
    }
    .tl-tag.amber { background: #FDF3E7; color: var(--amber); }

    /* ============================================================
       TARIFAS (NEW)
    ============================================================ */
    .tarifas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 800px; margin: 0 auto; }
    .tarifa-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
      padding: 48px 40px; position: relative;
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }
    .tarifa-card--highlight {
      background: var(--green); border-color: var(--green);
      color: #fff;
    }
    .tarifa-card--highlight h3,
    .tarifa-card--highlight .tarifa-price,
    .tarifa-card--highlight .tarifa-desc,
    .tarifa-card--highlight li { color: #fff; }
    .tarifa-card--highlight li::before { background: rgba(255,255,255,0.5) !important; }
    .tarifa-card--highlight .tarifa-note { color: rgba(255,255,255,0.7); }
    .tarifa-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
    .tarifa-card--highlight:hover { box-shadow: 0 20px 60px rgba(74,122,110,0.3); }

    .tarifa-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .tarifa-tag svg { width: 14px; height: 14px; }
    .tarifa-card:not(.tarifa-card--highlight) .tarifa-tag { color: var(--ink-soft); }
    .tarifa-card--highlight .tarifa-tag { color: rgba(255,255,255,0.8); }

    .tarifa-price { font-family: var(--serif); font-size: 3.6rem; line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
    .tarifa-price sup { font-size: 1.5rem; vertical-align: super; }
    .tarifa-price span { font-size: 1rem; font-family: var(--sans); font-weight: 400; color: var(--ink-soft); }
    .tarifa-card--highlight .tarifa-price { color: #fff; }
    .tarifa-card--highlight .tarifa-price span { color: rgba(255,255,255,0.7); }

    .tarifa-desc { font-size: 0.88rem; color: var(--ink-mid); margin: 12px 0 28px; line-height: 1.6; }

    .tarifa-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .tarifa-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; /*color: var(--ink-mid);*/ }
    .tarifa-features li::before { content: ''; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

    .tarifa-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 16px; }

    .tarifa-cta {
      display: block; text-align: center; padding: 14px 28px; border-radius: 50px;
      font-weight: 600; font-size: 0.95rem;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .tarifa-card:not(.tarifa-card--highlight) .tarifa-cta {
      background: var(--green-pale); color: var(--green);
    }
    .tarifa-card:not(.tarifa-card--highlight) .tarifa-cta:hover { background: var(--green); color: #fff; }
    .tarifa-card--highlight .tarifa-cta { background: rgba(255,255,255,0.2); color: #fff; }
    .tarifa-card--highlight .tarifa-cta:hover { background: rgba(255,255,255,0.35); }

    .tarifa-note-footer { text-align: center; margin-top: 32px; font-size: 0.88rem; color: var(--ink-soft); }

    /* ============================================================
       PROCESO
    ============================================================ */
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .step-card {
      padding: 36px 28px; background: var(--bg); border-radius: var(--r);
      border: 1px solid var(--border); position: relative;
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }
    .step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .step-num { font-family: var(--serif); font-size: 3rem; color: var(--green-pale); line-height: 1; display: block; margin-bottom: 12px; }
    .step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
    .step-card p { font-size: 0.9rem; }

    .journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 64px auto 0; }
    .journey-card {
      background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--r);
      padding: 36px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }
    .journey-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
    .journey-step { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; display: block; }
    .journey-card h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 6px; }
    .journey-card p { font-size: 0.9rem; margin: 0; }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-question {
      font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
      cursor: pointer; display: flex; justify-content: space-between; align-items: center;
      gap: 16px; padding: 0; background: none; border: none; width: 100%; text-align: left;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--green); }
    .faq-icon {
      flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
      background: var(--bg-sand); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; transition: transform 0.3s var(--ease), background 0.2s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
    .faq-item.open .faq-answer { max-height: 400px; padding-top: 16px; }
    .faq-answer p { font-size: 0.95rem; }

    /* ============================================================
       CONTACT
    ============================================================ */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-text h2 { margin-bottom: 16px; }
    .contact-text p { margin-bottom: 20px; }
    .contact-email {
      display: flex; align-items: center; gap: 10px;
	  width: fit-content;
      margin-top: 24px; color: var(--ink); font-weight: 500;
      transition: color 0.2s;
    }
    .contact-email:hover { color: var(--green); }
    .contact-email-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--green-pale); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1.1rem;
    }

    .form { display: flex; flex-direction: column; gap: 18px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
    .form-control {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid var(--border); border-radius: 10px;
      font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
      background: var(--bg); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,122,110,0.12); }
    .form-control::placeholder { color: #B2BEC3; }
    textarea.form-control { resize: vertical; min-height: 120px; }

    .form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--ink-mid); line-height: 1.5; }
    .form-check input { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
    .form-check a { color: var(--green); text-decoration: underline; font-weight: 500; }

    .form-success, .form-error { display: none; padding: 14px 18px; border-radius: 10px; font-size: 0.88rem; text-align: center; }
    .form-success { background: #E8F5E9; color: #2E7D32; }
    .form-error   { background: #FFEBEE; color: #C62828; }

    .btn-submit {
      width: 100%; padding: 15px 32px; border-radius: 50px; border: none; cursor: pointer;
      background: var(--green); color: #fff; font-size: 1rem; font-weight: 600;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,122,110,0.28); }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer { background: var(--ink); padding: 48px 0 32px; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-links a:hover { color: #fff; }

    /* ============================================================
       MODALS
    ============================================================ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center; padding: 24px;
      opacity: 0; visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .modal-overlay.open { opacity: 1; visibility: visible; }
    .modal {
      background: var(--bg); border-radius: var(--r);
      max-width: 680px; width: 100%; max-height: 85vh;
      display: flex; flex-direction: column;
      box-shadow: 0 32px 80px rgba(0,0,0,0.15);
      transform: translateY(16px); transition: transform 0.3s var(--ease);
      position: relative;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal > h2 { font-size: 1.4rem; padding: 28px 32px 0; }
    .modal-close {
      position: absolute; top: 14px; right: 18px;
      background: none; border: none; font-size: 1.8rem; color: var(--ink-soft);
      cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .modal-close:hover { color: var(--ink); background: var(--bg-sand); }
    .modal-body { padding: 20px 32px 32px; overflow-y: auto; font-size: 0.88rem; line-height: 1.75; }
    .modal-body h3 { font-size: 1rem; margin: 22px 0 8px; }
    .modal-body p { font-size: 0.88rem; margin-bottom: 10px; }
    .modal-body ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
    .modal-body li { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.6; margin-bottom: 4px; }
    .modal-body a { color: var(--green); text-decoration: underline; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .hero-grid, .enfoque-grid, .bio-grid, .contact-grid { gap: 48px; }
      .formacion-grid { grid-template-columns: 1fr; gap: 40px; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .section { padding: 72px 0; }
      .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 80px 28px 32px; gap: 4px; box-shadow: -4px 0 32px rgba(0,0,0,0.12); transition: right 0.3s var(--ease); z-index: 999; }
      .nav-links.open { right: 0; }
      .nav-links a { font-size: 1rem; padding: 12px 0; width: 100%; }
      .nav-cta { margin-top: 16px !important; display: block !important; width: 100% !important; text-align: center !important; }
      .menu-toggle { display: flex; z-index: 1001; }
      .hero { min-height: auto; padding: 110px 0 64px; }
      .hero-grid, .enfoque-grid, .bio-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-text { text-align: center; }
      .hero-lead { margin: 0 auto 12px; }
      .hero-actions { justify-content: center; }
      .hero-image { max-width: 380px; margin: 0 auto; }
      .hero-badge { left: 50%; transform: translateX(-50%); bottom: -12px; }
      .areas-grid { grid-template-columns: 1fr; }
      .tarifas-grid { grid-template-columns: 1fr; max-width: 420px; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .journey-grid { grid-template-columns: 1fr; max-width: 400px; }
      .bio-image { position: static; max-width: 320px; margin: 0 auto; }
      .enfoque-image { order: -1; aspect-ratio: 16/12; max-height: 280px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
      .trust-inner { gap: 24px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 18px; }
      h1 { font-size: 2.4rem; }
      h2 { font-size: 1.8rem; }
      .steps-grid { grid-template-columns: 1fr; }
      .hero-ghost { display: none; }
      .lang-toggle { margin-right: 4px; }
    }

    /* ============================================================
       MENU TOGGLE ANIMATION
    ============================================================ */
    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ============================================================
       LANGUAGE
    ============================================================ */
    .lang-ca { display: none; }
    html[lang="ca"] .lang-es { display: none; }
    html[lang="ca"] .lang-ca { display: inline; }
    .lang-ca-block { display: none; }
    html[lang="ca"] .lang-es-block { display: none; }
    html[lang="ca"] .lang-ca-block { display: block; }

    /* Horizontal timeline */
    .htl-wrap { max-width: 900px; margin-left: auto; margin-right: auto; }
    .htl {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: relative;
      padding-top: 24px;
    }
    .htl-line {
      position: absolute;
      top: 24px;
      left: calc(16.66% + 12px);
      right: calc(16.66% + 12px);
      height: 2px;
      background: linear-gradient(90deg, var(--green) 0%, var(--amber) 100%);
      transform: translateY(-50%);
      margin-top: 0;
    }
    .htl-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      padding: 0 16px;
    }
    .htl-node {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      position: relative; z-index: 1;
      flex-shrink: 0;
    }
    .htl-item:last-child .htl-node { border-color: var(--amber); }
    .htl-dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--green);
    }
    .htl-dot--amber { background: var(--amber); }
    .htl-label {
      font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: block;
    }
    .htl-item:last-child .htl-label { color: var(--amber); }
    .htl-body h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
    .htl-body p { font-size: 0.9rem; color: var(--ink-mid); margin: 0; line-height: 1.65; }
    @media (max-width: 600px) {
      .htl { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
      .htl-line { display: none; }
      .htl-item { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; padding: 0 0 32px; }
      .htl-node { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
      .htl-body { flex: 1; }
    }