    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --magenta:      #D4187D;
      --magenta-dark: #A8125F;
      --yellow:       #F7C832;
      --teal:         #00B2C0;
      --dark:         #0D0D0D;
      --dark2:        #161616;
      --dark3:        #232323;
      --gray-light:   #F6F6F6;
      --gray-mid:     #E6E6E6;
      --text:         #1A1A1A;
      --text-mid:     #555555;
      --text-light:   #888888;
      --white:        #FFFFFF;
      --font-head:    'Montserrat', sans-serif;
      --font-body:    'Inter', sans-serif;
      --max-w:        1350px;
      --r:            8px;
      --r-lg:         16px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background:
        radial-gradient(circle at 12% 22%, rgba(255, 81, 179, .10), transparent 22%),
        radial-gradient(circle at 84% 16%, rgba(103, 107, 255, .10), transparent 24%),
        radial-gradient(circle at -8% 88%, rgba(255, 95, 184, .18) 0%, rgba(255, 95, 184, .05) 18%, transparent 19%),
        radial-gradient(circle at 100% 74%, rgba(68, 174, 255, .18) 0%, rgba(68, 174, 255, .05) 21%, transparent 22%),
        radial-gradient(circle at 92% 86%, rgba(255, 195, 54, .14) 0%, rgba(255, 195, 54, .04) 17%, transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(251,251,255,.94) 32%, rgba(255,250,252,.96) 100%);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
      background-attachment: fixed;
    }
    body.nav-open {
      overflow: hidden;
    }
    body.nav-open::before {
      content: '';
      position: fixed;
      inset: 0;
      background: rgba(19, 27, 52, .34);
      backdrop-filter: blur(4px);
      z-index: 998;
    }
    body.nav-open #nav,
    body.nav-open #nav.scrolled {
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
    }
    body.nav-open .nav-logo {
      opacity: 0;
      pointer-events: none;
    }

    h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: #182a63; }
    h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; }
    h2 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); font-weight: 800; }
    h3 { font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 700; }
    p  { line-height: 1.75; }

    img { display: block; }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ─ BUTTONS ─────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: var(--r);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      text-decoration: none;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.22s ease;
    }
    .btn-primary   { background: var(--magenta); color: #fff; border-color: var(--magenta); }
    .btn-primary:hover { background: var(--magenta-dark); border-color: var(--magenta-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,24,125,.3); }
    .btn-ghost     { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
    .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
    #hero .btn-ghost {
      color: var(--magenta);
      border-color: rgba(212,24,125,.58);
      background: rgba(255,255,255,.74);
      box-shadow: 0 10px 22px rgba(212,24,125,.08);
    }
    #hero .btn-ghost:hover {
      background: rgba(212,24,125,.08);
      border-color: var(--magenta);
      color: var(--magenta-dark);
    }
    .btn-outline   { background: transparent; color: var(--magenta); border-color: var(--magenta); }
    .btn-outline:hover { background: var(--magenta); color: #fff; }
    .btn-yellow    { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
    .btn-yellow:hover { background: #e5b82a; border-color: #e5b82a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(247,200,50,.35); }

    /* ─ SECTION LABEL ───────────────────────────── */
    .lbl {
      display: block;
      font-family: var(--font-head);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--magenta);
      margin-bottom: 12px;
    }
    .lbl-light { color: var(--yellow); }
    .lbl-muted { color: rgba(255,255,255,.5); }

    /* ─ NAV ─────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 22px 0;
      transition: all .3s ease;
    }
    #nav.scrolled {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      padding: 13px 0;
      box-shadow: 0 2px 24px rgba(22,22,22,.08);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { display: inline-flex; align-items: center; justify-content: center; }
    .nav-logo img { height: 84px; width: auto; }
    .nav-links {
      display: flex; align-items: center; gap: 32px; list-style: none;
    }
    .nav-panel-brand,
    .nav-panel-social {
      display: none;
    }
    .nav-links a {
      color: rgba(26,26,26,.84);
      text-decoration: none;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--magenta); }
    .nav-cta {
      background: var(--magenta) !important;
      color: #fff !important;
      padding: 9px 20px;
      border-radius: var(--r);
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--magenta-dark) !important; color: #fff !important; }
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; z-index: 1001;
      border: 0;
      appearance: none;
    }
    .nav-toggle span { width: 24px; height: 2px; background: var(--text); display: block; transition: all .3s; }

    /* ─ HERO ────────────────────────────────────── */
    #hero {
      min-height: 900px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-bg {
      position: absolute; inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at -8% 88%, rgba(255, 95, 184, .22) 0%, rgba(255, 95, 184, .08) 18%, transparent 19%),
        radial-gradient(circle at 100% 74%, rgba(68, 174, 255, .24) 0%, rgba(68, 174, 255, .08) 21%, transparent 22%),
        radial-gradient(circle at 92% 86%, rgba(255, 195, 54, .22) 0%, rgba(255, 195, 54, .08) 17%, transparent 18%),
        url('../img/fondo.webp') center/cover no-repeat;
      opacity: .2;
      transform: scale(1.02);
      animation: bgDrift 18s ease-in-out infinite alternate;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(circle at 22% 46%, rgba(255, 81, 179, .06), transparent 24%),
        radial-gradient(circle at 74% 16%, rgba(103, 107, 255, .06), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.46) 0%, rgba(255,255,255,.62) 100%);
      animation: overlayShift 14s ease-in-out infinite alternate;
    }
    .hero-overlay::before {
      content: '';
      position: absolute;
      top: 15%;
      right: 3%;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(109, 157, 255, .18), rgba(255, 132, 201, .18));
      opacity: .65;
      filter: blur(0);
      transform: translateX(25%);
      animation: glowFloat 7s ease-in-out infinite, auraDrift 16s ease-in-out infinite alternate;
    }
    .hero-overlay::after {
      content: '';
      position: absolute;
      top: 8%;
      left: 46%;
      width: 160px;
      height: 160px;
      background-image: radial-gradient(rgba(255, 104, 196, .8) 1.8px, transparent 1.8px);
      background-size: 18px 18px;
      opacity: .48;
      pointer-events: none;
      animation: dotsDrift 12s ease-in-out infinite alternate;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 55% 45%;
      gap: 32px;
      align-items: center;
      min-height: 100%;
      padding: 154px 0 52px;
    }
    .hero-content {
      max-width: 100%;
      padding-right: 28px;
    }
    .hero-badge {
      display: inline-flex; align-items: center;
      background: linear-gradient(90deg, #6f6cff, #ff4fb3);
      border: 0;
      color: #fff;
      font-family: var(--font-head);
      font-size: 0.76rem; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 12px 22px; border-radius: 999px;
      margin-bottom: 24px;
      box-shadow: 0 14px 28px rgba(255, 79, 179, .18);
      animation: floatBadge 5.5s ease-in-out infinite;
    }
    .hero-content h1 {
      color: #182a63;
      margin-bottom: 22px;
      max-width: 14ch;
      font-size: clamp(2.1rem, 3.6vw, 3.25rem);
      line-height: 1.01;
      text-wrap: balance;
      text-shadow: 0 6px 18px rgba(73, 94, 156, .10);
    }
    .hero-content h1 em {
      background: linear-gradient(90deg, #ff45b2 0%, #ff875f 40%, #ffbf35 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-style: normal;
    }
    .title-accent {
      color: var(--magenta);
    }
    .hero-sub {
      font-size: 1.06rem; color: #49516b;
      margin-bottom: 14px; max-width: 650px;
    }
    .hero-support {
      font-size: 0.92rem; color: #6f778f;
      margin-bottom: 28px; max-width: 620px;
    }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      min-height: 650px;
    }
    .hero-render {
      position: relative;
      width: min(100%, 680px);
      min-height: 650px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .hero-render::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: linear-gradient(140deg, rgba(122, 113, 255, .34), rgba(255, 86, 183, .22));
      filter: blur(2px);
      top: 32px;
      right: 12px;
      opacity: .55;
      animation: glowFloat 7s ease-in-out infinite;
    }
    .hero-ring {
      position: absolute;
      top: 48px;
      right: 44px;
      width: 390px;
      height: 390px;
      border-radius: 50%;
      border: 5px solid rgba(175, 145, 255, .38);
      box-shadow: 0 0 0 16px rgba(255,255,255,.26), 0 0 24px rgba(255, 93, 187, .22);
      opacity: .75;
      animation: ringPulse 6s ease-in-out infinite;
    }
    .hero-ring::after {
      content: '';
      position: absolute;
      inset: 18px;
      border-radius: 50%;
      border: 2px solid rgba(255, 103, 193, .26);
    }
    .hero-visual img {
      position: relative;
      z-index: 2;
      width: min(100%, 650px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 28px 40px rgba(44, 63, 108, .20));
      animation: renderFloat 5.8s ease-in-out infinite;
    }
    .hero-note {
      position: absolute;
      top: 96px;
      right: 0;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      border-radius: 22px;
      background: rgba(255,255,255,.94);
      box-shadow: 0 18px 30px rgba(71, 90, 141, .14);
      color: #3e4f8a;
      max-width: 270px;
      animation: noteFloat 5.5s ease-in-out infinite;
    }
    .hero-note svg { width: 22px; height: 22px; flex-shrink: 0; color: #23c2f6; }
    .hero-note span { font-weight: 700; font-size: 1rem; line-height: 1.35; }
    .hero-spark {
      position: absolute;
      z-index: 3;
      color: #ffb832;
      opacity: .9;
      animation: sparkFloat 4.5s ease-in-out infinite;
    }
    .hero-spark.left { left: -18px; top: 122px; color: #7a67ff; }
    .hero-spark.mid { left: 44%; top: 154px; color: #ffb832; animation-delay: .8s; }
    .hero-spark svg { width: 58px; height: 58px; }
    .hero-dots {
      position: absolute;
      left: 52%;
      top: 56%;
      z-index: 2;
      width: 86px;
      height: 64px;
      background-image: radial-gradient(rgba(255, 87, 184, .76) 2px, transparent 2px);
      background-size: 18px 18px;
      opacity: .8;
      animation: dotsDrift 10s ease-in-out infinite alternate;
    }
    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, max-content));
      gap: 18px 34px;
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid rgba(30,48,111,.12);
      max-width: 620px;
    }
    .hero-highlight {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 150px;
    }
    .hero-highlight svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    .hero-highlight span {
      font-size: .93rem;
      font-weight: 700;
      line-height: 1.3;
      color: #283a74;
    }
    .hero-scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(39,57,104,.42);
      font-size: 0.65rem; font-family: var(--font-head); letter-spacing: .1em; text-transform: uppercase;
    }
    .hero-scroll-mouse {
      width: 28px;
      height: 42px;
      border: 1.8px solid rgba(39,57,104,.45);
      border-radius: 20px;
      position: relative;
      background: rgba(255,255,255,.5);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.36);
    }
    .hero-scroll-mouse::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 8px;
      width: 4px;
      height: 9px;
      border-radius: 999px;
      background: rgba(39,57,104,.55);
      transform: translateX(-50%);
      animation: wheelMove 1.7s ease-in-out infinite;
    }
    .hero-scroll-line {
      width: 1px; height: 30px;
      background: linear-gradient(to bottom, rgba(39,57,104,.4), transparent);
      animation: scrollPulse 1.6s ease-in-out infinite;
    }
    @keyframes floatBadge {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    @keyframes bgDrift {
      0% { transform: scale(1.02) translate3d(0,0,0); }
      100% { transform: scale(1.06) translate3d(-8px,10px,0); }
    }
    @keyframes overlayShift {
      0% { opacity: 1; }
      100% { opacity: .92; }
    }
    @keyframes auraDrift {
      0% { transform: translateX(25%) translateY(0); }
      100% { transform: translateX(22%) translateY(14px); }
    }
    @keyframes glowFloat {
      0%,100% { transform: translateX(25%) translateY(0); }
      50% { transform: translateX(25%) translateY(-10px); }
    }
    @keyframes renderFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes ringPulse {
      0%,100% { transform: scale(1); opacity: .72; }
      50% { transform: scale(1.02); opacity: .9; }
    }
    @keyframes sparkFloat {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-7px) rotate(4deg); }
    }
    @keyframes noteFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    @keyframes dotsDrift {
      0% { transform: translate3d(0,0,0); opacity: .55; }
      100% { transform: translate3d(8px,-10px,0); opacity: .9; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50%       { opacity: .3; transform: scaleY(.5); }
    }
    @keyframes wheelMove {
      0% { opacity: 0; transform: translateX(-50%) translateY(0); }
      25% { opacity: 1; }
      70% { opacity: 1; transform: translateX(-50%) translateY(10px); }
      100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
    }
    @keyframes pinkPulse {
      0%, 100% {
        opacity: .56;
        transform: scale(.94);
      }
      50% {
        opacity: 1;
        transform: scale(1.08);
      }
    }

    /* ─ SECTION PADS ────────────────────────────── */
    .sec { padding: 104px 0; }
    .sec-white  { background: var(--white); }
    .sec-gray   { background: var(--gray-light); }
    .sec-dark   { background: var(--dark); }
    .sec-dark2  { background: var(--dark2); }
    .sec-magenta{ background: var(--magenta); }

    /* ─ SCROLL REVEALS ──────────────────────────── */
    [data-reveal] {
      opacity: 0;
      transform: translate3d(0, 34px, 0) scale(.985);
      transition:
        opacity .78s cubic-bezier(.22, 1, .36, 1),
        transform .78s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }
    [data-reveal="left"] {
      transform: translate3d(-36px, 24px, 0) scale(.985);
    }
    [data-reveal="right"] {
      transform: translate3d(36px, 24px, 0) scale(.985);
    }
    [data-reveal="zoom"] {
      transform: translate3d(0, 24px, 0) scale(.94);
    }
    [data-reveal].is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
    @media (prefers-reduced-motion: reduce) {
      [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ─ SECTION 2 — INTRO / ABOUT ───────────────── */
    #about {
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255, 95, 184, .10), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(92, 125, 255, .08), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.86));
      pointer-events: none;
    }
    .intro-shell {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
      gap: 42px;
      align-items: center;
      padding: 42px;
      border-radius: 32px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.94));
      border: 1px solid rgba(106, 124, 197, .12);
      box-shadow: 0 28px 80px rgba(38, 58, 110, .08);
      backdrop-filter: blur(10px);
    }
    .intro-copy h2 {
      margin-bottom: 18px;
      color: #182a63;
    }
    .intro-copy > p {
      color: #58627d;
      margin-bottom: 14px;
      max-width: 620px;
    }
    .intro-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }
    .intro-card {
      padding: 18px 18px 17px;
      border-radius: 22px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(109, 126, 190, .12);
      box-shadow: 0 18px 34px rgba(34, 51, 95, .06);
    }
    .intro-card-icon {
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      margin-bottom: 14px;
      background: linear-gradient(135deg, rgba(111,108,255,.12), rgba(255,79,179,.14));
      color: #30478d;
    }
    .intro-card:nth-child(2) .intro-card-icon { color: var(--magenta); }
    .intro-card:nth-child(3) .intro-card-icon { color: var(--teal); }
    .intro-card:nth-child(4) .intro-card-icon { color: #d29d17; }
    .intro-card-icon svg {
      width: 22px;
      height: 22px;
    }
    .intro-card strong {
      display: block;
      font-family: var(--font-head);
      font-size: .96rem;
      color: #1f2f61;
      margin-bottom: 7px;
    }
    .intro-card p {
      margin: 0;
      font-size: .87rem;
      line-height: 1.62;
      color: #67708a;
    }
    .intro-quote {
      margin-top: 26px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(111,108,255,.10), rgba(255,79,179,.12));
      color: #213569;
      font-family: var(--font-head);
      font-weight: 800;
      letter-spacing: .02em;
    }
    .intro-quote svg {
      width: 18px;
      height: 18px;
      color: var(--magenta);
    }
    .intro-gallery {
      position: relative;
      min-width: 0;
    }
    .intro-carousel {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 8px;
      scrollbar-width: none;
    }
    .intro-carousel::-webkit-scrollbar { display: none; }
    .intro-slide {
      flex: 0 0 100%;
      scroll-snap-align: start;
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 4 / 4.8;
      box-shadow: 0 24px 52px rgba(31, 43, 81, .16);
    }
    .intro-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18, 26, 53, .56), rgba(18, 26, 53, .05) 52%, transparent 100%);
      pointer-events: none;
    }
    .intro-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .intro-slide-caption {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 1;
      color: #fff;
    }
    .intro-slide-caption span {
      display: inline-flex;
      margin-bottom: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(12px);
      font-family: var(--font-head);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .intro-slide-caption strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.05rem;
      margin-bottom: 4px;
    }
    .intro-slide-caption p {
      margin: 0;
      font-size: .82rem;
      color: rgba(255,255,255,.78);
      line-height: 1.5;
    }
    .intro-carousel-nav {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 18px;
    }
    .intro-carousel-btn {
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #203267;
      background: rgba(255,255,255,.88);
      box-shadow: 0 16px 30px rgba(31,43,81,.10);
      transition: transform .22s ease, background .22s ease, color .22s ease;
    }
    .intro-carousel-btn:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, rgba(111,108,255,.12), rgba(255,79,179,.16));
      color: var(--magenta);
    }
    .intro-carousel-btn svg {
      width: 20px;
      height: 20px;
    }

    /* ─ SECTION 4 — DIFERENCIADOR ───────────────── */
    #differentiator {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(13,13,13,.96), rgba(13,13,13,.98)),
        url('../img/fondo.webp') center/cover no-repeat;
    }
    #differentiator::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,24,125,.34) 0%, rgba(212,24,125,.16) 34%, rgba(212,24,125,0) 72%);
      filter: blur(28px);
      opacity: .9;
      animation: pinkPulse 3.8s ease-in-out infinite;
      pointer-events: none;
    }
    #differentiator::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 82% 22%, rgba(0,178,192,.08), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
      pointer-events: none;
    }
    .diff-wrap { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
    .diff-wrap h2   { color: #fff; margin-bottom: 18px; }
    .diff-headline  {
      font-family: var(--font-head); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 800; color: var(--yellow); margin-bottom: 22px;
    }
    .diff-wrap > p  { color: rgba(255,255,255,.6); font-size: 1.02rem; margin-bottom: 60px; }
    .diff-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; }
    .diff-item      {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--r); padding: 20px;
      transition: border-color .2s;
    }
    .diff-item:hover { border-color: rgba(212,24,125,.4); }
    .diff-item.wide  { grid-column: span 2; }
    .diff-icon {
      width: 36px; height: 36px; min-width: 36px;
      background: var(--magenta); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .diff-icon svg { width: 16px; height: 16px; color: #fff; }
    .diff-item p   { color: rgba(255,255,255,.78); font-size: .9rem; margin: 0; padding-top: 6px; }

    /* ─ SECTION 5 — SERVICIOS ───────────────────── */
    .srv-head       { text-align: center; margin-bottom: 60px; }
    .srv-head p     { color: var(--text-mid); max-width: 640px; margin: 14px auto 0; }
    .srv-grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .srv-card       {
      border: 1.5px solid var(--gray-mid); border-radius: var(--r-lg);
      padding: 32px 26px; position: relative; overflow: hidden;
      transition: all .3s ease;
    }
    .srv-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--magenta); transform: scaleX(0); transform-origin: left;
      transition: transform .3s ease;
    }
    .srv-card:hover {
      border-color: rgba(212,24,125,.3); transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(212,24,125,.1);
    }
    .srv-card:hover::before { transform: scaleX(1); }
    .srv-media {
      margin: -32px -26px 24px;
      height: 260px;
      overflow: hidden;
      position: relative;
      background: var(--gray-light);
    }
    .srv-media::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(to top, rgba(13,13,13,.18), rgba(13,13,13,0) 45%),
        linear-gradient(135deg, rgba(255,79,179,.10), rgba(0,178,192,.05) 48%, rgba(247,200,50,.08) 100%);
      pointer-events: none;
    }
    .srv-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.12) contrast(1.04) brightness(1.02);
      transition: transform .5s ease;
    }
    .srv-card:hover .srv-media img {
      transform: scale(1.05);
      filter: saturate(1.18) contrast(1.06) brightness(1.04);
    }
    .srv-icon {
      width: 52px; height: 52px; background: var(--gray-light); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; transition: all .3s;
    }
    .srv-icon svg { width: 24px; height: 24px; color: var(--magenta); transition: color .3s; }
    .srv-card:hover .srv-icon { background: var(--magenta); }
    .srv-card:hover .srv-icon svg { color: #fff; }
    .srv-card h3 { margin-bottom: 10px; font-size: 1rem; }
    .srv-card p  { color: var(--text-mid); font-size: .87rem; line-height: 1.65; }

    /* ─ SECTION 6 — MATERIALES ──────────────────── */
    #materials {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 9% 12%, rgba(255, 95, 184, .11), transparent 22%),
        radial-gradient(circle at 90% 86%, rgba(0,178,192,.10), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    }
    .mat-shell {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: 34px;
      align-items: stretch;
    }
    .mat-copy {
      padding: 18px 10px 18px 0;
    }
    .mat-copy h2 {
      margin-bottom: 16px;
      color: #182a63;
    }
    .mat-copy p {
      color: #5d6680;
      margin-bottom: 22px;
      max-width: 520px;
    }
    .mat-accent {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 18px;
      background: linear-gradient(90deg, rgba(111,108,255,.10), rgba(255,79,179,.12));
      color: #263b78;
      font-family: var(--font-head);
      font-weight: 700;
      line-height: 1.45;
    }
    .mat-accent svg {
      width: 18px;
      height: 18px;
      color: var(--magenta);
      flex-shrink: 0;
    }
    .mat-photo-inline {
      margin-top: 24px;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      box-shadow: 0 24px 48px rgba(31, 43, 81, .12);
      border: 1px solid rgba(106, 124, 197, .12);
    }
    .mat-photo-inline img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .mat-board {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .mat-item {
      padding: 22px 20px;
      border-radius: 24px;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(106, 124, 197, .12);
      box-shadow: 0 20px 40px rgba(34, 51, 95, .07);
    }
    .mat-item:nth-child(even) {
      background: linear-gradient(180deg, rgba(255, 244, 250, .96), rgba(255, 250, 252, .92));
      border-color: rgba(212,24,125,.10);
    }
    .mat-item-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      margin-bottom: 14px;
      background: linear-gradient(135deg, rgba(111,108,255,.12), rgba(255,79,179,.14));
      color: #30478d;
    }
    .mat-item:nth-child(2) .mat-item-icon { color: #7e8797; }
    .mat-item:nth-child(3) .mat-item-icon { color: var(--teal); }
    .mat-item:nth-child(4) .mat-item-icon { color: var(--magenta); }
    .mat-item:nth-child(5) .mat-item-icon { color: #b38b3d; }
    .mat-item:nth-child(6) .mat-item-icon { color: #d29d17; }
    .mat-item:nth-child(even) .mat-item-icon {
      background: linear-gradient(135deg, rgba(255, 220, 238, .72), rgba(255, 240, 248, .92));
    }
    .mat-item-icon svg {
      width: 24px;
      height: 24px;
    }
    .mat-item strong {
      display: block;
      font-family: var(--font-head);
      font-size: .96rem;
      color: #1f2f61;
      margin-bottom: 8px;
    }
    .mat-item p {
      margin: 0;
      font-size: .86rem;
      line-height: 1.6;
      color: #67708a;
    }
    .mat-finishes {
      grid-column: 1 / -1;
      padding: 24px;
      border-radius: 28px;
      background: linear-gradient(135deg, #14224c 0%, #1f3571 54%, #26305f 100%);
      color: #fff;
      box-shadow: 0 28px 52px rgba(22, 39, 84, .18);
      position: relative;
      overflow: hidden;
    }
    .mat-finishes::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(255, 95, 184, .24), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 191, 53, .18), transparent 18%);
      pointer-events: none;
    }
    .mat-finishes > * {
      position: relative;
      z-index: 1;
    }
    .mat-finishes h3 {
      margin-bottom: 14px;
      color: #fff;
    }
    .mat-finish-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .mat-finish-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.12);
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .03em;
      color: rgba(255,255,255,.92);
    }
    .mat-finish-chip svg {
      width: 14px;
      height: 14px;
      color: var(--yellow);
      flex-shrink: 0;
    }

    /* ─ SECTION 7 — PROCESO ─────────────────────── */
    .proc-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
      gap: 54px;
      align-items: center;
    }
    .proc-head   { text-align: left; margin-bottom: 42px; }
    .proc-head h2 { max-width: 760px; }
    .proc-head p { color: var(--text-mid); max-width: 560px; margin: 14px 0 0; }
    .proc-steps  {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      position: relative;
    }
    .proc-steps::before {
      display: none;
    }
    .proc-step   {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      column-gap: 18px;
      align-items: start;
      padding: 0 0 22px;
      margin-bottom: 22px;
      border-bottom: 1px solid rgba(24, 42, 99, .12);
    }
    .proc-step:nth-child(5) {
      grid-column: auto;
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0;
    }
    .step-num    {
      grid-column: 1;
      grid-row: 1 / span 2;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 1.25rem;
      line-height: 1;
      font-weight: 900;
      color: #fff;
      background: var(--magenta);
      border: 3px solid transparent;
      font-variant-numeric: tabular-nums;
    }
    .proc-step:nth-child(2) .step-num { background: #BC1680; }
    .proc-step:nth-child(3) .step-num { background: #8C1462; }
    .proc-step:nth-child(4) .step-num { background: #601246; }
    .proc-step:nth-child(5) .step-num { background: var(--dark); border-color: var(--gray-mid); }
    .proc-step h3{
      grid-column: 2;
      grid-row: 1;
      font-size: .95rem;
      margin-bottom: 7px;
      color: var(--text);
    }
    .proc-step p {
      grid-column: 2;
      grid-row: 2;
      font-size: .82rem;
      color: var(--text-mid);
      line-height: 1.55;
      text-wrap: pretty;
    }
    .proc-visual {
      position: relative;
      min-height: 620px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow:
        0 1px 0 rgba(0, 0, 0, .08),
        0 26px 70px rgba(31, 43, 81, .18);
    }
    .proc-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
      pointer-events: none;
    }
    .proc-visual img {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      object-fit: cover;
    }

    /* ─ SECTION 8 — PORTAFOLIO ──────────────────── */
    .port-head   { text-align: center; margin-bottom: 56px; }
    .port-head h2{ color: #fff; }
    .port-head p { color: rgba(255,255,255,.5); margin-top: 14px; }
    .port-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .port-card   {
      border-radius: var(--r-lg); overflow: hidden;
      position: relative; cursor: pointer; aspect-ratio: 4/3;
    }
    .port-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
    .port-card:nth-child(2) { aspect-ratio: auto; min-height: 100%; }
    .port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .port-card:hover img { transform: scale(1.06); }
    .port-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,13,13,.95) 0%, rgba(13,13,13,.15) 55%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
    }
    .port-tag {
      display: inline-block;
      background: var(--magenta); color: #fff;
      font-size: .62rem; font-weight: 700; font-family: var(--font-head);
      letter-spacing: .1em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 3px; margin-bottom: 8px; width: fit-content;
    }
    .port-overlay h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
    .port-overlay p  { color: rgba(255,255,255,.55); font-size: .78rem; }

    /* ─ SECTION 9 — TESTIMONIOS ────────────────── */
    .test-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
      gap: 34px;
      align-items: center;
    }
    .test-copy {
      min-width: 0;
    }
    .test-head  { text-align: left; margin-bottom: 16px; }
    .test-head p{ color: var(--text-mid); max-width: 560px; margin: 14px 0 34px; }
    .test-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .test-card  {
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,246,246,.96));
      border: 1px solid rgba(212,24,125,.12);
      border-radius: var(--r-lg); padding: 30px; position: relative;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(13,13,13,.06);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .test-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--magenta), var(--yellow), var(--teal));
    }
    .test-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 46px rgba(13,13,13,.09);
      border-color: rgba(212,24,125,.26);
    }
    .test-qm    {
      font-size: 4.5rem; line-height: .8; font-family: Georgia, serif;
      color: var(--magenta); opacity: .13; margin-bottom: -18px; user-select: none;
    }
    .test-stars {
      display: inline-flex; align-items: center; gap: 4px;
      margin-bottom: 16px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(247,200,50,.35);
      box-shadow: 0 8px 18px rgba(247,200,50,.12);
    }
    .test-stars svg {
      width: 14px; height: 14px; color: var(--yellow);
    }
    .test-card p { font-size: .93rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
    .test-author {
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
      font-family: var(--font-head); font-size: .75rem; font-weight: 700; color: var(--text-light); letter-spacing: .05em; text-transform: uppercase;
      padding-top: 16px; border-top: 1px solid rgba(26,26,26,.08);
    }
    .test-author span:last-child {
      color: var(--magenta);
      letter-spacing: .08em;
    }
    .test-visual {
      position: relative;
      min-width: 0;
    }
    .test-photo {
      position: sticky;
      top: 228px;
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 4 / 5.2;
      box-shadow: 0 28px 60px rgba(29, 42, 79, .16);
      border: 1px solid rgba(106, 124, 197, .12);
    }
    .test-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.06) contrast(1.02);
    }

    /* ─ SECTION 10 — MARCAS ─────────────────────── */
    #conversion {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(16,24,52,.96) 0%, rgba(26,39,84,.94) 52%, rgba(36,47,95,.96) 100%);
    }
    #conversion::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at top left, rgba(212,24,125,.26), transparent 30%),
        radial-gradient(circle at right center, rgba(0,178,192,.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(247,200,50,.12), transparent 20%);
      pointer-events: none;
    }
    .conv-wrap  { position: relative; z-index: 1; text-align: center; }
    .conv-wrap h2{ color: #fff; margin-bottom: 12px; }
    .conv-wrap p {
      color: rgba(255,255,255,.68);
      font-size: 1rem;
      max-width: 760px;
      margin: 0 auto 34px;
    }
    .brands-bleed {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
    .brand-marquee {
      position: relative;
      overflow: hidden;
      padding: 18px 0;
      width: 100%;
    }
    .brand-track {
      display: flex;
      width: max-content;
      gap: 42px;
      padding-inline: 8px;
      animation: marqueeMove 34s linear infinite;
    }
    .brand-marquee:hover .brand-track {
      animation-play-state: paused;
    }
    .brand-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 176px;
      height: 64px;
      padding: 0 12px;
      border-radius: 18px;
      color: rgba(255,255,255,.92);
      font-family: var(--font-head);
      font-size: .98rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .brand-pill.alt {
      color: rgba(255, 234, 245, .96);
    }
    @keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-50% - 21px)); }
    }

    /* ─ SECTION 11 — FORMULARIO ─────────────────── */
    .form-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
    .form-info h2{ margin-bottom: 20px; }
    .form-info p { color: var(--text-mid); margin-bottom: 32px; }
    .form-details{ display: flex; flex-direction: column; gap: 18px; }
    .form-detail { display: flex; align-items: flex-start; gap: 12px; }
    .fd-icon     {
      width: 38px; height: 38px; background: var(--magenta); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .fd-icon svg { width: 16px; height: 16px; color: #fff; }
    .fd-text     { padding-top: 6px; }
    .fd-text strong {
      display: block; font-family: var(--font-head); font-size: .75rem;
      font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
      color: var(--text-mid); margin-bottom: 2px;
    }
    .fd-text span{ color: var(--text); font-size: .88rem; }
    .form-box    {
      background: var(--white); border-radius: var(--r-lg);
      padding: 44px; box-shadow: 0 4px 32px rgba(0,0,0,.07);
    }
    .fgrid       { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .fg          { display: flex; flex-direction: column; gap: 6px; }
    .fg.full     { grid-column: span 2; }
    .form-hp {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }
    .fg label    {
      font-family: var(--font-head); font-size: .72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .07em; color: var(--text-mid);
    }
    .fg input, .fg select, .fg textarea {
      border: 1.5px solid var(--gray-mid); border-radius: var(--r);
      padding: 12px 14px; font-family: var(--font-body); font-size: .88rem;
      color: var(--text); background: var(--white); outline: none;
      transition: border-color .2s; width: 100%;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--magenta); }
    .fg textarea { resize: vertical; min-height: 120px; }
    .form-submit { margin-top: 22px; }
    .form-submit .btn { width: 100%; justify-content: center; font-size: .95rem; }
    .form-feedback {
      min-height: 24px;
      margin-top: 14px;
      font-size: .88rem;
      font-weight: 600;
      color: #4f5b78;
    }
    .form-feedback.is-error {
      color: #c0392b;
    }
    .form-feedback.is-success {
      color: #1e8e4c;
    }

    /* ─ WHATSAPP ─────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      display: flex; align-items: center; gap: 10px;
      background: #25D366; color: #fff; text-decoration: none;
      border-radius: 50px; padding: 13px 20px;
      font-family: var(--font-head); font-size: .82rem; font-weight: 700;
      box-shadow: 0 6px 22px rgba(37,211,102,.45);
      transition: all .3s ease;
    }
    .wa-float:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
    .wa-float svg   { width: 22px; height: 22px; flex-shrink: 0; }
    .wa-tip {
      position: absolute;
      right: 14px;
      bottom: calc(100% + 10px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      border-radius: 999px;
      background: #fff;
      color: #0f2b1c;
      font-family: var(--font-head);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .04em;
      white-space: nowrap;
      box-shadow: 0 10px 24px rgba(15, 43, 28, .16);
    }
    .wa-tip::after {
      content: '';
      position: absolute;
      right: 18px;
      top: 100%;
      width: 10px;
      height: 10px;
      background: #fff;
      transform: rotate(45deg) translateY(-4px);
      border-radius: 2px;
    }

    /* ─ FOOTER ───────────────────────────────────── */
    #footer {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #101838 0%, #10152d 100%);
      padding: 44px 0 30px;
    }
    #footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255,95,184,.16), transparent 22%),
        radial-gradient(circle at 88% 18%, rgba(0,178,192,.12), transparent 18%),
        radial-gradient(circle at 80% 92%, rgba(247,200,50,.10), transparent 16%);
      pointer-events: none;
    }
    .foot-shell {
      position: relative;
      z-index: 1;
      padding: 10px 0 0;
    }
    .foot-main {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr) minmax(0, .75fr);
      gap: 48px;
      margin-bottom: 34px;
      align-items: start;
    }
    .foot-brand img {
      height: 84px;
      margin-bottom: 18px;
    }
    .foot-brand p {
      color: rgba(255,255,255,.70);
      font-size: .95rem;
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 22px;
    }
    .foot-cta-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .foot-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.82);
      font-family: var(--font-head);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .foot-chip svg {
      width: 15px;
      height: 15px;
      color: var(--yellow);
      flex-shrink: 0;
    }
    .foot-col h4 {
      font-family: var(--font-head);
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.42);
      margin-bottom: 18px;
    }
    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .foot-col ul li a {
      color: rgba(255,255,255,.78);
      text-decoration: none;
      font-size: .92rem;
      transition: color .2s, transform .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .foot-col ul li a::before {
      content: '↗';
      color: rgba(255,79,179,.72);
      font-size: .85rem;
      transform: translateY(-1px);
    }
    .foot-col ul li a:hover {
      color: #fff;
      transform: translateX(2px);
    }
    .foot-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .foot-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255,255,255,.74);
      font-size: .9rem;
      line-height: 1.6;
    }
    .foot-contact-item svg {
      width: 18px;
      height: 18px;
      color: var(--teal);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .foot-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }
    .foot-bottom p {
      color: rgba(255,255,255,.36);
      font-size: .8rem;
      line-height: 1.6;
    }

    /* ─ RESPONSIVE ───────────────────────────────── */
    @media (max-width: 1024px) {
      .intro-shell, .mat-shell, .proc-shell, .form-layout { grid-template-columns: 1fr; gap: 48px; }
      .srv-grid { grid-template-columns: repeat(2, 1fr); }
      .proc-visual { min-height: 520px; }
      .port-grid { grid-template-columns: repeat(2, 1fr); }
      .port-card:first-child { grid-column: span 2; }
      .foot-main { grid-template-columns: 1fr 1fr; }
      .foot-brand { grid-column: span 2; }
    }

    @media (max-width: 768px) {
      .sec { padding: 72px 0; }
      h1   { font-size: 1.9rem; }
      h2   { font-size: 1.55rem; }
      .container { padding: 0 20px; }
      #nav { padding: 14px 0; }
      #nav.scrolled { padding: 10px 0; }
      .nav-inner { gap: 14px; }
      .nav-logo img { height: 64px; }

      .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        left: 0;
        bottom: auto;
        width: min(84vw, 340px);
        max-width: calc(100vw - 18px);
        height: 100dvh;
        min-height: 100dvh;
        padding: 82px 24px calc(24px + env(safe-area-inset-bottom, 0px));
        background:
          radial-gradient(circle at top right, rgba(255, 116, 198, .16), transparent 28%),
          radial-gradient(circle at bottom left, rgba(96, 127, 255, .12), transparent 26%),
          linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,255,.98));
        border-right: 1px solid rgba(26,26,26,.08);
        box-shadow: 24px 0 54px rgba(31, 43, 81, .18);
        transform: translateX(-108%);
        visibility: hidden;
        transition: transform .34s ease, visibility .34s ease;
        z-index: 1002;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
      }
      .nav-panel-brand,
      .nav-panel-social {
        display: block;
      }
      .nav-links::before {
        content: '';
        position: absolute;
        top: 14px;
        left: 24px;
        right: 24px;
        height: 1px;
        background: linear-gradient(90deg, rgba(212,24,125,.2), rgba(0,178,192,.18), rgba(247,200,50,.18));
      }
      .nav-links li { width: 100%; }
      .nav-panel-brand {
        padding-bottom: 12px;
        margin-bottom: 2px;
        position: relative;
        z-index: 2;
      }
      .nav-panel-brand a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0;
        border: 0;
        width: 100%;
        min-width: 0;
      }
      .nav-panel-brand img {
        width: auto;
        height: 44px;
        flex-shrink: 0;
      }
      .nav-panel-copy {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
      }
      .nav-panel-copy strong {
        font-family: var(--font-head);
        font-size: .78rem;
        line-height: 1.15;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #213569;
        white-space: normal;
      }
      .nav-panel-copy span {
        font-size: .72rem;
        line-height: 1.45;
        color: #6e7897;
        white-space: normal;
      }
      .nav-links a {
        display: flex;
        width: 100%;
        padding: 15px 0;
        font-size: .95rem;
        color: var(--text);
        border-bottom: 1px solid rgba(26,26,26,.08);
      }
      .nav-links li:not(.nav-panel-brand):not(.nav-panel-social) a {
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        letter-spacing: .05em;
      }
      .nav-links li:not(.nav-panel-brand):not(.nav-panel-social) a::after {
        content: '→';
        color: rgba(212,24,125,.65);
        font-size: 1rem;
        transform: translateX(0);
        transition: transform .22s ease, color .22s ease;
      }
      .nav-links li:not(.nav-panel-brand):not(.nav-panel-social) a:hover::after {
        transform: translateX(4px);
        color: var(--magenta);
      }
      .nav-links.open {
        transform: translateX(0);
        visibility: visible;
      }
      .nav-links .nav-cta {
        margin-top: 18px;
        justify-content: center;
        padding: 14px 18px;
        border-bottom: 0;
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 14px 28px rgba(212,24,125,.18);
      }
      .nav-links .nav-cta::after { display: none; }
      .nav-panel-social {
        margin-top: auto;
        padding-top: 22px;
      }
      .nav-panel-social-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        max-width: 100%;
        justify-content: flex-start;
      }
      .nav-panel-social-label {
        display: block;
        margin-bottom: 12px;
        font-family: var(--font-head);
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #7480a3;
      }
      .nav-panel-social .nav-social {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
        flex: 0 0 42px !important;
        aspect-ratio: 1 / 1;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-bottom: 0;
        border: 1px solid rgba(26,26,26,.08);
        border-radius: 50%;
        background: rgba(255,255,255,.76);
        box-shadow: 0 10px 22px rgba(31,43,81,.08);
        color: #2c3f6c;
        flex: 0 0 auto;
        overflow: hidden;
      }
      .nav-panel-social .nav-social svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
      }
      .nav-panel-social .nav-social:hover {
        background: linear-gradient(135deg, rgba(255, 81, 179, .12), rgba(96, 127, 255, .10));
        border-color: rgba(212,24,125,.24);
        color: var(--magenta);
      }
      .nav-panel-social .nav-social,
      .nav-panel-social .nav-social::after {
        width: 42px !important;
      }
      .nav-panel-social .nav-social::after {
        display: none !important;
      }
      .nav-panel-social .nav-social {
        border-bottom: 0 !important;
        padding: 0 !important;
      }
      .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255,255,255,.82);
        box-shadow: 0 10px 24px rgba(31,43,81,.12);
        backdrop-filter: blur(8px);
      }
      .nav-toggle span {
        width: 22px;
        transform-origin: center;
      }
      .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-toggle.open span:nth-child(2) { opacity: 0; }
      .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .intro-shell { padding: 28px 22px; }
      .intro-cards { grid-template-columns: 1fr; }
      .intro-slide { aspect-ratio: 4 / 4.4; }
      .mat-copy { padding: 0; }
      .mat-board { grid-template-columns: 1fr; }
      .brand-pill {
        min-width: 148px;
        height: 58px;
        font-size: .84rem;
        padding: 0 10px;
      }
      .brand-track { gap: 28px; }
      .srv-grid, .proc-steps { grid-template-columns: 1fr; }
      .proc-head { margin-bottom: 30px; }
      .proc-step:nth-child(5) { grid-column: span 1; }
      .proc-visual { min-height: auto; aspect-ratio: 4 / 4.7; border-radius: 20px; }
      .srv-media { height: 240px; }
      .diff-grid { grid-template-columns: 1fr; }
      .diff-item.wide { grid-column: span 1; }
      .port-grid { grid-template-columns: 1fr; }
      .port-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
      .port-card:nth-child(2) { min-height: auto; aspect-ratio: 4/3; }
      .test-layout { grid-template-columns: 1fr; }
      .test-grid { grid-template-columns: 1fr; }
      .test-photo {
        position: relative;
        top: auto;
        aspect-ratio: 4 / 4.4;
      }
      .fgrid     { grid-template-columns: 1fr; }
      .fg.full   { grid-column: span 1; }
      .form-box  { padding: 26px 18px; }
      .foot-shell { padding: 0; }
      .foot-main { grid-template-columns: 1fr; gap: 28px; }
      .foot-brand { grid-column: span 1; }
      .foot-brand img { height: 74px; }
      .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
      #hero { min-height: auto; }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 126px 0 34px;
      }
      .hero-content { padding-right: 0; }
      .hero-badge {
        font-size: .67rem;
        letter-spacing: .11em;
        padding: 10px 16px;
        margin-bottom: 18px;
      }
      .hero-content h1 {
        max-width: 13ch;
        font-size: clamp(1.95rem, 8vw, 2.8rem);
        line-height: 1.02;
        margin-bottom: 16px;
      }
      .hero-sub {
        font-size: .98rem;
        margin-bottom: 12px;
      }
      .hero-support {
        font-size: .88rem;
        margin-bottom: 22px;
      }
      .hero-visual {
        min-height: auto;
        justify-content: center;
        margin-top: 0;
      }
      .hero-render { min-height: 420px; width: min(100%, 420px); }
      .hero-visual img { width: min(100%, 360px); }
      .hero-note {
        top: 18px;
        right: 4px;
        max-width: 190px;
        padding: 12px 14px;
        gap: 10px;
        border-radius: 18px;
      }
      .hero-note span { font-size: .84rem; }
      .hero-ring { width: 240px; height: 240px; top: 54px; right: 20px; }
      .hero-dots {
        left: auto;
        right: -8px;
        top: 52%;
        width: 72px;
        height: 54px;
        opacity: .54;
      }
      .hero-spark.left { left: -2px; top: 92px; }
      .hero-spark.mid { left: auto; right: 19%; top: 124px; }
      .hero-ctas {
        flex-direction: column;
        gap: 12px;
      }
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .hero-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 16px;
        margin-top: 24px;
        padding-top: 18px;
      }
      .hero-highlight {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
      }
      .hero-highlight span { font-size: .88rem; }
      .hero-scroll { display: none; }
      .cov-stats   { gap: 28px; flex-wrap: wrap; }

      .wa-float > span:not(.wa-tip) { display: none; }
      .wa-float { padding: 13px; border-radius: 50%; }
      .wa-tip {
        display: inline-flex;
        right: 0;
        bottom: calc(100% + 12px);
      }
    }

    @media (max-width: 560px) {
      .nav-links {
        width: min(88vw, 320px);
        max-width: calc(100vw - 12px);
        padding: 38px 20px calc(22px + env(safe-area-inset-bottom, 0px));
      }
      .nav-panel-brand img { height: 40px; }
      .nav-panel-brand a { gap: 12px; }
      .nav-panel-copy strong { font-size: .72rem; letter-spacing: .1em; }
      .nav-panel-copy span { font-size: .68rem; }
      .hero-grid { padding: 118px 0 28px; }
      .hero-content h1 {
        max-width: 13ch;
        font-size: clamp(1.8rem, 9.4vw, 2.35rem);
      }
      .hero-render {
        min-height: 360px;
        width: min(100%, 340px);
      }
      .hero-visual img { width: min(100%, 305px); }
      .hero-ring {
        width: 205px;
        height: 205px;
        top: 60px;
        right: 12px;
      }
      .hero-note {
        top: 14px;
        right: -2px;
        max-width: 170px;
      }
      .hero-highlights { grid-template-columns: 1fr; }
      .wa-float {
        right: 18px;
        bottom: 18px;
      }
    }
