/* ─── AI SUMMARY BLOCKS (AEO) ───────────── */
    .ai-summary {
      background: var(--teal-light);
      border-left: 4px solid var(--teal);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 28px 32px;
      margin-bottom: 48px;
      max-width: 800px;
    }
    .ai-summary__label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block;
    }
    .ai-summary p { font-size: 0.97rem; line-height: 1.75; color: var(--charcoal-80); margin-bottom: 10px; }
    .ai-summary ul { list-style: none; margin: 12px 0 10px; padding: 0; }
    .ai-summary ul li { font-size: 0.93rem; color: var(--charcoal-80); padding: 4px 0 4px 20px; position: relative; line-height: 1.6; }
    .ai-summary ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
    .ai-summary__signpost { font-size: 0.85rem; color: var(--gray-400); margin-top: 12px !important; font-style: italic; }

    /* ─── RESET ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    /* ─── TOKENS ─────────────────────────────── */
    :root {
      --teal:        #3DCEC4;
      --teal-hover:  #2ab8af;
      --teal-light:  #edfaf9;
      --teal-mid:    #c0f0ed;
      --charcoal:    #1D1D1B;
      --charcoal-80: #3a3a38;
      --yellow:      #FFE600;   /* KNALLER — very sparingly */
      --white:       #FFFFFF;
      --gray-50:     #F8F8F8;
      --gray-100:    #F0F0F0;
      --gray-200:    #E0E0E0;
      --gray-400:    #9E9E9E;
      --gray-600:    #555555;
      --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --max-w:       1120px;
      --radius:      14px;
      --radius-sm:   8px;
      --shadow:      0 2px 24px rgba(0,0,0,0.07);
      --shadow-lg:   0 8px 48px rgba(0,0,0,0.12);
      --trans:       all 0.22s ease;
    }

    /* ─── BASE ─────────────────────────────── */
    body {
      font-family: var(--font);
      color: var(--charcoal);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* ─── TYPOGRAPHY ─────────────────────────────── */
    h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
    h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
    h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
    p  { font-size: 1.05rem; line-height: 1.75; color: var(--gray-600); }
    .text-teal { color: var(--teal); }
    .text-white { color: var(--white); }
    .text-muted { color: var(--gray-400); }

    /* ─── LAYOUT ─────────────────────────────── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
    .section    { padding: 88px 0; }
    .section--gray     { background: var(--gray-50); }
    .section--dark     { background: var(--charcoal); }
    .section--teal-light { background: var(--teal-light); }

    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 900px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px)  { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

    /* ─── BUTTONS ─────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; border-radius: 50px;
      font-family: var(--font); font-weight: 600; font-size: 0.95rem;
      cursor: pointer; border: none; text-decoration: none;
      transition: var(--trans); white-space: nowrap;
    }
    .btn:active { transform: scale(0.96); }
    .btn--primary {
      background: var(--teal); color: var(--white);
    }
    .btn--primary:hover {
      background: var(--teal-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(61,206,196,0.38);
    }
    .btn--outline {
      background: transparent; color: var(--charcoal);
      border: 2px solid var(--charcoal);
    }
    .btn--outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
    .btn--outline-white {
      background: transparent; color: var(--white);
      border: 2px solid rgba(255,255,255,0.6);
    }
    .btn--outline-white:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
    .btn--sm { padding: 9px 20px; font-size: 0.85rem; }

    /* ─── BADGES ─────────────────────────────── */
    .badge {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 4px 12px; border-radius: 50px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .badge--yellow  { background: var(--yellow); color: var(--charcoal); }
    .badge--teal    { background: var(--teal); color: var(--white); }
    .badge--outline { background: transparent; border: 1.5px solid var(--gray-200); color: var(--gray-400); }
    .badge--dark    { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

    /* ─── TAGS ─────────────────────────────── */
    .tag {
      display: inline-block; padding: 3px 10px; border-radius: 50px;
      font-size: 0.72rem; font-weight: 600;
      background: var(--teal-light); color: var(--teal);
    }

    /* ─── SECTION LABEL ─────────────────────────────── */
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
      display: block;
    }

    /* ─── CARD ─────────────────────────────── */
    .card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px; box-shadow: var(--shadow);
      transition: var(--trans);
    }
    .card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .card--clickable { cursor: pointer; }

    /* ─── DIVIDER ─────────────────────────────── */
    .divider { height: 1px; background: var(--gray-100); margin: 0; }

    /* ─────────────────────────────────────────────── */
    /* NAVBAR                                          */
    /* ─────────────────────────────────────────────── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 70px;
      transition: height 0.25s ease, box-shadow 0.25s ease;
    }
    .navbar--scrolled { height: 58px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .navbar__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
    }
    .navbar__logo { cursor: pointer; display: flex; align-items: center; }
    .navbar__links {
      display: flex; align-items: center; gap: 28px;
    }
    .navbar__links a {
      font-size: 0.88rem; font-weight: 500; color: var(--charcoal);
      cursor: pointer; transition: color 0.2s; padding: 4px 0;
      border-bottom: 2px solid transparent;
    }
    .navbar__links a:hover { color: var(--teal); }
    .navbar__links a.active { color: var(--teal); border-bottom-color: var(--teal); }

    /* ─── LOGO (inline text, no external image dependency) ─── */
    .navbar__logo-mark {
      display: flex; align-items: center; gap: 10px; text-decoration: none;
    }
    .navbar__logo-bar { width: 4px; height: 26px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
    .navbar__logo-text { display: flex; flex-direction: column; line-height: 1.05; }
    .navbar__logo-name { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.01em; white-space: nowrap; }
    .navbar__logo-name .teal { color: var(--teal); }
    .navbar__logo-name .dark { color: var(--charcoal); }
    .navbar__logo-tag { font-size: 0.62rem; font-weight: 600; color: var(--charcoal-80); letter-spacing: 0.02em; white-space: nowrap; }

    /* ─── MOBILE MENU TOGGLE ─── */
    .navbar__toggle {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0;
    }
    .navbar__toggle span {
      display: block; width: 24px; height: 2px; background: var(--charcoal);
      border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .navbar__toggle.open span:nth-child(2) { opacity: 0; }
    .navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 860px) {
      .navbar__links {
        display: flex; flex-direction: column; align-items: flex-start; gap: 0;
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--gray-100);
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height 0.3s ease, opacity 0.2s ease;
        padding: 0 28px;
      }
      .navbar__links.open { max-height: 80vh; opacity: 1; overflow-y: auto; padding: 12px 28px 20px; }
      .navbar__links li { width: 100%; }
      .navbar__links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
      .navbar__toggle { display: flex; }
      .navbar__inner > .btn--primary { display: none; }
      .navbar__links .navbar__cta-mobile { display: block; margin-top: 14px; text-align: center; }
    }
    .navbar__cta-mobile { display: none; }

    /* ─────────────────────────────────────────────── */
    /* PAGE WRAPPER                                    */
    /* ─────────────────────────────────────────────── */
    .page { padding-top: 70px; min-height: 100vh; }

    /* ─────────────────────────────────────────────── */
    /* PAGE HEADER (inner pages)                       */
    /* ─────────────────────────────────────────────── */
    .page-header {
      background: var(--gray-50);
      padding: 72px 0 60px;
      border-bottom: 1px solid var(--gray-100);
    }
    .page-header--dark {
      background: var(--charcoal);
    }
    .page-header--dark .section-label { color: var(--teal); }
    .page-header--dark h1 { color: var(--white); }
    .page-header__desc {
      font-size: 1.15rem; color: var(--gray-600); max-width: 560px;
      margin-top: 14px; line-height: 1.6;
    }

    /* ─────────────────────────────────────────────── */
    /* HOME — HERO                                     */
    /* ─────────────────────────────────────────────── */
    .hero {
      background: var(--charcoal);
      padding: 96px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -120px; right: -120px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(61,206,196,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero__grid {
      display: grid; grid-template-columns: 1fr 420px;
      gap: 64px; align-items: center;
    }
    @media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
    .hero__eyebrow {
      display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
    }
    .hero__eyebrow span { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.5); }
    .hero h1 { color: var(--white); }
    .hero h1 em { font-style: normal; color: var(--teal); }
    .hero__desc {
      font-size: 1.1rem; color: rgba(255,255,255,0.65);
      max-width: 520px; margin-top: 20px; line-height: 1.75;
    }
    .hero__actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
    .hero__note {
      display: flex; align-items: center; gap: 8px;
      margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.4);
    }
    .dot-yellow { color: var(--yellow); font-size: 0.6rem; }
    .hero__photo {
      background: var(--charcoal-80);
      border-radius: 20px;
      aspect-ratio: 4/5;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.08);
      position: relative; overflow: hidden;
    }
    .hero__photo::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(transparent, rgba(29,29,27,0.6));
    }
    .photo-placeholder-text {
      text-align: center; color: rgba(255,255,255,0.3);
    }
    .photo-placeholder-text span { font-size: 3rem; display: block; margin-bottom: 8px; }
    .photo-placeholder-text p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

    /* ─────────────────────────────────────────────── */
    /* HOME — VISION                                   */
    /* ─────────────────────────────────────────────── */
    .vision-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
    }
    @media (max-width: 768px) { .vision-grid { grid-template-columns: 1fr; gap: 48px; } }
    .vision__text p { margin-top: 14px; }
    .diff-list { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
    .diff-item {
      display: flex; align-items: flex-start; gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--gray-100);
    }
    .diff-item:last-child { border-bottom: none; }
    .diff-icon {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 800; flex-shrink: 0; margin-top: 2px;
    }
    .diff-icon--no  { background: #ffe5e5; color: #e53e3e; }
    .diff-icon--yes { background: var(--teal-light); color: var(--teal); }
    .diff-item h3 { font-size: 1rem; margin-bottom: 4px; }
    .diff-item p  { font-size: 0.9rem; }

    /* ─────────────────────────────────────────────── */
    /* HOME — SERVICES PREVIEW                         */
    /* ─────────────────────────────────────────────── */
    .section-row {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 44px; flex-wrap: wrap; gap: 16px;
    }
    .service-card { cursor: pointer; }
    .service-card__icon {
      font-size: 2rem; margin-bottom: 18px;
      width: 56px; height: 56px; border-radius: 14px;
      background: var(--teal-light);
      display: flex; align-items: center; justify-content: center;
    }
    .service-card h3 { margin-bottom: 10px; }
    .card-arrow {
      display: inline-flex; align-items: center; gap: 4px;
      margin-top: 18px; font-size: 0.85rem; font-weight: 600;
      color: var(--teal); transition: gap 0.2s;
    }
    .card:hover .card-arrow { gap: 8px; }

    /* ─────────────────────────────────────────────── */
    /* HOME — BLOG PREVIEW                             */
    /* ─────────────────────────────────────────────── */
    .blog-card .blog-card__meta {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 14px; flex-wrap: wrap;
    }
    .blog-card__date { font-size: 0.78rem; color: var(--gray-400); }
    .blog-card h3 { margin-bottom: 8px; }
    .blog-card p  { font-size: 0.92rem; }

    /* ─────────────────────────────────────────────── */
    /* EVENT CARDS                                     */
    /* ─────────────────────────────────────────────── */
    .event-card {
      display: flex; gap: 20px; align-items: flex-start;
    }
    .event-card__date {
      display: flex; flex-direction: column; align-items: center;
      background: var(--teal); color: #fff;
      border-radius: 10px; padding: 12px 18px;
      min-width: 60px; text-align: center; flex-shrink: 0;
    }
    .event-date__day { font-size: 1.8rem; font-weight: 700; line-height: 1; }
    .event-date__month { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
    .event-card__body h3 { margin-bottom: 6px; font-size: 1.05rem; }
    .event-card__body p  { font-size: 0.9rem; color: var(--gray-medium); margin-bottom: 4px; }
    .event-meta { font-size: 0.85rem !important; color: var(--charcoal) !important; }
    @media (max-width: 480px) { .event-card { flex-direction: column; } }

    /* ─────────────────────────────────────────────── */
    /* CTA BANNER                                      */
    /* ─────────────────────────────────────────────── */
    .cta-banner {
      background: var(--charcoal);
      padding: 80px 0;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(61,206,196,0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 { color: var(--white); margin-bottom: 14px; }
    .cta-banner p  { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 32px; }
    .cta-banner .btn--primary { font-size: 1rem; padding: 15px 32px; }

    /* ─────────────────────────────────────────────── */
    /* HISTORIA — STORY                                */
    /* ─────────────────────────────────────────────── */
    .story-grid {
      display: grid; grid-template-columns: 380px 1fr;
      gap: 64px; align-items: start;
    }
    @media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
    .story__photo {
      background: var(--gray-100);
      border-radius: 20px; aspect-ratio: 3/4;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .story__photo .photo-placeholder-text span { color: var(--gray-400); font-size: 3rem; display: block; }
    .story__photo .photo-placeholder-text p { color: var(--gray-400); font-size: 0.8rem; }
    .story__text h2 { margin-bottom: 16px; }
    .story__text p { margin-bottom: 14px; }

    /* ─────────────────────────────────────────────── */
    /* HISTORIA — TIMELINE                             */
    /* ─────────────────────────────────────────────── */
    .timeline {
      display: flex; flex-direction: column;
      max-width: 680px; margin: 0 auto;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute; left: 18px; top: 8px; bottom: 0;
      width: 2px; background: var(--gray-200);
    }
    .timeline-item {
      display: flex; gap: 28px; align-items: flex-start;
      padding-bottom: 48px; position: relative;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      border: 3px solid var(--gray-200);
      background: var(--white); z-index: 1;
      display: flex; align-items: center; justify-content: center;
    }
    .timeline-dot--teal   { border-color: var(--teal); background: var(--teal-light); }
    .timeline-dot--yellow { border-color: var(--yellow); background: #fff9cc; }
    .timeline-content { flex: 1; padding-top: 6px; }
    .timeline-year {
      font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.08em; color: var(--teal); display: block; margin-bottom: 6px;
    }
    .timeline-content h3 { margin-bottom: 8px; }

    /* ─────────────────────────────────────────────── */
    /* TRABAJAR — SERVICES                             */
    /* ─────────────────────────────────────────────── */
    .service-item {
      display: grid; grid-template-columns: 80px 1fr;
      gap: 32px; padding: 52px 0; align-items: start;
    }
    @media (max-width: 640px) { .service-item { grid-template-columns: 1fr; } }
    .service-item__icon {
      font-size: 2.2rem;
      width: 68px; height: 68px; border-radius: 18px;
      background: var(--teal-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .service-item__header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 14px; flex-wrap: wrap;
    }
    .service-item__header h2 { font-size: 1.6rem; }
    .service-features {
      margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px;
    }
    .service-features li {
      font-size: 0.95rem; color: var(--gray-600);
      display: flex; align-items: center; gap: 10px;
    }
    .service-features li::before { content: ''; }

    /* ─────────────────────────────────────────────── */
    /* TRABAJAR — PROCESS                              */
    /* ─────────────────────────────────────────────── */
    .process-steps {
      display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      gap: 0; align-items: start;
    }
    @media (max-width: 860px) {
      .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
      .process-arrow { display: none; }
    }
    @media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
    .process-step {
      text-align: center; padding: 32px 20px;
      background: var(--white); border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .process-step__number {
      font-size: 2.5rem; font-weight: 800; color: var(--teal-mid);
      line-height: 1; margin-bottom: 14px;
    }
    .process-step h3 { margin-bottom: 8px; }
    .process-arrow {
      font-size: 1.5rem; color: var(--gray-200);
      display: flex; align-items: center; padding: 0 4px; margin-top: 40px;
    }

    /* ─────────────────────────────────────────────── */
    /* TRABAJAR — FAQ                                  */
    /* ─────────────────────────────────────────────── */
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--gray-100); }
    .faq-question {
      width: 100%; text-align: left; background: none; border: none;
      padding: 22px 0; cursor: pointer; font-family: var(--font);
      font-size: 1rem; font-weight: 600; color: var(--charcoal);
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
    }
    .faq-question:hover { color: var(--teal); }
    .faq-icon {
      font-size: 1.4rem; color: var(--teal); flex-shrink: 0;
      transition: transform 0.25s; display: block; width: 24px; text-align: center;
    }
    .faq-icon.open { transform: rotate(45deg); }
    .faq-answer {
      overflow: hidden; max-height: 0;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .faq-answer p { padding-bottom: 22px; }

    /* ─────────────────────────────────────────────── */
    /* BLOG                                            */
    /* ─────────────────────────────────────────────── */
    .blog-filters {
      display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
    }
    .filter-btn {
      padding: 8px 18px; border-radius: 50px; border: 1.5px solid var(--gray-200);
      background: none; cursor: pointer; font-family: var(--font);
      font-size: 0.85rem; font-weight: 500; color: var(--gray-600);
      transition: var(--trans);
    }
    .filter-btn:hover { border-color: var(--teal); color: var(--teal); }
    .filter-btn.active {
      background: var(--teal); border-color: var(--teal); color: var(--white);
    }
    .blog-coming-soon {
      background: var(--charcoal); color: var(--white);
      border-radius: var(--radius); padding: 56px 48px;
      text-align: center; margin-bottom: 48px;
      position: relative; overflow: hidden;
    }
    .blog-coming-soon::before {
      content: '';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(61,206,196,0.13) 0%, transparent 70%);
    }
    .blog-coming-soon h2 { color: var(--white); position: relative; }
    .blog-coming-soon p  { color: rgba(255,255,255,0.55); max-width: 440px; margin: 14px auto 0; position: relative; }
    .blog-preview-grid { opacity: 0.45; pointer-events: none; }

    /* ─────────────────────────────────────────────── */
    /* BLOG ARTICLE                                    */
    /* ─────────────────────────────────────────────── */
    .article-header { max-width: 760px; margin: 0 auto 56px; }
    .article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-top: 20px; }
    .article-meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
    .article-meta span { font-size: 0.85rem; color: var(--gray-400); }
    .article-body { max-width: 760px; margin: 0 auto; }
    .article-body p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px; }
    .article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--charcoal); }
    .article-body h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--charcoal); }
    .article-body blockquote {
      border-left: 4px solid var(--teal); padding: 16px 24px;
      background: var(--teal-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      margin: 28px 0; font-style: italic;
    }
    .article-body blockquote p { margin-bottom: 0; color: var(--charcoal-80); }
    .article-steps { list-style: none; margin: 24px 0; }
    .article-steps li {
      display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px;
      padding: 20px 24px; background: var(--gray-50); border-radius: var(--radius-sm);
    }
    .article-steps__num {
      background: var(--teal); color: white; border-radius: 50%;
      width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
    }
    .article-back { display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.88rem; color: var(--gray-400); cursor: pointer; margin-bottom: 40px;
      transition: color 0.2s;
    }
    .article-back:hover { color: var(--teal); }

    /* ─────────────────────────────────────────────── */
    /* NEWSLETTER                                      */
    /* ─────────────────────────────────────────────── */
    .newsletter-form {
      display: flex; gap: 12px; max-width: 440px; margin: 28px auto 0;
    }
    .newsletter-input {
      flex: 1; padding: 13px 18px; border-radius: 50px;
      border: 1.5px solid var(--gray-200); font-family: var(--font);
      font-size: 0.95rem; outline: none; transition: border-color 0.2s;
    }
    .newsletter-input:focus { border-color: var(--teal); }

    /* ─────────────────────────────────────────────── */
    /* CHEMP.AI                                        */
    /* ─────────────────────────────────────────────── */
    .chemp-hero {
      background: var(--charcoal); padding: 88px 0 72px;
      position: relative; overflow: hidden;
    }
    .chemp-hero::before {
      content: '';
      position: absolute; top: -100px; left: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(61,206,196,0.1) 0%, transparent 65%);
      pointer-events: none;
    }
    .chemp-wordmark {
      font-size: clamp(3rem, 8vw, 6rem); font-weight: 800;
      color: var(--white); letter-spacing: -0.03em; line-height: 1;
    }
    .chemp-wordmark span { color: var(--teal); }
    .chemp-card-accent {
      border-left: 4px solid var(--yellow);
    }
    .status-strip {
      display: flex; align-items: center; gap: 10px;
      padding: 16px 20px; border-radius: var(--radius-sm);
      background: var(--gray-50); border: 1px solid var(--gray-100);
      margin-top: 24px;
    }
    .status-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--yellow); flex-shrink: 0;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.4; }
    }

    /* ─────────────────────────────────────────────── */
    /* CONTACTO                                        */
    /* ─────────────────────────────────────────────── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 420px;
      gap: 64px; align-items: start;
    }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 0.85rem; font-weight: 600;
      margin-bottom: 8px; color: var(--charcoal);
    }
    .form-input {
      width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
      border: 1.5px solid var(--gray-200); font-family: var(--font);
      font-size: 0.95rem; color: var(--charcoal); outline: none;
      transition: border-color 0.2s; background: var(--white);
    }
    .form-input:focus { border-color: var(--teal); }
    .form-textarea { min-height: 140px; resize: vertical; }
    .contact-card {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 22px 0; border-bottom: 1px solid var(--gray-100);
    }
    .contact-card:last-child { border-bottom: none; }
    .contact-card__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
    .contact-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
    .contact-card p  { font-size: 0.88rem; }
    .contact-link {
      font-size: 0.95rem; color: var(--teal); font-weight: 500;
    }
    .contact-link:hover { text-decoration: underline; }

    /* ─────────────────────────────────────────────── */
    /* FOOTER                                          */
    /* ─────────────────────────────────────────────── */
    footer {
      background: var(--charcoal);
      padding: 64px 0 32px;
    }
    .footer__grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 56px;
    }
    @media (max-width: 860px) {
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer__grid { grid-template-columns: 1fr; }
    }
    .footer__desc { color: rgba(255,255,255,0.35); font-size: 0.88rem; margin-top: 14px; line-height: 1.6; }
    .footer__links h4 {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px;
    }
    .footer__links ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__links a {
      font-size: 0.88rem; color: rgba(255,255,255,0.55);
      cursor: pointer; transition: color 0.2s;
    }
    .footer__links a:hover { color: var(--teal); }
    .footer__cta h4 {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px;
    }
    .footer__cta p { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer__bottom p  { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
    .footer__bottom a  { color: rgba(255,255,255,0.25); transition: color 0.2s; }
    .footer__bottom a:hover { color: rgba(255,255,255,0.5); }

    /* ─────────────────────────────────────────────── */
    /* VALUES GRID (Historia)                          */
    /* ─────────────────────────────────────────────── */
    .value-card { text-align: center; }
    .value-card .value-icon {
      font-size: 2.2rem; margin-bottom: 16px;
      width: 64px; height: 64px; border-radius: 18px;
      background: var(--teal-light);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    }
    .value-card:hover .value-icon {
      transform: scale(1.18) rotate(-6deg);
      box-shadow: 0 8px 24px rgba(61,206,196,0.28);
    }

    /* ─────────────────────────────────────────────── */
    /* ANIMATIONS                                      */
    /* ─────────────────────────────────────────────── */

    /* Scroll-reveal */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal:nth-child(2) { transition-delay: 0.08s; }
    .reveal:nth-child(3) { transition-delay: 0.16s; }
    .reveal:nth-child(4) { transition-delay: 0.24s; }
    .reveal:nth-child(5) { transition-delay: 0.32s; }
    .reveal:nth-child(6) { transition-delay: 0.40s; }

    /* Hero entrance */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInScale {
      from { opacity: 0; transform: scale(0.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    .hero-anim-1 { animation: fadeInUp 0.7s ease both; }
    .hero-anim-2 { animation: fadeInUp 0.7s 0.15s ease both; }
    .hero-anim-3 { animation: fadeInUp 0.7s 0.28s ease both; }
    .hero-anim-4 { animation: fadeInUp 0.7s 0.42s ease both; }
    .hero-anim-img { animation: fadeInScale 0.8s 0.2s ease both; }

    /* Nav underline slide */
    .navbar__links a {
      position: relative;
      transition: color 0.22s, border-bottom-color 0.22s;
    }
    .navbar__links a:hover { border-bottom-color: var(--teal); }

    /* Timeline hover */
    .timeline-item {
      transition: transform 0.25s ease;
      cursor: default;
    }
    .timeline-item:hover { transform: translateX(8px); }

    /* AI summary hover */
    .ai-summary {
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .ai-summary:hover {
      box-shadow: 0 6px 28px rgba(61,206,196,0.18);
      transform: translateY(-2px);
    }

    /* Event card hover */
    .event-card {
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border-radius: var(--radius-sm);
    }
    .event-card:hover {
      transform: translateX(6px);
      box-shadow: -4px 0 0 var(--teal), 0 4px 20px rgba(0,0,0,0.06);
    }

    /* Footer links nudge */
    .footer__links a {
      display: inline-flex; align-items: center;
      transition: color 0.2s, padding-left 0.2s;
    }
    .footer__links a:hover { padding-left: 6px; color: var(--teal); }

    /* Section label pop */
    .section-label {
      display: inline-block;
      transition: letter-spacing 0.3s ease;
    }
    .section-label:hover { letter-spacing: 0.14em; }

    /* Navbar logo hover */
    .navbar__logo { transition: opacity 0.2s; }
    .navbar__logo:hover { opacity: 0.8; }

    /* Blog card image zoom */
    .blog-card { overflow: hidden; }
    .blog-thumb {
      transition: transform 0.4s ease;
      display: block; width: 100%; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    }
    .blog-card:hover .blog-thumb { transform: scale(1.04); }
