*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --white: #ffffff;
      --snow: #fafaf8;
      --dark: #3c3c3b;
      --acid: #dedc00;
      --gray: #e8e7e4;
      --mid-gray: #b8b7b4;
      --font: 'Nunito Sans', sans-serif;
      --ease-out: cubic-bezier(.16, 1, .3, 1);
      --ease-io: cubic-bezier(.76, 0, .24, 1);
    }

    html {
      font-size: 16px;
      background: var(--white);
      scroll-behavior: auto
    }

    body {
      font-family: var(--font);
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      cursor: none;
    }

    a {
      text-decoration: none;
      color: inherit;
      cursor: none
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    ul {
      list-style: none
    }

    /* ── CUSTOM CURSOR ──────────────────────────────────────── */
    #cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 8px;
      height: 8px;
      background: var(--dark);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .35s var(--ease-out), height .35s var(--ease-out), background .25s;
      mix-blend-mode: exclusion;
    }

    #cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--dark);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s, opacity .3s;
      opacity: .5;
    }

    body.cur-big #cursor-dot { width: 56px; height: 56px; background: var(--acid) }
    body.cur-big #cursor-ring { width: 0; height: 0; opacity: 0 }
    body.cur-link #cursor-ring { width: 60px; height: 60px; border-color: var(--acid); opacity: 1 }

    /* ── PAGE LOADER ────────────────────────────────────────── */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: clip-path 1s var(--ease-io);
      clip-path: inset(0 0 0% 0);
    }
    #loader.out { clip-path: inset(0 0 100% 0) }
    .loader-logo {
      height: clamp(30px, 6vw, 50px);
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      animation: pulseLoader 1.5s infinite alternate var(--ease-io);
    }
    @keyframes pulseLoader {
      0% { opacity: 0.6; transform: scale(0.97); }
      100% { opacity: 1; transform: scale(1.03); }
    }

    /* ── HEADER ─────────────────────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1rem, 4vw, 3.5rem);
      height: 76px;
      background: transparent;
      transition: background 0.1s;
    }

    .logo img {
      height: 28px; width: auto; object-fit: contain;
      position: relative; z-index: 501;
      transition: filter 0.2s;
    }
    @media(max-width: 768px) { .logo img { height: 24px; } }

    .header-cta {
      display: none; position: relative; z-index: 501;
      font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
      color: var(--dark); padding: .65rem 1.5rem;
      border: 1.5px solid var(--dark); overflow: hidden;
      transition: color .4s, border-color .4s;
    }
    @media(min-width:900px) { .header-cta { display: block } }
    .header-cta::before {
      content: ''; position: absolute; inset: 0;
      background: var(--dark); transform: translateY(101%);
      transition: transform .5s var(--ease-io), background .4s; z-index: -1;
    }
    .header-cta:hover { color: var(--white) }
    .header-cta:hover::before { transform: translateY(0) }

    .burger {
      position: relative; z-index: 501; background: none; border: none;
      width: 44px; height: 44px; display: flex; flex-direction: column;
      justify-content: center; align-items: flex-end; gap: 6px; cursor: none; padding: 0 2px;
    }
    .burger span {
      display: block; height: 1.5px; background: var(--dark); border-radius: 2px;
      transform-origin: right center;
      transition: width .4s var(--ease-out), transform .5s var(--ease-io), opacity .3s, background .4s;
    }
    .burger span:nth-child(1) { width: 26px }
    .burger span:nth-child(2) { width: 18px }
    .burger span:nth-child(3) { width: 22px }
    .burger.open span { background: var(--white) }
    .burger.open span:nth-child(1) { width: 26px; transform: rotate(-45deg) translateY(1px) }
    .burger.open span:nth-child(2) { opacity: 0; transform: translateX(12px) }
    .burger.open span:nth-child(3) { width: 26px; transform: rotate(45deg) translateY(-1px) }

    header.is-dark .logo img { filter: brightness(0) invert(1); }
    header.is-dark .header-cta { color: var(--white); border-color: var(--white); }
    header.is-dark .header-cta::before { background: var(--white); }
    header.is-dark .header-cta:hover { color: var(--dark); }
    header.is-dark .burger span { background: var(--white); }

    /* ── NAV OVERLAY ────────────────────────────────────────── */
    .nav-overlay {
      position: fixed; inset: 0; background: var(--dark); z-index: 490;
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px clamp(1.5rem, 6vw, 5rem) clamp(3rem, 8vw, 7rem);
      clip-path: inset(0 0 100% 0);
      transition: clip-path .85s var(--ease-io);
      overflow-y: auto;
    }
    .nav-overlay.open { clip-path: inset(0 0 0% 0) }
    .nav-tex {
      position: absolute; inset: 0; pointer-events: none; opacity: .06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700'%3E%3Cg fill='none' stroke='%2300ff99' stroke-width='1.4'%3E%3Cpath d='M0 80 Q225 0 450 80 T900 80'/%3E%3Cpath d='M0 160 Q225 80 450 160 T900 160'/%3E%3Cpath d='M0 240 Q225 160 450 240 T900 240'/%3E%3Cpath d='M0 320 Q225 240 450 320 T900 320'/%3E%3Cpath d='M0 400 Q225 320 450 400 T900 400'/%3E%3Cpath d='M0 480 Q225 400 450 480 T900 480'/%3E%3Cpath d='M0 560 Q225 480 450 560 T900 560'/%3E%3Cpath d='M0 640 Q225 560 450 640 T900 640'/%3E%3C/g%3E%3C/svg%3E");
      background-size: cover;
    }
    .nav-links { display: flex; flex-direction: column; gap: .05rem; margin-bottom: 2.5rem }
    .nav-lw { overflow: hidden }
    .nav-lw a {
      display: block; font-size: clamp(2.4rem, 7vw, 5.5rem); font-weight: 1000;
      letter-spacing: -.055em; color: var(--white); line-height: 1.05;
      padding: .08em 0; transform: translateY(110%);
      transition: transform .7s var(--ease-out), color .3s; position: relative;
    }
    .nav-lw a::after {
      content: attr(data-label); position: absolute; left: 0; top: 0;
      color: var(--acid); pointer-events: none; clip-path: inset(0 100% 0 0);
      transition: clip-path .5s var(--ease-io);
    }
    .nav-lw a:hover::after { clip-path: inset(0 0% 0 0) }
    .nav-overlay.open .nav-lw a { transform: translateY(0) }
    
    .nav-lw:nth-child(1) a { transition-delay: .07s }
    .nav-lw:nth-child(2) a { transition-delay: .11s }
    .nav-lw:nth-child(3) a { transition-delay: .15s }
    .nav-lw:nth-child(4) a { transition-delay: .19s }
    .nav-lw:nth-child(5) a { transition-delay: .23s }
    .nav-lw:nth-child(6) a { transition-delay: .27s }

    .nav-foot {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 1.5rem;
      opacity: 0; transform: translateY(16px);
      transition: opacity .6s .32s, transform .6s .32s var(--ease-out);
      margin-top: auto;
    }
    .nav-overlay.open .nav-foot { opacity: 1; transform: translateY(0) }
    .nav-qbtn {
      font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
      background: var(--acid); color: var(--dark); padding: .75rem 2rem; display: inline-block;
    }
    .nav-copy { font-size: .72rem; font-weight: 400; color: rgba(255, 255, 255, .2); letter-spacing: .04em }

    /* ── HERO ───────────────────────────────────────────────── */
    .hero {
      min-height: 100svh; display: grid; grid-template-columns: 50fr 50fr;
      padding: 0; padding-top: 76px;
      background: var(--snow); position: relative; overflow: hidden;
    }
    @media(max-width:900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; }
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: clamp(2rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem); position: relative; z-index: 2;
    }
    .hero-eyebrow {
      font-size: .66rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
      color: var(--mid-gray); margin-bottom: 2rem; overflow: hidden;
    }
    .hero-eyebrow span { display: block; transform: translateY(100%); transition: transform .8s .2s var(--ease-out) }
    .hero-eyebrow.in span { transform: translateY(0) }

    .hero-h1 {
      font-size: clamp(3.5rem, 8.5vw, 9rem); font-weight: 1000; letter-spacing: -.055em;
      line-height: .94; color: var(--dark); margin-bottom: 2.5rem; max-width: 8ch;
    }
    @media(max-width: 480px) { .hero-h1 { font-size: 3.2rem; margin-bottom: 1.5rem; } }
    .lw { overflow: hidden; display: block }
    .li { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out) }
    .li.in { transform: translateY(0) }
    .li:nth-child(1) { transition-delay: .15s }
    .li:nth-child(2) { transition-delay: .22s }
    .li:nth-child(3) { transition-delay: .29s }
    .hero-em { font-style: normal; -webkit-text-stroke: 2.5px var(--acid); color: transparent }

    .hero-body {
      font-size: clamp(.9rem, 1.2vw, 1.05rem); font-weight: 300; color: rgba(60, 60, 59, .6);
      line-height: 1.75; max-width: 38ch; margin-bottom: 2.5rem;
      opacity: 0; transform: translateY(18px); transition: opacity .9s .5s, transform .9s .5s var(--ease-out);
    }
    .hero-body.in { opacity: 1; transform: translateY(0) }

    .magwrap { display: inline-block; position: relative }
    .mag-btn {
      display: inline-flex; align-items: center; gap: .8rem; font-family: var(--font);
      font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
      color: var(--dark); background: var(--acid); padding: 1.1rem 2.6rem; border: none;
      position: relative; overflow: hidden; z-index: 1; will-change: transform;
      opacity: 0; transform: translateY(16px); transition: color .4s, opacity .9s .7s, transform .9s .7s var(--ease-out);
    }
    @media(max-width: 480px) { .mag-btn { padding: 1rem 2rem; width: 100%; justify-content: center; } .magwrap { display: block; } }
    .mag-btn.in { opacity: 1; transform: translateY(0) }
    .mag-fill {
      position: absolute; inset: 0; background: var(--dark); transform: scale(0); border-radius: 50%;
      z-index: -1; transition: transform .65s var(--ease-io), border-radius .65s var(--ease-io);
    }
    .mag-btn:hover .mag-fill { transform: scale(2.8); border-radius: 0 }
    .mag-btn:hover { color: var(--white) }
    .mag-arr { width: 13px; height: 13px; transition: transform .3s var(--ease-out); flex-shrink: 0 }
    .mag-btn:hover .mag-arr { transform: translate(4px, -4px) }

    /* Hero Right - Full Height Image */
    .hero-right {
      position: relative; overflow: visible; z-index: 1;
      height: 100svh;
      top: -76px;
      margin-bottom: -76px;
    }
    @media(max-width:900px) {
      .hero-right { height: 60svh; top: 0; margin-bottom: 0; order: -1; }
    }
    
    .hero-img-box {
      width: 100%; height: 100%;
      position: absolute; inset: 0;
      overflow: hidden;
    }
    .hero-img-box img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* Stats Flotantes Fix */
    .hero-stats {
      position: absolute;
      bottom: 2.5rem;
      right: 2.5rem;
      left: auto;
      background: transparent;
      padding: 0;
      display: flex; gap: clamp(1.5rem, 3vw, 3rem); flex-wrap: wrap;
      justify-content: flex-end;
      opacity: 0; transform: translateY(18px); transition: opacity 0.9s 0.6s, transform 0.9s 0.6s var(--ease-out);
      z-index: 10;
    }
    .hero-stats.in { opacity: 1; transform: translateY(0); }
    .stat-item { flex: 0 0 auto; text-align: right; }
    .stat-n { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 1000; letter-spacing: -0.05em; color: var(--white); line-height: 1; text-shadow: 0 4px 12px rgba(0,0,0,0.4); }
    .stat-n em { font-style: normal; color: var(--acid); }
    .stat-l { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-top: 0.5rem; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }

    /* Ajuste para Celulares: Stats flotantes centrados */
    @media(max-width:900px) {
      .hero-stats {
        right: 0; left: 0;
        bottom: 2rem;
        width: 100%;
        justify-content: center; text-align: center;
      }
      .stat-item { text-align: center; }
    }

    .scroll-ind {
      position: absolute; bottom: 2rem; left: clamp(1.5rem, 5vw, 4rem); transform: none;
      display: flex; flex-direction: column; align-items: center; gap: .6rem; z-index: 3;
    }
    @media(max-width:900px) { .scroll-ind { display: none; } }
    .scroll-ind-line {
      width: 1px; height: 60px; background: linear-gradient(to bottom, var(--acid), rgba(60, 60, 59, .2));
      animation: scl 2s ease infinite;
    }
    @keyframes scl {
      0% { transform: scaleY(0); transform-origin: top }
      50% { transform: scaleY(1); transform-origin: top }
      50.01% { transform: scaleY(1); transform-origin: bottom }
      100% { transform: scaleY(0); transform-origin: bottom }
    }
    .scroll-ind span {
      font-size: .58rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
      color: var(--mid-gray); writing-mode: vertical-lr;
    }

    /* ── MARQUEE ────────────────────────────────────────────── */
    .marquee { background: var(--dark); padding: .85rem 0; overflow: hidden; position: relative; z-index: 2; }
    .marquee-inner { display: flex; gap: 2.5rem; white-space: nowrap; animation: mq 22s linear infinite; }
    .marquee-inner span { font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .28); flex-shrink: 0; }
    .marquee-inner .dot { color: var(--acid); font-size: .9rem }
    @keyframes mq { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

    /* ── SERVICES SECTION ───────────────────────────────────── */
    .svc-section {
      padding: clamp(4rem, 10vw, 12rem) clamp(1rem, 5vw, 4rem);
      position: relative;
      background: var(--white);
    }
    /* Patrón Corregido */
    .svc-pattern {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700'%3E%3Cg fill='none' stroke='%233c3c3b' stroke-width='2'%3E%3Cpath d='M0 80 Q225 0 450 80 T900 80'/%3E%3Cpath d='M0 160 Q225 80 450 160 T900 160'/%3E%3Cpath d='M0 240 Q225 160 450 240 T900 240'/%3E%3Cpath d='M0 320 Q225 240 450 320 T900 320'/%3E%3Cpath d='M0 400 Q225 320 450 400 T900 400'/%3E%3Cpath d='M0 480 Q225 400 450 480 T900 480'/%3E%3Cpath d='M0 560 Q225 480 450 560 T900 560'/%3E%3Cpath d='M0 640 Q225 560 450 640 T900 640'/%3E%3C/g%3E%3C/svg%3E");
      background-size: cover;
    }
    .svc-content { position: relative; z-index: 1; }

    .sec-label { font-size: .66rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.5rem; overflow: hidden; display: block; }
    .sec-label span { display: block; transform: translateY(100%); transition: transform .7s var(--ease-out) }
    .sec-label.in span { transform: translateY(0) }
    
    .svc-title { font-size: clamp(2.5rem, 6.5vw, 7rem); font-weight: 1000; letter-spacing: -.055em; line-height: .94; color: var(--dark); margin-bottom: clamp(3rem, 8vw, 8rem); max-width: 12ch; }
    .svc-title .lw { overflow: hidden }
    .svc-title .li { transform: translateY(110%); transition: transform 1.1s var(--ease-out) }
    .svc-title .li.in { transform: translateY(0) }
    .svc-title .li:nth-child(1) { transition-delay: .05s }
    .svc-title .li:nth-child(2) { transition-delay: .12s }
    .svc-title .li:nth-child(3) { transition-delay: .19s }

    /* Banners */
    .b1 { display: grid; grid-template-columns: 56fr 44fr; grid-template-rows: clamp(380px, 55vh, 660px); margin-bottom: clamp(2rem, 4vw, 5rem); overflow: hidden; }
    @media(max-width:768px) { .b1 { grid-template-columns: 1fr; grid-template-rows: auto auto } }
    .b1-img { position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%); background: #111; }
    @media(max-width:768px) { .b1-img { clip-path: none; height: 65vw } }
    .b-inner { position: absolute; inset: -12%; will-change: transform }

    .bg1 { background: url('https://installersmia.com/installers%20repo/sign_neon.JPEG') center/cover no-repeat; }
    .bg1::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 55% at 65% 35%, rgba(222, 220, 0, .15) 0%, transparent 70%); }
    .bg2 { background: url('https://installersmia.com/installers%20repo/vinyl_airport%283%29.JPEG') center/cover no-repeat; }
    .bg2::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='500'%3E%3Cg fill='none' stroke='%2300ff88' stroke-width='1.2' opacity='0.14'%3E%3Cpath d='M0 70 Q175 15 350 70 T700 70'/%3E%3Cpath d='M0 140 Q175 85 350 140 T700 140'/%3E%3Cpath d='M0 210 Q175 155 350 210 T700 210'/%3E%3Cpath d='M0 280 Q175 225 350 280 T700 280'/%3E%3Cpath d='M0 350 Q175 295 350 350 T700 350'/%3E%3Cpath d='M0 420 Q175 365 350 420 T700 420'/%3E%3Cpath d='M0 490 Q175 435 350 490 T700 490'/%3E%3C/g%3E%3C/svg%3E"); background-size: cover; background-color: rgba(0, 0, 0, 0.3); }
    .bg3 { background: url('https://installersmia.com/installers%20repo/car_wrap%283%29.jpg') center/cover no-repeat; }
    .bg3::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(55deg, transparent, transparent 26px, rgba(222, 220, 0, .1) 26px, rgba(222, 220, 0, .1) 27px); }

    .b1-info { background: var(--snow); display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 5rem); border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
    .bn { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--acid); display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem; }
    .bn::after { content: ''; flex: 0 0 2.5rem; height: 1px; background: var(--gray) }
    .bname { font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 1000; letter-spacing: -.055em; line-height: .94; color: var(--dark); margin-bottom: 1.2rem; }
    .bdesc { font-size: .88rem; font-weight: 300; color: rgba(60, 60, 59, .6); line-height: 1.72; max-width: 38ch; margin-bottom: 2rem; }
    
    .blink { display: inline-flex; align-items: center; gap: .65rem; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); position: relative; padding-bottom: 2px; }
    .blink::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1.5px; background: var(--acid); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
    .blink:hover::after { transform: scaleX(1) }
    .blink-arr { transition: transform .35s var(--ease-out) }
    .blink:hover .blink-arr { transform: translate(5px, -5px) }

    .b2 { display: grid; grid-template-columns: 44fr 56fr; grid-template-rows: clamp(380px, 55vh, 660px); margin-bottom: clamp(2rem, 4vw, 5rem); margin-left: clamp(0rem, 6vw, 8rem); overflow: hidden; }
    @media(max-width:768px) { .b2 { grid-template-columns: 1fr; grid-template-rows: auto auto; margin-left: 0 } }
    .b2-info { background: var(--dark); display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 5rem); order: 1; }
    .b2 .bn { color: rgba(222, 220, 0, .7) }
    .b2 .bn::after { background: rgba(255, 255, 255, .12) }
    .b2 .bname { color: var(--white) }
    .b2 .bdesc { color: rgba(255, 255, 255, .6) }
    .b2 .blink { color: var(--white) }
    .b2 .blink::after { background: var(--acid) }
    .b2-img { position: relative; overflow: hidden; clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%); order: 2; background: #111; }
    @media(max-width:768px) { .b2-img { clip-path: none; height: 65vw; order: 1 } .b2-info { order: 2 } }

    .b3 { position: relative; height: clamp(360px, 58vh, 680px); overflow: hidden; clip-path: polygon(3% 0, 97% 0, 100% 6%, 100% 94%, 97% 100%, 3% 100%, 0 94%, 0 6%); }
    @media(max-width:768px) { .b3 { clip-path: none; height: 75vw; } }
    .b3-inner { position: absolute; inset: -10%; will-change: transform }
    .b3-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .4) 65%, transparent 100%); }
    @media(max-width:768px) { .b3-ov { background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .4) 100%); } }
    .b3-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 4vw, 5rem); }

    /* ── SERVICE CARDS ──────────────────────────────────────── */
    .cards-section { padding: clamp(4rem, 8vw, 10rem) clamp(1rem, 5vw, 4rem); background: var(--snow); position: relative; z-index: 1; }
    .cards-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(2.5rem, 5vw, 5rem); flex-wrap: wrap; gap: 1.5rem; }
    .cards-title { font-size: clamp(2rem, 4.5vw, 5rem); font-weight: 1000; letter-spacing: -.055em; line-height: .94; }
    .cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--gray); }
    @media(max-width:900px) { .cgrid { grid-template-columns: 1fr 1fr } }
    @media(max-width:540px) { .cgrid { grid-template-columns: 1fr } }
    .sc { background: var(--white); padding: 2.5rem 2rem 2rem; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .5s var(--ease-out); text-decoration: none; color: var(--dark); }
    .sc::before {
      content: ''; position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cg fill='none' stroke='%2300ff88' stroke-width='1.3'%3E%3Cpath d='M0 60 Q125 10 250 60 T500 60'/%3E%3Cpath d='M0 120 Q125 70 250 120 T500 120'/%3E%3Cpath d='M0 180 Q125 130 250 180 T500 180'/%3E%3Cpath d='M0 240 Q125 190 250 240 T500 240'/%3E%3Cpath d='M0 300 Q125 250 250 300 T500 300'/%3E%3Cpath d='M0 360 Q125 310 250 360 T500 360'/%3E%3Cpath d='M0 420 Q125 370 250 420 T500 420'/%3E%3Cpath d='M0 480 Q125 430 250 480 T500 480'/%3E%3C/g%3E%3C/svg%3E");
      background-size: cover; opacity: 0; transform: scale(1.06); transition: opacity .5s, transform .9s var(--ease-out); pointer-events: none;
    }
    .sc:hover::before { opacity: .08; transform: scale(1) }
    .sc:hover { transform: translateY(-5px) }
    .sc-n { font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--acid); margin-bottom: auto; padding-bottom: 2rem; }
    .sc-name { font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 1000; letter-spacing: -.055em; margin-bottom:.8rem; }
    .sc-desc { font-size: .84rem; font-weight: 300; color: rgba(60, 60, 59, .6); line-height: 1.7; margin-bottom: 1.8rem; }
    .sc-arr { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: gap .3s var(--ease-out); }
    .sc:hover .sc-arr { gap: 1rem }

    /* ── PROCESS ────────────────────────────────────────────── */
    .proc-section { padding: clamp(4rem, 10vw, 12rem) clamp(1rem, 5vw, 4rem); background: var(--dark); position: relative; overflow: hidden; z-index: 1; }
    .proc-tex {
      position: absolute; inset: 0; pointer-events: none; opacity: .05;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700'%3E%3Cg fill='none' stroke='%2300ff99' stroke-width='1.4'%3E%3Cpath d='M0 80 Q225 0 450 80 T900 80'/%3E%3Cpath d='M0 200 Q225 120 450 200 T900 200'/%3E%3Cpath d='M0 320 Q225 240 450 320 T900 320'/%3E%3Cpath d='M0 440 Q225 360 450 440 T900 440'/%3E%3Cpath d='M0 560 Q225 480 450 560 T900 560'/%3E%3Cpath d='M0 680 Q225 600 450 680 T900 680'/%3E%3C/g%3E%3C/svg%3E");
      background-size: cover;
    }
    .proc-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: clamp(3rem, 7vw, 8rem); }
    .proc-title { font-size: clamp(2.5rem, 5.5vw, 6.5rem); font-weight: 1000; letter-spacing: -.055em; line-height: .94; color: var(--white); max-width: 12ch; }
    .proc-body { font-size: 1rem; font-weight: 300; color: rgba(255, 255, 255, .6); line-height: 1.75; max-width: 36ch; padding-top: .5rem; }
    
    .steps { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255, 255, 255, .1); }
    @media(max-width:900px) { .steps { grid-template-columns: 1fr 1fr } }
    @media(max-width:540px) { .steps { grid-template-columns: 1fr } }
    .step { padding: 2.5rem 1.5rem 2.5rem 0; border-right: 1px solid rgba(255, 255, 255, .1); }
    @media(max-width:540px) { .step { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .1); } }
    .step:last-child { border-right: none; border-bottom: none; }
    .step-bar { width: 28px; height: 2.5px; background: var(--acid); margin-bottom: 1.8rem }
    .step-n { font-size: .58rem; font-weight: 700; letter-spacing: .2em; color: rgba(255, 255, 255, .3); margin-bottom: .8rem }
    .step-title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: .7rem }
    .step-desc { font-size: .8rem; font-weight: 300; color: rgba(255, 255, 255, .5); line-height: 1.65 }

    /* ── QUOTE BAND ─────────────────────────────────────────── */
    .qband {
      background: var(--acid); padding: clamp(3rem, 8vw, 9rem) clamp(1.5rem, 5vw, 4rem);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
      position: relative; overflow: hidden; z-index: 1;
    }
    .qband::before {
      content: ''; position: absolute; right: -5%; top: -20%; width: 55%; height: 140%;
      background: rgba(255, 255, 255, .04); transform: rotate(-12deg); pointer-events: none;
    }
    .qband-title { font-size: clamp(2rem, 5vw, 5.5rem); font-weight: 1000; letter-spacing: -.055em; line-height: .94; color: var(--dark); max-width: 16ch; }
    .btn-dk {
      display: inline-flex; align-items: center; gap: .8rem; font-family: var(--font); font-size: .76rem;
      font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--white);
      background: var(--dark); padding: 1.1rem 2.8rem; position: relative; overflow: hidden; flex-shrink: 0;
    }
    @media(max-width: 480px) { .btn-dk { width: 100%; justify-content: center; } }
    .btn-dk::before { content: ''; position: absolute; inset: 0; background: var(--white); transform: translateX(-101%); transition: transform .5s var(--ease-io); z-index: 0; }
    .btn-dk:hover { color: var(--dark) }
    .btn-dk:hover::before { transform: translateX(0) }
    .btn-dk span, .btn-dk svg { position: relative; z-index: 1 }

    /* ── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: var(--dark);
      padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
      color: var(--white); border-top: 1px solid rgba(255, 255, 255, .07);
      position: relative; z-index: 1;
    }

    /* Footer Map Block */
    .footer-map {
      display: block; width: 100%; height: 250px; margin-bottom: 4rem; 
      border-radius: 4px; overflow: hidden; position: relative;
      border: 1px solid rgba(255, 255, 255, 0.08); cursor: pointer;
    }
    @media(max-width:768px) { .footer-map { height: 200px; margin-bottom: 3rem; } }
    .map-overlay {
      position: absolute; inset: 0; z-index: 10;
      background: rgba(0, 0, 0, 0.1); transition: background 0.3s;
    }
    .footer-map:hover .map-overlay { background: rgba(0, 0, 0, 0); }

    .ft-email {
      font-size: clamp(1.5rem, 5vw, 6rem); font-weight: 1000; letter-spacing: -.055em;
      line-height: 1; color: rgba(255, 255, 255, .2); display: block; margin-bottom: clamp(3rem, 7vw, 8rem);
      transition: color .5s; word-break: break-all;
    }
    .ft-email:hover { color: var(--acid) }
    
    .ft-grid {
      display: grid; grid-template-columns: 2fr repeat(2, 1fr); gap: clamp(2rem, 4vw, 5rem);
      padding-top: 3rem; border-top: 1px solid rgba(255, 255, 255, .1); margin-bottom: 3rem;
    }
    @media(max-width:900px) { .ft-grid { grid-template-columns: 1fr 1fr } }
    @media(max-width:540px) { .ft-grid { grid-template-columns: 1fr } }

    .ft-logo img { height: 36px; width: auto; object-fit: contain; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
    .ft-tag { font-size: .8rem; font-weight: 300; color: rgba(255, 255, 255, .5); line-height: 1.7; max-width: 26ch; margin-bottom: 1.5rem }
    .ft-addr { font-size: .76rem; color: rgba(255, 255, 255, .4); line-height: 1.65 }
    .ft-addr a { color: inherit; transition: color .25s }
    .ft-addr a:hover { color: var(--acid) }
    .ft-col-h { font-size: .58rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .3); margin-bottom: 1.4rem; }
    .ft-nav { display: flex; flex-direction: column; gap: .65rem }
    .ft-nav a { font-size: .84rem; font-weight: 600; color: rgba(255, 255, 255, .6); transition: color .25s; }
    .ft-nav a:hover { color: var(--acid) }

    .ft-booknow-wrap { display: block; margin-top: 1.5rem; }
    .ft-booknow-wrap .mag-btn { padding: .9rem 2.2rem; font-size: .7rem; opacity: 1; transform: none; }

    .ft-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, .08); }
    .ft-copy { font-size: .7rem; color: rgba(255, 255, 255, .3) }
    .ft-copy strong { color: var(--acid) }
    .ft-cred { font-size: .7rem; color: rgba(255, 255, 255, .2) }

    /* ── SCROLL REVEAL ──────────────────────────────────────── */
    .sr { opacity: 0; transform: translateY(44px); transition: opacity .95s var(--ease-out), transform .95s var(--ease-out) }
    .sr.in { opacity: 1; transform: none }