  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0B1F4B;
      --navy-deep: #07132e;
      --orange: #E8621A;
      --orange-light: #f07a35;
      --white: #ffffff;
      --gray-light: #f4f5f7;
      --gray-text: #6b7280;
      --border: #e5e7eb;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--navy-deep);
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      letter-spacing: -0.02em;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ─── NAVBAR ─── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 999;
      background: rgba(7, 19, 46, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
    }

    .nav-logo span { color: var(--orange); }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--orange); }

    .btn-nav {
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      color: var(--white);
      font-weight: 600;
      font-size: 0.875rem;
      padding: 10px 24px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 20px rgba(232,98,26,0.35);
    }

    .btn-nav:hover { transform: scale(1.05); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      background: var(--navy-deep);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 16px 24px 20px;
    }

    .mobile-menu.open { display: block; }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu ul a {
      display: block;
      padding: 10px 0;
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu .btn-nav {
      display: inline-block;
      margin-top: 14px;
      text-align: center;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 24px 100px;
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1a3566 100%);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../imagenes/imagen_01.png');
      background-size: cover;
      background-position: center;
      opacity: 0.32;
      z-index: 0;
    }

    .hero-shape-1 {
      position: absolute;
      top: 10%;
      right: -60px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(232,98,26,0.15);
      filter: blur(60px);
      animation: float 12s ease-in-out infinite;
    }

    .hero-shape-2 {
      position: absolute;
      bottom: 5%;
      left: -80px;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: rgba(232,98,26,0.08);
      filter: blur(70px);
      animation: float 15s ease-in-out infinite reverse;
    }

    .hero-geo {
      position: absolute;
      right: 25%;
      top: 35%;
      width: 80px;
      height: 80px;
      border: 1px solid rgba(255,255,255,0.08);
      transform: rotate(45deg);
    }

    .hero-isotipo {
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      width: 320px;
      height: 320px;
      z-index: 1;
      animation: isotipoFloat 10s ease-in-out infinite;
      filter: drop-shadow(0 0 60px rgba(232,98,26,0.55)) drop-shadow(0 0 20px rgba(232,98,26,0.35));
      opacity: 0.92;
      pointer-events: none;
    }

    .hero-isotipo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    @media (max-width: 960px) {
      .hero-isotipo { display: none; }
    }

    @keyframes isotipoFloat {
      0%, 100% { transform: translateY(-50%) translate(0, 0); }
      50% { transform: translateY(-50%) translate(12px, -18px); }
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(20px, -25px); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(232,98,26,0.4);
      background: rgba(232,98,26,0.1);
      color: var(--orange-light);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 6px 16px;
      border-radius: 999px;
      margin-bottom: 24px;
      animation: fadeInUp 0.7s ease both;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      max-width: 750px;
      animation: fadeInUp 0.7s 0.1s ease both;
    }

    .hero h1 span { color: var(--orange); }

    .hero p {
      margin-top: 24px;
      font-size: 1.125rem;
      color: rgba(255,255,255,0.72);
      max-width: 580px;
      line-height: 1.7;
      animation: fadeInUp 0.7s 0.2s ease both;
    }

    .hero-btns {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeInUp 0.7s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      color: var(--white);
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 999px;
      box-shadow: 0 12px 30px rgba(232,98,26,0.4);
      transition: transform 0.2s;
    }

    .btn-primary:hover { transform: scale(1.05); color: var(--white); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid rgba(255,255,255,0.35);
      color: var(--white);
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 999px;
      transition: background 0.2s, color 0.2s;
    }

    .btn-secondary:hover { background: var(--white); color: var(--navy-deep); }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(22px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── SECTIONS ─── */
    .section { padding: 96px 24px; }
    .section-gray { background: var(--gray-light); }
    .section-navy { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--white); }

    .container { max-width: 1280px; margin: 0 auto; }

    .section-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--orange);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--navy-deep);
      line-height: 1.15;
    }

    .section-navy .section-title { color: var(--white); }

    .section-sub {
      margin-top: 16px;
      color: var(--gray-text);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 560px;
    }

    .text-center { text-align: center; }
    .text-center .section-sub { margin-left: auto; margin-right: auto; }

    /* ─── ABOUT ─── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .about-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 24px;
      box-shadow: 0 10px 30px rgba(7,19,46,0.08);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .about-card:nth-child(2) { margin-top: 32px; }

    .about-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(7,19,46,0.14);
    }

    .about-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }

    .icon-orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
    .icon-navy { background: var(--navy); }

    .about-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 10px;
    }

    .about-card p { font-size: 0.875rem; color: var(--gray-text); line-height: 1.65; }

    /* ─── SERVICES ─── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 24px;
      box-shadow: 0 8px 24px rgba(7,19,46,0.07);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 56px rgba(7,19,46,0.14);
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      transition: width 0.45s;
    }

    .service-card:hover::after { width: 100%; }

    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 20px;
      transition: background 0.25s;
    }

    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
    }

    .service-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 12px;
      line-height: 1.35;
    }

    .service-card p { font-size: 0.875rem; color: var(--gray-text); line-height: 1.65; }

    /* ─── CLIENTS ─── */
    .clients-track-wrapper {
      overflow: hidden;
      margin-top: 48px;
      -webkit-mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
      mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
    }

    .clients-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: marquee 35s linear infinite;
    }

    .clients-track:hover { animation-play-state: paused; }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .client-chip {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 72px;
      min-width: 180px;
      padding: 0 28px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--navy);
      box-shadow: 0 4px 14px rgba(7,19,46,0.06);
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s;
    }

    .client-chip:hover { color: var(--orange); border-color: var(--orange); }

    .client-chip img {
      max-height: 54px;
      max-width: 120px;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.65);
      transition: filter 0.35s;
    }

    .client-chip:hover img {
      filter: grayscale(0%) opacity(1);
    }

    /* ─── STATS ─── */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: center;
    }

    .stat-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--orange);
      line-height: 1;
    }

    .stat-label {
      margin-top: 10px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.6);
    }

    /* ─── CTA BANNER ─── */
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .cta-inner h2 {
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
    }

    .cta-inner h2 span { color: var(--orange); }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--navy);
      color: rgba(255,255,255,0.7);
      padding: 72px 24px 32px;
    }

    .footer-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
    }

    .footer-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-logo span { color: var(--orange); }

    .footer-desc {
      font-size: 0.875rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      max-width: 340px;
    }

    .footer h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.875rem;
      list-style: none;
    }

    .footer-contact li i {
      color: var(--orange);
      margin-top: 2px;
      flex-shrink: 0;
      width: 16px;
    }

    .footer-contact a:hover { color: var(--white); }

    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .social-btn:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 48px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }

    /* ─── POR QUÉ ELEGIRNOS ─── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .why-image-wrap {
      position: relative;
    }

    .why-image-wrap img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: 20px;
    }

    .why-badge-float {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      color: var(--white);
      border-radius: 16px;
      padding: 24px 28px;
      box-shadow: 0 16px 40px rgba(232,98,26,0.4);
      text-align: center;
    }

    .why-badge-float .big-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
    }

    .why-badge-float .big-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 4px;
      opacity: 0.9;
    }

    .why-reasons {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 36px;
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: 0 4px 16px rgba(7,19,46,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .why-item:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 28px rgba(7,19,46,0.1);
    }

    .why-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .why-item-text h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 4px;
    }

    .why-item-text p {
      font-size: 0.825rem;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* ─── VIDEO BANNER ─── */
    .video-banner {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--navy-deep);
    }

    .video-banner-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.18;
    }

    .video-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(7,19,46,0.85), rgba(11,31,75,0.75));
    }

    .video-banner-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 60px 24px;
    }

    .play-btn {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.4rem;
      box-shadow: 0 0 0 12px rgba(232,98,26,0.2), 0 16px 40px rgba(232,98,26,0.4);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
      margin-bottom: 28px;
      animation: pulse-ring 2s ease-in-out infinite;
    }

    .play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 0 18px rgba(232,98,26,0.15), 0 20px 50px rgba(232,98,26,0.5);
    }

    @keyframes pulse-ring {
      0%, 100% { box-shadow: 0 0 0 12px rgba(232,98,26,0.2), 0 16px 40px rgba(232,98,26,0.4); }
      50% { box-shadow: 0 0 0 20px rgba(232,98,26,0.1), 0 16px 40px rgba(232,98,26,0.4); }
    }

    .video-banner-content h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--white);
      margin-bottom: 12px;
    }

    .video-banner-content p {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto;
    }

    /* Modal video */
    .video-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.88);
      align-items: center;
      justify-content: center;
    }

    .video-modal.active { display: flex; }

    .video-modal-inner {
      position: relative;
      width: 90%;
      max-width: 860px;
      aspect-ratio: 16/9;
    }

    .video-modal iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 12px;
    }

    .video-close {
      position: absolute;
      top: -44px;
      right: 0;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.6rem;
      cursor: pointer;
      opacity: 0.8;
    }

    .video-close:hover { opacity: 1; }

    /* ─── PROYECTOS ─── */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .project-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(7,19,46,0.1);
      position: relative;
      group: true;
    }

    .project-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.45s;
    }

    .project-card:hover img { transform: scale(1.06); }

    .project-card-body {
      padding: 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 16px 16px;
    }

    .project-tags {
      display: flex;
      gap: 8px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .project-tag {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--orange);
      border: 1px solid rgba(232,98,26,0.3);
      background: rgba(232,98,26,0.07);
      padding: 3px 10px;
      border-radius: 999px;
    }

    .project-card-body h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .project-card-body p {
      font-size: 0.825rem;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* ─── EQUIPO ─── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(7,19,46,0.07);
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(7,19,46,0.13);
    }

    .team-avatar {
      width: 100%;
      height: 240px;
      background: linear-gradient(135deg, var(--navy), #1a3566);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .team-avatar img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      z-index: 0;
      transition: transform 0.4s ease;
    }

    .team-card:hover .team-avatar img {
      transform: scale(1.05);
    }

    .team-avatar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: linear-gradient(to top, rgba(7,19,46,0.45), transparent);
      z-index: 1;
      pointer-events: none;
    }

    .team-avatar i {
      font-size: 4rem;
      color: rgba(255,255,255,0.25);
    }

    .team-initials {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      box-shadow: 0 8px 24px rgba(232,98,26,0.4);
    }

    .team-card-body {
      padding: 20px 16px 24px;
    }

    .team-card-body .team-role {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--orange);
      margin-bottom: 6px;
    }

    .team-card-body h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 8px;
    }

    .team-card-body p {
      font-size: 0.8rem;
      color: var(--gray-text);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .team-socials {
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .team-social-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-text);
      font-size: 0.75rem;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .team-social-btn:hover {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-image-wrap { display: none; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; gap: 32px; }
      .about-cards { grid-template-columns: 1fr; }
      .about-card:nth-child(2) { margin-top: 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .cta-inner { flex-direction: column; text-align: center; }
      .hero-btns { justify-content: center; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .team-grid { grid-template-columns: 1fr; }
    }

    /* ─── FLOATING BUTTONS ─── */
    .float-whatsapp,
    .float-scroll-top {
      position: fixed;
      bottom: 28px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.22);
      z-index: 1000;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .float-whatsapp {
      left: 28px;
      background: #25D366;
      color: #fff;
    }

    .float-scroll-top {
      right: 28px;
      background: var(--orange);
      color: #fff;
      opacity: 0;
      pointer-events: none;
    }

    .float-scroll-top.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .float-whatsapp:hover,
    .float-scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    }