  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0c1a2c; --navy-mid: #1a2f4a; --blue: #2f6fc4; --blue-light: #5b9cf6;
    --bg: #f4f2ec; --bg2: #ece9e1; --white: #fbfaf6; --gray: #7d8a9f;
    --gray-light: #c4ccd8; --border: #dfdcd2;
    --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
    --sans: 'Geist', 'Plus Jakarta Sans', system-ui, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--white); color: var(--navy); overflow-x: hidden; font-variant-numeric: tabular-nums; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.045; mix-blend-mode: multiply; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
  h1, h2, h3, .hero-title, .about-title, .services-title, .portfolio-title, .cta-title, .testimonial-text, .featured-name, .svc-name, .project-name { text-wrap: balance; }
  p, .hero-desc, .about-text, .services-desc, .svc-text, .project-desc, .featured-desc, .small-text, .cta-desc, .footer-tagline { text-wrap: pretty; }
  .section-anchor { display: block; height: 0; visibility: hidden; }
  .label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; } .delay-6 { transition-delay: 0.6s; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 64px; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
  nav.scrolled { border-color: var(--border); box-shadow: 0 1px 24px rgba(13,27,46,0.06); }
  .nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); text-decoration: none; }
  .nav-logo-icon { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; flex-shrink: 0; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { font-size: 13.5px; font-weight: 500; color: var(--navy); text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .nav-cta { font-size: 13px; font-weight: 600; color: var(--white); background: var(--navy); border: none; padding: 9px 20px; border-radius: 6px; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; }
  .nav-cta:hover { background: var(--blue); transform: translateY(-1px); }
  .nav-menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); color: var(--navy); align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
  .nav-menu-toggle:hover { border-color: rgba(58,123,213,0.42); background: var(--bg); transform: translateY(-1px); }
  .nav-menu-toggle span { position: relative; display: block; width: 18px; height: 2px; border-radius: 999px; background: currentColor; transition: background 0.2s; }
  .nav-menu-toggle span::before, .nav-menu-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; border-radius: 999px; background: currentColor; transition: transform 0.22s cubic-bezier(.22,1,.36,1), top 0.22s cubic-bezier(.22,1,.36,1); }
  .nav-menu-toggle span::before { top: -6px; }
  .nav-menu-toggle span::after { top: 6px; }
  nav.menu-open .nav-menu-toggle span { background: transparent; }
  nav.menu-open .nav-menu-toggle span::before { top: 0; transform: rotate(45deg); }
  nav.menu-open .nav-menu-toggle span::after { top: 0; transform: rotate(-45deg); }

  /* HERO */
  #hero { min-height: 100dvh; padding-top: 64px; background: var(--white); display: flex; flex-direction: column; }
  .hero-main { flex: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; padding: 40px 64px 0; max-width: 1480px; margin: 0 auto; width: 100%; gap: 28px; }
  .hero-left { max-width: 560px; }
  .hero-title { font-family: var(--serif); font-size: clamp(64px, 8vw, 104px); font-weight: 700; line-height: 1.0; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.02em; }
  .hero-sub-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
  .hero-desc { font-size: 20px; font-weight: 400; line-height: 1.5; color: var(--navy); opacity: 0.75; margin-bottom: 8px; }
  .hero-divider { width: 40px; height: 2px; background: var(--blue); margin: 24px 0 32px; }
  .hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); font-family: var(--sans); font-size: 15px; font-weight: 600; padding: 15px 28px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
  .btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,123,213,0.3); }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-primary svg { transition: transform 0.2s; }
  .hero-email { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--blue); text-decoration: none; font-weight: 500; }
  .hero-email:hover { text-decoration: underline; }
  .btn-secondary { display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 14px 22px; border: 1px solid rgba(12,26,44,0.18); border-radius: 8px; color: var(--navy); background: rgba(255,255,255,0.58); text-decoration: none; font-size: 14px; font-weight: 600; backdrop-filter: blur(8px); transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s; }
  .btn-secondary:hover { border-color: rgba(47,111,196,0.42); background: rgba(47,111,196,0.07); color: var(--blue); transform: translateY(-2px); }
  .hero-badges { display: flex; align-items: center; margin-top: 56px; border-top: 1px solid var(--border); padding-top: 28px; }
  .hero-badge { display: flex; flex-direction: column; gap: 4px; padding-right: 36px; margin-right: 36px; border-right: 1px solid var(--border); }
  .hero-badge:last-child { border-right: none; margin-right: 0; }
  .hero-badge-title { font-size: 13.5px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; }
  .hero-badge-sub { font-size: 11.5px; color: var(--gray); font-weight: 400; }
  .hero-right { display: flex; align-items: flex-end; justify-content: center; position: relative; height: 640px; }
  .hero-geo { position: absolute; top: 20px; right: 0; width: 90%; height: 90%; opacity: 0.12; }
  .hero-ticker { background: var(--white); border-top: 1px solid var(--border); padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; }
  .ticker-left { display: flex; align-items: center; gap: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
  .ticker-dot { color: var(--blue); font-size: 14px; }
  .ticker-right { font-size: 12px; color: var(--navy); opacity: 0.6; }
  .ticker-right span { color: var(--blue); font-style: italic; opacity: 1; }

  /* ABOUT */
  #about { background: var(--bg); padding: 84px 64px; }
  .about-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-label { margin-bottom: 24px; }
  .about-title { font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 700; line-height: 1.05; color: var(--navy); margin-bottom: 32px; letter-spacing: -0.02em; }
  .about-divider { width: 36px; height: 2px; background: var(--blue); margin-bottom: 32px; }
  .about-text { font-size: 15px; line-height: 1.75; color: var(--navy); opacity: 0.7; margin-bottom: 20px; }
  .about-motto { display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); background: var(--white); padding: 16px 20px; border-radius: 8px; margin-top: 28px; font-size: 13px; color: var(--navy); opacity: 0.8; transform: translateY(0); transition: transform 0.32s cubic-bezier(.22,1,.36,1), border-color 0.25s ease, box-shadow 0.32s ease, opacity 0.25s ease; }
  .about-motto:hover { opacity: 1; transform: translateY(-4px); border-color: rgba(58,123,213,0.28); box-shadow: 0 18px 36px rgba(13,27,46,0.08); }
  .about-motto svg { flex-shrink: 0; color: var(--blue); transition: transform 0.35s cubic-bezier(.22,1,.36,1); }
  .about-motto:hover svg { transform: rotate(-8deg) scale(1.08); }
  .about-right { position: relative; min-height: 520px; display: flex; align-items: flex-end; justify-content: center; padding: 26px 18px 0; isolation: isolate; overflow: visible; }
  .about-right::before { content: ''; position: absolute; inset: 72px 4% 12px 13%; z-index: -2; border: 1px solid rgba(58,123,213,0.12); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(238,241,246,0.36)); box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 30px 70px rgba(13,27,46,0.08); }
  .about-right::after { content: ''; position: absolute; right: 2%; bottom: 26px; z-index: -1; width: 66%; height: 34%; border-radius: 50%; background: radial-gradient(ellipse, rgba(13,27,46,0.13) 0%, rgba(13,27,46,0.06) 38%, transparent 72%); transform: rotate(-4deg); }
  .about-visual { position: relative; z-index: 1; width: min(100%, 520px); transform: translateY(0) scale(1); filter: drop-shadow(0 24px 34px rgba(13,27,46,0.08)); transition: transform 0.55s cubic-bezier(.22,1,.36,1), filter 0.35s ease; will-change: transform; }
  .about-right:hover .about-visual, .about-right:focus-within .about-visual { transform: translateY(-8px) scale(1.01); filter: drop-shadow(0 30px 46px rgba(13,27,46,0.12)); }
  .about-process { position: absolute; top: 0; left: 0; z-index: 3; width: min(310px, 64%); padding: 18px; border: 1px solid rgba(58,123,213,0.16); border-radius: 16px; background: rgba(255,255,255,0.9); box-shadow: 0 24px 56px rgba(13,27,46,0.12); backdrop-filter: blur(14px); }
  .about-process::before { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg, rgba(58,123,213,0.1), transparent 42%); }
  .process-kicker { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(221,227,236,0.86); }
  .process-kicker span:first-child { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); opacity: 0.72; }
  .process-kicker span:last-child { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 0.04em; }
  .process-list { position: relative; display: flex; flex-direction: column; gap: 10px; }
  .process-step { position: relative; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: flex-start; border-radius: 12px; padding: 9px 10px 9px 8px; transform: translateX(0); transition: transform 0.3s cubic-bezier(.22,1,.36,1), background 0.25s ease, box-shadow 0.25s ease; }
  .process-step:hover { background: rgba(58,123,213,0.07); box-shadow: inset 0 0 0 1px rgba(58,123,213,0.08); transform: translateX(5px); }
  .process-line { position: relative; display: flex; flex-direction: column; align-items: center; min-height: 54px; }
  .process-dot { width: 28px; height: 28px; border: 1px solid rgba(58,123,213,0.28); border-radius: 9px; background: rgba(255,255,255,0.96); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; font-weight: 800; box-shadow: 0 8px 20px rgba(58,123,213,0.12); transition: transform 0.3s cubic-bezier(.22,1,.36,1), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease; }
  .process-step:hover .process-dot { background: var(--blue); color: var(--white); transform: translateY(-1px) scale(1.04); box-shadow: 0 10px 22px rgba(58,123,213,0.24); }
  .process-connector { width: 1px; flex: 1; min-height: 26px; background: linear-gradient(to bottom, rgba(58,123,213,0.3), rgba(58,123,213,0.08)); margin: 5px 0 -10px; transition: background 0.25s ease; }
  .process-step:hover .process-connector { background: linear-gradient(to bottom, rgba(58,123,213,0.7), rgba(58,123,213,0.18)); }
  .process-step-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; transition: letter-spacing 0.25s ease, color 0.25s ease; }
  .process-step:hover .process-step-label { letter-spacing: 0.17em; color: var(--navy); }
  .process-step-text { font-size: 12px; color: var(--navy); opacity: 0.68; line-height: 1.5; transition: opacity 0.25s ease; }
  .process-step:hover .process-step-text { opacity: 0.9; }
  .about-values { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border); margin-top: 64px; max-width: 1300px; margin-left: auto; margin-right: auto; isolation: isolate; }
  .value-item { padding: 32px 24px; border-right: 1px solid var(--border); background: transparent; position: relative; overflow: hidden; transform: translateY(0); transition: transform 0.38s cubic-bezier(.22,1,.36,1), background 0.28s ease, box-shadow 0.38s ease; will-change: transform; }
  .value-item::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.34s cubic-bezier(.22,1,.36,1); }
  .value-item:hover, .value-item:focus-within { background: var(--white); transform: translateY(-8px); box-shadow: 0 22px 44px rgba(13,27,46,0.08); z-index: 2; }
  .value-item:hover::before, .value-item:focus-within::before { transform: scaleX(1); }
  .value-item:last-child { border-right: none; }
  .value-icon { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--blue); transition: transform 0.34s cubic-bezier(.22,1,.36,1), border-color 0.25s ease, background 0.25s ease, color 0.25s ease; }
  .value-item:hover .value-icon, .value-item:focus-within .value-icon { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-3px) scale(1.05); }
  .value-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; transition: color 0.25s ease, letter-spacing 0.25s ease; }
  .value-item:hover .value-title, .value-item:focus-within .value-title { color: var(--blue); letter-spacing: 0.16em; }
  .value-desc { font-size: 12px; line-height: 1.6; color: var(--gray); transition: color 0.25s ease; }
  .value-item:hover .value-desc, .value-item:focus-within .value-desc { color: #64748b; }

  /* SERVICES */
  #services { background: var(--white); padding: 84px 64px; }
  .services-inner { max-width: 1300px; margin: 0 auto; }
  .services-header { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; margin-bottom: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--border); gap: 48px; }
  .services-header-right-top { display: flex; justify-content: flex-end; align-items: flex-start; }
  .pz-badge { text-align: right; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.1; }
  .pz-badge-top { font-size: 22px; color: var(--navy); }
  .pz-badge-bot { font-size: 22px; color: var(--navy); }
  .pz-badge-bot span { color: var(--blue); }
  .services-title { font-family: var(--serif); font-size: clamp(40px, 4vw, 58px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); }
  .services-title span { color: var(--blue); }
  .services-desc { font-size: 14.5px; line-height: 1.7; color: var(--navy); opacity: 0.65; }
  .services-grid { display: grid; grid-template-columns: 160px 1fr 1fr 1fr; border: 1px solid var(--border); border-radius: 2px; isolation: isolate; }
  .services-sidebar { border-right: 1px solid var(--border); display: flex; flex-direction: column; }
  .sidebar-item { padding: 28px 20px; border-bottom: 1px solid var(--border); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
  .sidebar-item:last-child { border-bottom: none; flex: 1; }
  .sidebar-icon { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
  .svc-col { background: var(--white); border-right: 1px solid var(--border); display: flex; flex-direction: column; position: relative; overflow: hidden; transform: translateY(0); transition: transform 0.42s cubic-bezier(.22,1,.36,1), box-shadow 0.42s cubic-bezier(.22,1,.36,1), background 0.3s ease; will-change: transform; }
  .svc-col::before { content: ''; position: absolute; inset: 0; border: 1px solid transparent; pointer-events: none; transition: border-color 0.3s ease; z-index: 2; }
  .svc-col::after { content: ''; position: absolute; top: 0; left: -48%; width: 36%; height: 100%; background: linear-gradient(105deg, transparent 0%, rgba(58,123,213,0.08) 42%, rgba(255,255,255,0.72) 50%, rgba(58,123,213,0.08) 58%, transparent 100%); opacity: 0; transform: skewX(-14deg) translateX(-120%); transition: transform 0.78s cubic-bezier(.22,1,.36,1), opacity 0.22s ease; pointer-events: none; z-index: 1; }
  .svc-col:last-child { border-right: none; }
  .svc-col:hover, .svc-col:focus-within { background: #fbfdff; box-shadow: 0 24px 48px rgba(13,27,46,0.09); transform: translateY(-10px); z-index: 3; }
  .svc-col:hover::before, .svc-col:focus-within::before { border-color: rgba(58,123,213,0.32); }
  .svc-col:hover::after, .svc-col:focus-within::after { opacity: 1; transform: skewX(-14deg) translateX(520%); }
  .svc-header { padding: 28px 24px; border-bottom: 1px solid var(--border); transition: background 0.3s ease, border-color 0.3s ease; position: relative; z-index: 2; }
  .svc-col:hover .svc-header, .svc-col:focus-within .svc-header { background: linear-gradient(180deg, rgba(58,123,213,0.06), rgba(58,123,213,0)); border-bottom-color: rgba(58,123,213,0.22); }
  .svc-num { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 8px; transition: letter-spacing 0.3s ease, transform 0.3s ease; }
  .svc-col:hover .svc-num, .svc-col:focus-within .svc-num { letter-spacing: 0.16em; transform: translateX(2px); }
  .svc-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 12px; }
  .svc-name svg { color: var(--gray-light); transition: color 0.25s ease, transform 0.35s cubic-bezier(.22,1,.36,1); }
  .svc-col:hover .svc-name svg, .svc-col:focus-within .svc-name svg { color: var(--blue); transform: translateY(-2px) scale(1.08); }
  .svc-body { padding: 24px; flex: 1; position: relative; z-index: 2; }
  .svc-text { font-size: 13px; line-height: 1.65; color: var(--navy); opacity: 0.65; margin-bottom: 20px; transition: opacity 0.25s ease; }
  .svc-col:hover .svc-text, .svc-col:focus-within .svc-text { opacity: 0.82; }
  .svc-checklist { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
  .svc-checklist li { font-size: 12.5px; color: var(--navy); opacity: 0.7; display: flex; align-items: center; gap: 8px; transition: opacity 0.25s ease, transform 0.3s cubic-bezier(.22,1,.36,1); }
  .svc-col:hover .svc-checklist li, .svc-col:focus-within .svc-checklist li { opacity: 0.86; transform: translateX(3px); }
  .svc-checklist li::before { content: '✓'; color: var(--blue); font-weight: 600; font-size: 12px; flex-shrink: 0; transition: transform 0.3s cubic-bezier(.22,1,.36,1); }
  .svc-col:hover .svc-checklist li::before, .svc-col:focus-within .svc-checklist li::before { transform: scale(1.18); }
  .svc-stack { font-size: 11px; color: var(--gray); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto; transition: border-color 0.3s ease, color 0.25s ease; }
  .svc-col:hover .svc-stack, .svc-col:focus-within .svc-stack { border-top-color: rgba(58,123,213,0.2); color: #6f829e; }
  .services-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); margin-top: 48px; padding-top: 20px; }
  .footer-badges { display: flex; align-items: center; gap: 32px; }
  .footer-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); }
  .footer-badge svg { color: var(--blue); }

  /* PORTFOLIO */
  #portfolio { background: var(--bg); padding: 84px 64px; }
  .portfolio-inner { max-width: 1300px; margin: 0 auto; }
  .portfolio-top-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
  .portfolio-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
  .portfolio-filter { display: flex; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--white); margin-top: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); background: none; border: none; border-right: 1px solid var(--border); cursor: pointer; transition: background 0.15s, color 0.15s; }
  .filter-btn:last-child { border-right: none; }
  .filter-btn.active { background: var(--navy); color: var(--white); }
  .filter-btn:hover:not(.active) { background: var(--bg); color: var(--navy); }
  .portfolio-layout { display: grid; grid-template-columns: minmax(260px, 280px) minmax(0, 1fr) 280px; align-items: stretch; border: 1px solid var(--border); background: var(--white); border-radius: 2px; overflow: hidden; }
  .portfolio-sidebar { min-width: 0; border-right: 1px solid var(--border); padding: 40px 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
  .portfolio-title { font-family: var(--serif); font-size: 42px; font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 16px; }
  .portfolio-divider { width: 32px; height: 2px; background: var(--blue); margin: 20px 0; }
  .portfolio-side-text { font-size: 13px; line-height: 1.65; color: var(--gray); margin-bottom: 28px; }
  .portfolio-link { font-size: 12px; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 6px; font-weight: 500; margin-top: 16px; }
  .portfolio-link:hover { text-decoration: underline; }
  .portfolio-center { min-width: 0; min-height: 460px; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
  .portfolio-empty { min-height: 420px; padding: 40px 32px; display: grid; place-items: center; text-align: center; color: var(--gray); font-size: 13px; line-height: 1.6; }
  .project-item { min-width: 0; border-bottom: 1px solid var(--border); padding: 36px 32px; display: grid; grid-template-columns: 48px minmax(0, 1fr) minmax(180px, 1fr); gap: 24px; align-items: start; cursor: pointer; transition: background 0.25s; position: relative; }
  .project-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s cubic-bezier(.22,1,.36,1); }
  .project-item:last-child { border-bottom: none; }
  .project-item:hover { background: var(--bg); }
  .project-item:hover::before { transform: scaleY(1); }
  .project-item:hover .project-name { color: var(--blue); transition: color 0.2s; }
  .project-num { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--navy); opacity: 0.25; line-height: 1; }
  .project-info { min-width: 0; }
  .project-type { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
  .project-name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
  .project-desc { font-size: 12.5px; line-height: 1.6; color: var(--gray); margin-bottom: 12px; }
  .project-cta { font-size: 12px; color: var(--navy); display: flex; align-items: center; gap: 6px; font-weight: 500; opacity: 0.6; text-decoration: none; }
  .project-preview { min-width: 0; background: var(--bg2); border-radius: 4px; border: 1px solid var(--border); height: 160px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .portfolio-right { padding: 32px 24px; display: flex; flex-direction: column; }
  .portfolio-right-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
  .portfolio-right-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .featured-stack-img { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; overflow: hidden; }
  .featured-platform-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
  .featured-name { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .featured-desc { font-size: 12.5px; line-height: 1.6; color: var(--gray); margin-bottom: 16px; }
  .featured-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .featured-list li { font-size: 12px; color: var(--navy); opacity: 0.65; display: flex; align-items: center; gap: 8px; }
  .featured-list li::before { content: '→'; color: var(--blue); font-size: 10px; }
  .portfolio-bottom-bar { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 20px; margin-top: 40px; max-width: 1300px; margin-left: auto; margin-right: auto; }
  .pbb-left { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
  .pbb-right { font-size: 12.5px; color: var(--blue); display: flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 500; }
  .pbb-right:hover { text-decoration: underline; }

  /* PRICING */
  #pricing { background: var(--white); padding: 84px 64px; }
  .pricing-wrap { max-width: 1100px; margin: 0 auto; }
  .pricing-header-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 72px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
  .pricing-grid { overflow: visible !important; isolation: isolate; }
  .pricing-card { min-width: 0; }
  .pricing-card-price { white-space: nowrap; font-variant-numeric: tabular-nums; }
  .pricing-card-list li { min-width: 0; }
  .pricing-card-cta { min-height: 46px; }
  .pricing-card { position: relative; overflow: hidden; transform: translateY(0); transition: transform 0.42s cubic-bezier(.22,1,.36,1), box-shadow 0.42s cubic-bezier(.22,1,.36,1); will-change: transform; }
  .pricing-card::before { content: ''; position: absolute; inset: 0; border: 1px solid transparent; border-radius: 0; pointer-events: none; transition: border-color 0.28s ease; z-index: 2; }
  .pricing-card::after { content: ''; position: absolute; top: -20%; left: -55%; width: 38%; height: 140%; background: linear-gradient(105deg, transparent 0%, rgba(58,123,213,0.07) 42%, rgba(255,255,255,0.58) 50%, rgba(58,123,213,0.07) 58%, transparent 100%); opacity: 0; transform: skewX(-16deg) translateX(-110%); transition: transform 0.8s cubic-bezier(.22,1,.36,1), opacity 0.2s ease; pointer-events: none; z-index: 1; }
  .pricing-card:hover, .pricing-card:focus-within { transform: translateY(-10px); box-shadow: 0 28px 56px rgba(13,27,46,0.12); z-index: 4; }
  .pricing-card:hover::before, .pricing-card:focus-within::before { border-color: rgba(58,123,213,0.34); }
  .pricing-card:hover::after, .pricing-card:focus-within::after { opacity: 1; transform: skewX(-16deg) translateX(520%); }
  .pricing-card > * { position: relative; z-index: 2; }
  .pricing-card-title, .pricing-card-price, .pricing-card-kicker, .pricing-card-meta, .pricing-card-cta, .pricing-card-list li, .pricing-card-list span { transition: transform 0.32s cubic-bezier(.22,1,.36,1), color 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease, letter-spacing 0.3s ease; }
  .pricing-card:hover .pricing-card-kicker, .pricing-card:focus-within .pricing-card-kicker { letter-spacing: 0.22em !important; }
  .pricing-card:hover .pricing-card-title, .pricing-card:focus-within .pricing-card-title { transform: translateX(3px); }
  .pricing-card-light:hover .pricing-card-title, .pricing-card-light:focus-within .pricing-card-title { color: var(--blue) !important; }
  .pricing-card:hover .pricing-card-price, .pricing-card:focus-within .pricing-card-price { transform: translateY(-3px) scale(1.02); }
  .pricing-card:hover .pricing-card-list li, .pricing-card:focus-within .pricing-card-list li { transform: translateX(4px); opacity: 0.9 !important; }
  .pricing-card-featured:hover .pricing-card-list li, .pricing-card-featured:focus-within .pricing-card-list li { opacity: 0.82 !important; }
  .pricing-card:hover .pricing-card-list span, .pricing-card:focus-within .pricing-card-list span { transform: scale(1.32); }
  .pricing-card-light:hover .pricing-card-cta, .pricing-card-light:focus-within .pricing-card-cta { border-color: var(--blue) !important; color: var(--blue) !important; }
  .pricing-card-featured:hover .pricing-card-cta, .pricing-card-featured:focus-within .pricing-card-cta { background: #5b9cf6 !important; transform: translateY(-2px); }
  .pricing-whatsapp-link:hover, .pricing-whatsapp-link:focus-visible { color: #25D366 !important; }
  .pricing-enterprise { position: relative; overflow: hidden; transform: translateY(0); transition: transform 0.42s cubic-bezier(.22,1,.36,1), box-shadow 0.42s cubic-bezier(.22,1,.36,1), border-color 0.25s ease; }
  .pricing-enterprise-grid { display: grid; grid-template-columns: 1fr 320px; }
  .pricing-enterprise-copy { padding: 40px 48px; border-right: 1px solid var(--border); }
  .pricing-enterprise-side { background: var(--bg); padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
  .pricing-enterprise-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .pricing-enterprise::after { content: ''; position: absolute; inset: 0; border: 1px solid transparent; border-radius: 16px; pointer-events: none; transition: border-color 0.25s ease; }
  .pricing-enterprise:hover, .pricing-enterprise:focus-within { transform: translateY(-8px); border-color: rgba(58,123,213,0.34) !important; box-shadow: 0 26px 52px rgba(13,27,46,0.1); }
  .pricing-enterprise:hover::after, .pricing-enterprise:focus-within::after { border-color: rgba(58,123,213,0.26); }
  .pricing-enterprise h3, .pricing-enterprise .pricing-enterprise-price, .pricing-enterprise [style*="color:var(--blue);font-weight:700"] { transition: transform 0.32s cubic-bezier(.22,1,.36,1), color 0.25s ease; }
  .pricing-enterprise:hover h3, .pricing-enterprise:focus-within h3 { color: var(--blue) !important; transform: translateX(3px); }
  .pricing-enterprise:hover .pricing-enterprise-price, .pricing-enterprise:focus-within .pricing-enterprise-price { transform: translateY(-3px) scale(1.015); }
  .pricing-enterprise:hover [style*="color:var(--blue);font-weight:700"], .pricing-enterprise:focus-within [style*="color:var(--blue);font-weight:700"] { transform: translateX(3px); }

  /* TESTIMONIALS */
  #testimonials { background: var(--white); padding: 84px 64px; }
  .testimonials-inner { max-width: 1300px; margin: 0 auto; }
  .testimonials-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
  .testimonials-badge { width: 100px; height: 100px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .badge-inner-text { text-align: center; font-size: 7px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); opacity: 0.5; line-height: 1.4; }
  .testimonial-main { border-left: 3px solid var(--border); padding-left: 40px; margin-bottom: 48px; }
  .quote-mark { font-family: var(--serif); font-size: 64px; color: var(--blue); line-height: 0.8; margin-bottom: 16px; opacity: 0.4; }
  .testimonial-text { font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); font-weight: 500; line-height: 1.35; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.01em; }
  .testimonial-author { font-size: 14px; color: var(--navy); font-weight: 600; }
  .testimonial-role { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
  .testimonials-secondary { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); margin-bottom: 48px; }
  .testimonial-small { padding: 36px 32px; border-right: 1px solid var(--border); }
  .testimonial-small:last-child { border-right: none; }
  .small-quote { font-size: 24px; color: var(--blue); opacity: 0.35; font-family: var(--serif); margin-bottom: 10px; line-height: 0.8; }
  .small-text { font-size: 14px; line-height: 1.65; color: var(--navy); opacity: 0.75; margin-bottom: 18px; }
  .small-author { font-size: 12px; font-weight: 600; color: var(--navy); }
  .small-role { font-size: 10px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
  .clients-row { border-top: 1px solid var(--border); padding-top: 36px; display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 40px; }
  .clients-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); line-height: 1.5; }
  .clients-logos { overflow: hidden; }
  .clients-logos-track { display: flex; align-items: center; gap: 56px; animation: marquee 18s linear infinite; width: max-content; }
  .clients-logos-track:hover { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .client-logo { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; color: var(--navy); opacity: 0.4; text-transform: uppercase; transition: opacity 0.2s; }
  .client-logo:hover { opacity: 0.8; }
  .faq-hero { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr); gap: 48px; align-items: end; border-bottom: 1px solid var(--border); padding-bottom: 44px; margin-bottom: 0; }
  .faq-title { font-family: var(--serif); font-size: clamp(42px, 5vw, 72px); line-height: 1.02; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); }
  .faq-title span { color: var(--blue); font-style: italic; font-weight: 500; }
  .faq-lead { font-size: 15px; line-height: 1.75; color: var(--navy); opacity: 0.68; max-width: 56ch; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--border); border-top: 1px solid var(--border); margin-bottom: 48px; }
  .faq-item { min-height: 220px; padding: 30px 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); position: relative; overflow: hidden; transition: background 0.25s ease, transform 0.32s cubic-bezier(.22,1,.36,1), box-shadow 0.32s ease; }
  .faq-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.34s cubic-bezier(.22,1,.36,1); }
  .faq-item:hover { background: #fbfdff; transform: translateY(-6px); box-shadow: 0 22px 44px rgba(13,27,46,0.08); z-index: 2; }
  .faq-item:hover::before { transform: scaleX(1); }
  .faq-num { font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1; color: var(--blue); opacity: 0.34; margin-bottom: 22px; }
  .faq-question { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); font-weight: 650; line-height: 1.12; letter-spacing: -0.015em; color: var(--navy); margin-bottom: 18px; max-width: 14ch; }
  .faq-answer { font-size: 13.5px; line-height: 1.7; color: var(--navy); opacity: 0.68; max-width: 44ch; }
  .faq-note { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--border); padding-top: 28px; }
  .faq-note-copy { font-size: 13px; color: var(--gray); line-height: 1.6; }
  .faq-note-copy strong { color: var(--navy); }
  .faq-note-link { flex-shrink: 0; font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 600; }
  .faq-note-link:hover { text-decoration: underline; }

  /* CTA */
  #cta { background: var(--bg); padding: 84px 64px; overflow: hidden; }
  .cta-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
  .cta-label { margin-bottom: 24px; }
  .cta-title { font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 28px; }
  .cta-title span { color: var(--blue); }
  .cta-desc { font-size: 15px; line-height: 1.7; color: var(--navy); opacity: 0.65; margin-bottom: 36px; }
  .cta-actions { display: flex; align-items: center; gap: 24px; }
  .cta-ticker { margin-top: 80px; border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; gap: 32px; max-width: 1300px; margin-left: auto; margin-right: auto; }
  .cta-ticker-icon { color: var(--blue); opacity: 0.5; }
  .cta-ticker-items { display: flex; align-items: center; gap: 20px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
  .cta-ticker-dot { color: var(--blue); }
  .cta-right { display: flex; align-items: center; justify-content: center; }

  /* FOOTER */
  #footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 64px 0; }
  .footer-top { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
  .footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
  .footer-tagline { font-size: 13.5px; line-height: 1.65; color: var(--navy); opacity: 0.7; margin-bottom: 6px; }
  .footer-tagline span { color: var(--blue); }
  .footer-divider-line { width: 32px; height: 1.5px; background: var(--blue); margin: 18px 0; }
  .footer-brand-sub { font-size: 12px; color: var(--gray); line-height: 1.6; }
  .footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a { font-size: 13px; color: var(--navy); text-decoration: none; opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
  .footer-col ul a:hover { opacity: 1; color: var(--blue); }
  .footer-contact-email { font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 500; display: block; margin-bottom: 10px; }
  .footer-contact-email:hover { text-decoration: underline; }
  .footer-contact-info { font-size: 13px; color: var(--navy); opacity: 0.6; line-height: 1.7; }
  .footer-hablemos { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 500; margin-top: 12px; transition: gap 0.2s; }
  .footer-hablemos:hover { gap: 14px; }
  .footer-bottom { max-width: 1300px; margin: 0 auto; padding: 20px 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
  .footer-copy { font-size: 12px; color: var(--gray); }
  .footer-tagline-bottom { font-size: 12px; color: var(--gray); text-align: right; }
  .footer-tagline-bottom span { color: var(--blue); }

  /* PAGE TRANSITION + SCROLL PROGRESS */
  .page-transition { position: fixed; inset: 0; z-index: 10000; pointer-events: none; background: var(--navy); clip-path: inset(0 0 100% 0); transition: clip-path 0.55s cubic-bezier(.77,0,.18,1); }
  .page-transition.exit { clip-path: inset(0 0 0% 0); pointer-events: all; }
  .page-transition.enter { clip-path: inset(100% 0 0% 0); }
  .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--blue); z-index: 200; transition: width 0.1s linear; }

  /* HERO ANIMATIONS */
  .hero-dotgrid { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
  .hero-dotgrid canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease; }
  .hero-dotgrid canvas.visible { opacity: 1; }
  .hero-watermark { position: absolute; bottom: 60px; left: 50%; font-family: var(--serif); font-size: clamp(80px, 12vw, 160px); font-weight: 700; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1px rgba(58,123,213,0.07); white-space: nowrap; pointer-events: none; user-select: none; opacity: 0; transform: translateX(-50%) translateY(20px); transition: opacity 1.4s ease 0.6s, transform 1.4s cubic-bezier(.22,1,.36,1) 0.6s; }
  .hero-watermark.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
  .clip-reveal { overflow: hidden; display: block; }
  .clip-reveal-inner { display: block; transform: translateY(100%) skewY(4deg); opacity: 0; transition: transform 0.85s cubic-bezier(.22,1,.36,1), opacity 0.5s; }
  .clip-reveal-inner.visible { transform: translateY(0) skewY(0deg); opacity: 1; }
  .hero-seq { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
  .hero-seq.visible { opacity: 1; transform: translateY(0); }
  @keyframes bearFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
  @keyframes bearShadow { 0%, 100% { transform: scaleX(1); opacity: 0.35; } 50% { transform: scaleX(0.82); opacity: 0.18; } }
  .bear-float-wrap { display: flex; flex-direction: column; align-items: center; transform-origin: 50% 82%; position: relative; isolation: isolate; }
  .bear-float-wrap.floating .hero-bear-img { filter: saturate(0.96) contrast(0.98) drop-shadow(0 28px 42px rgba(13,27,46,0.13)); }
  .bear-float-wrap.css-floating img { animation: bearFloat 4s ease-in-out infinite; }
  .bear-shadow { width: 200px; height: 20px; background: radial-gradient(ellipse, rgba(13,27,46,0.18) 0%, transparent 70%); border-radius: 50%; margin-top: -10px; flex-shrink: 0; position: relative; z-index: 1; }
  .bear-float-wrap.css-floating .bear-shadow { animation: bearShadow 4s ease-in-out infinite; }
  .hero-right { transition: opacity 0.9s ease 0.4s, transform 0.9s cubic-bezier(.22,1,.36,1) 0.4s; }
  .hero-right.pre-enter { opacity: 0; transform: translateX(40px); }
  .hero-right.entered { opacity: 1; transform: translateX(0); }
  @media (prefers-reduced-motion: reduce) {
    .about-motto, .about-motto svg, .about-right::before, .about-visual, .process-step, .process-dot, .process-connector, .process-step-label, .process-step-text, .value-item, .value-item::before, .value-icon, .value-title, .value-desc, .svc-col, .svc-col::before, .svc-col::after, .svc-header, .svc-num, .svc-name svg, .svc-text, .svc-checklist li, .svc-checklist li::before, .svc-stack, .pricing-card, .pricing-card::before, .pricing-card::after, .pricing-card-title, .pricing-card-price, .pricing-card-kicker, .pricing-card-meta, .pricing-card-cta, .pricing-card-list li, .pricing-card-list span, .pricing-enterprise, .pricing-enterprise::after, .pricing-enterprise h3, .pricing-enterprise .pricing-enterprise-price, .pricing-enterprise [style*="color:var(--blue);font-weight:700"] { transition: none; }
    .about-motto:hover, .about-right:hover .about-visual, .about-right:focus-within .about-visual, .process-step:hover, .value-item:hover, .value-item:focus-within { transform: none; }
    .about-right:hover::before, .about-right:focus-within::before, .value-item:hover::before, .value-item:focus-within::before { opacity: 0; transform: none; }
    .svc-col:hover, .svc-col:focus-within { transform: none; }
    .svc-col:hover::after, .svc-col:focus-within::after { opacity: 0; transform: none; }
    .pricing-card:hover, .pricing-card:focus-within, .pricing-enterprise:hover, .pricing-enterprise:focus-within { transform: none; }
    .pricing-card:hover::after, .pricing-card:focus-within::after { opacity: 0; transform: none; }
  }

  /* RESPONSIVE */
  @media (max-width: 1180px) {
    .portfolio-layout { grid-template-columns: minmax(240px, 280px) minmax(0, 1fr); }
    .portfolio-center { border-right: none; }
    .portfolio-right { grid-column: 1 / -1; border-top: 1px solid var(--border); }
    .featured-stack-img { max-width: 360px; }
  }
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-menu-toggle { display: inline-flex; }
    .nav-links { position: absolute; top: 64px; left: 16px; right: 16px; display: grid; gap: 0; padding: 8px; background: rgba(255,255,255,0.98); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 24px 48px rgba(13,27,46,0.12); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.22,1,.36,1), visibility 0s linear 0.22s; }
    nav.menu-open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
    .nav-links li { display: block; }
    .nav-links a { display: block; padding: 14px 14px; border-radius: 8px; font-size: 14px; opacity: 0.86; }
    .nav-links a:hover { background: var(--bg); opacity: 1; }
    .nav-right { gap: 10px; }
    .hero-main { grid-template-columns: 1fr; padding: 40px 24px 0; }
    .hero-right { height: 360px; overflow: visible; }
    .hero-right img { width: min(100%, 520px) !important; max-width: 100% !important; }
    .hero-float-cards { inset: -18px 0 0 0; }
    .hero-summary-card { right: 5%; top: 0; width: min(360px, 58%); transform-origin: top right; }
    .hero-code-card { left: 2%; top: 42%; width: min(330px, 50%); }
    .hero-launch-card { right: 3%; bottom: 8%; width: min(190px, 32%); }
    .summary-tile strong { font-size: 21px; }
    .code-lines-ui { font-size: 10.5px; padding-left: 44px; }
    .launch-list { font-size: 12px; gap: 12px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-right { min-height: 500px; max-width: 620px; width: 100%; justify-self: center; }
    .about-process { width: min(330px, 68%); }
    #about { padding: 60px 24px; }
    #services { padding: 60px 24px; }
    .services-header { grid-template-columns: 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .services-sidebar { display: none; }
    .svc-col { border-right: none; border-bottom: 1px solid var(--border); }
    #portfolio { padding: 60px 24px; }
    .portfolio-layout { grid-template-columns: 1fr; }
    .portfolio-sidebar { border-right: none; border-bottom: 1px solid var(--border); }
    .portfolio-center { min-height: 360px; border-right: none; }
    .portfolio-empty { min-height: 360px; }
    .portfolio-right { border-top: 1px solid var(--border); }
    .portfolio-header { flex-direction: column; gap: 16px; }
    #testimonials { padding: 60px 24px; }
    .testimonials-secondary { grid-template-columns: 1fr; }
    .faq-hero { grid-template-columns: 1fr; gap: 22px; align-items: start; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item { min-height: auto; }
    .faq-note { align-items: flex-start; flex-direction: column; }
    .clients-row { grid-template-columns: 1fr; gap: 20px; }
    #cta { padding: 60px 24px; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-right { display: none; }
    #footer { padding: 60px 24px 0; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { grid-template-columns: 1fr; gap: 12px; text-align: center; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .hero-badges { flex-direction: column; gap: 16px; }
    .hero-badge { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .hero-badge:last-child { border-bottom: none; padding-bottom: 0; }
    #pricing { padding: 60px 24px; }
    .pricing-header-row { grid-template-columns: 1fr !important; gap: 24px !important; margin-bottom: 40px !important; padding-bottom: 32px !important; }
    .pricing-grid { grid-template-columns: 1fr !important; gap: 0 !important; border-radius: 14px !important; overflow: hidden !important; }
    .pricing-card { padding: 30px 24px !important; border-bottom: 1px solid var(--border); }
    .pricing-card:last-child { border-bottom: none; }
    .pricing-card:hover, .pricing-card:focus-within { transform: translateY(-4px); }
    .pricing-enterprise-grid { grid-template-columns: 1fr !important; }
    .pricing-enterprise-copy { padding: 32px 24px !important; border-right: none !important; border-bottom: 1px solid var(--border); }
    .pricing-enterprise-side { padding: 30px 24px !important; }
    .pricing-enterprise-features { grid-template-columns: 1fr !important; }
    .hero-ticker, .cta-ticker { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ticker-left, .cta-ticker-items { flex-wrap: wrap; gap: 10px; }
    .services-footer { align-items: flex-start; }
    .footer-badges { flex-wrap: wrap; gap: 14px; }
  }
  @media (max-width: 600px) {
    nav { padding: 0 14px; }
    .nav-logo { font-size: 12px; gap: 8px; }
    .nav-logo-icon { width: 30px; height: 30px; }
    .nav-cta { padding: 8px 12px; font-size: 12px; }
    .hero-float-cards { inset: -8px -4px 0 -6px; }
    .hero-ui-card { border-radius: 16px; }
    .hero-summary-card { width: min(320px, 72%); right: 0; top: 0; padding: 14px; }
    .summary-grid { gap: 7px; }
    .summary-tile { min-height: 64px; padding: 10px; }
    .summary-tile span { font-size: 9px; margin-bottom: 5px; }
    .summary-tile strong { font-size: 17px; }
    .summary-users svg { width: 62px; right: 8px; bottom: 10px; }
    .hero-code-card { left: -4px; top: 44%; width: min(280px, 60%); }
    .code-title { height: 38px; padding: 0 12px; font-size: 10px; }
    .code-lines-ui { font-size: 8.5px; line-height: 1.55; padding: 12px 12px 14px 34px; }
    .hero-launch-card { right: -2px; bottom: 6%; width: min(164px, 40%); }
    .launch-title { padding: 14px 12px 12px; }
    .launch-title strong { font-size: 12px; }
    .launch-list { padding: 14px 12px 16px; font-size: 10.5px; gap: 10px; }
    .launch-list li { grid-template-columns: 20px 1fr; gap: 8px; }
    .launch-list span { width: 19px; height: 19px; font-size: 10px; }
    .about-right { min-height: auto; padding: 0; display: grid; gap: 18px; align-items: start; }
    .about-right::before { inset: 122px 0 8px; border-radius: 18px; }
    .about-right::after { right: 8%; bottom: 12px; width: 82%; height: 26%; }
    .about-process { position: relative; top: auto; left: auto; width: 100%; order: 2; padding: 16px; }
    .about-visual { order: 1; width: min(100%, 390px); justify-self: center; }
    .process-step { grid-template-columns: 32px minmax(0, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .project-item { grid-template-columns: 32px 1fr; }
    .project-preview { display: none; }
    .pricing-card-price { font-size: 38px !important; }
    .pricing-card-price span, .pricing-enterprise-price span { font-size: 20px !important; }
    .pricing-enterprise-price { font-size: 44px !important; }
    .hero-ticker { padding: 14px 20px; }
    .ticker-right { line-height: 1.5; }
    .cta-actions { flex-direction: column; align-items: flex-start; }
  }

  /* ── REFINEMENTS ──────────────────────────────────────────────── */
  /* Skip link (a11y) */
  .skip-link { position: absolute; top: -100px; left: 16px; z-index: 10001; background: var(--navy); color: var(--white); padding: 10px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: top 0.2s ease; }
  .skip-link:focus { top: 16px; }

  /* Focus rings */
  :focus { outline: none; }
  a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

  /* Active / pressed feedback */
  .btn-primary:active, .nav-cta:active, .filter-btn:active, .pricing-card-cta:active { transform: translateY(1px) scale(0.985); }
  .btn-primary, .nav-cta, .filter-btn, .pricing-card-cta { transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s; }

  /* Tinted shadows (warm palette) */
  .nav-cta:hover { box-shadow: 0 8px 22px rgba(47,111,196,0.22); }
  .btn-primary:hover { box-shadow: 0 10px 26px rgba(47,111,196,0.28); }

  /* Subtle ambient gradient on hero + CTA (replaces flat sections) */
  #hero { position: relative; background: radial-gradient(1200px 600px at 85% 10%, rgba(47,111,196,0.06), transparent 60%), radial-gradient(900px 500px at 10% 90%, rgba(244,242,236,0.6), transparent 70%), var(--white); }
  #cta { position: relative; background: radial-gradient(900px 500px at 12% 20%, rgba(47,111,196,0.05), transparent 60%), var(--bg); }

  /* Keep the decorative hero wordmark anchored to the hero, not drifting into adjacent areas. */
  .hero-main, .hero-ticker { position: relative; z-index: 1; }
  .hero-watermark { left: 50%; right: auto; transform: translateX(-50%) translateY(20px); -webkit-text-stroke: 1px rgba(47,111,196,0.08); z-index: 0; }
  .hero-watermark.visible { transform: translateX(-50%) translateY(0); }

  /* Active nav link */
  .nav-links a.is-active { opacity: 1; color: var(--blue); }

  /* Slightly tighter display headline tracking on Fraunces */
  .hero-title, .about-title, .services-title, .cta-title, .portfolio-title { letter-spacing: -0.025em; }

  /* Variable-font optical sizing where supported */
  .hero-title, .testimonial-text, .cta-title, .about-title, .services-title { font-optical-sizing: auto; font-variation-settings: 'opsz' 144; }
  .featured-name, .svc-name, .project-name, .pricing-card-title { font-optical-sizing: auto; font-variation-settings: 'opsz' 36; }

  /* Hero — atmosphere over noise */
  .hero-dotgrid { -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 35%, transparent 78%); mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 35%, transparent 78%); }
  .hero-geo { opacity: 0.07 !important; transition: transform 0.6s cubic-bezier(.22,1,.36,1); }
  .hero-watermark { -webkit-text-stroke-color: rgba(47,111,196,0.04); }

  /* Bear — keep the current raster asset, but integrate it with scale, haze and grounding. */
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 32px -24px 18px -32px;
    border-radius: 48% 52% 46% 54% / 44% 48% 52% 56%;
    background:
      radial-gradient(circle at 58% 38%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.74) 34%, rgba(255,255,255,0.22) 62%, transparent 78%),
      radial-gradient(circle at 65% 62%, rgba(225,238,252,0.38), transparent 58%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-float-cards {
    position: absolute;
    inset: 0 -8px 0 -48px;
    z-index: 4;
    pointer-events: none;
    transform: translate3d(calc(var(--cards-px, 0px) * -0.35), calc(var(--cards-py, 0px) * -0.35), 0);
  }
  .hero-ui-card {
    position: absolute;
    color: #10223b;
    border: 1px solid rgba(47,111,196,0.14);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,251,255,0.78)),
      radial-gradient(circle at 18% 0%, rgba(91,156,246,0.14), transparent 42%);
    box-shadow: 0 28px 70px rgba(27,73,130,0.14), 0 10px 22px rgba(13,27,46,0.06), inset 0 1px 0 rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(1.15);
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.96);
    overflow: hidden;
    will-change: transform, opacity;
    animation: floatCardDrift 7.2s ease-in-out infinite;
    animation-delay: var(--delay);
  }
  .hero-ui-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.62) 44%, transparent 60%);
    opacity: 0;
    transform: translateX(-82%);
    animation: floatCardShine 6.2s ease-in-out infinite;
    animation-delay: calc(var(--delay) + 850ms);
    pointer-events: none;
  }
  .hero-right.entered .hero-ui-card { opacity: 1; transform: translate3d(0, 0, 0) scale(1); transition: opacity 0.72s ease, transform 0.86s cubic-bezier(.22,1,.36,1); transition-delay: calc(0.45s + var(--delay)); }

  .hero-summary-card { right: 3.5%; top: 54px; width: min(365px, 50%); padding: 20px 18px 18px; z-index: 3; rotate: 2deg; }
  .ui-card-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; font-size: 13px; }
  .ui-card-topline strong { font-weight: 700; letter-spacing: -0.01em; }
  .ui-card-topline span { color: var(--blue); letter-spacing: 0.12em; font-weight: 800; }
  .summary-grid { display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 10px; }
  .summary-tile { min-height: 74px; padding: 14px 14px 12px; border: 1px solid rgba(47,111,196,0.10); border-radius: 13px; background: rgba(255,255,255,0.58); box-shadow: inset 0 1px 0 rgba(255,255,255,0.7); }
  .summary-tile span { display: block; margin-bottom: 7px; font-size: 10.5px; font-weight: 600; color: rgba(16,34,59,0.55); }
  .summary-tile strong { display: block; font-size: 22px; line-height: 1; letter-spacing: -0.04em; }
  .summary-tile em { font-style: normal; margin-left: 7px; color: #2ab887; font-size: 11px; letter-spacing: -0.01em; vertical-align: middle; }
  .summary-users { position: relative; grid-row: span 2; }
  .summary-users svg { position: absolute; right: 13px; bottom: 15px; width: 92px; color: var(--blue); opacity: 0.88; filter: drop-shadow(0 4px 8px rgba(47,111,196,0.14)); }
  .summary-uptime i { display: block; height: 4px; margin-top: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--blue) 0 78%, rgba(47,111,196,0.18) 78% 100%); box-shadow: 0 3px 10px rgba(47,111,196,0.18); }

  .hero-code-card { left: 3%; top: 39%; width: min(385px, 52%); padding: 0; border-radius: 18px; z-index: 7; transform-origin: left center; rotate: -3deg; color: #d8f2ff; border-color: rgba(113,185,255,0.22); background: linear-gradient(180deg, rgba(7,20,34,0.96), rgba(13,35,55,0.92)); box-shadow: 0 30px 70px rgba(7,20,34,0.28), 0 12px 24px rgba(47,111,196,0.14), inset 0 1px 0 rgba(255,255,255,0.08); }
  .hero-code-card::before { background: linear-gradient(115deg, transparent 0%, rgba(98,184,255,0.16) 44%, transparent 62%); }
  .code-title { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; height: 48px; padding: 0 18px; border-bottom: 1px solid rgba(150,207,255,0.14); font-size: 12px; color: rgba(216,242,255,0.64); }
  .code-title span { width: 8px; height: 8px; border-radius: 999px; background: #49c9a7; box-shadow: 0 0 0 4px rgba(73,201,167,0.12), 0 0 16px rgba(73,201,167,0.35); }
  .code-title strong { font-weight: 700; color: rgba(237,249,255,0.88); }
  .code-title i { font-style: normal; color: #71c8ff; font-size: 18px; }
  .code-lines-ui { list-style: decimal-leading-zero; margin: 0; padding: 18px 20px 22px 50px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; line-height: 1.7; color: rgba(202,232,246,0.78); counter-reset: item; }
  .code-lines-ui li { padding-left: 8px; white-space: pre; }
  .code-lines-ui li::marker { color: rgba(113,200,255,0.42); font-size: 10px; }
  .code-lines-ui b { color: #75d7ff; font-weight: 700; }

  .hero-launch-card { right: 4%; bottom: 14%; width: min(198px, 29%); padding: 0; border-radius: 18px; z-index: 6; rotate: 2deg; }
  .launch-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 18px 16px; border-bottom: 1px solid rgba(47,111,196,0.12); color: var(--navy); }
  .launch-title strong { font-size: 14px; letter-spacing: -0.02em; }
  .launch-title svg { color: var(--blue); filter: drop-shadow(0 4px 8px rgba(47,111,196,0.20)); }
  .launch-list { list-style: none; display: grid; gap: 16px; margin: 0; padding: 20px 18px 22px; font-size: 13px; color: rgba(16,34,59,0.68); }
  .launch-list li { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 11px; }
  .launch-list span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 999px; background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; box-shadow: 0 5px 14px rgba(47,111,196,0.24); }
  .launch-list .step-num { color: var(--blue); background: #fff; border: 1.5px solid rgba(47,111,196,0.58); box-shadow: none; font-size: 11px; }

  @keyframes floatCardDrift {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -11px; }
  }
  @keyframes floatCardShine {
    0%, 60% { transform: translateX(-82%); opacity: 0; }
    72% { opacity: 0.48; }
    100% { transform: translateX(92%); opacity: 0; }
  }

  /* Dashboard cards must be tuned after the main rules so mobile/tablet overrides actually win. */
  @media (max-width: 900px) {
    .hero-float-cards { inset: -10px 0 0; transform: none; }
    .hero-summary-card { right: 4%; top: 8px; width: min(350px, 58%); rotate: 1deg; }
    .hero-code-card { left: 1%; top: 42%; width: min(330px, 52%); rotate: -2deg; }
    .hero-launch-card { right: 3%; bottom: 7%; width: min(184px, 32%); rotate: 1deg; }
    .summary-tile strong { font-size: 20px; }
    .code-lines-ui { font-size: 10px; padding-left: 42px; }
    .launch-list { font-size: 12px; gap: 12px; }
  }

  @media (max-width: 600px) {
    .hero-float-cards { inset: 0 -2px 0 -2px; }
    .hero-ui-card { border-radius: 16px; rotate: 0deg; }
    .hero-summary-card { width: min(300px, 70%); right: 0; top: 6px; padding: 13px; }
    .summary-grid { gap: 7px; }
    .summary-tile { min-height: 58px; padding: 9px; }
    .summary-tile span { font-size: 8.5px; margin-bottom: 5px; }
    .summary-tile strong { font-size: 16px; }
    .summary-users svg { width: 58px; right: 8px; bottom: 9px; }
    .hero-code-card { left: 0; top: 43%; width: min(260px, 58%); }
    .code-title { height: 36px; padding: 0 11px; font-size: 9.5px; }
    .code-lines-ui { font-size: 8px; line-height: 1.55; padding: 11px 10px 13px 31px; }
    .hero-launch-card { right: 0; bottom: 5%; width: min(154px, 38%); }
    .launch-title { padding: 13px 11px 11px; }
    .launch-title strong { font-size: 11.5px; }
    .launch-list { padding: 13px 11px 15px; font-size: 10px; gap: 9px; }
    .launch-list li { grid-template-columns: 19px 1fr; gap: 7px; }
    .launch-list span { width: 18px; height: 18px; font-size: 9.5px; }
  }
  .hero-bear-img {
    width: min(760px, 104%);
    max-width: none;
    object-fit: contain;
    display: block;
    filter: saturate(0.96) contrast(0.98) drop-shadow(0 28px 42px rgba(13,27,46,0.13));
  }
  .bear-shadow { width: 280px; height: 34px; background: rgba(13,27,46,0.26); border-radius: 50%; margin-top: -20px; filter: blur(24px); opacity: 0.52; }
  .bear-float-wrap { position: relative; transition: transform 0.5s cubic-bezier(.22,1,.36,1); will-change: transform; transform: translateY(-14px); }
  .bear-float-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 68%;
    width: min(460px, 58%);
    height: 82px;
    transform: translateX(-18%) rotate(-3deg);
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(13,27,46,0.18) 0%, rgba(13,27,46,0.08) 44%, transparent 74%);
    filter: blur(12px);
    z-index: 1;
    pointer-events: none;
  }
  .bear-float-wrap img { position: relative; z-index: 2; transform-origin: 50% 82%; transition: transform 0.6s cubic-bezier(.22,1,.36,1), filter 0.4s ease; will-change: transform; }

  /* Parallax targets read CSS vars set by JS */
  .hero-parallax-bear { transform: translate3d(var(--px, 0px), calc(var(--py, 0px) - 14px), 0); }
  .hero-parallax-geo { transform: translate3d(calc(var(--px, 0px) * -0.6), calc(var(--py, 0px) * -0.6), 0); }

  /* Bear laptop illusion — no asset editing required */
  .bear-tech-layer {
    display: none;
    left: 50%;
    top: 47%;
    width: min(320px, 38%);
    aspect-ratio: 1.42;
    transform: translate(-30%, -45%) rotate(-5deg);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    filter: saturate(1.05);
    transition: opacity 0.55s ease, transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .bear-float-wrap.is-online .bear-tech-layer { opacity: 1; transform: translate(-30%, -45%) rotate(-5deg) scale(1); }
  .bear-screen-aura {
    position: absolute;
    inset: 22% 18% 26% 12%;
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(91,156,246,0.36) 0%, rgba(91,156,246,0.15) 34%, transparent 70%);
    filter: blur(22px);
    mix-blend-mode: screen;
    opacity: 0.7;
    animation: screenAura 5.8s ease-in-out infinite;
  }
  .bear-screen-glow {
    position: absolute;
    left: 19%;
    top: 32%;
    width: 43%;
    height: 25%;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(137,202,255,0.78), rgba(47,111,196,0.22));
    box-shadow: 0 0 14px rgba(91,156,246,0.42), 0 0 34px rgba(47,111,196,0.18);
    opacity: 0.58;
    mix-blend-mode: screen;
    transform: skewX(-7deg) rotate(-1deg);
    animation: screenWake 6.4s ease-in-out infinite;
  }
  .bear-code-card {
    position: absolute;
    left: 25%;
    top: 35%;
    width: 30%;
    display: grid;
    gap: 5px;
    opacity: 0.86;
    transform: rotate(-1deg);
  }
  .bear-code-card span {
    display: block;
    width: var(--w);
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 0 10px rgba(255,255,255,0.55), 0 0 18px rgba(91,156,246,0.4);
    transform-origin: left center;
    animation: codePulse 2.8s ease-in-out infinite;
    animation-delay: var(--d);
  }
  .bear-signal-lines {
    position: absolute;
    left: 25%;
    top: -8%;
    width: 88%;
    height: 92%;
    overflow: visible;
    opacity: 0.66;
  }
  .signal-path {
    stroke: rgba(47,111,196,0.38);
    stroke-width: 1.05;
    stroke-linecap: round;
    stroke-dasharray: 8 14;
    filter: drop-shadow(0 0 5px rgba(91,156,246,0.38));
    animation: signalFlow 4.8s linear infinite;
  }
  .signal-path-2 { animation-duration: 5.6s; animation-delay: -1.2s; opacity: 0.46; }
  .signal-path-3 { animation-duration: 6.4s; animation-delay: -2.1s; opacity: 0.48; }
  .signal-ping {
    fill: rgba(91,156,246,0.86);
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
    animation: signalPing 4.8s ease-out infinite;
    filter: drop-shadow(0 0 8px rgba(91,156,246,0.6));
  }
  .ping-2 { animation-delay: 1.1s; }
  .ping-3 { animation-delay: 2.2s; }

  @keyframes screenAura { 0%,100% { opacity: 0.5; transform: scale(0.98); } 45% { opacity: 0.92; transform: scale(1.08); } }
  @keyframes screenWake { 0%,100% { opacity: 0.42; } 12% { opacity: 0.88; } 16% { opacity: 0.48; } 24%,58% { opacity: 0.74; } 70% { opacity: 0.52; } }
  @keyframes codePulse { 0%,100% { transform: scaleX(0.45); opacity: 0.38; } 42%,70% { transform: scaleX(1); opacity: 1; } }
  @keyframes signalFlow { to { stroke-dashoffset: -88; } }
  @keyframes signalPing { 0%,56% { opacity: 0; transform: scale(0.4); } 62% { opacity: 1; transform: scale(1); } 82%,100% { opacity: 0; transform: scale(2.8); } }

  @media (max-width: 900px) {
    .bear-tech-layer { width: min(210px, 36%); left: 52%; top: 46%; }
    .bear-signal-lines { opacity: 0.58; }
  }

  @media (prefers-reduced-motion: reduce) {
    .bear-screen-aura, .bear-screen-glow, .bear-code-card span, .signal-path, .signal-ping, .hero-ui-card, .hero-ui-card::before { animation: none !important; }
    .bear-tech-layer { opacity: 0.72; }
    .hero-ui-card { opacity: 1; transform: none; }
  }

  /* Highlight the Popular pricing card */
  .pricing-card-featured { box-shadow: 0 24px 56px rgba(13,27,46,0.18); position: relative; z-index: 3; }
  .plan-popular-badge { position: absolute; top: 20px; right: 20px; background: var(--blue); color: white; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }
  .plan-popular-badge[hidden] { display: none; }
  @media (min-width: 901px) {
    .pricing-card-featured { transform: translateY(-12px) scale(1.025); }
    .pricing-card-featured:hover, .pricing-card-featured:focus-within { transform: translateY(-18px) scale(1.03); }
    .pricing-grid { padding: 12px 0; }
  }

  /* Portfolio fallback monogram (used by JS) */
  .pf-mono { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--bg2), var(--bg)); position: relative; overflow: hidden; }
  .pf-mono::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(47,111,196,0.18) 1px, transparent 0); background-size: 14px 14px; opacity: 0.5; }
  .pf-mono span { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; position: relative; }
  .pf-mono span em { color: var(--blue); font-style: normal; }

  /* ── ABOUT — refinamiento manteniendo estética editorial ───────── */
  #about { position: relative; overflow: hidden; }
  .about-section-num { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; display: inline-flex; align-items: center; gap: 10px; }
  .about-section-num::before { content: ''; width: 24px; height: 1px; background: var(--blue); display: inline-block; }
  /* Watermark editorial sutil al fondo del about */
  #about::before { content: '0'; position: absolute; right: -3%; bottom: -8%; font-family: var(--serif); font-size: clamp(280px, 36vw, 540px); font-weight: 700; line-height: 0.8; color: transparent; -webkit-text-stroke: 1px rgba(47,111,196,0.07); pointer-events: none; user-select: none; z-index: 0; letter-spacing: -0.03em; }
  .about-inner, .about-values { position: relative; z-index: 1; }
  /* Más aire y un título con más presencia, sin cambiar la familia tipográfica */
  .about-title { font-size: clamp(48px, 5.5vw, 76px); }
  .about-divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--blue), rgba(47,111,196,0.3)); }
  .about-text { font-size: 15.5px; max-width: 52ch; }
  .about-text + .about-text { margin-top: 8px; }
  .about-motto { background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)); backdrop-filter: blur(8px); }

  /* El oso, anclado al espacio — sin recuadros, solo luz y sombra. */
  .about-right { flex-direction: column; align-items: center; justify-content: center; gap: 0; min-height: 0; padding: 0; position: relative; isolation: isolate; }
  .about-right::before, .about-right::after { display: none; }
  .about-right .scene-grid { display: none; }

  .about-visual-wrap { position: relative; width: min(100%, 520px); align-self: center; isolation: isolate; }
  /* Pool de luz cálida muy sutil — sin marco, solo glow */
  .about-visual-wrap::before {
    content: ''; position: absolute; left: 50%; top: 12%; width: 88%; height: 72%; z-index: -1;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 45%, rgba(47,111,196,0.07) 0%, transparent 65%);
    filter: blur(20px);
  }
  /* Sombra de contacto bajo el oso */
  .about-visual-wrap::after {
    content: ''; position: absolute; left: 50%; bottom: 4px; width: 62%; height: 22px; z-index: -1;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(13,27,46,0.28) 0%, rgba(13,27,46,0.10) 45%, transparent 72%);
    filter: blur(16px);
  }

  .about-visual {
    width: 100%;
    filter: drop-shadow(0 22px 32px rgba(13,27,46,0.16)) drop-shadow(0 6px 10px rgba(13,27,46,0.08));
  }
  .about-right:hover .about-visual, .about-right:focus-within .about-visual {
    filter: drop-shadow(0 30px 44px rgba(13,27,46,0.22)) drop-shadow(0 8px 12px rgba(13,27,46,0.10));
  }
  .about-process { position: static; width: 100%; max-width: 100%; order: 2; padding: 22px 24px; box-shadow: 0 18px 44px rgba(13,27,46,0.08), 0 1px 0 rgba(255,255,255,0.85) inset; }
  .about-process .process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; padding-top: 6px; }
  /* Línea conectora horizontal animada, dibujándose de izquierda a derecha */
  .about-process .process-list::before { content: ''; position: absolute; top: 23px; left: calc(100%/8); right: calc(100%/8); height: 1px; background: linear-gradient(90deg, rgba(47,111,196,0.5), rgba(47,111,196,0.18)); transform-origin: left; transform: scaleX(0); transition: transform 1.1s cubic-bezier(.22,1,.36,1) 0.25s; z-index: 0; }
  .about-process.is-active .process-list::before { transform: scaleX(1); }
  .about-process .process-step { display: block; padding: 0; background: none !important; box-shadow: none !important; transform: none !important; opacity: 0; transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1); transform: translateY(14px); }
  .about-process.is-active .process-step { opacity: 1; transform: translateY(0); }
  .about-process .process-step:nth-child(1) { transition-delay: 0.30s; }
  .about-process .process-step:nth-child(2) { transition-delay: 0.45s; }
  .about-process .process-step:nth-child(3) { transition-delay: 0.60s; }
  .about-process .process-step:nth-child(4) { transition-delay: 0.75s; }
  .about-process .process-line { min-height: 0; margin-bottom: 14px; align-items: flex-start; }
  .about-process .process-connector { display: none; }
  .about-process .process-dot { width: 32px; height: 32px; border-radius: 10px; background: var(--white); border: 1px solid rgba(47,111,196,0.3); position: relative; z-index: 1; transition: transform 0.4s cubic-bezier(.22,1,.36,1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
  .about-process .process-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 14px; border: 1px solid rgba(47,111,196,0.25); opacity: 0; transform: scale(0.8); transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.22,1,.36,1); }
  .about-process .process-step:hover .process-dot, .about-process .process-step:focus-within .process-dot { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px) scale(1.06); box-shadow: 0 12px 22px rgba(47,111,196,0.28); }
  .about-process .process-step:hover .process-dot::after, .about-process .process-step:focus-within .process-dot::after { opacity: 1; transform: scale(1); }
  .about-process .process-step-label { letter-spacing: 0.16em; }
  .about-process .process-step-text { font-size: 12px; line-height: 1.55; }
  /* Pulso sutil en el dot del primer paso para invitar a recorrer */
  @keyframes pzPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(47,111,196,0.35); } 50% { box-shadow: 0 0 0 6px rgba(47,111,196,0); } }
  .about-process.is-active .process-step:nth-child(1) .process-dot { animation: pzPulse 2.4s ease-out 1.4s 2; }
  @media (max-width: 720px) {
    .about-process .process-list { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 460px) {
    .about-process .process-list { grid-template-columns: 1fr; }
  }

  /* Values — numeración editorial via CSS counter, manteniendo el grid de 5 cols */
  .about-values { counter-reset: val; gap: 0; }
  .value-item { counter-increment: val; padding-top: 36px; padding-bottom: 32px; }
  .value-item::after { content: '0' counter(val); position: absolute; top: 16px; right: 18px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); opacity: 0.18; transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease; letter-spacing: -0.02em; }
  .value-item:hover::after, .value-item:focus-within::after { opacity: 0.6; color: var(--blue); transform: translateY(-2px); }
  .value-title { font-size: 11.5px; }
  .value-desc { max-width: 24ch; }

  /* ── CONTACT (CTA) — rediseño con canales y formulario rápido ──── */
  #cta { padding: 120px 64px 100px; position: relative; overflow: hidden; }
  #cta::before {
    content: '0'; position: absolute; right: -6%; top: -10%; font-family: var(--serif);
    font-size: clamp(360px, 48vw, 760px); font-weight: 700; line-height: 0.8; color: transparent;
    -webkit-text-stroke: 1.5px rgba(47,111,196,0.10); pointer-events: none; user-select: none;
    z-index: 0; letter-spacing: -0.04em;
  }
  .cta-inner { grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
  .cta-title { font-size: clamp(52px, 7vw, 92px); margin-bottom: 24px; }
  .cta-title em { font-style: italic; color: var(--blue); font-weight: 500; }
  .cta-desc { font-size: 16px; max-width: 50ch; }

  /* Tarjetas de canal */
  .contact-channels { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .channel-card {
    position: relative; display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center;
    padding: 18px 22px; background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: 14px;
    text-decoration: none; color: var(--navy); backdrop-filter: blur(8px);
    transition: transform 0.32s cubic-bezier(.22,1,.36,1), background 0.25s, border-color 0.25s, box-shadow 0.32s;
    overflow: hidden;
  }
  .channel-card::after {
    content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(47,111,196,0.10), transparent);
    transform: skewX(-14deg) translateX(-120%); transition: transform 0.8s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
  }
  .channel-card:hover { transform: translateY(-3px); border-color: rgba(47,111,196,0.4); box-shadow: 0 18px 38px rgba(13,27,46,0.10); }
  .channel-card:hover::after { transform: skewX(-14deg) translateX(520%); }
  .channel-card.is-primary { background: var(--navy); border-color: var(--navy); color: var(--white); }
  .channel-card.is-primary .channel-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: var(--blue-light); }
  .channel-card.is-primary .channel-meta { color: rgba(255,255,255,0.55); }
  .channel-card.is-primary .channel-arrow { color: var(--blue-light); }
  .channel-icon {
    width: 44px; height: 44px; border: 1px solid rgba(47,111,196,0.22); border-radius: 12px;
    display: grid; place-items: center; color: var(--blue); background: rgba(47,111,196,0.04);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), background 0.25s;
  }
  .channel-card:hover .channel-icon { transform: rotate(-6deg) scale(1.08); }
  .channel-title { font-size: 14.5px; font-weight: 600; letter-spacing: -0.005em; }
  .channel-meta { font-size: 12px; color: var(--gray); margin-top: 2px; }
  .channel-arrow { color: var(--blue); font-size: 20px; transition: transform 0.3s cubic-bezier(.22,1,.36,1); }
  .channel-card:hover .channel-arrow { transform: translateX(4px); }

  /* Formulario rápido */
  .contact-form {
    background: var(--white); border: 1px solid var(--border); border-radius: 18px;
    padding: 32px; box-shadow: 0 24px 56px rgba(13,27,46,0.08);
    display: flex; flex-direction: column; gap: 14px; position: relative;
  }
  .contact-form-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
  .contact-form-kicker::before { content: ''; width: 22px; height: 1px; background: var(--blue); }
  .contact-form-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.01em; }
  .contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-field { display: flex; flex-direction: column; gap: 6px; }
  .contact-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
  .contact-input, .contact-select, .contact-textarea {
    width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 14px; color: var(--navy);
    background: var(--bg); border: 1px solid transparent; border-radius: 10px; outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .contact-input::placeholder, .contact-textarea::placeholder { color: var(--gray-light); }
  .contact-input:focus, .contact-select:focus, .contact-textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(47,111,196,0.10); }
  .contact-textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }
  .contact-submit {
    margin-top: 8px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--navy); color: var(--white); border: none; border-radius: 10px;
    font-family: var(--sans); font-size: 14.5px; font-weight: 600; padding: 15px 22px; cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .contact-submit:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47,111,196,0.28); }
  .contact-submit:active { transform: translateY(0); }
  .contact-submit svg { transition: transform 0.2s; }
  .contact-submit:hover svg { transform: translateX(4px); }
  .contact-form-foot { font-size: 11.5px; color: var(--gray); text-align: center; margin-top: 4px; }
  .contact-form-foot a { color: var(--blue); text-decoration: none; }
  .contact-msg { font-size: 12.5px; font-weight: 500; min-height: 18px; transition: color 0.2s; }
  .contact-msg.error { color: #b3261e; }
  .contact-msg.success { color: #1f7a3a; }

  /* Stats / chips de confianza */
  .cta-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--navy); opacity: 0.75; }
  .trust-item strong { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); opacity: 1; line-height: 1; }
  .trust-item-text { line-height: 1.3; }
  .trust-item-text small { display: block; font-size: 10.5px; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

  @media (max-width: 980px) {
    #cta { padding: 80px 24px 70px; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    #cta::before { font-size: clamp(260px, 70vw, 520px); right: -10%; top: -4%; }
    .contact-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
  }

  /* ── FULLSCREEN SECTIONS — cada bloque ocupa la pantalla ───────── */
  html { scroll-snap-type: y proximity; }
  #hero, #services, #pricing, #portfolio, #about, #testimonials, #cta {
    min-height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  /* El hero ya tenía su layout interno (main + ticker) — lo preservamos */
  #hero { justify-content: flex-start; }

  /* Si el contenido de una sección es más alto que el viewport, deja respirar */
  @media (max-height: 760px) {
    #services, #pricing, #portfolio, #about, #testimonials, #cta {
      min-height: auto;
      padding-top: 80px;
      padding-bottom: 80px;
    }
    html { scroll-snap-type: none; }
  }

  /* En móvil el snap se vuelve molesto: lo desactivamos */
  @media (max-width: 900px) {
    html { scroll-snap-type: none; }
    #hero, #services, #pricing, #portfolio, #about, #testimonials, #cta {
      min-height: auto;
    }
  }

  /* Reduced motion: sin snap */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-snap-type: none; }
  }

  /* Print friendliness — small bonus */
  @media print {
    body::after, .scroll-progress, .page-transition, .nav-menu-toggle, .hero-dotgrid, .hero-watermark { display: none !important; }
  }
