
      /* ─────────────────────────────────────────
   RESET & TOKENS
───────────────────────────────────────── */
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --bg: #fafaf8;
        --white: #ffffff;
        --surface: #f4f3ef;
        --border: #e8e6e0;
        --accent: linear-gradient(90deg, #ff9a3d 0%, #ff2d95 100%);
        /* --accent: linear-gradient(90deg, #ff9a3d 0%, #ff2d95 100%); */
        --accent-lt: #fff2ec;
        --dark: #0f0f0f;
        --text: #1a1a1a;
        --text2: #4a4a4a;
        --muted: #8a8a8a;
        --green: #16a34a;
        --blue: #2563eb;
        --fh: "Bricolage Grotesque", sans-serif;
        --fb: "Instrument Sans", sans-serif;
        --r: 14px;
        --sh: 0 2px 20px rgba(0, 0, 0, 0.06);
        --sh-lg: 0 12px 56px rgba(0, 0, 0, 0.1);
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--fb);
        overflow-x: hidden;
        line-height: 1.6;
      }
      img {
        display: block;
        width: 100%;
        object-fit: cover;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ::-webkit-scrollbar {
        width: 3px;
      }
      ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 2px;
      }

      /* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 90px;
        padding: 0 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(250, 250, 248, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid transparent;
        transition:
          border-color 0.3s,
          box-shadow 0.3s;
      }
      nav.sc {
        border-color: var(--border);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
      }
      .logo {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-family: var(--fh);
        font-size: clamp(1.2rem, 9vw, 1.9rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        color: var(--text);
      }
      .logo-img {
        width: 130px;
        height: auto;
        display: block;
      }
      .logo-text {
        display: inline-flex;
        align-items: center;
        gap: 0.15em;
      }
      .logo-text span {
        color: var(--accent);
      }
      .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text2);
        transition: color 0.2s;
        position: relative;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        right: 100%;
        height: 1.5px;
        background: var(--accent);
        transition: right 0.3s;
      }
      .nav-links a:hover {
        color: var(--text);
      }
      .nav-links a:hover::after {
        right: 0;
      }
      .nav-cta {
        background: var(--accent);
        color: #fff;
        padding: 10px 24px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255, 92, 0, 0.38);
      }
      .hbg {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
      }
      .hbg span {
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        display: block;
        transition: all 0.3s;
      }
      .hbg.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .hbg.open span:nth-child(2) {
        opacity: 0;
      }
      .hbg.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      /* Mobile Menu */
      .mob-menu {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 999;
        background: #fafaf8;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
      }
      .mob-menu.open {
        display: flex;
      }
      .mob-menu a {
        font-family: var(--fh);
        font-size: clamp(2rem, 5vw, 2.4rem);
        font-weight: 800;
        color: var(--text);
        opacity: 0;
        transform: translateY(20px);
        animation: mUp 0.4s ease forwards;
      }
      .mob-menu a:nth-child(1) {
        animation-delay: 0.05s;
      }
      .mob-menu a:nth-child(2) {
        animation-delay: 0.1s;
      }
      .mob-menu a:nth-child(3) {
        animation-delay: 0.15s;
      }
      .mob-menu a:nth-child(4) {
        animation-delay: 0.2s;
      }
      .mob-menu a:nth-child(5) {
        animation-delay: 0.25s;
      }
      .mob-menu a:nth-child(6) {
        animation-delay: 0.3s;
      }
      @keyframes mUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
      #hero {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 24px 100px;
        text-align: center;
        background: var(--bg);
      }
      /* blobs */
      .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
        will-change: transform;
      }
      /* .b1 {
        width: clamp(300px, 50vw, 700px);
        height: clamp(300px, 50vw, 700px);
        background: radial-gradient(
          circle,
          rgba(255, 92, 0, 0.14) 0%,
          transparent 70%
        );
        top: -15%;
        left: -10%;
        animation: b1m 14s ease-in-out infinite;
      } */
      /* .b2 {
        width: clamp(250px, 45vw, 600px);
        height: clamp(250px, 45vw, 600px);
        background: radial-gradient(
          circle,
          rgba(37, 99, 235, 0.09) 0%,
          transparent 70%
        );
        bottom: -15%;
        right: -10%;
        animation: b2m 17s ease-in-out infinite;
      } */
      /* .b3 {
        width: clamp(150px, 30vw, 380px);
        height: clamp(150px, 30vw, 380px);
        background: radial-gradient(
          circle,
          rgb(255, 94, 0) 0%,
          transparent 90%
        );
        top: 55%;
        left: 55%;
        animation: b3m 11s ease-in-out infinite;
      } */
      @keyframes b1m {
        0%,
        100% {
          transform: translate(0, 0);
        }
        40% {
          transform: translate(5%, 4%);
        }
        70% {
          transform: translate(-3%, 6%);
        }
      }
      @keyframes b2m {
        0%,
        100% {
          transform: translate(0, 0);
        }
        35% {
          transform: translate(-5%, -4%);
        }
        65% {
          transform: translate(3%, -6%);
        }
      }
      @keyframes b3m {
        0%,
        100% {
          transform: translate(-50%, -50%) scale(1);
        }
        50% {
          transform: translate(-48%, -52%) scale(1.1);
        }
      }
      /* grid */
      .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
        background-size: 56px 56px;
        mask-image: radial-gradient(
          ellipse 80% 80% at 50% 50%,
          black 20%,
          transparent 100%
        );
      }
      #pc {
        position: absolute;
        inset: 0;
        pointer-events: none;
        height: 100%;
      }
      .hero-inner {
        position: relative;
        z-index: 2;
        max-width: 980px;
        margin: 0 auto;
        width: 100%;
      }

      /* badge */
      .h-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
        padding: 8px 18px;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text2);
        margin-bottom: 32px;
        animation: fUp 0.7s ease 0.1s both;
      }
      .h-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.4);
        animation: sonar 1.8s ease-out infinite;
      }
      @keyframes sonar {
        0% {
          box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.4);
        }
        70% {
          box-shadow: 0 0 0 9px rgba(255, 92, 0, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(255, 92, 0, 0);
        }
      }

      /* headline */
      .h1 {
        font-family: var(--fh);
        font-size: clamp(3.2rem, 6vw, 8.5rem);
        font-weight: 800;
        line-height: 0.97;
        letter-spacing: -0.04em;
        margin-bottom: 32px;
      }
      .h1-ln {
        display: block;
        overflow: hidden;
      }
      .h1-ln span {
        display: inline-block;
        animation: sUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
        color: var(--accent);
      }
      .h1-ln:nth-child(1) span {
        animation-delay: 0.15s;
      }
      .h1-ln:nth-child(2) span {
        animation-delay: 0.28s;
      }
      .h1-ln:nth-child(3) span {
        animation-delay: 0.41s;
      }
      @keyframes sUp {
        from {
          transform: translateY(105%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .c-base {
        color: var(--accent);
      }
      .c-acc {
        background: linear-gradient(90deg, #ff9a3d 0%, #ff2d95 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
      }
      .c-acc::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 5px;
        /* background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M2 7c40-5 80 4 120-2s60 3 76 1' stroke='%23ff5c00' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
          no-repeat center/100%; */
        transform: scaleX(0);
        transform-origin: left;
        animation: uDraw 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
      }
      @keyframes uDraw {
        to {
          transform: scaleX(1);
        }
      }
      .c-dim {
        color: #c8c5bc;
      }

      /* sub */
      .h-sub {
        color: var(--text2);
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        font-weight: 400;
        line-height: 1.8;
        max-width: 600px;
        margin: 0 auto 44px;
        animation: fUp 0.7s ease 0.55s both;
      }
      .h-sub strong {
        color: var(--text);
        font-weight: 600;
      }

      /* btns */
      .h-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
        animation: fUp 0.7s ease 0.65s both;
      }
      .btn-p {
        background: var(--accent);
        color: #fff;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: clamp(0.9rem, 1.1vw, 1rem);
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition:
          transform 0.25s,
          box-shadow 0.25s;
        position: relative;
        overflow: hidden;
      }
      .btn-p::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          110deg,
          transparent 30%,
          rgba(255, 255, 255, 0.22) 50%,
          transparent 70%
        );
        transform: translateX(-100%);
        transition: transform 0.5s;
      }
      .btn-p:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(255, 92, 0, 0.4);
      }
      .btn-p:hover::before {
        transform: translateX(100%);
      }
      .btn-s {
        background: var(--white);
        color: var(--text);
        padding: 16px 32px;
        border-radius: 12px;
        font-size: clamp(0.9rem, 1.1vw, 1rem);
        font-weight: 600;
        border: 1.5px solid var(--border);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s,
          transform 0.2s;
      }
      .btn-s:hover {
        border-color: var(--accent);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
      }

      /* stat cards row */
      .h-cards {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 60px;
        padding-top: 48px;
        border-top: 1px solid var(--border);
        animation: fUp 0.7s ease 0.8s both;
      }
      .h-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 16px 22px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: var(--sh);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        cursor: default;
      }
      .h-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-lg);
      }
      .hci {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .h-card:nth-child(1) .hci {
        background: #fff0e8;
        color: var(--accent);
      }
      .h-card:nth-child(2) .hci {
        background: #e8f4e8;
        color: var(--green);
      }
      .h-card:nth-child(3) .hci {
        background: #eff6ff;
        color: var(--blue);
      }
      .h-card:nth-child(4) .hci {
        background: #fdf4ff;
        color: #9333ea;
      }
      .hcm .n {
        font-family: var(--fh);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text);
        line-height: 1.1;
      }
      .hcm .l {
        font-size: 0.72rem;
        color: var(--muted);
        font-weight: 400;
      }

      /* scroll hint */
      .scroll-hint {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        animation: fUp 0.7s ease 1.2s both;
        z-index: 2;
      }
      .sl {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--accent), transparent);
        animation: slp 2s ease-in-out infinite;
      }
      @keyframes slp {
        0%,
        100% {
          opacity: 0.3;
          transform: scaleY(0.6);
        }
        50% {
          opacity: 1;
          transform: scaleY(1);
        }
      }
      @keyframes fUp {
        from {
          opacity: 0;
          transform: translateY(28px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
      .marquee {
        background: var(--accent);
        padding: 14px 0;
        overflow: hidden;
      }
      .mtrack {
        display: flex;
        animation: mq 24s linear infinite;
        white-space: nowrap;
      }
      .mitem {
        font-family: var(--fh);
        font-size: 0.88rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0 28px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .mitem::after {
        content: "✦";
        opacity: 0.45;
        margin-left: 16px;
      }
      @keyframes mq {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      /* ─────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────── */
      .section {
        padding: 100px 64px;
      }
      .inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .eyebrow {
        display: inline-block;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
      }
      .sec-h {
        font-family: var(--fh);
        font-size: clamp(2rem, 3.5vw, 2.9rem);
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1.1;
        margin-bottom: 18px;
      }
      .sec-p {
        color: var(--text2);
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        line-height: 1.75;
        font-weight: 400;
      }

      /* reveal */
      .rv {
        opacity: 0;
        transform: translateY(36px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .rv.vis {
        opacity: 1;
        transform: translateY(0);
      }
      .rl {
        opacity: 0;
        transform: translateX(-36px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .rl.vis {
        opacity: 1;
        transform: translateX(0);
      }
      .rr {
        opacity: 0;
        transform: translateX(36px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .rr.vis {
        opacity: 1;
        transform: translateX(0);
      }
      .d1 {
        transition-delay: 0.08s;
      }
      .d2 {
        transition-delay: 0.16s;
      }
      .d3 {
        transition-delay: 0.24s;
      }
      .d4 {
        transition-delay: 0.32s;
      }
      .d5 {
        transition-delay: 0.4s;
      }
      .d6 {
        transition-delay: 0.48s;
      }

      /* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
      #stats {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 52px 64px;
      }
      .stats-g {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      .stat {
        text-align: center;
        padding: 0 16px;
        border-right: 1px solid var(--border);
      }
      .stat:last-child {
        border-right: none;
      }
      .sn {
        font-family: var(--fh);
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
        margin-bottom: 6px;
        color: var(--text);
      }
      .sn .a {
        color: var(--accent);
      }
      .sl2 {
        font-size: 0.8rem;
        color: var(--muted);
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }

      /* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
      #services {
        background: var(--surface);
      }
      .srv-hdr {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 52px;
        gap: 24px;
        flex-wrap: wrap;
      }
      .photo-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 56px;
      }
      .photo-cell {
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 4/3;
      }
      .photo-cell img {
        height: 100%;
        transition: transform 0.6s ease;
      }
      .photo-cell:hover img {
        transform: scale(1.06);
      }
      .srv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .srv-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 36px 28px 30px;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        cursor: default;
      }
      .srv-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .srv-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-lg);
        border-color: transparent;
      }
      .srv-card:hover::before {
        transform: scaleX(1);
      }
      .srv-no {
        font-family: var(--fh);
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: 0.1em;
        margin-bottom: 18px;
      }
      .srv-ico {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 18px;
      }
      .srv-card h3 {
        font-family: var(--fh);
        font-size: clamp(0.95rem, 1.5vw, 1.05rem);
        font-weight: 700;
        margin-bottom: 10px;
      }
      .srv-card p {
        color: var(--text2);
        font-size: 0.875rem;
        line-height: 1.65;
      }
      .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 16px;
      }
      .tag {
        padding: 4px 10px;
        border-radius: 100px;
        background: var(--surface);
        color: var(--muted);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        border: 1px solid var(--border);
      }

      /* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
      #process {
        background: var(--white);
      }
      .proc-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
      }
      .proc-img {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 3/4;
        box-shadow: var(--sh-lg);
      }
      .proc-img img {
        height: 100%;
        object-fit: cover;
      }
      .proc-badge {
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
        background: #fff;
        border-radius: 12px;
        padding: 18px 20px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .pb-ico {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: var(--accent-lt);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .pb-t .t1 {
        font-weight: 700;
        font-size: 0.95rem;
      }
      .pb-t .t2 {
        font-size: 0.8rem;
        color: var(--muted);
      }
      .proc-steps {
        padding-top: 8px;
      }
      .proc-step {
        display: flex;
        gap: 20px;
        padding: 26px 0;
        border-bottom: 1px solid var(--border);
      }
      .proc-step:last-child {
        border-bottom: none;
      }
      .proc-step:hover .ps-n {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
      }
      .ps-n {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--surface);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--fh);
        font-size: 0.85rem;
        font-weight: 800;
        color: var(--text2);
        flex-shrink: 0;
        transition:
          background 0.25s,
          color 0.25s,
          border-color 0.25s;
      }
      .ps-b h4 {
        font-family: var(--fh);
        font-size: clamp(0.9rem, 1.3vw, 1rem);
        font-weight: 700;
        margin-bottom: 7px;
      }
      .ps-b p {
        color: var(--text2);
        font-size: 0.875rem;
        line-height: 1.65;
      }

      /* ─────────────────────────────────────────
   PORTFOLIO / WORK
───────────────────────────────────────── */
      #work {
        background: var(--surface);
      }
      .work-hdr {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 48px;
        gap: 24px;
        flex-wrap: wrap;
      }
      .work-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .work-card {
        border-radius: var(--r);
        overflow: hidden;
        position: relative;
        aspect-ratio: 4/3;
        cursor: pointer;
        border: 1px solid var(--border);
      }
      .wc-bg {
        position: absolute;
        inset: 0;
        transition: transform 0.5s ease;
      }
      .work-card:hover .wc-bg {
        transform: scale(1.05);
      }
      .wc1 .wc-bg {
        background: linear-gradient(
          135deg,
          #0d1b3e 0%,
          #1a2d6e 50%,
          #0a2040 100%
        );
      }
      .wc2 .wc-bg {
        background: linear-gradient(
          135deg,
          #0a2418 0%,
          #103d28 50%,
          #0f2c18 100%
        );
      }
      .wc3 .wc-bg {
        background: linear-gradient(
          135deg,
          #2a0a18 0%,
          #40101a 50%,
          #280a22 100%
        );
      }
      .wc4 .wc-bg {
        background: linear-gradient(
          135deg,
          #0a1828 0%,
          #102040 50%,
          #18102a 100%
        );
      }
      .wc5 .wc-bg {
        background: linear-gradient(
          135deg,
          #1a1e00 0%,
          #283000 50%,
          #0e1e0a 100%
        );
      }
      .wc6 .wc-bg {
        background: linear-gradient(
          135deg,
          #1e000e 0%,
          #300012 50%,
          #100018 100%
        );
      }
      .wc-mock {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.65;
      }
      .wc-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(5, 5, 8, 0.96) 0%,
          rgba(5, 5, 8, 0.2) 55%,
          transparent 100%
        );
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .wc-tag {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 6px;
      }
      .wc-title {
        font-family: var(--fh);
        font-size: clamp(0.95rem, 1.4vw, 1.05rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 3px;
      }
      .wc-sub {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.5);
      }
      .wc-arr {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: #fff;
        opacity: 0;
        transform: translate(6px, -6px);
        transition: all 0.3s;
      }
      .work-card:hover .wc-arr {
        opacity: 1;
        transform: translate(0, 0);
      }

      /* ─────────────────────────────────────────
   NUMBERS / RESULTS
───────────────────────────────────────── */
      #numbers {
        background: var(--dark);
        color: #fff;
        position: relative;
        overflow: hidden;
      }
      #numbers::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 70% 60% at 30% 50%,
          rgba(255, 92, 0, 0.1) 0%,
          transparent 70%
        );
      }
      #numbers::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 50% at 80% 60%,
          rgba(37, 99, 235, 0.07) 0%,
          transparent 70%
        );
      }
      .num-hdr {
        text-align: center;
        margin-bottom: 56px;
        position: relative;
        z-index: 1;
      }
      .num-hdr .sec-h {
        color: #fff;
      }
      .num-hdr .sec-p {
        color: rgba(255, 255, 255, 0.5);
        max-width: 500px;
        margin: 0 auto;
      }
      .num-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
        z-index: 1;
        margin-bottom: 56px;
      }
      .num-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: var(--r);
        padding: 32px 24px;
        transition:
          background 0.3s,
          transform 0.3s;
      }
      .num-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
      }
      .num-val {
        font-family: var(--fh);
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
      }
      .nv-o {
        color: var(--accent);
      }
      .nv-g {
        color: #4ade80;
      }
      .nv-b {
        color: #60a5fa;
      }
      .nv-w {
        color: #fff;
      }
      .num-lbl {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }
      .num-sub {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.3);
        margin-top: 4px;
      }
      .brands {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        z-index: 1;
      }
      .brands-lbl {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        margin-right: 4px;
      }
      .brand-tag {
        padding: 10px 22px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0.04em;
      }

      /* ─────────────────────────────────────────
   TECH STACK
───────────────────────────────────────── */
      #tech {
        background: var(--white);
      }
      .tech-hdr {
        text-align: center;
        margin-bottom: 48px;
      }
      .tech-hdr .sec-p {
        max-width: 460px;
        margin: 0 auto;
      }
      .tech-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
      }
      .tech-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px 16px;
        text-align: center;
        transition:
          transform 0.25s,
          box-shadow 0.25s,
          border-color 0.25s;
        cursor: default;
      }
      .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-lg);
        border-color: var(--accent);
        background: var(--white);
      }
      .tech-card i {
        font-size: 1.8rem;
        margin-bottom: 10px;
        display: block;
      }
      .tech-card span {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text2);
      }

      /* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
      #testi {
        background: var(--surface);
      }
      .testi-hdr {
        text-align: center;
        margin-bottom: 52px;
      }
      .testi-hdr .sec-p {
        max-width: 480px;
        margin: 0 auto;
      }
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .testi-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 32px 28px;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .testi-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-lg);
      }
      .stars {
        color: #f59e0b;
        font-size: 0.9rem;
        margin-bottom: 18px;
        letter-spacing: 2px;
      }
      .tq {
        font-size: clamp(0.9rem, 1.1vw, 0.95rem);
        line-height: 1.75;
        color: var(--text2);
        font-style: italic;
        margin-bottom: 24px;
      }
      .ta {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .tav {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        border: 2px solid var(--border);
      }
      .tav img {
        height: 100%;
        object-fit: cover;
      }
      .tn {
        font-weight: 700;
        font-size: 0.9rem;
      }
      .tr {
        font-size: 0.78rem;
        color: var(--muted);
      }

      /* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
      #faq {
        background: var(--white);
      }
      .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 80px;
        align-items: start;
      }
      .faq-img {
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 1;
        box-shadow: var(--sh-lg);
      }
      .faq-img img {
        height: 100%;
        object-fit: cover;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .fi {
        border-bottom: 1px solid var(--border);
      }
      .fi-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        cursor: pointer;
        font-weight: 600;
        font-size: clamp(0.9rem, 1.1vw, 0.95rem);
        gap: 16px;
        transition: color 0.2s;
        user-select: none;
      }
      .fi-q:hover {
        color: var(--accent);
      }
      .fi-ic {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--surface);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        flex-shrink: 0;
        transition:
          background 0.25s,
          transform 0.3s,
          border-color 0.25s;
      }
      .fi.open .fi-ic {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
        transform: rotate(45deg);
      }
      .fi-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          padding 0.3s;
        color: var(--text2);
        font-size: 0.875rem;
        line-height: 1.75;
      }
      .fi.open .fi-a {
        max-height: 200px;
        padding-bottom: 20px;
      }

      /* ─────────────────────────────────────────
   TEAM
───────────────────────────────────────── */
      #team {
        background: var(--surface);
      }
      .team-hdr {
        text-align: center;
        margin-bottom: 52px;
      }
      .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .team-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r);
        overflow: hidden;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-lg);
      }
      .team-img {
        aspect-ratio: 3/4;
        overflow: hidden;
      }
      .team-img img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .team-card:hover .team-img img {
        transform: scale(1.04);
      }
      .team-info {
        padding: 20px 20px 22px;
      }
      .team-name {
        font-family: var(--fh);
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        font-weight: 700;
        margin-bottom: 3px;
      }
      .team-role {
        font-size: 0.8rem;
        color: var(--muted);
        margin-bottom: 14px;
      }
      .team-soc {
        display: flex;
        gap: 8px;
      }
      .tsoc {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: var(--surface);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 0.8rem;
        transition: all 0.2s;
      }
      .tsoc:hover {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
      }

      /* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
      #cta {
        background: var(--bg);
        padding: 100px 64px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      #cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 70% 50% at 50% 50%,
          rgba(255, 92, 0, 0.07) 0%,
          transparent 70%
        );
      }
      .cta-inner {
        position: relative;
        max-width: 700px;
        margin: 0 auto;
      }
      .cta-h {
        font-family: var(--fh);
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.05;
        margin-bottom: 20px;
      }
      .cta-h .ca {
        color: var(--accent);
      }
      .cta-p {
        color: var(--text2);
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        line-height: 1.75;
        margin-bottom: 40px;
      }
      .cta-form {
        display: flex;
        gap: 12px;
        max-width: 480px;
        margin: 0 auto 14px;
      }
      .cta-inp {
        flex: 1;
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 10px;
        padding: 14px 18px;
        font-family: var(--fb);
        font-size: 0.9rem;
        color: var(--text);
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .cta-inp::placeholder {
        color: var(--muted);
      }
      .cta-inp:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1);
      }
      .cta-btn {
        background: var(--accent);
        color: #fff;
        border: none;
        padding: 14px 28px;
        border-radius: 10px;
        font-family: var(--fb);
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        white-space: nowrap;
      }
      .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(255, 92, 0, 0.42);
      }
      .cta-note {
        font-size: 0.78rem;
        color: var(--muted);
      }

      /* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
      footer {
        background: var(--dark);
        color: #fff;
        padding: 72px 64px 36px;
      }
      .ft {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 52px;
      }
      .fb-logo {
        font-family: var(--fh);
        font-size: clamp(1.2rem, 1.8vw, 1.5rem);
        font-weight: 800;
        letter-spacing: -0.02em;
      }
      .fb-logo span {
        color: var(--accent);
      }
      .fb-desc {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.875rem;
        line-height: 1.7;
        margin: 16px 0 24px;
        max-width: 270px;
      }
      .f-soc {
        display: flex;
        gap: 10px;
      }
      .fsoc-a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.85rem;
        transition: all 0.2s;
      }
      .fsoc-a:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
      }
      .fc h5 {
        font-family: var(--fh);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 20px;
      }
      .fc ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .fc ul a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.875rem;
        transition: color 0.2s;
      }
      .fc ul a:hover {
        color: #fff;
      }
      .fb-btm {
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(255, 255, 255, 0.28);
        font-size: 0.78rem;
        flex-wrap: wrap;
        gap: 12px;
      }
      .fb-btm a {
        color: rgba(255, 255, 255, 0.28);
        transition: color 0.2s;
      }
      .fb-btm a:hover {
        color: rgba(255, 255, 255, 0.7);
      }
      .fb-links {
        display: flex;
        gap: 20px;
      }

      /* ─────────────────────────────────────────
   RESPONSIVE — TABLET (≤1024px)
───────────────────────────────────────── */
      @media (max-width: 1024px) {
        nav {
          padding: 0 32px;
        }
        .section {
          padding: 80px 32px;
        }
        #stats {
          padding: 44px 32px;
        }
        #cta {
          padding: 80px 32px;
        }
        footer {
          padding: 60px 32px 32px;
        }
        .srv-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .photo-row {
          grid-template-columns: repeat(2, 1fr);
        }
        .work-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .num-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .testi-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .tech-grid {
          grid-template-columns: repeat(4, 1fr);
        }
        .team-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .ft {
          grid-template-columns: 1fr 1fr;
          gap: 36px;
        }
        .proc-layout {
          grid-template-columns: 1fr;
        }
        .proc-img {
          aspect-ratio: 16/9;
        }
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .faq-img {
          display: none;
        }
        .stats-g {
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
        }
        .stat {
          border-right: none;
          padding: 12px 0;
          border-bottom: 1px solid var(--border);
        }
        .stat:nth-child(odd) {
          border-right: 1px solid var(--border);
        }
        .stat:nth-last-child(-n + 2) {
          border-bottom: none;
        }
      }

      /* ─────────────────────────────────────────
   RESPONSIVE — MOBILE (≤768px)
───────────────────────────────────────── */
      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
          height: 60px;
        }
        .nav-links,
        .nav-cta {
          display: none;
        }
        .hbg {
          display: flex;
        }
        .section {
          padding: 64px 20px;
        }
        #stats {
          padding: 40px 20px;
        }
        #cta {
          padding: 64px 20px;
        }
        footer {
          padding: 52px 20px 28px;
        }
        .h1 {
          font-size: clamp(2.8rem, 12vw, 4.8rem);
          letter-spacing: -0.03em;
        }
        .h-sub {
          font-size: 1rem;
        }
        .h-btns {
          flex-direction: column;
          align-items: center;
        }
        .btn-p,
        .btn-s {
          width: 100%;
          max-width: 320px;
          justify-content: center;
        }
        .h-cards {
          gap: 10px;
        }
        .h-card {
          padding: 12px 16px;
        }
        .hcm .n {
          font-size: 1rem;
        }
        .stats-g {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }
        .stat {
          border-right: none;
          padding: 12px 0;
          border-bottom: 1px solid var(--border);
        }
        .stat:nth-child(odd) {
          border-right: 1px solid var(--border);
        }
        .stat:nth-last-child(-n + 2) {
          border-bottom: none;
        }
        .srv-grid {
          grid-template-columns: 1fr;
        }
        .photo-row {
          grid-template-columns: repeat(2, 1fr);
        }
        .work-grid {
          grid-template-columns: 1fr;
        }
        .num-grid {
          grid-template-columns: 1fr;
        }
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .tech-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .team-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .ft {
          grid-template-columns: 1fr;
        }
        .cta-form {
          flex-direction: column;
        }
        .cta-inp,
        .cta-btn {
          width: 100%;
        }
        .srv-hdr {
          flex-direction: column;
          align-items: flex-start;
        }
        .work-hdr {
          flex-direction: column;
          align-items: flex-start;
        }
        .testi-hdr,
        .num-hdr,
        .team-hdr,
        .tech-hdr {
          text-align: left;
        }
        .testi-hdr .sec-p,
        .num-hdr .sec-p,
        .tech-hdr .sec-p {
          margin: 0;
        }
        .brands {
          justify-content: flex-start;
        }
      }

      /* ─────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤480px)
───────────────────────────────────────── */
      @media (max-width: 480px) {
        .h1 {
          font-size: clamp(2.4rem, 11vw, 3.6rem);
        }
        .h-cards {
          flex-direction: column;
          align-items: stretch;
        }
        .h-card {
          justify-content: flex-start;
        }
        .tech-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .team-grid {
          grid-template-columns: 1fr;
        }
        .photo-row {
          grid-template-columns: 1fr;
        }
      }