 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #050507;
      --surface:   #0c0c10;
      --card:      #111116;
      --border:    rgba(255,255,255,0.08);
      --white:     #f0ede8;
      --dim:       #6a6a72;
      --teal:      #e8e4de;
      --teal-dim:  #a0a0a0;
      --teal-glow: rgba(232,228,222,0.06);
      --red:       #e63946;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    /* ───── NAVBAR ───── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 64px;
      display: flex; align-items: center;
      padding: 0 2.5rem;
      background: linear-gradient(to bottom, rgba(5,5,7,0.96) 0%, transparent 100%);
      transition: background 0.4s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(5,5,7,0.98);
      border-bottom-color: var(--border);
    }

    /* Left: logo + divider + links */
    .nav-left { display: flex; align-items: center; flex: 1; min-width: 0; }

    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none; flex-shrink: 0; margin-right: 2rem;
    }
    /* The SVG logo scales cleanly at any size */
    .nav-logo svg { height: 36px; width: auto; display: block; }

    .nav-vdiv {
      width: 1px; height: 20px;
      background: var(--border);
      margin-right: 2rem; flex-shrink: 0;
    }

    .nav-links { display: flex; list-style: none; align-items: center; }
    .nav-links li a {
      display: flex; align-items: center;
      height: 64px; padding: 0 1rem;
      font-size: 0.62rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(240,237,232,0.6); text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: color 0.25s, border-color 0.25s;
      white-space: nowrap;
    }
    .nav-links li a:hover { color: var(--white); border-bottom-color: var(--teal); }

    /* Right: socials + CTA */
    .nav-right { display: flex; align-items: center; flex-shrink: 0; }
    .nav-right .nav-vdiv { margin-right: 0; margin-left: 0; }

    .nav-social {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 64px;
      color: rgba(240,237,232,0.45); text-decoration: none;
      transition: color 0.25s;
    }
    .nav-social:hover { color: var(--teal); }

    .nav-cta {
      margin-left: 1rem;
      padding: 0.42rem 1.1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; text-decoration: none;
      color: var(--teal); border: 1px solid rgba(232,228,222,0.4);
      transition: all 0.25s; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--white); color: var(--bg); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 5px; margin-left: auto;
    }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--teal); }

    /* ───── HERO ───── */
    .hero {
      position: relative; height: 100vh; min-height: 640px;
      overflow: hidden; display: flex; align-items: flex-end;
      padding-bottom: 6rem;
    }

    .hero-video-wrap {
      position: absolute; inset: 0;
      background: #000; overflow: hidden;
    }
    /* YouTube IFrame API — force iframe to cover hero completely */
    #yt-hero {
      position: absolute; inset: 0; z-index: 1;
      overflow: hidden; background: #000;
    }
    #yt-hero .ytp-title-text {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
    #yt-hero iframe,
    #yt-hero video,
		.hero-video-wrap iframe {
		  position: absolute !important;
		  top: 50% !important;
		  left: 50% !important;
		  width: max(177.78vh, 100%) !important;
		  height: max(56.25vw, 100%) !important;
		  min-width: 100% !important;
		  min-height: 100% !important;
		  transform: translate(-50%, -50%) !important;
		  border: none !important;
		  pointer-events: none !important;
		}
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        160deg,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.05) 35%,
        rgba(5,5,7,0.75) 70%,
        rgba(5,5,7,0.97) 100%
      );
    }
    /* Teal vignette left edge */
    .hero-video-wrap::after {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to right, rgba(232,228,222,0.02) 0%, transparent 40%);
      pointer-events: none;
    }

    .hero-content {
      position: relative; z-index: 3;
      padding: 0 3.5rem; max-width: 860px;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.7rem;
      font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 1.4rem;
    }
    .hero-tag::before {
      content: ''; display: block;
      width: 32px; height: 1px; background: var(--teal);
    }

    .hero-title {
      font-family: 'Archivo Black', sans-serif;
      font-size: clamp(3.2rem, 8vw, 7.5rem);
      line-height: 0.92; letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .hero-title .outline {
      -webkit-text-stroke: 1.5px rgba(240,237,232,0.25);
      color: transparent;
    }
    .hero-title .teal { color: var(--teal); }

    .hero-sub {
      font-family: 'Cormorant', serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: rgba(240,237,232,0.55);
      margin-bottom: 2rem; letter-spacing: 0.03em;
    }

    .hero-desc {
      font-size: 0.85rem; line-height: 1.85;
      color: rgba(240,237,232,0.65);
      max-width: 500px; margin-bottom: 2.8rem;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-teal {
      display: inline-flex; align-items: center; gap: 0.7rem;
      background: var(--white); color: var(--bg);
      text-decoration: none; font-size: 0.68rem;
      font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      padding: 0.9rem 2.2rem; transition: all 0.3s;
    }
    .btn-teal:hover { background: #ffffff; transform: translateY(-2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.7rem;
      background: transparent; color: var(--white);
      text-decoration: none; font-size: 0.68rem;
      font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
      padding: 0.9rem 2.2rem;
      border: 1px solid rgba(240,237,232,0.25); transition: all 0.3s;
    }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

    .hero-scroll {
      position: absolute; right: 3.5rem; bottom: 3rem; z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    }
    .hero-scroll-line {
      width: 1px; height: 52px;
      background: linear-gradient(to bottom, var(--teal), transparent);
      animation: pulse 2s ease-in-out infinite;
    }
    .hero-scroll-text {
      font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--dim); writing-mode: vertical-rl;
    }
    @keyframes pulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }

    /* ───── SECTION COMMON ───── */
    .sec-eyebrow {
      font-size: 0.58rem; letter-spacing: 0.45em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 0.7rem;
    }
    .sec-title {
      font-family: 'Archivo Black', sans-serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      letter-spacing: -0.01em; line-height: 1;
      text-transform: uppercase;
    }
    .sec-header {
      display: flex; align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1rem;
    }
    .sec-all {
      font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--teal); text-decoration: none;
      display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s;
    }
    .sec-all:hover { gap: 0.9rem; }
    .teal-bar { width: 48px; height: 2px; background: var(--teal); margin: 1.2rem 0 2rem; }

    /* ───── FEATURED GRID (Universal-style) ───── */
    .featured-sec { padding: 6rem 3.5rem; background: var(--surface); }

    .featured-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 3px;
    }
    .f-main {
      grid-column: 1; grid-row: 1 / 3;
      aspect-ratio: 4/5;
    }
    .f-side { grid-column: 2; aspect-ratio: 16/9; }

    .vcard {
      position: relative; overflow: hidden;
      background: var(--card); cursor: pointer;
    }
    .vcard img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
      filter: brightness(0.65) saturate(0.9);
    }
    .vcard:hover img { transform: scale(1.06); filter: brightness(0.8) saturate(1.1); }

    .vcard-placeholder {
      width: 100%; height: 100%; min-height: 220px;
      background: var(--card);
      display: flex; align-items: center; justify-content: center;
    }
    .vcard-mono {
      font-family: 'Archivo Black', sans-serif;
      font-size: 5rem; color: rgba(232,228,222,0.05);
      text-transform: uppercase; user-select: none;
    }

    .vcard-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(5,5,7,0.9) 0%, transparent 55%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.8rem;
    }
    .vcard-tag {
      font-size: 0.52rem; letter-spacing: 0.32em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 0.45rem;
    }
    .vcard-title {
      font-family: 'Cormorant', serif;
      font-size: clamp(1rem, 2.2vw, 1.55rem);
      font-weight: 400; line-height: 1.2;
    }
    .vcard-sub { font-size: 0.62rem; color: var(--dim); margin-top: 0.4rem; }

    .vcard-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%) scale(0.85);
      opacity: 0;
      width: 54px; height: 54px;
      background: rgba(232,228,222,0.95);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .vcard-play svg { margin-left: 3px; }
    .vcard:hover .vcard-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }

    /* ───── SERVICES ───── */
    .services-sec { padding: 6rem 3.5rem; background: var(--bg); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .svc-card {
      background: var(--card);
      padding: 2.4rem 2rem;
      border-top: 2px solid transparent;
      transition: border-color 0.3s, background 0.3s;
      cursor: default;
    }
    .svc-card:hover { border-top-color: transparent; background: var(--card); }
    .svc-card { cursor: default; }
    .svc-icon {
      width: 38px; height: 38px; margin-bottom: 1.4rem;
      display: flex; align-items: center; justify-content: center;
      color: var(--teal);
    }
    .svc-name {
      font-family: 'Archivo Black', sans-serif;
      font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .svc-desc { font-size: 0.78rem; line-height: 1.8; color: var(--dim); }
    .svc-tags {
      display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem;
    }
    .svc-tag {
      font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border: 1px solid rgba(232,228,222,0.15); color: rgba(232,228,222,0.6);
    }

    /* ───── WORK GRID ───── */
    .work-sec { padding: 6rem 3.5rem; background: var(--surface); }

    .filter-row { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
    .filt-btn {
      background: transparent; border: 1px solid var(--border);
      color: var(--dim); padding: 0.38rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
      cursor: pointer; transition: all 0.25s;
    }
    .filt-btn.active, .filt-btn:hover { border-color: var(--teal); color: var(--teal); }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .work-grid .vcard { aspect-ratio: 16/9; }

    /* ───── ABOUT ───── */
    .about-sec {
      padding: 6rem 3.5rem; background: var(--bg);
      display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
    }
    .about-visual { position: relative; }
    .about-frame {
      position: relative; aspect-ratio: 4/5; overflow: hidden;
      background: var(--card);
    }
    .about-frame::before {
      content: ''; position: absolute;
      top: -1.2rem; left: -1.2rem;
      width: 55%; height: 55%;
      border: 1px solid rgba(232,228,222,0.2); z-index: 0;
    }
    .about-frame::after {
      content: ''; position: absolute;
      bottom: -1.2rem; right: -1.2rem;
      width: 55%; height: 55%;
      border: 1px solid rgba(232,228,222,0.2); z-index: 0;
    }
    .about-frame-inner {
      position: relative; z-index: 1;
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;

    }
    .about-gem-bg {
      font-family: 'Archivo Black', sans-serif;
      font-size: 16rem; color: rgba(232,228,222,0.03);
      user-select: none; line-height: 1;
    }
    .about-stats {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      display: flex;
      background: rgba(5,5,7,0.94);
      border-top: 1px solid rgba(232,228,222,0.2);
      padding: 1.2rem;
    }
    .about-stat { flex: 1; text-align: center; }
    .about-stat-n {
      font-family: 'Archivo Black', sans-serif;
      font-size: 1.6rem; color: var(--teal); letter-spacing: 0.02em;
    }
    .about-stat-l {
      font-size: 0.52rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--dim);
    }

    .about-text .sec-title { margin-bottom: 0.5rem; }
    .about-body { font-size: 0.88rem; line-height: 1.9; color: rgba(240,237,232,0.7); margin-bottom: 1.4rem; }
    .about-body em { font-style: italic; color: rgba(232,228,222,0.9); }
    .about-team { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
    .team-card {
      display: flex; align-items: center; gap: 1rem;
      padding: 1rem 1.2rem;
      background: var(--card);
      border-left: 2px solid var(--teal);
      flex: 1; min-width: 180px;
    }
    .team-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(232,228,222,0.08);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Archivo Black', sans-serif;
      font-size: 0.9rem; color: var(--teal); flex-shrink: 0;
    }
    .team-name { font-size: 0.8rem; font-weight: 500; }
    .team-role { font-size: 0.62rem; color: var(--dim); letter-spacing: 0.08em; }

/* ───── CLIENTS ───── */
    .clients-sec {
      padding: 5rem 3.5rem; background: var(--surface);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .clients-lbl {
      text-align: center; font-size: 0.57rem; letter-spacing: 0.45em;
      text-transform: uppercase; color: var(--dim); margin-bottom: 3rem;
    }
    /* Logo card grid */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .client-card {
      position: relative;
      background: var(--card);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 2.8rem 2rem 2rem;
      cursor: pointer;
      overflow: hidden;
      border: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
      min-height: 160px;
    }
    .client-card:hover {
      background: #18181e;
      border-color: rgba(232,228,222,0.15);
    }
    .client-card:hover .client-play { opacity: 1; transform: translateY(0); }
    .client-card:hover .client-logo-wrap { filter: brightness(1); }

.client-logo-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  transition: filter 0.35s;
  width: 100%;
}
.client-logo-wrap img {
  height: 44px;
  width: 100%;
  max-width: 200px;
  object-fit: contain;
  transition: filter 0.35s;
}
    .client-logo-wrap svg {
      max-height: 54px; max-width: 160px;
    }

    .client-play {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--teal);
      margin-top: 1.2rem;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .client-play svg { flex-shrink: 0; }
    
    .client-nm:hover { color: var(--teal); }

    /* ───── CONTACT ───── */
    .contact-sec {
      padding: 6rem 3.5rem; background: var(--bg);
      display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
    }
    .contact-desc { font-size: 0.88rem; line-height: 1.85; color: rgba(240,237,232,0.65); margin-bottom: 2.5rem; }
    .contact-items { display: flex; flex-direction: column; gap: 1rem; }
    .ci {
      display: flex; align-items: center; gap: 1rem;
      font-size: 0.82rem; color: rgba(240,237,232,0.75);
    }
    .ci-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      border: 1px solid rgba(232,228,222,0.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); font-size: 0.85rem;
    }
    .contact-socials { display: flex; gap: 0.7rem; margin-top: 2rem; }
    .cs-icon {
      width: 38px; height: 38px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--dim); text-decoration: none;
      font-size: 0.75rem; transition: all 0.3s;
    }
    .cs-icon:hover { border-color: var(--teal); color: var(--teal); }

    .cform { display: flex; flex-direction: column; gap: 1.1rem; }
    .fg { display: flex; flex-direction: column; gap: 0.45rem; }
    .fg label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
    .fg input, .fg textarea, .fg select {
      background: rgba(255,255,255,0.03); border: 1px solid var(--border);
      color: var(--white); padding: 0.8rem 1rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 300;
      outline: none; transition: border-color 0.3s; appearance: none;
    }
    .fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--teal); }
    .fg textarea { resize: vertical; min-height: 110px; }
    .fg select option { background: #0c0c10; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
    .btn-submit {
      background: var(--white); color: var(--bg); border: none;
      padding: 0.95rem 2.2rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.68rem;
      font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s; align-self: flex-start;
    }
    .btn-submit:hover { background: #e0ddd8; transform: translateY(-2px); }

    /* ───── MODAL ───── */
    .modal {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.96);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.4s;
    }
    .modal.open { opacity: 1; pointer-events: all; }
    .modal-inner { position: relative; width: 90%; max-width: 1100px; aspect-ratio: 16/9; }
    .modal-inner iframe { width: 100%; height: 100%; border: none; }
    .modal-close {
      position: absolute; top: -46px; right: 0;
      background: none; border: none; color: var(--white); cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 0.65rem;
      letter-spacing: 0.2em; text-transform: uppercase;
    }
    .modal-close:hover { color: var(--teal); }

    /* ───── FOOTER ───── */
    footer { padding: 4rem 3.5rem 2rem; background: var(--surface); border-top: 1px solid var(--border); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { margin-bottom: 1rem; }
    .footer-desc { font-size: 0.76rem; line-height: 1.8; color: var(--dim); max-width: 270px; }
    .footer-col-title { font-size: 0.57rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-links a { color: var(--dim); text-decoration: none; font-size: 0.76rem; transition: color 0.3s; }
    .footer-links a:hover { color: var(--white); }
    .footer-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 2rem; border-top: 1px solid var(--border);
      font-size: 0.68rem; color: var(--dim); flex-wrap: wrap; gap: 1rem;
    }

    /* ───── FADE-IN ───── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ───── RESPONSIVE ───── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .f-main { grid-row: 1; aspect-ratio: 16/9; }
      .f-side { grid-column: 1; }
      .about-sec, .contact-sec { grid-template-columns: 1fr; gap: 3rem; }
      .about-frame { aspect-ratio: 16/9; max-width: 520px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 1.2rem; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: rgba(5,5,7,0.99); padding: 1.5rem;
        border-bottom: 1px solid var(--border);
      }
      .nav-links.open li a { height: auto; padding: 0.8rem 0; border-bottom: none; font-size: 0.75rem; }
      .nav-right .nav-social { width: 32px; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .featured-sec, .services-sec, .work-sec, .about-sec, .contact-sec, .clients-sec { padding: 3.5rem 1.5rem; }
      .hero-content { padding: 0 1.5rem; }
      .hero-title { font-size: 3rem; }
      .hero-scroll { right: 1.5rem; }
      .work-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .about-stats { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .hero-title { font-size: 2.6rem; }
    }
    .contact-link {
    color: inherit;
    text-decoration: none;
    }
    .contact-link:hover {
    text-decoration: underline;
    color: #fff; /* o el color que prefieras */
    }
  