    :root {
      --bg:      #f8f8f8;
      --ink:     #0a0d14;
      --accent:  #7ba2c3;
      --accent2: #5f8eb4;
      --panel:   #eceff2;
      --white:   #ffffff;
      --muted:   #5a6170;
      --line:    #e8e8e8;
      --max:     1280px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    ::selection { background: var(--accent); color: #fff; }
    body {
      font-family: 'Manrope', system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

    /* ── NAV ── */
    .nav-bar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: background .35s, box-shadow .35s;
    }
    .nav-bar.scrolled {
      background: rgba(248,248,248,.96);
      box-shadow: 0 1px 0 var(--line);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
    }
    /* Nav links white over dark hero */
    .nav-bar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.8); }
    .nav-bar:not(.scrolled) .nav-links a:hover { color: #fff; }
    .nav-bar:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,.7); }
    .nav-bar:not(.scrolled) .nav-cta {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff;
    }
    .nav-bar:not(.scrolled) .nav-cta:hover { background: var(--accent); border-color: var(--accent); }
    .nav-bar:not(.scrolled) .nav-hamburger span { background: #fff; }
    /* Active nav link */
    .nav-links a.active { color: var(--ink); }
    .nav-links a.active::after { width: 100%; }
    .nav-bar:not(.scrolled) .nav-links a.active { color: #fff; }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 76px; gap: 24px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0;
    }
    .nav-logo img {
      height: 38px; width: auto;
    }
    .nav-logo-fallback {
      height: 38px; display: flex; align-items: center;
      font-family: 'Sora', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      letter-spacing: -.01em;
    }
    .nav-logo-hidden { display: none; }
    .nav-links {
      display: flex; gap: 36px;
      font-size: .82rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--muted);
    }
    .nav-links a {
      position: relative; padding-bottom: 3px;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a::after {
      content: ''; position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1.5px;
      background: var(--accent);
      transition: width .25s;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px;
      background: var(--ink);
      color: var(--white);
      border-radius: 6px;
      font-size: .82rem; font-weight: 600;
      letter-spacing: .05em; text-transform: uppercase;
      transition: background .2s;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--accent2); }

    /* ── HERO ── */
    .hero {
      height: 100svh;
      min-height: 640px;
      position: relative;
      overflow: hidden;
      display: flex; align-items: flex-end;
    }
    .hero-bg {
      position: absolute; inset: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 60%;
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,13,20,.15) 0%,
        rgba(10,13,20,.05) 30%,
        rgba(10,13,20,.55) 70%,
        rgba(10,13,20,.88) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 1;
      padding-bottom: 80px;
      width: 100%;
    }
    .hero-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
    }
    .hero-text { max-width: 680px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(255,255,255,.7);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: ''; width: 28px; height: 1px;
      background: var(--accent);
    }
    .hero-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5.8rem);
      font-weight: 800;
      line-height: .95;
      letter-spacing: -.03em;
      color: #fff;
      margin-bottom: 28px;
    }
    .hero-title .accent-word {
      color: var(--accent);
    }
    .hero-sub {
      font-size: 1.05rem; font-weight: 400;
      color: rgba(255,255,255,.7);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .hero-btns {
      display: flex; gap: 12px; flex-wrap: wrap;
    }
    .btn-hero-main {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 26px;
      background: var(--accent);
      color: #fff;
      border-radius: 6px;
      font-weight: 700; font-size: .88rem;
      letter-spacing: .04em;
      transition: background .2s, transform .15s;
    }
    .btn-hero-main:hover { background: var(--accent2); transform: translateY(-1px); }
    .btn-hero-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 26px;
      border: 1px solid rgba(255,255,255,.3);
      color: rgba(255,255,255,.85);
      border-radius: 6px;
      font-weight: 600; font-size: .88rem;
      letter-spacing: .04em;
      transition: border-color .2s, color .2s;
    }
    .btn-hero-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; }
    .hero-stats {
      display: flex; gap: 0;
      flex-shrink: 0;
    }
    .hstat {
      padding: 0 28px;
      border-left: 1px solid rgba(255,255,255,.15);
      text-align: right;
    }
    .hstat:first-child { border-left: none; }
    .hstat-num {
      font-family: 'Sora', sans-serif;
      font-size: 2.2rem; font-weight: 800;
      color: #fff; line-height: 1;
      margin-bottom: 4px;
    }
    .hstat-num span { color: var(--accent); }
    .hstat-label {
      font-size: .7rem; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.45);
    }

    /* ── SECTION COMMONS ── */
    .section { padding: 96px 0; }
    .section-alt { background: var(--white); }
    .section-dark { background: var(--ink); }

    .sec-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .7rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .sec-label::before { content: ''; width: 22px; height: 1px; background: var(--accent); }

    .sec-heading {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 3.8vw, 3.4rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -.025em;
    }
    .sec-heading-light { color: #fff; }

    .sec-sub {
      font-size: 1rem; color: var(--muted);
      line-height: 1.75; max-width: 560px;
      margin-top: 14px;
    }
    .sec-sub-light { color: rgba(255,255,255,.5); }

    /* ── PARTNER STRIP ── */
    .partners-strip {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 28px 0;
    }
    .partners-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .partners-label {
      font-size: .7rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--muted);
      flex-shrink: 0;
    }
    .partner-logos {
      display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
    }
    .p-logo img {
      height: 30px; width: auto;
      filter: grayscale(1) opacity(.55);
      transition: filter .2s;
    }
    .p-logo:hover img { filter: grayscale(0) opacity(1); }
    .p-logo-text {
      font-family: 'Sora', sans-serif;
      font-size: .85rem; font-weight: 700;
      color: var(--muted); opacity: .55;
      letter-spacing: .04em;
      transition: opacity .2s;
    }
    .p-logo-text:hover { opacity: 1; color: var(--accent2); }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-body {
      font-size: 1rem; color: var(--muted);
      line-height: 1.8; margin-top: 20px;
    }
    .fact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; margin-top: 32px;
    }
    .fact {
      background: var(--panel);
      border-radius: 8px;
      padding: 16px 18px;
    }
    .fact-label {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 4px;
    }
    .fact-val {
      font-size: .92rem; font-weight: 600; color: var(--ink);
    }
    .about-cta-row {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-top: 32px;
    }
    .btn-solid {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 22px;
      background: var(--ink); color: #fff;
      border-radius: 6px;
      font-weight: 600; font-size: .84rem; letter-spacing: .04em;
      transition: background .2s;
    }
    .btn-solid:hover { background: var(--accent2); }
    .btn-border {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 22px;
      border: 1.5px solid var(--line); color: var(--ink);
      border-radius: 6px;
      font-weight: 600; font-size: .84rem; letter-spacing: .04em;
      transition: border-color .2s, color .2s;
    }
    .btn-border:hover { border-color: var(--accent); color: var(--accent2); }

    .about-image-stack {
      position: relative;
    }
    .about-img-main {
      width: 100%; aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 10px;
    }
    .about-img-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--accent);
      color: #fff;
      padding: 20px 22px;
      border-radius: 10px;
      text-align: center;
      min-width: 130px;
    }
    .badge-num {
      font-family: 'Sora', sans-serif;
      font-size: 2.4rem; font-weight: 800;
      line-height: 1; margin-bottom: 4px;
    }
    .badge-text {
      font-size: .72rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      opacity: .85;
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow .25s, transform .25s;
    }
    .service-card:hover {
      box-shadow: 0 12px 40px rgba(10,13,20,.08);
      transform: translateY(-4px);
    }
    .service-img-wrap { overflow: hidden; }
    .service-img {
      width: 100%; height: 200px;
      object-fit: cover;
      transition: transform .55s ease;
    }
    .service-card:hover .service-img { transform: scale(1.06); }
    .service-body { padding: 24px; }
    .service-num {
      font-family: 'Sora', sans-serif;
      font-size: .7rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }
    .service-card h3 {
      font-family: 'Sora', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: .88rem; color: var(--muted); line-height: 1.7;
    }
    .service-tags {
      display: flex; flex-wrap: wrap; gap: 6px;
      margin-top: 16px;
    }
    .stag {
      padding: 4px 10px;
      background: var(--panel);
      border-radius: 4px;
      font-size: .72rem; font-weight: 600;
      color: var(--muted); letter-spacing: .06em;
    }

    /* ── PROCESS ── */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 52px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px;
      overflow: hidden;
    }
    .proc-step {
      padding: 36px 28px;
      border-right: 1px solid rgba(255,255,255,.06);
      transition: background .25s;
    }
    .proc-step:last-child { border-right: none; }
    .proc-step:hover { background: rgba(255,255,255,.04); }
    .proc-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(123,162,195,.3);
      display: grid; place-items: center;
      font-family: 'Sora', sans-serif;
      font-size: .95rem; font-weight: 700;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .proc-step h3 {
      font-family: 'Sora', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: #fff; margin-bottom: 10px;
    }
    .proc-step p {
      font-size: .84rem; color: rgba(255,255,255,.4);
      line-height: 1.7;
    }

    /* ── GALLERY ── */
    .gallery-head {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
    }
    .gallery-link {
      font-size: .82rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--accent2);
      display: inline-flex; align-items: center; gap: 6px;
      flex-shrink: 0;
      transition: color .2s;
    }
    .gallery-link:hover { color: var(--accent); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 8px;
    }
    .gal-cell {
      overflow: hidden;
      border-radius: 8px;
      background: var(--panel);
      position: relative;
      cursor: pointer;
    }
    .gal-cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gal-cell:nth-child(4) { grid-column: span 2; }
    .gal-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
      min-height: 220px;
    }
    .gal-cell:nth-child(1) img { min-height: 460px; }
    .gal-cell:hover img { transform: scale(1.04); }

    /* ── VIDEO ── */
    .video-section { padding: 0; }
    .video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      border-radius: 0;
      background: var(--ink);
    }
    .video-wrap video {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: .85;
    }
    .video-overlay {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: rgba(10,13,20,.45);
      gap: 20px;
    }
    .play-btn {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      border: 1.5px solid rgba(255,255,255,.4);
      display: grid; place-items: center;
      cursor: pointer;
      transition: background .2s, transform .2s;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    .play-btn:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
    .play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
    .video-caption {
      font-family: 'Sora', sans-serif;
      font-size: 1.2rem; font-weight: 700;
      color: #fff; letter-spacing: -.01em;
    }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; margin-top: 52px;
    }
    .testi {
      background: var(--panel);
      border-radius: 10px;
      padding: 28px;
    }
    .testi-stars {
      display: flex; gap: 3px; margin-bottom: 16px;
    }
    .testi-stars svg { width: 15px; height: 15px; fill: var(--accent); }
    .testi p {
      font-size: .93rem; color: var(--ink-soft, #1f2838);
      line-height: 1.75; margin-bottom: 20px;
      font-style: italic;
    }
    .testi-author {
      display: flex; align-items: center; gap: 12px;
    }
    .testi-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--accent);
      display: grid; place-items: center;
      font-family: 'Sora', sans-serif;
      font-size: .95rem; font-weight: 700;
      color: #fff; flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: .88rem; }
    .testi-role { font-size: .76rem; color: var(--muted); }

    /* ── TRUST PILLARS ── */
    .pillars-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 20px; margin-top: 52px;
    }
    .pillar-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 28px 22px;
      transition: box-shadow .25s;
    }
    .pillar-card:hover { box-shadow: 0 8px 28px rgba(10,13,20,.07); }
    .pillar-icon {
      width: 46px; height: 46px;
      border-radius: 8px;
      background: var(--panel);
      display: grid; place-items: center;
      margin-bottom: 16px;
    }
    .pillar-icon svg { width: 22px; height: 22px; color: var(--accent2); }
    .pillar-card h4 {
      font-family: 'Sora', sans-serif;
      font-size: .98rem; font-weight: 700;
      margin-bottom: 8px;
    }
    .pillar-card p { font-size: .84rem; color: var(--muted); line-height: 1.65; }

    /* ── CTA ── */
    .cta-band {
      padding: 88px 0;
      background: var(--ink);
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 50%; height: 100%;
      background: linear-gradient(to left, rgba(123,162,195,.07), transparent);
    }
    .cta-inner {
      display: grid; grid-template-columns: 1.1fr .9fr;
      gap: 80px; align-items: center;
      position: relative; z-index: 1;
    }
    .cta-desc {
      font-size: .97rem; color: rgba(255,255,255,.5);
      line-height: 1.8; margin-top: 18px;
    }
    .cta-btns {
      display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
    }
    .btn-accent {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px;
      background: var(--accent);
      color: #fff; border-radius: 6px;
      font-weight: 700; font-size: .88rem; letter-spacing: .04em;
      transition: background .2s;
    }
    .btn-accent:hover { background: var(--accent2); }
    .btn-ghost-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px;
      border: 1.5px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.75);
      border-radius: 6px;
      font-weight: 600; font-size: .88rem; letter-spacing: .04em;
      transition: border-color .2s, color .2s;
    }
    .btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: #fff; }

    .contact-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 10px;
      padding: 28px;
    }
    .contact-row {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-row:first-child { padding-top: 0; }
    .ci {
      width: 40px; height: 40px;
      border-radius: 8px;
      background: rgba(123,162,195,.1);
      border: 1px solid rgba(123,162,195,.15);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .ci svg { width: 18px; height: 18px; color: var(--accent); }
    .c-label {
      font-size: .65rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.3); margin-bottom: 2px;
    }
    .c-val {
      font-size: .92rem; font-weight: 500; color: #fff;
    }
    .c-val a { color: #fff; transition: color .2s; }
    .c-val a:hover { color: var(--accent); }

    /* ── FOOTER ── */
    footer {
      background: #07090d;
      padding: 36px 0;
      border-top: 1px solid rgba(255,255,255,.05);
    }
    .foot-inner {
      display: flex; justify-content: space-between; align-items: center;
      gap: 20px; flex-wrap: wrap;
    }
    .foot-copy {
      font-size: .78rem; color: rgba(255,255,255,.3);
    }
    .foot-links {
      display: flex; gap: 24px;
      font-size: .75rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.25);
    }
    .foot-links a:hover { color: var(--accent); }

    /* ── MARQUEE ── */
    .marquee {
      background: var(--accent2);
      padding: 13px 0;
      overflow: hidden; white-space: nowrap;
    }
    .marquee-track {
      display: inline-flex;
      animation: mq 30s linear infinite;
    }
    @keyframes mq {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .mq-item {
      display: inline-flex; align-items: center; gap: 20px;
      padding: 0 32px;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: rgba(255,255,255,.9);
    }
    .mq-item::after { content: '·'; color: rgba(255,255,255,.4); }

    /* ── SCROLL REVEAL ── */
    .rev {
      opacity: 0; transform: translateY(24px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .rev.in { opacity: 1; transform: none; }
    .rd1 { transition-delay: .1s; }
    .rd2 { transition-delay: .2s; }
    .rd3 { transition-delay: .3s; }
    .rd4 { transition-delay: .4s; }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      border: none; background: none; cursor: pointer;
      padding: 8px; border-radius: 6px;
      transition: background .2s;
    }
    .nav-hamburger:hover { background: var(--panel); }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--ink); border-radius: 2px;
      transition: transform .3s, opacity .3s;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE DRAWER ── */
    .mobile-drawer {
      display: none;
      position: fixed; inset: 0; z-index: 200;
    }
    .mobile-drawer.open { display: block; }
    .drawer-backdrop {
      position: absolute; inset: 0;
      background: rgba(10,13,20,.5);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      animation: fade-in .25s ease;
    }
    .drawer-panel {
      position: absolute; top: 0; right: 0; bottom: 0;
      width: min(320px, 88vw);
      background: var(--white);
      padding: 0;
      display: flex; flex-direction: column;
      animation: slide-in .3s cubic-bezier(.32,.72,0,1);
      padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slide-in { from { transform: translateX(100%); } to { transform: none; } }
    .drawer-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--line);
    }
    .drawer-logo {
      font-family: 'Sora', sans-serif;
      font-size: 1rem; font-weight: 700;
    }
    .drawer-close {
      width: 36px; height: 36px;
      border: none; background: var(--panel); cursor: pointer;
      border-radius: 6px; display: grid; place-items: center;
    }
    .drawer-close svg { width: 16px; height: 16px; color: var(--ink); }
    .drawer-nav {
      flex: 1; padding: 16px 0;
      display: flex; flex-direction: column;
    }
    .drawer-nav a {
      display: block;
      padding: 14px 24px;
      font-size: 1rem; font-weight: 600;
      color: var(--ink);
      border-bottom: 1px solid var(--line);
      transition: background .15s, color .15s;
      letter-spacing: .01em;
    }
    .drawer-nav a:hover { background: var(--panel); color: var(--accent2); }
    .drawer-footer {
      padding: 20px 24px;
      border-top: 1px solid var(--line);
      display: flex; flex-direction: column; gap: 10px;
    }
    .drawer-cta-call {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px;
      background: var(--accent);
      color: #fff; border-radius: 8px;
      font-weight: 700; font-size: .92rem;
      transition: background .2s;
    }
    .drawer-cta-call:hover { background: var(--accent2); }
    .drawer-cta-mail {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px;
      border: 1.5px solid var(--line);
      color: var(--ink); border-radius: 8px;
      font-weight: 600; font-size: .88rem;
      transition: border-color .2s;
    }
    .drawer-cta-mail:hover { border-color: var(--accent); }

    /* ── VIDEO OVERLAY FADE ── */
    .video-overlay { transition: opacity .4s ease; }
    .hidden-overlay { opacity: 0 !important; pointer-events: none !important; }

    /* ── SCROLL INDICATOR ── */
    .scroll-indicator {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      opacity: 0;
      animation: fade-up-in 1s ease 1.2s forwards;
    }
    @keyframes fade-up-in {
      from { opacity: 0; transform: translateX(-50%) translateY(8px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    .scroll-indicator span {
      font-size: .62rem; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }
    .scroll-arrow {
      width: 28px; height: 44px;
      border: 1.5px solid rgba(255,255,255,.25);
      border-radius: 14px;
      position: relative;
    }
    .scroll-arrow::before {
      content: '';
      position: absolute;
      top: 6px; left: 50%; transform: translateX(-50%) translateY(0);
      width: 4px; height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,.7);
      animation: scroll-dot 2s ease infinite;
    }
    @keyframes scroll-dot {
      0%   { transform: translateX(-50%) translateY(0);  opacity: 1; }
      100% { transform: translateX(-50%) translateY(18px); opacity: 0; }
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 300;
      background: rgba(10,13,20,.92);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      align-items: center; justify-content: center;
      padding: 20px;
      animation: fade-in .2s ease;
    }
    .lightbox.open { display: flex; }
    .lightbox-img {
      max-width: 100%; max-height: 90svh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 32px 80px rgba(0,0,0,.6);
      animation: lb-zoom .25s cubic-bezier(.32,.72,0,1);
    }
    @keyframes lb-zoom {
      from { transform: scale(.92); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }
    .lightbox-close {
      position: absolute; top: 20px; right: 20px;
      width: 44px; height: 44px;
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: grid; place-items: center;
      cursor: pointer; color: #fff;
    }
    .lightbox-close svg { width: 18px; height: 18px; }
    .lightbox-close:hover { background: rgba(255,255,255,.18); }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: grid; place-items: center;
      cursor: pointer; color: #fff;
    }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
    .lightbox-nav:hover { background: rgba(255,255,255,.18); }
    .lightbox-nav svg { width: 18px; height: 18px; }
    .lightbox-counter {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      font-size: .72rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.4);
    }
    .gal-cell { cursor: zoom-in; }

    /* ── FLOATING MOBILE CTA ── */
    .mobile-cta-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 90;
      background: var(--white);
      border-top: 1px solid var(--line);
      padding: 12px 20px;
      padding-bottom: max(12px, env(safe-area-inset-bottom));
      gap: 10px;
    }
    .mobile-cta-bar a {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: 7px;
      padding: 13px 8px;
      border-radius: 8px;
      font-weight: 700; font-size: .88rem;
    }
    .mobile-cta-call {
      background: var(--accent); color: #fff;
    }
    .mobile-cta-mail {
      background: var(--panel); color: var(--ink);
      border: 1.5px solid var(--line);
    }
    .mobile-cta-bar svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1080px) {
      .wrap { padding: 0 24px; }
      .services-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .proc-step:nth-child(2) { border-right: none; }
      .proc-step:nth-child(3) { border-top: 1px solid rgba(255,255,255,.06); }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image-stack { display: none; }
      .cta-inner { grid-template-columns: 1fr; gap: 36px; }
      .hero-stats { display: none; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gal-cell:nth-child(1) { grid-column: span 2; grid-row: auto; }
      .gal-cell:nth-child(4) { grid-column: auto; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 700px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-cta-bar { display: flex; }
      body { padding-bottom: 80px; }
      .section { padding: 56px 0; }
      .wrap { padding: 0 16px; }
      .services-grid, .pillars-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
      .proc-step { border-right: none; border-top: 1px solid rgba(255,255,255,.06); }
      .proc-step:first-child { border-top: none; }
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
      .gal-cell img { min-height: 160px; }
      .gal-cell:nth-child(1) img { min-height: 240px; }
      .hero { min-height: 100svh; }
      .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
      .hero-sub { font-size: .92rem; }
      .hero-btns { flex-direction: column; gap: 10px; }
      .hero-btns a { justify-content: center; padding: 14px; }
      .hero-content { padding-bottom: 32px; }
      .partners-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .sec-heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }
      .cta-band { padding: 64px 0; }
      .about-cta-row { flex-direction: column; }
      .about-cta-row a { text-align: center; justify-content: center; }
      .fact-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
      .footer { padding: 28px 0; }
      .foot-inner { flex-direction: column; gap: 12px; text-align: center; }
      .foot-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
      .testi { padding: 20px; }
      .cta-btns { flex-direction: column; }
      .cta-btns a { justify-content: center; }
      .contact-card { padding: 20px; }
      .pillar-card { padding: 20px 18px; }
      .service-img { height: 180px; }
      .scroll-indicator { display: none; }
      /* Show about image on mobile with flat layout */
      .about-image-stack { display: block; margin-top: 32px; }
      .about-img-main { aspect-ratio: 16/9; width: 100%; border-radius: 8px; }
      .about-img-badge {
        position: static; bottom: auto; right: auto;
        display: inline-flex; gap: 12px; align-items: center;
        margin-top: 12px; padding: 12px 16px;
        border-radius: 8px; min-width: 0;
      }
      .badge-num { font-size: 1.6rem; margin-bottom: 0; }
      /* Touch-friendly tap targets */
      button, a { touch-action: manipulation; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
      .gal-cell:nth-child(1) { grid-column: auto; grid-row: auto; }
      .gal-cell:nth-child(4) { grid-column: auto; }
      .gal-cell img, .gal-cell:nth-child(1) img { min-height: 200px; }
      .fact-grid { grid-template-columns: 1fr; gap: 8px; }
      .hero-title { font-size: clamp(1.9rem, 9vw, 2.4rem); }
      .sec-heading { font-size: clamp(1.6rem, 7.5vw, 2rem); }
      .wrap { padding: 0 14px; }
    }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Dynamic projects compatibility (existing JS output) */
.projects-dynamic-wrap { margin-top: 36px; }
.projects-dynamic-wrap .project-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.projects-dynamic-wrap .project-grid-all {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.projects-dynamic-wrap .project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.projects-dynamic-wrap .project-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  padding: 14px 14px 6px;
}
.projects-dynamic-wrap .project-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 14px 14px;
}
.projects-dynamic-wrap .project-card img,
.projects-dynamic-wrap .project-card video,
.projects-dynamic-wrap .project-card .video-preview,
.projects-dynamic-wrap .project-card .video-preview img,
.projects-dynamic-wrap .project-card .video-live-player {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.projects-dynamic-wrap .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}
.projects-dynamic-wrap .before-after figure { margin: 0; }
.projects-dynamic-wrap .before-after figcaption {
  margin-top: 4px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.projects-dynamic-wrap .before-after img {
  height: 180px;
  border-radius: 6px;
}

@media (max-width: 1100px) {
  .projects-dynamic-wrap .project-grid-home,
  .projects-dynamic-wrap .project-grid-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .projects-dynamic-wrap .project-grid-home,
  .projects-dynamic-wrap .project-grid-all {
    grid-template-columns: 1fr;
  }
}
