/*
Theme Name: COD4U Talent
Theme URI: https://cod4u.com
Author: COD4U
Author URI: https://cod4u.com
Description: Tema a medida para COD4U Talent - consultora de capital humano. Ligero, sin page builders, optimizado para velocidad y SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cod4u
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

    :root {
      --primary: #707ed7;
      --primary-2: #5f6dc5;
      --cream: #fff5ca;
      --white: #ffffff;
      --ink: #0e1431;
      --ink-soft: #222d5a;
      --line: #dfe5fb;
      --muted: #6c78a3;
      --panel: #141a3a;
      --radius: 24px;
      --shadow: 0 16px 34px rgba(10, 20, 50, 0.18);
      --hero-c1: #080c1e;
      --hero-c2: #080c1e;
      --hero-c3: #080c1e;
      --hero-overlay-top: 0;
      --hero-overlay-bottom: 0;
      --hero-glow-opacity: 0;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Rubik', sans-serif;
      background: #0a1028;
      color: #fff;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      padding: 18px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(8, 12, 30, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      transition: background-color .24s ease, border-color .24s ease, box-shadow .24s ease;
    }

    .nav.scrolled {
      background: rgba(8, 12, 30, 0.9);
      border-bottom-color: rgba(198, 213, 255, 0.42);
      box-shadow: 0 10px 22px rgba(7, 12, 34, 0.28);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
    }

    .logo img {
      display: block;
      height: 37px;
      width: auto;
      object-fit: contain;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.06);
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex-direction: column;
      cursor: pointer;
      transition: background .22s ease, border-color .22s ease;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transition: transform .22s ease, opacity .22s ease;
    }

    .menu-toggle.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .menu a {
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.94rem;
      font-weight: 500;
      position: relative;
      transition: color .22s ease;
    }

    .menu a:not(.cta)::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      background: #dce5ff;
      border-radius: 999px;
      transition: transform .24s ease, background-color .24s ease;
    }

    .menu a:not(.cta):hover,
    .menu a:not(.cta).active {
      color: #fff;
    }

    .menu a:not(.cta):hover::after,
    .menu a:not(.cta).active::after {
      transform: scaleX(1);
      background: #fff5ca;
    }

    .menu .cta {
      background: var(--cream);
      color: var(--ink);
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid #eadb92;
      font-weight: 700;
      box-shadow: 0 10px 18px rgba(7, 12, 34, 0.2);
      transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .menu .cta:hover,
    .menu .cta.active {
      background: #fff;
      color: #1f2f6e;
      border-color: #dcc977;
      box-shadow: 0 10px 18px rgba(7, 12, 34, 0.25);
      transform: translateY(-1px);
    }

    .hero {
      min-height: 92vh;
      padding: 70px 5% 84px;
      position: relative;
      background: linear-gradient(130deg, var(--hero-c1) 0%, var(--hero-c2) 45%, var(--hero-c3) 100%);
      transition: background 0.42s cubic-bezier(0.22, 1, 0.36, 1);
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 18% 20%, rgba(255, 245, 202, 0.18), transparent 44%),
        radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.1), transparent 40%);
      opacity: var(--hero-glow-opacity);
      transition: background 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(8, 12, 30, var(--hero-overlay-top)),
        rgba(8, 12, 30, var(--hero-overlay-bottom))
      );
      transition: background 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-wrap {
      position: relative;
      z-index: 1;
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 26px;
      align-items: center;
    }

    .pill {
      display: inline-flex;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      color: #e2e8ff;
      font-size: 0.77rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 700;
    }

    h1 {
      margin: 18px 0 16px;
      font-size: clamp(2.2rem, 4.3vw, 4.2rem);
      line-height: 1.04;
      letter-spacing: -0.06em;
      max-width: 720px;
    }

    .lead, .impact {
      margin: 0 0 14px;
      font-size: 1.05rem;
      line-height: 1.86;
      max-width: 690px;
    }

    .lead { color: rgba(255,255,255,.86); }
    .impact { color: #fff; }

    .hero-actions {
      margin-top: 28px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 20px;
      border-radius: 999px;
      font-weight: 700;
    }

    .btn.primary {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
      box-shadow: 0 12px 24px rgba(112, 126, 215, 0.34);
    }

    .btn.primary:hover {
      background: var(--primary-2);
      border-color: var(--primary-2);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn.secondary {
      border: 1px solid rgba(255,255,255,.32);
      color: #fff;
      background: transparent;
    }

    .hero-panel {
      background: transparent;
      border: 0;
      border-radius: 0;
      padding: 0;
      backdrop-filter: none;
      box-shadow: none;
    }

    .hero-slider {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 285px;
      border: 0;
      box-shadow: 0 14px 28px rgba(15, 24, 55, 0.2);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(12, 18, 44, 0.08), rgba(12, 18, 44, 0.52));
    }

    .hero-note {
      display: grid;
      gap: 10px;
      margin-top: 12px;
    }

    .stat {
      border-radius: 14px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      padding: 11px 12px;
      color: #e4e9ff;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 10px;
    }

    .hero-pill-stat {
      border-radius: 12px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      padding: 10px 11px;
      color: #e5ebff;
      font-size: 0.82rem;
      line-height: 1.45;
    }

    .hero-context {
      margin-top: 14px;
      border-radius: 16px;
      border: 1px solid rgba(234, 219, 146, 0.5);
      background: linear-gradient(180deg, #fff8df 0%, #fffbf0 100%);
      backdrop-filter: none;
      box-shadow: 0 8px 14px rgba(15, 24, 55, 0.08);
      padding: 16px 16px 16px 18px;
      display: grid;
      gap: 10px;
    }

    .context-head {
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(112,126,215,.28);
      background: rgba(112,126,215,.06);
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      font-weight: 700;
      color: #5e6bb2;
    }

    .context-list {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 7px;
      color: var(--ink-soft);
      font-size: 0.84rem;
      line-height: 1.52;
    }

    .context-list li::marker {
      color: var(--primary);
    }

    section { padding: 84px 5%; }
    .wrap { max-width: 1240px; margin: 0 auto; }

    .light {
      background: #fff;
      color: var(--ink);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .tag::before {
      content: '';
      width: 12px;
      height: 12px;
      border-radius: 4px;
      background: var(--cream);
      border: 1px solid #eede98;
    }

    .title {
      margin: 0 0 14px;
      font-size: clamp(2rem, 3vw, 3.05rem);
      line-height: 1.08;
      letter-spacing: -0.045em;
    }

    .section-text {
      margin: 0;
      max-width: 800px;
      font-size: 1.03rem;
      line-height: 1.84;
      color: var(--muted);
    }

    .about-grid,
    .services-grid,
    .trust-grid,
    .action-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .card {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 10px 22px rgba(25, 38, 84, 0.07);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .photo {
      height: 220px;
      background-size: cover;
      background-position: center;
    }

    .card-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .card h3 { margin: 0; font-size: 1.1rem; color: var(--ink); }
    .card p { margin: 0; color: var(--muted); line-height: 1.78; }

    .about-grid .card:nth-child(1) .photo { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80'); }
    .about-grid .card:nth-child(2) .photo { background-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80'); }

    .about-grid.alt .card {
      box-shadow: 0 12px 26px rgba(20, 33, 78, 0.08);
    }

    .about-grid.alt {
      align-items: stretch;
    }

    .about-grid.alt .card {
      height: 100%;
    }

    .about-grid.alt .card:nth-child(2) .card-body {
      justify-content: stretch;
      padding: 24px 24px;
    }

    .manifesto p + p {
      margin-top: 10px;
    }

    .manifesto .card-body {
      gap: 14px;
      justify-content: space-between;
    }

    .manifesto-visual {
      height: clamp(210px, 23vw, 260px);
      border-radius: 14px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(18, 26, 58, 0.08), rgba(18, 26, 58, 0.3)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80') center 34%/cover no-repeat;
    }

    .mv-stack {
      display: grid;
      gap: 0;
      height: 100%;
      grid-template-rows: 1fr 1fr;
      align-content: stretch;
    }

    .mv-item {
      border: 0;
      border-radius: 0;
      padding: 0;
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mv-item + .mv-item {
      margin-top: 0;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .mv-item h3 {
      margin: 0 0 8px;
      font-size: 1rem;
      color: var(--ink);
    }

    .mv-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.78;
    }

    .differential {
      position: relative;
      background: linear-gradient(120deg, #0f1738 0%, #283878 52%, #5f73cb 100%);
      overflow: hidden;
    }

    .differential::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 14% 20%, rgba(255, 245, 202, 0.12), transparent 46%),
        linear-gradient(180deg, rgba(9, 14, 34, 0.2), rgba(9, 14, 34, 0.2));
      pointer-events: none;
    }

    .differential .wrap {
      position: relative;
      z-index: 1;
    }

    .differential .title,
    .differential .section-text { color: #fff; }

    .differential .section-text.one-line {
      max-width: none;
      white-space: nowrap;
      font-size: 1rem;
    }

    .differential-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .differential-points {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .dif-point {
      background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 18px;
      padding: 20px 18px 16px;
      display: grid;
      gap: 10px;
      box-shadow: 0 12px 24px rgba(6, 11, 30, 0.2);
      transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
    }

    .dif-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      transition: background .24s ease, border-color .24s ease, color .24s ease;
    }

    .dif-icon svg {
      width: 24px;
      height: 24px;
    }

    .dif-point h3 {
      margin: 2px 0 0;
      color: #fff;
      font-size: 1.06rem;
      line-height: 1.35;
      letter-spacing: -0.01em;
    }

    .dif-point p {
      margin: 0;
      color: rgba(255,255,255,.9);
      line-height: 1.7;
      font-size: 0.93rem;
    }

    .dif-point:hover {
      transform: translateY(-5px);
      border-color: rgba(255,245,202,.65);
      background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.1));
      box-shadow: 0 18px 32px rgba(6, 11, 30, 0.28);
    }

    .dif-point:hover .dif-icon {
      background: rgba(255,245,202,.18);
      border-color: rgba(255,245,202,.58);
      color: #fff5ca;
    }

    .dif-quote {
      border-radius: 20px;
      border: 1px solid #f0df96;
      background: linear-gradient(135deg, rgba(255,245,202,.98), rgba(228,236,255,.95));
      padding: 20px 22px;
      color: #1b285d;
      line-height: 1.66;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-top: 16px;
      box-shadow: 0 16px 28px rgba(10, 18, 45, 0.26);
    }

    .differential .card {
      background: #121a3b;
      border-color: rgba(255,255,255,.12);
      box-shadow: none;
    }

    .differential .card h3 { color: #fff; }
    .differential .card p { color: rgba(255,255,255,.83); }

    .differential-grid .card:nth-child(1) .photo { background-image: url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1200&q=80'); }
    .differential-grid .card:nth-child(2) .photo { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200&q=80'); }

    .service .num {
      display: inline-flex;
      width: fit-content;
      padding: 7px 11px;
      border-radius: 999px;
      background: #eef2ff;
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 2px;
    }

    .services-grid .card:nth-child(1) .photo { background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1200&q=80'); }
    .services-grid .card:nth-child(2) .photo { background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1200&q=80'); }
    .services-grid .card:nth-child(3) .photo { background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80'); }
    .services-grid .card:nth-child(4) .photo { background-image: url('https://images.unsplash.com/photo-1554224154-22dec7ec8818?auto=format&fit=crop&w=1200&q=80'); }

    .services-board {
      margin-top: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(20, 33, 78, 0.08);
    }

    #servicios {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #fbfcff 100%);
    }

    .service-line {
      display: grid;
      grid-template-columns: 116px 1fr;
      gap: 0;
      border-bottom: 1px solid var(--line);
      min-height: 132px;
      transition: background-color .24s ease, box-shadow .24s ease, transform .24s ease;
    }

    .service-line:last-child { border-bottom: 0; }

    .service-line .num {
      margin: 0;
      border-radius: 0;
      display: grid;
      place-items: center;
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: #eef2ff;
      color: var(--primary);
      border-right: 1px solid var(--line);
      transition: background .24s ease, color .24s ease, border-color .24s ease;
    }

    .service-line .body {
      padding: 18px 18px 18px 16px;
      display: grid;
      gap: 8px;
      align-content: center;
      transition: background .24s ease;
    }

    .service-line h3 {
      margin: 0;
      color: var(--ink);
      font-size: 1.05rem;
      transition: color .24s ease;
    }

    .service-line p {
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .service-line:hover {
      background: #f8faff;
      box-shadow: inset 0 0 0 1px #d5defd;
      transform: translateY(-2px);
    }

    .service-line:hover .num {
      background: linear-gradient(180deg, #7684dc, #5f6dc5);
      color: #fff;
      border-color: #c9d4ff;
    }

    .service-line:hover .body {
      background: linear-gradient(90deg, #f5f8ff 0%, #ffffff 82%);
    }

    .service-line:hover h3 {
      color: #24326f;
    }

    .trust {
      position: relative;
      margin-top: 0;
      border-top: 0;
      background: linear-gradient(180deg, #fbfcff 0%, #f8faff 34%, #fffdf8 70%, #fffcf4 100%);
      padding-bottom: 108px;
    }

    .trust .wrap {
      position: relative;
      z-index: 1;
    }

    .trust .title {
      color: var(--ink);
    }

    .trust .trust-grid {
      margin-top: 46px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .chip {
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--primary);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 9px 13px;
      animation: chipPulse 3.6s ease-in-out infinite;
      will-change: transform, box-shadow, border-color;
    }

    .chip:nth-child(2) { animation-delay: .24s; }
    .chip:nth-child(3) { animation-delay: .48s; }
    .chip:nth-child(4) { animation-delay: .72s; }

    @keyframes chipPulse {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 rgba(95, 109, 197, 0);
        border-color: var(--line);
      }
      28% {
        transform: translate3d(.6px, -1.2px, 0) scale(1.012);
      }
      52% {
        transform: translate3d(-.6px, -2px, 0) scale(1.016);
        box-shadow: 0 8px 14px rgba(95, 109, 197, 0.16);
        border-color: #ccd6fe;
      }
      76% {
        transform: translate3d(.4px, -.8px, 0) scale(1.008);
      }
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 10px 0;
    }

    .faq-item:last-child { border-bottom: 0; }
    .faq-item h4 { margin: 0 0 8px; }

    .faq-accordion {
      margin-top: 8px;
      display: grid;
      gap: 10px;
    }

    .faq-accordion details {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 10px 12px;
      background: #fff;
    }

    .faq-accordion summary {
      cursor: pointer;
      font-weight: 700;
      color: var(--ink);
    }

    .faq-accordion p {
      margin-top: 8px;
      line-height: 1.72;
      color: var(--muted);
    }

    .action {
      background: linear-gradient(180deg, #fffcf4 0%, #fff8df 30%, #fff5ca 64%, #ffffff 100%);
    }

    .action .card {
      background: #fff;
      border: 1px solid #e6dcae;
      box-shadow: 0 12px 24px rgba(20, 33, 78, 0.09);
    }

    .action .card h2,
    .action .card h3 {
      color: var(--ink);
    }

    .action .card p {
      color: var(--muted);
    }

    .form {
      margin-top: 8px;
      display: grid;
      gap: 10px;
    }

    .field label {
      display: block;
      font-size: 0.8rem;
      color: rgba(255,255,255,.8);
      margin-bottom: 6px;
      font-weight: 600;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.05);
      color: #fff;
      border-radius: 12px;
      padding: 12px 13px;
      font: inherit;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,255,255,.82);
    }

    .field select option {
      background: #2f3b78;
      color: #fff;
    }

    .field textarea { min-height: 90px; resize: vertical; }

    .form-submit {
      margin-top: 2px;
      width: fit-content;
    }

    .work-shot {
      height: 220px;
      border-radius: 16px;
      margin-top: 10px;
      background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80') center/cover;
    }

    .action-grid.variant-two {
      grid-template-columns: 1.05fr 0.95fr;
      gap: 20px;
    }

    .work-card {
      background: linear-gradient(160deg, #ffffff, #fff8dd);
      border-color: #e6da9d;
    }

    .work-card .card-body {
      padding: 0;
      gap: 0;
    }

    .work-copy {
      padding: 22px;
      display: grid;
      gap: 12px;
      align-content: center;
      min-height: 100%;
    }

    .work-copy .tag {
      color: #6b5f2b !important;
    }

    .work-copy .tag::before {
      background: #fff5ca;
      border-color: #e6d58a;
    }

    .work-points {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 6px;
      color: var(--muted);
      line-height: 1.66;
      font-size: 0.91rem;
    }

    .work-copy .btn.secondary {
      background: var(--cream);
      border: 1px solid #e4d690;
      color: var(--ink);
    }

    .work-copy .btn.secondary:hover {
      background: #fff;
      border-color: #d9c876;
      color: #1d2f74;
      transform: translateY(-1px);
    }

    .talent-quote {
      background:
        linear-gradient(160deg, rgba(16, 24, 58, 0.65), rgba(16, 24, 58, 0.75)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80') center/cover !important;
      border-color: rgba(255,255,255,.24) !important;
      display: grid;
      align-content: center;
      min-height: 100%;
    }

    .talent-quote .card-body {
      gap: 12px;
    }

    .talent-quote h3 {
      margin: 0;
      color: #fff;
      font-size: 1.18rem;
    }

    .action .talent-quote h3 {
      color: #fff;
    }

    .talent-quote blockquote {
      margin: 0;
      color: rgba(255,255,255,.9);
      font-size: 1.02rem;
      line-height: 1.74;
      font-style: italic;
    }

    .talent-quote .author {
      color: rgba(255,255,255,.72);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
    }

    .contact-stage {
      background: linear-gradient(180deg, #ffffff 0%, #fffcf3 100%);
      color: var(--ink);
    }

    .contact-stage-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 0.84fr 1.16fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-stage .card {
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 22px rgba(25, 38, 84, 0.07);
    }

    .contact-stage .card h2,
    .contact-stage .card h3 {
      color: var(--ink);
    }

    .contact-stage .card p {
      color: var(--muted);
    }

    .contact-stage .title {
      color: var(--primary);
    }

    .contact-stage-photo {
      height: 240px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(18, 26, 58, 0.08), rgba(18, 26, 58, 0.28)),
        url('https://images.unsplash.com/photo-1522071901873-411886a10004?auto=format&fit=crop&w=1400&q=80') center/cover;
      margin-top: 4px;
    }

    .contact-stage-info {
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
    }

    .contact-stage-info .card-body {
      gap: 14px;
      padding: 4px 4px 4px 0;
    }

    .contact-stage-info p {
      color: var(--muted) !important;
    }

    .contact-editorial {
      display: grid;
      gap: 0;
      margin-top: 6px;
    }

    .contact-line {
      display: grid;
      gap: 4px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
    }

    .contact-line:first-child {
      border-top: 1px solid var(--line);
    }

    .contact-line .label {
      font-size: 0.73rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
      font-weight: 700;
    }

    .contact-line a {
      width: fit-content;
      color: var(--ink-soft);
      font-size: 1.05rem;
      letter-spacing: -0.01em;
      font-weight: 600;
    }

    .contact-line a:hover {
      color: var(--primary);
    }

    .contact-stage-form .field label {
      color: rgba(18,26,58,.72);
    }

    .contact-stage-form {
      background: #fff !important;
      border: 1px solid #cfdaff !important;
      box-shadow: 0 20px 34px rgba(20, 33, 78, 0.16) !important;
      margin-left: 16px;
    }

    .contact-stage-form .card-body {
      padding: 24px;
    }

    .contact-stage-form h3 {
      margin: 0 0 12px;
      font-size: clamp(1.2rem, 1.9vw, 1.4rem);
      color: var(--ink-soft);
      letter-spacing: -0.015em;
      line-height: 1.2;
      font-weight: 700;
      display: block;
      padding-bottom: 10px;
      border-bottom: 1px solid #e4e9fb;
    }

    .contact-stage-form h3::after {
      content: none;
    }

    .contact-stage-form .field input,
    .contact-stage-form .field select,
    .contact-stage-form .field textarea {
      border: 1px solid var(--line);
      background: #f8faff;
      color: var(--ink);
    }

    .contact-stage-form .field input::placeholder,
    .contact-stage-form .field textarea::placeholder {
      color: #8d96b8;
    }

    .contact-stage-form .field select option {
      background: #fff;
      color: var(--ink);
    }

    .contact-stage-form .form-submit {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
    }

    .contact-stage-form .form-submit:hover {
      background: #5f6dc5;
      border-color: #5f6dc5;
      transform: translateY(-1px);
    }

    .contact-card {
      background: #fff !important;
      border: 1px solid var(--line) !important;
    }

    .action .contact-card h2,
    .action .contact-card h3 {
      color: var(--ink) !important;
    }

    .action .contact-card p {
      color: var(--muted) !important;
    }

    .contact-card .tag {
      color: var(--primary);
    }

    .contact-card .tag::before {
      background: #eef2ff;
      border-color: #d4defe;
    }

    .contact-card .contact-item {
      background: #f6f8ff;
      border: 1px solid var(--line);
    }

    .contact-card .field label {
      color: rgba(18,26,58,.72);
    }

    .contact-card .field input,
    .contact-card .field select,
    .contact-card .field textarea {
      border: 1px solid var(--line);
      background: #f8faff;
      color: var(--ink);
    }

    .contact-card .field input::placeholder,
    .contact-card .field textarea::placeholder {
      color: #8d96b8;
    }

    .contact-card .field select option {
      background: #fff;
      color: var(--ink);
    }

    .contact-card .form-submit {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
    }

    .contact-card .form-submit:hover {
      background: var(--primary-2);
      border-color: var(--primary-2);
      transform: translateY(-1px);
    }

    footer {
      background: #090f25;
      color: rgba(255,255,255,.86);
      padding: 26px 5%;
    }

    .foot {
      max-width: 1240px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .foot-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .foot-logo {
      display: block;
      height: 32px;
      width: auto;
      object-fit: contain;
    }

    .foot-demo {
      font-size: 0.8rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
      font-weight: 600;
    }

    .foot a { color: rgba(255,255,255,.86); }

    .floating-actions {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 60;
      display: grid;
      gap: 12px;
    }

    .fab {
      border: 0;
      border-radius: 999px;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0,0,0,.25);
    }

    .fab.wa { background: #25d366; color: #fff; }

    .fab.top {
      background: #fff;
      color: var(--ink);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: .25s ease;
    }

    .fab.top:hover {
      background: #22c55e;
      color: #fff;
      box-shadow: 0 10px 22px rgba(34, 197, 94, 0.36);
    }

    .fab.top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .75s ease, transform .75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal[data-delay="1"] { transition-delay: .12s; }
    .reveal[data-delay="2"] { transition-delay: .24s; }

    @media (max-width: 980px) {
      .menu-toggle { display: inline-flex; }
      .menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 5%;
        right: 5%;
        padding: 12px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,.18);
        background: rgba(8, 12, 30, 0.96);
        box-shadow: 0 16px 28px rgba(7, 12, 34, 0.3);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
      }
      .menu.open { display: flex; }
      .menu a { padding: 10px 12px; border-radius: 10px; }
      .menu a:not(.cta)::after { display: none; }
      .menu .cta { text-align: center; justify-content: center; margin-top: 4px; }
      .hero-wrap,
      .about-grid,
      .differential-grid,
      .services-grid,
      .trust-grid,
      .action-grid { grid-template-columns: 1fr; }
      .action-grid.variant-two { grid-template-columns: 1fr; }
      .contact-stage-grid { grid-template-columns: 1fr; }
      .service-line { grid-template-columns: 1fr; }
      .service-line .num { border-right: 0; border-bottom: 1px solid var(--line); padding: 10px 0; }
      .hero-stats { grid-template-columns: 1fr; }
      .differential-points { grid-template-columns: 1fr; }
      .differential .section-text.one-line { white-space: normal; }
      .logo img { height: 34px; }
      .contact-stage-form { margin-left: 0; }
      .hero { min-height: auto; }
    }

    @media (max-width: 1180px) and (min-width: 981px) {
      .differential-points { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .differential-points { grid-template-columns: 1fr; }
      .foot-brand { width: 100%; }
      .foot-logo { height: 30px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .chip {
        animation: none;
      }
    }
