:root {
      --bg-dark: #080c10;
      --bg-card: #111820;
      --bg-elevated: #1a2430;
      --bg-glass: rgba(17, 24, 32, 0.72);
      /* Paleta alineada al logo 3PSP: azul electrico + plata */
      --accent: #2f9bff;
      --accent-dim: #1a6fd4;
      --accent-bright: #5eb4ff;
      --accent-soft: rgba(47, 155, 255, 0.14);
      --accent-glow: rgba(47, 155, 255, 0.4);
      --silver: #e8eef5;
      --gold: #d4b86a;
      --text: #f4f7fb;
      --text-muted: #a8b6c8;
      --border: rgba(255, 255, 255, 0.1);
      --border-accent: rgba(47, 155, 255, 0.4);
      --radius: 20px;
      --radius-sm: 12px;
      --radius-lg: 28px;
      --font: 'Plus Jakarta Sans', system-ui, sans-serif;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
      --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
      --max: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: var(--font);
      background: var(--bg-dark);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 1.75rem;
    }

    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      color: var(--text);
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 580px;
      line-height: 1.7;
    }

    .section-head {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .section-head .section-subtitle {
      margin: 0 auto;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0.85rem 0;
      background: rgba(8, 12, 16, 0.75);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .header-right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.25rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
    }
    .lang-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      min-width: 40px;
      height: 32px;
      padding: 0 0.5rem;
      border: 1px solid transparent;
      background: transparent;
      border-radius: 999px;
      cursor: pointer;
      font-family: var(--font);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      transition: color 0.2s, background 0.2s, border-color 0.2s;
    }
    .lang-btn .lang-flag { font-size: 1rem; line-height: 1; }
    .lang-btn .lang-code { color: inherit; }
    .lang-btn:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.12);
    }
    .lang-btn.active {
      color: #ffffff;
      background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-dim) 100%);
      border-color: var(--accent);
      box-shadow: 0 4px 14px var(--accent-glow);
    }
    .logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-link img {
      height: 76px;
      width: auto;
      max-width: 240px;
      object-fit: contain;
      filter: drop-shadow(0 4px 22px rgba(47, 155, 255, 0.35));
      transition: transform 0.3s ease;
    }
    .logo-link:hover img { transform: scale(1.03); }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-desktop a:not(.btn-nav) {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .nav-desktop a:not(.btn-nav):hover { color: var(--accent-bright); }

    .btn-nav {
      padding: 0.65rem 1.35rem;
      background: #25d366;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.85rem;
      border-radius: 999px;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .btn-nav:hover {
      color: #ffffff;
      background: #1da851;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    }

    .nav-mobile .btn-nav-mobile {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.75rem;
      padding: 0.85rem 1.25rem;
      background: #25d366;
      color: #ffffff;
      font-weight: 700;
      border-radius: 999px;
      border: none;
      border-bottom: none;
      text-align: center;
    }
    .nav-mobile .btn-nav-mobile:hover {
      color: #ffffff;
      background: #1da851;
    }

    .menu-toggle {
      display: none;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.25rem;
      cursor: pointer;
      padding: 0.5rem 0.75rem;
      border-radius: var(--radius-sm);
    }

    .nav-mobile {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(300px, 88vw);
      background: var(--bg-card);
      padding: 5rem 1.5rem 2rem;
      z-index: 99;
      border-left: 1px solid var(--border);
      flex-direction: column;
      gap: 0.25rem;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 1rem;
    }
    .nav-mobile a:hover { color: var(--accent); }
    .lang-switcher--mobile {
      align-self: flex-start;
      margin-bottom: 0.5rem;
    }
    .menu-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: none;
      border: none;
      color: var(--text);
      font-size: 1.75rem;
      cursor: pointer;
      line-height: 1;
    }
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 98;
      backdrop-filter: blur(4px);
    }
    .overlay.open { display: block; }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 7.5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% -10%, var(--accent-soft) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 90% 60%, rgba(212, 184, 106, 0.06) 0%, transparent 50%),
        var(--bg-dark);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.5rem 1.1rem 0.5rem 0.75rem;
      background: rgba(47, 155, 255, 0.1);
      border: 1px solid rgba(47, 155, 255, 0.35);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem;
    }
    .hero-badge .badge-dot {
      flex-shrink: 0;
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent);
    }
    .hero-badge .badge-text {
      line-height: 1.3;
      white-space: nowrap;
    }
    @media (max-width: 480px) {
      .hero-badge .badge-text { white-space: normal; }
    }

    .brand-meaning {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.55rem 0.75rem;
      margin: 0 0 1.35rem;
      font-family: var(--font);
      letter-spacing: 0.06em;
    }
    .brand-meaning-mark {
      font-family: var(--font-display);
      font-size: clamp(1.65rem, 3.2vw, 2.1rem);
      font-weight: 700;
      line-height: 1;
      color: var(--accent-bright);
      text-shadow: 0 0 24px var(--accent-glow);
    }
    .brand-meaning-words {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.45rem 0.55rem;
      font-size: clamp(0.78rem, 1.6vw, 0.92rem);
      font-weight: 600;
      text-transform: uppercase;
      color: var(--silver);
    }
    .brand-meaning-dot {
      color: var(--accent);
      font-weight: 700;
      opacity: 0.95;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5.5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent-bright);
    }
    .hero-lead {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 2rem;
      line-height: 1.75;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.85rem;
      background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-dim) 100%);
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 8px 28px var(--accent-glow);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    }
    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
      box-shadow: 0 16px 40px var(--accent-glow);
      color: #ffffff;
    }
    .btn-outline {
      background: transparent;
      color: var(--silver);
      border: 1px solid rgba(232, 238, 245, 0.35);
      font-weight: 600;
      box-shadow: none;
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent-bright);
      background: var(--accent-soft);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      filter: none;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .hero-stat strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--accent-bright);
      line-height: 1.2;
    }
    .hero-stat span {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .hero-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .hero-logo-wrap img {
      width: min(360px, 100%);
      height: auto;
      display: block;
      filter: drop-shadow(0 12px 40px rgba(47, 155, 255, 0.35));
    }

    /* About */
    .about {
      padding: 5rem 0;
      border-top: 1px solid var(--border);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: start;
    }
    .about-cards {
      display: grid;
      gap: 1rem;
    }
    .about-card {
      padding: 1.5rem 1.75rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: border-color 0.25s, transform 0.25s;
    }
    .about-card:hover {
      border-color: var(--border-accent);
      transform: translateX(4px);
    }
    .about-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: var(--silver);
    }
    .about-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Process */
    .process {
      padding: 5rem 0;
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .process-step {
      text-align: center;
      padding: 2rem 1.25rem;
      background: var(--bg-dark);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      position: relative;
    }
    .process-step .num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-bright);
      opacity: 1;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .process-step h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--silver);
    }
    .process-step p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* Featured */
    .featured {
      padding: 5rem 0;
    }
    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .featured-card .featured-logo {
      height: 48px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 1rem;
    }
    .featured-card {
      padding: 2rem;
      background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .featured-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-sm);
      border-color: var(--border-accent);
    }
    .featured-card .tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-bright);
      margin-bottom: 1rem;
    }
    .featured-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--text);
    }
    .featured-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .featured-card--product {
      border-color: rgba(47, 155, 255, 0.35);
      background: linear-gradient(160deg, rgba(47, 155, 255, 0.1) 0%, var(--bg-card) 55%);
    }
    .featured-product-badge {
      display: inline-block;
      margin-bottom: 0.85rem;
      padding: 0.28rem 0.65rem;
      border-radius: 999px;
      background: rgba(47, 155, 255, 0.14);
      border: 1px solid rgba(47, 155, 255, 0.3);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-bright);
    }
    .featured-link {
      display: inline-flex;
      margin-top: 1rem;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--accent-bright);
      text-decoration: none;
    }
    .featured-link:hover { text-decoration: underline; }
    .client-logo a.client-logo-inner {
      color: inherit;
      text-decoration: none;
    }

    /* Services */
    #Services {
      padding: 5rem 0;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.25rem;
    }
    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }
    .service-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
    }
    .service-card:hover::after { opacity: 1; }
    .service-card.featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem 2rem;
      align-items: start;
      background: linear-gradient(135deg, rgba(47, 155, 255, 0.08) 0%, var(--bg-card) 50%);
    }
    .service-card .icon {
      width: 52px;
      height: 52px;
      background: var(--accent-soft);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
    }
    .service-card.featured .icon { margin-bottom: 0; }
    .service-card-body h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
      color: var(--silver);
    }
    .service-card-body p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .service-card .card-statement {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.02em;
      line-height: 1.45;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      font-style: italic;
    }

    /* Clients */
    #OurWork {
      padding: 5.5rem 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(47, 155, 255, 0.06) 0%, transparent 55%),
        var(--bg-card);
      border-top: 1px solid var(--border);
      overflow-x: hidden;
    }
    .clients-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
      margin-bottom: 2.75rem;
    }
    .clients-header .section-head {
      text-align: left;
      margin-bottom: 0;
    }
    .clients-header .section-subtitle { margin: 0; }
    .clients-count {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent-bright);
      line-height: 1;
    }
    .clients-count span {
      display: block;
      font-family: var(--font);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.35rem;
      align-items: stretch;
    }
    @media (max-width: 1024px) {
      .clients-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
      }
    }
    .client-logo {
      width: 100%;
      min-width: 0;
      height: 100%;
      padding: 0;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 14px;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .client-logo:hover {
      border-color: rgba(47, 155, 255, 0.35);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(47, 155, 255, 0.12);
    }
    .client-logo-inner {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;
      width: 100%;
      height: 100%;
      min-height: 148px;
    }
    .client-logo img {
      display: block;
      flex: 0 0 96px;
      width: 100%;
      height: 96px;
      min-height: 96px;
      max-height: 96px;
      padding: 1.15rem 1.35rem;
      object-fit: contain;
      object-position: center;
      box-sizing: border-box;
      transition: background 0.3s ease;
    }
    .client-logo.client-logo--dark img {
      background: #0a0a0a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .client-logo.client-logo--dark:hover img {
      background: #141414;
    }
    .client-logo.client-logo--light img {
      background: #ffffff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .client-logo.client-logo--light:hover img {
      background: #f5f5f5;
    }
    .client-logo .client-name {
      flex: 0 0 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 0.65rem;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.25;
      letter-spacing: 0.03em;
      background: transparent;
      transition: color 0.25s ease;
    }
    .client-logo:hover .client-name {
      color: var(--text);
    }

    /* Values */
    .values {
      padding: 5rem 0;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .value-item {
      padding: 2rem;
      text-align: center;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg-card);
    }
    .value-item .v-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .value-item h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--silver);
    }
    .value-item p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* CTA */
    #Contact {
      padding: 6rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #Contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--accent-soft) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-box {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      padding: 3.5rem 2.5rem;
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(12px);
    }
    .cta-box .section-title { margin-bottom: 0.75rem; }
    .cta-box .section-subtitle {
      margin: 0 auto 1.5rem;
      text-align: center;
    }
    .contact-details {
      display: grid;
      gap: 1.25rem;
      margin: 0 auto 2rem;
      text-align: left;
    }
    .contact-label {
      display: block;
      margin-bottom: 0.35rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-bright);
    }
    .contact-item p {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.55;
      color: var(--silver);
    }
    .contact-phone,
    .footer-phone {
      color: var(--accent-bright);
      font-weight: 600;
      text-decoration: none;
    }
    .contact-phone:hover,
    .footer-phone:hover { text-decoration: underline; }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 1.1rem 2.25rem;
      background: #25d366;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      border-radius: 999px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
    }

    /* Footer */
    .site-footer {
      padding: 2.5rem 0;
      border-top: 1px solid var(--border);
      background: var(--bg-dark);
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }
    .footer-logo img {
      height: 72px;
      width: auto;
      opacity: 1;
      filter: drop-shadow(0 4px 18px rgba(47, 155, 255, 0.3));
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
    }
    .footer-links a:hover { color: var(--accent-bright); }
    .copyright {
      width: 100%;
      text-align: center;
      padding-top: 1.5rem;
      margin-top: 1.5rem;
      border-top: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    @media (max-width: 992px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-lead { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { order: -1; }
      .about-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .featured-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .service-card.featured { grid-template-columns: 1fr; }
      .clients-header { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .header-right .lang-switcher { order: -1; }
      .menu-toggle { display: block; }
      .logo-link img { height: 58px; max-width: 180px; }
      .hero { padding-top: 6.5rem; min-height: auto; }
      .hero-logo-wrap img { width: min(280px, 88vw); }
      .process-steps { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .client-logo-inner { min-height: 132px; }
      .client-logo img {
        flex: 0 0 80px;
        height: 80px;
        min-height: 80px;
        max-height: 80px;
        padding: 0.9rem 1rem;
      }
      .client-logo .client-name {
        flex: 0 0 48px;
        font-size: 0.65rem;
      }
      .footer-inner { flex-direction: column; text-align: center; }
    }
