/* Made Anywhere — CSS compartido para páginas de sector (extraído del home) */
@font-face{font-family:'Inter';font-style:normal;font-weight:300;font-display:swap;src:url('assets/fonts/inter-300.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('assets/fonts/inter-400.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('assets/fonts/inter-500.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('assets/fonts/inter-600.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('assets/fonts/inter-700.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  @font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url('assets/fonts/inter-800.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
  main#contenido{width:100%;display:flex;flex-direction:column;align-items:center;}
  footer.site-footer .links a{display:inline-block;padding:6px 0;}
  :root {
    --bg: #0a0a0f;
    --surface: #111118;
    --text: #f0f0f5;
    --text-muted: #a6a6c8;
    --accent: #c8a0e0;
    --accent-pink: #b04090;
    --border: rgba(255, 255, 255, 0.08);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
  }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; padding: 0; margin: 0; }

  /* ---------- NAV ---------- */
  nav {
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 24px;
    margin-bottom: 14px;
  }
  .nav-logo {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .nav-logo-mark { width: 26px; height: 24px; flex-shrink: 0; }
  .flag-co { display: inline-flex; margin-left: 3px; }
  .flag-co svg {
    width: 22px; height: 15px;
    border-radius: 3px;
    display: block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  }
  /* "nuevo" tag for novedades cards */
  .tag-new {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0a0f;
    background: linear-gradient(90deg, #f06ed2, #b04090);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .nav-menu { display: contents; }
  .nav-links {
    display: flex;
    gap: 32px;
    justify-content: center;
  }
  .nav-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s ease;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .btn-login, .btn-signup {
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
  }
  .btn-login {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
  }
  .btn-login:hover { background: rgba(255, 255, 255, 0.12); }
  .btn-signup {
    background: #ffffff;
    color: #0a0a0f;
    font-weight: 600;
  }
  .btn-signup:hover { opacity: 0.88; }

  .menu-toggle {
    display: none;
    width: 24px;
    height: 14px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
  }
  .menu-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .menu-toggle span:nth-child(1) { top: 0; }
  .menu-toggle span:nth-child(2) { top: 12px; }
  .menu-toggle.active span:nth-child(1) { top: 6px; transform: translateY(0) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { top: 6px; transform: translateY(0) rotate(-45deg); }

  /* ---------- HERO CARD ---------- */
  .hero-card {
    width: 100%;
    max-width: 1600px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    position: relative;
    background: #0d0b12;
    padding: 80px 40px 70px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% -70%,
        transparent 60%,
        rgba(176, 48, 136, 0.03) 63%,
        rgba(176, 48, 136, 0.08) 65%,
        rgba(176, 48, 136, 0.16) 67%,
        rgba(176, 48, 136, 0.28) 69%,
        rgba(176, 48, 136, 0.40) 71%,
        rgba(176, 48, 136, 0.52) 73%,
        rgba(176, 48, 136, 0.64) 75%,
        rgba(176, 48, 136, 0.74) 77%,
        rgba(176, 48, 136, 0.82) 79%,
        rgba(210, 70, 175, 0.92) 85%,
        rgba(240, 110, 210, 0.88) 87%,
        rgba(255, 205, 250, 0.92) 91%,
        rgba(255, 240, 255, 0.98) 93%,
        #ffffff 95%),
      radial-gradient(circle at 50% 35%, rgba(120, 40, 180, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
            mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
    z-index: 0;
    pointer-events: none;
  }

  /* ---------- ICON PIPELINE ---------- */
  .icon-pipeline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin-bottom: 52px;
    z-index: 1;
  }

  .beam-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 2;
  }

  .icon-node {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1a1a24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
      6px 6px 12px rgba(0, 0, 0, 0.4),
      -4px -4px 10px rgba(255, 255, 255, 0.03),
      inset 1px 1px 1px rgba(255, 255, 255, 0.05),
      inset 4px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .icon-node::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px dotted #1a1a24;
    border-radius: 50%;
    pointer-events: none;
  }
  .icon-node:hover {
    transform: translateY(-1px);
    box-shadow:
      8px 8px 16px rgba(0, 0, 0, 0.5),
      -5px -5px 12px rgba(255, 255, 255, 0.04),
      inset 1px 1px 1px rgba(255, 255, 255, 0.06),
      inset 4px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .icon-node:active {
    box-shadow:
      inset 2px 2px 6px rgba(0, 0, 0, 0.5),
      inset -2px -2px 6px rgba(255, 255, 255, 0.04);
  }
  .icon-node svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* side-light glows */
  .node-light-right::before,
  .node-light-left::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 4;
  }
  .node-light-right::before {
    background: radial-gradient(circle at right, rgba(200, 200, 200, 0.45) 0%, transparent 70%);
  }
  .node-light-left::before {
    background: radial-gradient(circle at left, rgba(200, 100, 255, 0.5) 0%, transparent 70%);
  }
  .node-light-right.active::before,
  .node-light-left.active::before {
    opacity: 1;
  }

  .pipeline-line {
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
    position: relative;
    z-index: 1;
  }
  .pipeline-line.right {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.15));
  }

  .center-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-node-center {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1e1e2c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow:
      8px 8px 16px rgba(0, 0, 0, 0.5),
      -6px -6px 14px rgba(255, 255, 255, 0.04),
      inset 1px 1px 2px rgba(255, 255, 255, 0.06),
      inset 6px 6px 12px rgba(0, 0, 0, 0.5);
  }
  .icon-node-center svg { width: 28px; height: 28px; fill: white; }

  .splash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 200, 0.6) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.4);
    z-index: 2;
    pointer-events: none;
  }
  .splash.animate {
    animation: splash-anim 0.8s ease-out forwards;
  }

  @keyframes splash-anim {
    0%   { transform: scale(0.4); opacity: 0.8; }
    40%  { opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
  }

  /* ---------- HERO TEXT ---------- */
  .hero-content {
    max-width: 620px;
    z-index: 1;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-block;
    margin: 0 0 22px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .hero-heading {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: var(--text);
  }
  .hero-heading strong {
    display: block;
    font-weight: 400;
    margin-top: 4px;
    background: linear-gradient(to right, #ffffff, #a98597);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-tagline {
    font-size: clamp(1.05rem, 2.3vw, 1.45rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    background: linear-gradient(90deg, #c8a0e0, #f06ed2);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.6;
  }
  .btn-cta {
    display: inline-block;
    background: #ffffff;
    color: #0a0a0f;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .btn-cta:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ---------- SECTIONS ---------- */
  .section {
    width: 100%;
    max-width: 1600px;
    padding: 90px 40px 30px;
    position: relative;
  }
  .section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 640px;
    margin: 0 0 14px;
    color: var(--text);
  }
  .section-title strong {
    font-weight: 400;
    background: linear-gradient(to right, #ffffff, #a98597);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section-lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.74);
    max-width: 560px;
    margin: 0 0 48px;
    line-height: 1.65;
  }

  /* services grid */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .service-card {
    position: relative;
    background: #0d0b12;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 28px 26px 26px;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  }
  .service-card:hover {
    border-color: rgba(176, 48, 136, 0.35);
    background: #110d18;
    transform: translateY(-2px);
  }
  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(176, 48, 136, 0.22), rgba(120, 40, 180, 0.10));
    border: 1px solid rgba(176, 48, 136, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .service-icon svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: var(--text);
  }
  .service-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
  }

  /* pillars */
  .pillar-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .pillar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 4px 0;
  }
  .pillar-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
    display: block;
  }
  .pillar h3 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    color: var(--text);
  }
  .pillar p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
    max-width: 320px;
  }

  /* contact card */
  .contact-card {
    width: 100%;
    max-width: 1600px;
    margin: 60px 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    background: #0d0b12;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }
  .contact-card::before {
    content: '';
    position: absolute;
    inset: auto -120px -160px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 48, 136, 0.35) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-left { position: relative; z-index: 1; }
  .contact-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 14px;
  }
  .contact-left h2 strong {
    font-weight: 400;
    background: linear-gradient(to right, #ffffff, #a98597);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .contact-left p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.74);
    margin: 0 0 28px;
    line-height: 1.6;
    max-width: 460px;
  }
  .contact-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .contact-cta-row .btn-cta {
    padding: 11px 24px;
    font-size: 0.85rem;
  }
  .contact-cta-row .btn-cta.ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
  }
  .contact-cta-row .btn-cta.ghost:hover { background: rgba(255, 255, 255, 0.12); opacity: 1; }

  .contact-right { position: relative; z-index: 1; }
  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .contact-row:last-child { border-bottom: none; }
  .contact-row .ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-row .ico svg {
    width: 16px; height: 16px;
    stroke: rgba(255, 255, 255, 0.75);
    stroke-width: 1.6; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .contact-row .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 4px;
    display: block;
  }
  .contact-row .value {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.45;
  }
  .contact-row .value a { color: var(--text); }
  .contact-row .value a:hover { color: var(--accent); }

  /* footer */
  footer.site-footer {
    width: 100%;
    max-width: 1600px;
    padding: 24px 40px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 20px;
  }
  footer.site-footer a {
    color: rgba(255, 255, 255, 0.74);
    transition: color 0.2s ease;
  }
  footer.site-footer a:hover { color: var(--text); }
  footer.site-footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
  footer.site-footer strong { color: rgba(255, 255, 255, 0.7); font-weight: 600; }

  /* ---------- BRANDS ---------- */
  .brands {
    width: 100%;
    max-width: 1600px;
    display: flex;
    gap: 64px;
    padding: 32px 24px 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .brand-item svg { width: 22px; height: 22px; }

  /* ---------- HERO BADGES ---------- */
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 34px;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(176, 48, 136, 0.4);
    background: linear-gradient(160deg, rgba(176, 48, 136, 0.16), rgba(120, 40, 180, 0.05));
    color: #f0f0f5;
    font-size: 0.84rem;
    font-weight: 500;
  }
  .hero-badge svg {
    width: 15px; height: 15px;
    stroke: var(--accent); stroke-width: 2.4; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
  }

  /* ---------- SHOWCASE / CHAT ---------- */
  .showcase {
    width: 100%;
    max-width: 1600px;
    padding: 70px 40px 20px;
    display: grid;
    grid-template-columns: 440px 340px;
    justify-content: center;
    gap: 64px;
    align-items: center;
  }
  .showcase-copy { max-width: 440px; }
  .showcase-copy h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--text);
  }
  .showcase-copy h2 strong {
    font-weight: 400;
    background: linear-gradient(to right, #ffffff, #a98597);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .showcase-copy p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
    margin: 0 0 14px;
  }

  .chat-phone {
    width: 340px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b141a;
    overflow: hidden;
    box-shadow: 0 30px 80px -40px rgba(176, 48, 136, 0.55), 0 12px 40px rgba(0, 0, 0, 0.5);
  }
  .chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #1f2c33;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .chat-head .avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(160deg, #b04090, #7828b4);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 0.95rem;
    flex-shrink: 0;
  }
  .chat-head .name { font-size: 0.92rem; font-weight: 600; color: #f0f0f5; line-height: 1.2; }
  .chat-head .status { font-size: 0.72rem; color: #8fa3ad; }
  .chat-body {
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #0b141a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 22px 22px;
    min-height: 380px;
  }
  .cbubble {
    max-width: 82%;
    padding: 8px 11px 6px;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.42;
  }
  .cbubble .t {
    display: block;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
    margin-top: 3px;
  }
  .cbubble.in {
    background: #1f2c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 3px;
  }
  .cbubble.out {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 3px;
  }

  /* ---------- CAROUSEL ---------- */
  .chat-carousel { display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .car-viewport { width: 340px; }
  .car-slide { display: none; flex-direction: column; align-items: center; gap: 14px; }
  .car-slide.active { display: flex; animation: slidefade 0.45s ease; }
  @keyframes slidefade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  .chat-caption { font-size: 0.78rem; color: var(--accent); letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; }
  .car-controls { display: flex; align-items: center; gap: 16px; }
  .car-dots { display: flex; gap: 8px; }
  .car-dot {
    width: 24px; height: 24px; padding: 0; border: none; background: transparent;
    cursor: pointer; position: relative; display: inline-flex;
  }
  .car-dot::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.32); transition: width 0.25s ease, background 0.25s ease;
  }
  .car-dot.active::before { width: 24px; background: var(--accent); }
  .car-arrow {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border);
    color: var(--text); cursor: pointer; font-size: 1.2rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
  }
  .car-arrow:hover { background: rgba(255, 255, 255, 0.12); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px) {
    .showcase {
      grid-template-columns: 1fr;
      gap: 36px;
      justify-items: center;
      text-align: center;
      padding: 60px 28px 10px;
    }
    .showcase-copy { max-width: 560px; }
  }
  @media (max-width: 860px) {
    .icon-pipeline { gap: 0; margin-bottom: 40px; }
    .pipeline-line { width: 80px; }
  }

  @media (max-width: 768px) {
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .menu-toggle { display: block; }
    .nav-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: var(--bg);
      padding: 80px 32px 32px;
      gap: 24px;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
    }
    .nav-menu.active { right: 0; }
    .nav-links {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }
    .nav-links a { font-size: 1.2rem; }
    .nav-actions {
      flex-direction: column;
      width: 100%;
      gap: 12px;
    }
    .btn-login, .btn-signup {
      width: 100%;
      padding: 14px 18px;
      font-size: 0.95rem;
      text-align: center;
    }
    .icon-node { width: 38px; height: 38px; }
    .icon-node-center { width: 52px; height: 52px; }
    .hero-card { padding: 60px 20px 60px; min-height: auto; }
    .brands { gap: 32px; }
  }

  @media (max-width: 1024px) {
    .service-grid,
    .pillar-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-card {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 44px 28px;
    }
  }

  @media (max-width: 600px) {
    .service-grid,
    .pillar-row { grid-template-columns: 1fr; }
    .section { padding: 70px 24px 20px; }
    .contact-card { padding: 36px 22px; margin: 40px 0 18px; }
    footer.site-footer { flex-direction: column; padding: 24px 24px 16px; }
  }

  @media (max-width: 480px) {
    .hero-card { border-radius: 16px; }
    .brands { gap: 24px; }
    .chat-phone { width: 100%; }
    .car-viewport { width: 100%; }
  }
