    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --white:        #ffffff;
      --off-white:    #f5f5f7;
      --light-gray:   #e8e8ed;
      --mid-gray:     #86868b;
      --dark-gray:    #1d1d1f;
      --ink:          #0a0a0b;
      --accent:       #2563eb;
      --accent-light: #60a5fa;
      --accent-glow:  rgba(0, 102, 204, 0.15);
      --cta-bg:       #0a0a0b;

      --font-display: 'Syne', sans-serif;
      --font-body:    'DM Sans', sans-serif;

      --radius-sm:  10px;
      --radius-md:  18px;
      --radius-lg:  28px;

      --shadow-card: 0 2px 20px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
      --shadow-lift: 0 16px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);

      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

/* Reduce overall letter‑spacing for a tighter look */
body, .section-title, .hero-title, .section-label, .section-sub, .service-name, .service-desc, .hero-sub, .cta-title, .cta-sub {
  letter-spacing: -0.02em;
}

    /* ═══════════════════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      z-index: 1000;
      padding-block: 12px;
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .navbar-logo {
      flex-shrink: 0;
    }

    .logo-text {
      font-family: sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.02em;
      cursor: pointer;
      transition: color var(--transition);
    }

    .logo-text span {
      color: var(--accent);
    }

    .logo-text:hover {
      color: var(--accent);
    }

    .navbar-menu {
      display: flex;
      list-style: none;
      gap: 32px;
      flex: 1;
      justify-content: center;
    }

    .navbar-link {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-gray);
      transition: color var(--transition);
      position: relative;
      padding-bottom: 4px;
    }

    .navbar-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width var(--transition);
    }

    .navbar-link:hover {
      color: var(--accent);
    }

    .navbar-link:hover::after {
      width: 100%;
    }

    .navbar-cta {
      flex-shrink: 0;
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 13px;
    }

    /* Ajustar body padding para navBar fijo */
    body {
      padding-top: 60px;
    }

    @media (max-width: 768px) {
      .navbar-menu {
        gap: 20px;
        justify-content: center;
      }

      .navbar-inner {
        gap: 20px;
      }

      .logo-text {
        font-size: 18px;
      }

      .navbar-link {
        font-size: 13px;
      }

      .btn-sm {
        padding: 8px 16px;
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .navbar-menu {
        gap: 16px;
        font-size: 12px;
      }

      .navbar-inner {
        gap: 12px;
      }

      .logo-text {
        font-size: 16px;
      }

      .navbar-link {
        font-size: 12px;
      }

      .navbar-cta {
        display: none;
      }
    }

    /* ─── RESET ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--dark-gray);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a  { text-decoration: none; color: inherit; }

    /* ─── SCROLL-REVEAL ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── UTILITY ────────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1080px;
      margin-inline: auto;
      padding-inline: clamp(20px, 5vw, 60px);
    }
    .section-label {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 5vw, 48px);
      font-weight: 700;
      line-height: 1.12;
      color: var(--ink);
      letter-spacing: -0.02em;
    }
    .section-sub {
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 300;
      color: var(--mid-gray);
      line-height: 1.65;
      max-width: 560px;
    }

    /* ─── BUTTON ─────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 100px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 4px 24px rgba(0,102,204,.3);
    }
    .btn-primary:hover {
      background: #0052a3;
      box-shadow: 0 8px 32px rgba(0,102,204,.45);
      transform: translateY(-2px);
    }
    .btn-ghost {
      background: rgba(255,255,255,.12);
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.25);
      backdrop-filter: blur(12px);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.22);
      transform: translateY(-2px);
    }
    .btn-glow {
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 8px 40px rgba(255,255,255,.2);
    }
    .btn-glow:hover {
      box-shadow: 0 0 0 1px rgba(255,255,255,.4), 0 12px 56px rgba(255,255,255,.35);
      transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════════ */
    #hero {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      background: var(--off-white);
    }

    /* Mesh gradient */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 65% 30%,  rgba(0,102,204,.10) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 70%,  rgba(51,153,255,.07) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 85% 80%,  rgba(0,40,120,.05) 0%, transparent 60%);
      z-index: 0;
    }

    /* Floating orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.45;
      animation: drift 12s ease-in-out infinite alternate;
      z-index: 0;
    }
    .orb-1 { width: 400px; height: 400px; background: #cce0ff; top: -80px; right: -60px; animation-duration: 14s; }
    .orb-2 { width: 260px; height: 260px; background: #e0ecff; bottom: 60px; left: -40px; animation-duration: 10s; animation-delay: -4s; }

    @keyframes drift {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(20px, -25px) scale(1.05); }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding-block: clamp(80px, 12vh, 140px);
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,102,204,.08);
      border: 1px solid rgba(0,102,204,.15);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.04em;
      margin-bottom: 28px;
    }
    .hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
    .hero-title {
      font-family: sans-serif;
      font-size: clamp(38px, 7vw, 66px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--ink);
      max-width: 780px;
      margin-bottom: 24px;
    }
    .hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: clamp(16px, 2.2vw, 20px);
      font-weight: 300;
      color: var(--mid-gray);
      line-height: 1.6;
      max-width: 520px;
      margin-bottom: 40px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ═══════════════════════════════════════════════════════════
       NEWS (IA-noticias)
    ═══════════════════════════════════════════════════════════ */
    #noticias {
      background: var(--white);
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-top: 48px;
    }
    .news-card {
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      border: 1px solid transparent;
    }
    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lift);
      border-color: rgba(37,99,235,.1);
    }
    .news-date {
      font-size: 12px;
      color: var(--mid-gray);
      margin-bottom: 8px;
    }
    .news-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .news-excerpt {
      font-size: 15px;
      color: var(--mid-gray);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .news-link {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .news-link:hover { text-decoration: underline; }

    /* ═══════════════════════════════════════════════════════════
       HERO METRICS
    ═══════════════════════════════════════════════════════════ */
    .hero-metrics {
      display: flex;
      gap: 40px;
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid var(--light-gray);
      flex-wrap: wrap;
    }
    .metric-value {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
    }
    .metric-label { font-size: 13px; color: var(--mid-gray); margin-top: 2px; }

    /* ═══════════════════════════════════════════════════════════
       SERVICIOS
    ═══════════════════════════════════════════════════════════ */
    #servicios {
      background: var(--white);
    }
    .services-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 56px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .service-featured {
      display: grid;
      gap: 24px;
      background: linear-gradient(135deg, rgba(37,102,235,.12) 0%, rgba(96,165,250,.08) 100%);
      border: 1px solid rgba(37,102,235,.14);
      border-radius: var(--radius-lg);
      padding: 32px 30px;
      box-shadow: 0 24px 60px rgba(37,102,235,.08);
      margin-bottom: 28px;
    }
    .service-badge {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(37,102,235,.12);
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 10px;
      width: fit-content;
    }
    .service-featured-grid {
      display: grid;
      grid-template-columns: minmax(280px, 1fr) 360px;
      gap: 24px;
      align-items: center;
    }
    .service-featured-media img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      object-fit: cover;
      display: block;
      box-shadow: 0 18px 40px rgba(0,0,0,.08);
    }
    .service-featured-body {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 22px;
      align-items: center;
    }
    .service-featured-icon {
      width: 68px;
      height: 68px;
      border-radius: 24px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      color: var(--white);
      flex-shrink: 0;
    }
    .service-featured-icon svg {
      width: 30px;
      height: 30px;
    }
    .service-featured-actions {
      display: flex;
      justify-content: flex-start;
    }
    .service-featured .service-name {
      font-size: 24px;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .service-featured .service-desc {
      color: var(--dark-gray);
      font-size: 16px;
      max-width: 720px;
      font-weight: 400;
    }
    .service-card {
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      cursor: default;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
      border: 1px solid transparent;
    }
    .service-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: var(--shadow-lift);
      background: var(--white);
      border-color: rgba(0,102,204,.1);
    }
    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, #e6f0ff 0%, #cce0ff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    }
    .service-card:hover .service-icon svg path,
    .service-card:hover .service-icon svg rect,
    .service-card:hover .service-icon svg circle,
    .service-card:hover .service-icon svg polyline,
    .service-card:hover .service-icon svg line {
      stroke: #fff;
    }
    .service-icon svg { width: 24px; height: 24px; }
    .service-name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .service-desc {
      font-size: 14px;
      color: var(--mid-gray);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ═══════════════════════════════════════════════════════════
       GALERÍA
    ═══════════════════════════════════════════════════════════ */
    #galeria {
      padding-block: clamp(80px, 10vw, 120px);
      background: var(--off-white);
    }
    .gallery-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 48px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      grid-template-rows: 260px 260px;
      gap: 16px;
    }
    .gallery-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      background: var(--light-gray);
    }
    .gallery-item:first-child {
      grid-row: 1 / 3;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,11,.6) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-caption {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.01em;
    }

    /* ═══════════════════════════════════════════════════════════
       TESTIMONIOS
    ═══════════════════════════════════════════════════════════ */
    #testimonios {
      padding-block: clamp(80px, 10vw, 120px);
      background: var(--white);
    }
    .testi-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 48px;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }
    .testi-card::before {
      content: '"';
      position: absolute;
      top: -12px;
      right: 28px;
      font-family: var(--font-display);
      font-size: 120px;
      font-weight: 800;
      color: var(--accent);
      opacity: 0.07;
      line-height: 1;
      pointer-events: none;
    }
    .testi-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lift);
      border-color: rgba(0,102,204,.08);
    }
    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
    }
    .star {
      width: 14px;
      height: 14px;
      background: #f5a623;
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .testi-quote {
      font-size: 16px;
      font-weight: 300;
      color: var(--dark-gray);
      line-height: 1.7;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--light-gray);
      flex-shrink: 0;
    }
    .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-name {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
    }
    .testi-role { font-size: 12px; color: var(--mid-gray); margin-top: 2px; }

    /* ═══════════════════════════════════════════════════════════
       CTA
    ═══════════════════════════════════════════════════════════ */
    #cta {
      padding-block: clamp(80px, 12vw, 140px);
      background: var(--cta-bg);
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 25% 40%,  rgba(0,102,204,.25) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 80% 70%,  rgba(51,153,255,.12) 0%, transparent 65%);
    }
    /* Subtle grid lines */
    #cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,102,204,.25);
      border: 1px solid rgba(0,102,204,.4);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 500;
      color: #66b2ff;
      letter-spacing: 0.05em;
    }
    .cta-title {
      font-family: sans-serif;
      font-size: clamp(34px, 6vw, 64px);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.08;
      max-width: 680px;
    }
    .cta-title span {
      background: linear-gradient(135deg, #66b2ff 0%, #99ccff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cta-sub {
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 300;
      color: rgba(255,255,255,.55);
      max-width: 420px;
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════ */
    footer {
      background: #050506;
      padding-block: 32px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-logo {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
    }
    .footer-logo span { color: var(--accent-light); }
    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,.3);
    }

    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .gallery-item:first-child {
        grid-row: auto;
      }
      .gallery-item { height: 220px; }

      .hero-metrics { gap: 28px; }
      .metric-value  { font-size: 26px; }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    /* ═══════════════════════════════════════════════════════════
       NEWS BANNER
    ═══════════════════════════════════════════════════════════ */
    #news-banner {
      padding-block: clamp(40px, 5vw, 60px);
      margin-top: 32px;
      margin-bottom: 32px;
    }
    #news-banner .container {
      max-width: 1040px;
      margin-inline: auto;
      text-align: center;
      background: var(--accent);
      color: var(--white);
      padding: clamp(28px, 3vw, 48px) 24px;
      border-radius: var(--radius-lg);
    }
    #news-banner h2 {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.5vw, 28px);
      margin-bottom: 14px;
      color: var(--white);
    }
    #news-banner p {
      font-size: clamp(14px, 1.9vw, 16px);
      opacity: 0.95;
      margin-bottom: 24px;
      color: var(--white);
      max-width: 760px;
      margin-inline: auto;
    }
    #news-banner .btn {
      background: black;
      display: inline-flex;
      justify-content: center;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      #news-banner {
        margin-top: 24px;
        margin-bottom: 24px;
      }
      #news-banner .container {
        padding: 28px 18px;
      }
      #news-banner .btn {
        width: 100%;
        max-width: 260px;
      }
    }

    @media (max-width: 480px) {
      #news-banner {
        padding-block: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
      }
      #news-banner .container {
        padding: 24px 16px;
      }
      #news-banner .btn {
        width: 100%;
      }
    }

    /* ═══════════════════════════════════════════════════════════
       CONTACT FORM
    ═══════════════════════════════════════════════════════════ */
    #contacto {
      padding-block: clamp(80px, 10vw, 120px);
      background: var(--white);
    }
    .contact-form {
      border: 1px solid rgba(0, 102, 204, .15);
      max-width: 620px;
      margin: 0 auto;
      padding: 30px 20px;
    }
    .form-group {
      margin-bottom: 28px;
    }
    .form-group label {
      display: block;
      font-family: var(--font-display);
      font-size: 14px;
      color: var(--mid-gray);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--light-gray);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: var(--transition);
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent-light);
    }
    .form-group textarea {
      resize: vertical;
    }

    /* ═══════════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════════ */
    footer {
      background: #050506;
      padding-block: 32px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-logo {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
    }
    .footer-logo span { color: var(--accent-light); }
    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,.3);
    }

    /* ═══════════════════════════════════════════════════════════
       SPECIAL BUTTON VARIANT
    ═══════════════════════════════════════════════════════════ */
    .btn-ghost-light {
      background: rgba(0,0,0,.06);
      color: var(--dark-gray);
      border-color: rgba(0,0,0,.12);
    }

    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .gallery-item:first-child {
        grid-row: auto;
      }
      .gallery-item { height: 220px; }

      .hero-metrics { gap: 28px; }
      .metric-value  { font-size: 26px; }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
      .service-featured-grid {
        grid-template-columns: 1fr;
      }
      .service-featured-body {
        grid-template-columns: 1fr;
      }
      .service-featured-media img {
        max-height: 320px;
      }
      .service-featured-actions {
        justify-content: stretch;
      }
      .service-featured-actions .btn {
        width: 100%;
        justify-content: center;
      }
    }
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-actions  { flex-direction: column; align-items: flex-start; }
    }
