       :root {
        --teal: #00a99d;
        --teal-light: #05dacc;
        --teal-glow: rgba(0, 169, 157, 0.12);
        --teal-mid: rgba(0, 169, 157, 0.25);
        --orange: #f2971e;
        --orange-glow: rgba(242, 151, 30, 0.1);
        --bg: #fafafc;
        --bg2: #f0f1f5;
        --card: #fff;
        --dark: #0c1018;
        --dark2: #111822;
        --dark3: #18222e;
        --text: #1a1f2e;
        --text2: #5e6680;
        --text3: #a0a8b8;
        --border: #e4e7ee;
      }
      html.dark {
        --bg: #0c1018;
        --bg2: #111822;
        --card: #151d2a;
        --text: #e4e8f0;
        --text2: #7d8ba0;
        --text3: #3a4558;
        --border: #1e2a3a;
      }
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html.lenis,
      html.lenis body {
        height: auto;
      }
      .lenis.lenis-smooth {
        scroll-behavior: auto !important;
      }
      .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
      }
      body {
        font-family: "Manrope", sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
        transition:
          background 0.5s,
          color 0.5s;
      }
      body.is-loading {
        overflow: hidden;
        height: 100vh;
      }
      ::selection {
        background: var(--teal);
        color: #fff;
      }
      ::-webkit-scrollbar {
        width: 0;
      }

      .loader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
      }
      .loader-col {
        position: absolute;
        top: 0;
        bottom: 0;
        background: var(--dark);
        will-change: transform;
      }
      .loader-col:nth-child(1) {
        left: 0;
        width: 20%;
      }
      .loader-col:nth-child(2) {
        left: 20%;
        width: 20%;
      }
      .loader-col:nth-child(3) {
        left: 40%;
        width: 20%;
      }
      .loader-col:nth-child(4) {
        left: 60%;
        width: 20%;
      }
      .loader-col:nth-child(5) {
        left: 80%;
        width: 20%;
      }
      .loader-center {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .loader-brand {
        font-family: "Manrope", sans-serif;
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 800;
        letter-spacing: -2px;
      }
      .loader-char {
        display: inline-block;
        opacity: 0;
        transform: translateY(80px) rotate(15deg);
        will-change: transform;
      }
      .loader-char.t {
        color: var(--teal);
      }
      .loader-char.o {
        color: var(--orange);
      }
      .loader-char.w {
        color: #fff;
      }
      .loader-pct {
        font-family: "JetBrains Mono", monospace;
        font-size: 120px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.03);
        position: absolute;
        bottom: 10%;
        right: 5%;
        line-height: 1;
        pointer-events: none;
        z-index: 1;
      }

      .scroll-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--orange));
        z-index: 9999;
        transform-origin: left;
        transform: scaleX(0);
      }

      .cur {
        position: fixed;
        pointer-events: none;
        z-index: 10000;
        border-radius: 50%;
        will-change: transform;
      }
      .cur-d {
        width: 8px;
        height: 8px;
        background: var(--teal);
        margin: -4px 0 0 -4px;
      }
      .cur-r {
        width: 48px;
        height: 48px;
        border: 1.5px solid var(--teal);
        margin: -24px 0 0 -24px;
        transition:
          width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
          height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
          margin 0.3s,
          background 0.3s,
          border-color 0.3s;
      }
      .cur-r.on {
        width: 80px;
        height: 80px;
        margin: -40px 0 0 -40px;
        border-color: var(--orange);
        background: rgba(242, 151, 30, 0.06);
      }

      canvas#bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.25;
      }
      html.dark canvas#bg {
        opacity: 0.15;
      }

      .page {
        position: relative;
        z-index: 1;
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
      }

      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        padding: 20px 48px;
        mix-blend-mode: normal;
        transition: padding 0.4s;
      }
      .nav.scrolled {
        padding: 10px 48px;
      }
      .nav-in {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 28px;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid var(--border);
        backdrop-filter: blur(24px) saturate(1.5);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
        transition: all 0.4s;
        opacity: 0;
        transform: translateY(-30px);
      }
      html.dark .nav-in {
        background: rgba(21, 29, 42, 0.72);
      }
      .nav.scrolled .nav-in {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
      }
      .nav-brand {
        font-size: 22px;
        font-weight: 800;
        text-decoration: none;
        letter-spacing: -1px;
      }
      .nav-brand .t {
        color: var(--teal);
      }
      .nav-brand .o {
        color: var(--orange);
      }
      .nav-brand .r {
        color: var(--text);
        transition: color 0.4s;
      }
      .nav-mid {
        display: flex;
        gap: 4px;
        list-style: none;
      }
      .nav-mid a {
        padding: 8px 18px;
        color: var(--text2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        border-radius: 100px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }
      .nav-mid a:hover {
        color: var(--teal);
        background: var(--teal-glow);
      }
      .nav-rt {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .tm-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: var(--bg);
        color: var(--text2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all 0.4s;
      }
      .tm-btn:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: var(--orange-glow);
        transform: rotate(180deg);
      }
      .nav-cta {
        padding: 10px 24px;
        background: var(--teal);
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        border-radius: 100px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }
      .nav-cta:hover {
        background: #009085;
        box-shadow: 0 8px 24px var(--teal-mid);
      }
      .mob-btn {
        display: none;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: var(--bg);
        color: var(--text);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        font-size: 16px;
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 140px 48px 80px;
        position: relative;
        overflow: hidden;
      }
      .hero-content {
        max-width: 950px;
        position: relative;
        z-index: 2;
      }
      .hero-ey {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 20px 8px 10px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text2);
        margin-bottom: 36px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        clip-path: inset(0 100% 0 0);
        transition: all 0.4s;
      }
      .hero-ey .pulse {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--teal);
        position: relative;
      }
      .hero-ey .pulse::after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid var(--teal);
        animation: ping 2s infinite;
      }
      @keyframes ping {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(2.2);
          opacity: 0;
        }
      }
      .hero h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(44px, 7.5vw, 96px);
        font-weight: 900;
        line-height: 1.06;
        letter-spacing: -4px;
        margin-bottom: 28px;
      }
      .hero h1 .teal {
        color: var(--teal);
      }
      .hero h1 .orange {
        color: var(--orange);
      }
      .h-line {
        display: block;
        overflow: hidden;
        padding-bottom: 4px;
      }
      .h-char {
        display: inline-block;
        transform: translateY(120%);
        opacity: 0;
        will-change: transform;
      }
      .hero-p {
        font-size: 18px;
        color: var(--text2);
        line-height: 1.7;
        max-width: 560px;
        margin: 0 auto 44px;
        overflow: hidden;
      }
      .hero-p-inner {
        transform: translateY(100%);
        display: block;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .hero-btns a {
        opacity: 0;
        transform: translateY(40px);
        will-change: transform;
      }
      .btn-m {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        font-family: "Manrope", sans-serif;
        font-size: 15px;
        font-weight: 700;
        border-radius: 100px;
        text-decoration: none;
        cursor: pointer;
        border: none;
        will-change: transform;
      }
      .btn-m--f {
        background: var(--teal);
        color: #fff;
        overflow: hidden;
      }
      .btn-m--f:hover {
        box-shadow: 0 14px 44px var(--teal-mid);
      }
      .btn-m--g {
        background: transparent;
        color: var(--text);
        border: 1.5px solid var(--border);
      }
      .btn-m--g:hover {
        border-color: var(--teal);
        color: var(--teal);
        background: var(--teal-glow);
      }
      .btn-m .arr {
        transition: transform 0.3s;
      }
      .btn-m:hover .arr {
        transform: translateX(5px);
      }
      .hero-nums {
        display: flex;
        justify-content: center;
        gap: 56px;
        margin-top: 80px;
      }
      .h-num {
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
      }
      .h-num .val {
        font-family: "Playfair Display", serif;
        font-size: 56px;
        font-weight: 900;
        line-height: 1;
        background: linear-gradient(135deg, var(--teal), var(--teal-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .h-num .lbl {
        font-size: 11px;
        color: var(--text3);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        margin-top: 6px;
      }
      .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.12;
        pointer-events: none;
        will-change: transform;
      }
      .hero-orb--1 {
        width: 600px;
        height: 600px;
        background: var(--teal);
        top: -15%;
        right: -10%;
      }
      .hero-orb--2 {
        width: 500px;
        height: 500px;
        background: var(--orange);
        bottom: -15%;
        left: -10%;
      }

      .mq {
        padding: 28px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
        transition: border-color 0.4s;
      }
      .mq-track {
        display: flex;
        gap: 48px;
        width: max-content;
        will-change: transform;
      }
      .mq-item {
        font-size: 16px;
        font-weight: 600;
        color: var(--text3);
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 48px;
        transition: color 0.4s;
      }
      .mq-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--teal);
        flex-shrink: 0;
      }

      .s-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background: var(--teal-glow);
        border: 1px solid var(--teal-mid);
        border-radius: 100px;
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        font-weight: 500;
        color: var(--teal);
        margin-bottom: 16px;
        letter-spacing: 0.5px;
      }
      .s-head {
        font-family: "Playfair Display", serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 900;
        letter-spacing: -1.5px;
        line-height: 1.15;
        margin-bottom: 16px;
      }
      .s-head .teal {
        color: var(--teal);
      }
      .s-sub {
        font-size: 16px;
        color: var(--text2);
        max-width: 560px;
        line-height: 1.7;
        margin-bottom: 56px;
      }

      .about {
        padding: 140px 48px;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
      }
      .about::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--teal-glow), transparent 70%);
        top: 5%;
        right: -10%;
        filter: blur(80px);
        pointer-events: none;
        animation: aboutOrb 12s ease-in-out infinite alternate;
      }
      .about::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          var(--orange-glow),
          transparent 70%
        );
        bottom: 5%;
        left: -5%;
        filter: blur(60px);
        pointer-events: none;
        animation: aboutOrb 12s ease-in-out infinite alternate-reverse;
      }
      @keyframes aboutOrb {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(40px, -30px);
        }
      }
      .about-head {
        text-align: center;
        margin-bottom: 64px;
        position: relative;
        z-index: 2;
      }
      .about-bento {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
        position: relative;
        z-index: 2;
      }
      .bento-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 36px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        opacity: 0;
        transform: translateY(40px);
      }
      .bento-card::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1.5px;
        border-radius: 24px;
        background: linear-gradient(
          135deg,
          var(--teal),
          transparent 40%,
          var(--orange)
        );
        -webkit-mask:
          linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.5s;
        pointer-events: none;
      }
      .bento-card:hover::before {
        opacity: 1;
      }
      .bento-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
      }
      .bento-deco {
        position: absolute;
        top: -20px;
        right: -10px;
        font-family: "Playfair Display", serif;
        font-size: 180px;
        font-weight: 900;
        color: var(--bg2);
        line-height: 1;
        pointer-events: none;
        opacity: 0.5;
        transition: all 0.8s;
      }
      html.dark .bento-deco {
        color: var(--dark3);
        opacity: 0.3;
      }
      .bento-card:hover .bento-deco {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.7;
      }
      .bento-mission {
        grid-column: span 6;
      }
      .bento-stat {
        grid-column: span 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 180px;
      }
      .bento-stat-num {
        font-family: "Playfair Display", serif;
        font-size: 52px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--teal), var(--teal-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }
      .bento-stat-label {
        font-size: 11px;
        color: var(--text3);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        margin-top: 10px;
      }
      .bento-capabilities {
        grid-column: span 9;
      }
      .bento-vision {
        grid-column: span 5;
      }
      .bento-quote {
        grid-column: span 7;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(
          135deg,
          rgba(0, 169, 157, 0.05),
          rgba(242, 151, 30, 0.05)
        );
        padding: 48px 36px;
      }
      .bento-stat-wrap {
        grid-column: span 3;
        display: grid;
        gap: 20px;
      }
      .bento-feat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 20px;
      }
      .bento-feat {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        background: var(--bg2);
        border-radius: 12px;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.4s;
        cursor: default;
      }
      html.dark .bento-feat {
        background: var(--dark2);
      }
      .bento-feat:hover {
        background: var(--teal-glow);
        transform: translateX(4px);
      }
      .bento-feat i {
        color: var(--teal);
        font-size: 14px;
        width: 18px;
        transition: transform 0.3s;
      }
      .bento-feat:hover i {
        transform: scale(1.3);
      }
      .bento-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 14px;
      }
      .bento-card h3 .teal {
        color: var(--teal);
      }
      .bento-card > p {
        font-size: 15px;
        color: var(--text2);
        line-height: 1.85;
      }
      .bento-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: var(--teal-glow);
        border: 1px solid var(--teal-mid);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--teal);
        margin-bottom: 20px;
        transition: all 0.4s;
      }
      .bento-card:hover .bento-icon {
        transform: scale(1.1) rotate(-5deg);
        background: var(--teal);
        color: #fff;
        box-shadow: 0 8px 24px var(--teal-mid);
      }

      .process {
        padding: 140px 48px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .proc-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
      }
      .proc-grid::before {
        content: "";
        position: absolute;
        top: 56px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--border);
        border-radius: 2px;
        z-index: 0;
      }
      .proc-line {
        position: absolute;
        top: 56px;
        left: 10%;
        height: 2px;
        width: 0;
        background: linear-gradient(90deg, var(--teal), var(--orange));
        border-radius: 2px;
        z-index: 0;
        will-change: width;
      }
      .proc-step {
        text-align: center;
        position: relative;
        z-index: 1;
        opacity: 0;
      }
      .proc-step .circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--card);
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 900;
        color: var(--teal);
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
      }
      .proc-step:hover .circle {
        background: var(--teal);
        color: #fff;
        border-color: var(--teal);
        transform: scale(1.2);
        box-shadow: 0 12px 36px var(--teal-mid);
      }
      .proc-step h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
      }
      .proc-step p {
        font-size: 13px;
        color: var(--text2);
        line-height: 1.6;
        max-width: 200px;
        margin: 0 auto;
      }

      .svc-section {
        padding: 140px 48px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .svc-header {
        margin-bottom: 48px;
      }
      .svc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .svc {
        position: relative;
        height: 520px;
        border-radius: 24px;
        overflow: hidden;
        transition:
          transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.5s;
        opacity: 0;
        transform: translateY(60px);
      }
      .svc:hover {
        transform: translateY(-10px) !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      }
      .svc-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .svc:hover .svc-bg {
        transform: scale(1.12);
      }
      .svc-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          170deg,
          rgba(0, 169, 157, 0.8) 0%,
          rgba(12, 16, 24, 0.93) 100%
        );
        transition: all 0.6s;
      }
      .svc:hover .svc-ov {
        background: linear-gradient(
          170deg,
          rgba(0, 169, 157, 0.88) 0%,
          rgba(12, 16, 24, 0.96) 100%
        );
      }
      .svc-ct {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 40px;
      }
      .svc-no {
        position: absolute;
        top: 24px;
        right: 32px;
        font-family: "Playfair Display", serif;
        font-size: 100px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.04);
        line-height: 1;
        transition: all 0.8s;
      }
      .svc:hover .svc-no {
        transform: translateY(-12px) scale(1.05);
        color: rgba(255, 255, 255, 0.07);
      }
      .svc-ico {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #fff;
        margin-bottom: 24px;
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .svc:hover .svc-ico {
        background: var(--orange);
        border-color: var(--orange);
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 8px 24px rgba(242, 151, 30, 0.3);
      }
      .svc h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
        transition: transform 0.4s;
      }
      .svc:hover h3 {
        transform: translateX(6px);
      }
      .svc-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.75;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .svc:hover .svc-desc {
        max-height: 200px;
        opacity: 1;
      }
      .svc-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 16px;
        opacity: 0;
        transform: translateY(12px);
        transition: all 0.5s 0.15s;
      }
      .svc:hover .svc-tags {
        opacity: 1;
        transform: translateY(0);
      }
      .svc-tag {
        padding: 5px 12px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.65);
        font-weight: 500;
      }
      .svc-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--orange));
        transform: scaleX(0);
        transition: transform 0.5s;
        transform-origin: left;
      }
      .svc:hover .svc-accent {
        transform: scaleX(1);
      }

      .tech {
        padding: 140px 48px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .tech-wrap {
        display: flex;
        gap: 80px;
        align-items: center;
      }
      .tech-l {
        flex: 1;
      }
      .tech-r {
        flex: 1;
      }
      .tech-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
      }
      .t-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 22px 14px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        cursor: default;
        opacity: 0;
        transform: translateY(40px) scale(0.8);
      }
      .t-item:hover {
        border-color: var(--teal);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-6px) scale(1.05) !important;
      }
      .t-item i {
        font-size: 28px;
        transition: transform 0.4s;
      }
      .t-item:hover i {
        transform: scale(1.15);
      }
      .t-item span {
        font-size: 11px;
        font-weight: 600;
        color: var(--text2);
        text-align: center;
      }

      .testi {
        padding: 140px 48px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .testi-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .t-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 36px;
        position: relative;
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        overflow: hidden;
        opacity: 0;
        transform: translateY(60px) rotate(3deg);
      }
      .t-card::before {
        content: "\201C";
        position: absolute;
        top: 12px;
        right: 24px;
        font-family: "Playfair Display", serif;
        font-size: 90px;
        color: var(--bg2);
        line-height: 1;
        transition: all 0.5s;
      }
      .t-card:hover {
        transform: translateY(-6px) rotate(0deg) !important;
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.07);
        border-color: var(--teal-mid);
      }
      .t-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--orange));
        transform: scaleX(0);
        transition: transform 0.5s;
        transform-origin: left;
      }
      .t-card:hover::after {
        transform: scaleX(1);
      }
      .t-quote {
        font-size: 15px;
        color: var(--text2);
        line-height: 1.8;
        margin-bottom: 24px;
        position: relative;
        z-index: 2;
        font-style: italic;
      }
      .t-auth {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .t-av {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--teal), var(--orange));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        transition: transform 0.4s;
      }
      .t-card:hover .t-av {
        transform: scale(1.1) rotate(-5deg);
      }
      .t-nm {
        font-weight: 700;
        font-size: 14px;
      }
      .t-rl {
        font-size: 12px;
        color: var(--text3);
      }
      .t-stars {
        margin-bottom: 16px;
        color: var(--orange);
        font-size: 13px;
        letter-spacing: 2px;
      }

      .faq {
        padding: 140px 48px;
        max-width: 900px;
        margin: 0 auto;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .faq-item {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s;
        opacity: 0;
        transform: translateY(30px);
      }
      .faq-item:hover {
        border-color: var(--teal-mid);
      }
      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 28px;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        user-select: none;
        transition: color 0.3s;
      }
      .faq-q:hover {
        color: var(--teal);
      }
      .faq-q i {
        color: var(--teal);
        font-size: 14px;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .faq-item.open .faq-q i {
        transform: rotate(135deg);
      }
      .faq-item.open {
        border-color: var(--teal-mid);
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
          padding 0.5s;
        padding: 0 28px;
      }
      .faq-item.open .faq-a {
        max-height: 300px;
        padding: 0 28px 22px;
      }
      .faq-a p {
        font-size: 14px;
        color: var(--text2);
        line-height: 1.8;
      }

      .contact {
        padding: 60px 48px 140px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .contact-box {
        background: var(--dark);
        border-radius: 32px;
        padding: 64px 56px;
        position: relative;
        overflow: hidden;
        clip-path: inset(10% 5% 10% 5% round 32px);
        will-change: clip-path;
      }
      html.dark .contact-box {
        background: var(--dark3);
        border: 1px solid var(--border);
      }
      .contact-box::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        border: 100px solid rgba(0, 169, 157, 0.03);
        top: -250px;
        right: -150px;
        pointer-events: none;
        animation: spinS 30s linear infinite;
      }
      .contact-box::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        border: 70px solid rgba(242, 151, 30, 0.025);
        bottom: -200px;
        left: -100px;
        pointer-events: none;
        animation: spinS 40s linear infinite reverse;
      }
      @keyframes spinS {
        to {
          transform: rotate(360deg);
        }
      }
      .ct-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 48px;
        position: relative;
        z-index: 2;
        flex-wrap: wrap;
        gap: 24px;
      }
      .ct-top h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 900;
        color: #fff;
        letter-spacing: -1.5px;
        line-height: 1.15;
      }
      .ct-top p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        max-width: 300px;
        text-align: right;
        line-height: 1.6;
      }
      .ct-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        position: relative;
        z-index: 2;
      }
      .cc {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 22px 24px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        text-decoration: none;
        transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
      }
      .cc:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--teal-mid);
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
      }
      .cc-ic {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
        transition: all 0.4s;
      }
      .cc:hover .cc-ic {
        transform: scale(1.15) rotate(-5deg);
      }
      .cc-fb .cc-ic {
        background: rgba(59, 89, 152, 0.15);
        color: #3b5998;
      }
      .cc-ig .cc-ic {
        background: rgba(225, 48, 108, 0.12);
        color: #e1306c;
      }
      .cc-wa .cc-ic {
        background: rgba(37, 211, 102, 0.12);
        color: #25d366;
      }
      .cc-li .cc-ic {
        background: rgba(0, 119, 181, 0.12);
        color: #0077b5;
      }
      .cc-nm {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        position: relative;
        z-index: 2;
      }
      .cc-hd {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.35);
        margin-top: 2px;
        position: relative;
        z-index: 2;
      }

      footer {
        border-top: 1px solid var(--border);
        padding: 40px 48px;
        max-width: 1400px;
        margin: 0 auto;
        transition: border-color 0.4s;
      }
      .ft {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
      }
      .ft-b {
        font-size: 14px;
        color: var(--text2);
      }
      .ft-b .teal {
        color: var(--teal);
        font-weight: 700;
      }
      .ft-b .orange {
        color: var(--orange);
        font-weight: 700;
      }
      .ft-l {
        display: flex;
        gap: 24px;
        list-style: none;
      }
      .ft-l a {
        color: var(--text3);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s;
      }
      .ft-l a:hover {
        color: var(--teal);
      }
      .ft-s {
        display: flex;
        gap: 8px;
      }
      .ft-s a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text3);
        text-decoration: none;
        font-size: 13px;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .ft-s a:hover {
        color: var(--teal);
        border-color: var(--teal);
        background: var(--teal-glow);
        transform: translateY(-3px) scale(1.1);
      }

      @media (max-width: 1024px) {
        .hero-nums {
          gap: 32px;
        }
        .proc-grid {
          grid-template-columns: 1fr 1fr;
        }
        .proc-grid::before,
        .proc-line {
          display: none;
        }
        .svc-grid {
          grid-template-columns: 1fr 1fr;
        }
        .tech-wrap {
          flex-direction: column;
        }
        .testi-cards {
          grid-template-columns: 1fr 1fr;
        }
        .ct-grid {
          grid-template-columns: 1fr 1fr;
        }
        .about-bento {
          grid-template-columns: repeat(6, 1fr);
        }
        .bento-mission {
          grid-column: span 6;
        }
        .bento-stat {
          grid-column: span 3;
        }
        .bento-capabilities {
          grid-column: span 6;
        }
        .bento-vision {
          grid-column: span 6;
        }
        .bento-quote {
          grid-column: span 6;
        }
        .bento-feat-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .nav {
          padding: 12px 16px;
        }
        .nav.scrolled {
          padding: 8px 16px;
        }
        .nav-mid {
          display: none;
        }
        .nav-mid.open {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: 70px;
          left: 8px;
          right: 8px;
          background: var(--card);
          border: 1px solid var(--border);
          border-radius: 20px;
          padding: 12px;
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
          z-index: 300;
        }
        html.dark .nav-mid.open {
          background: var(--card);
        }
        .nav-cta {
          display: none;
        }
        .mob-btn {
          display: flex;
        }
        .hero {
          padding: 120px 24px 60px;
        }
        .hero h1 {
          letter-spacing: -2px;
        }
        .hero-nums {
          flex-direction: column;
          gap: 20px;
        }
        .about,
        .process,
        .svc-section,
        .tech,
        .testi,
        .faq,
        .contact {
          padding-left: 24px;
          padding-right: 24px;
        }
        .about-bento {
          grid-template-columns: 1fr;
        }
        .bento-mission,
        .bento-stat,
        .bento-capabilities,
        .bento-vision,
        .bento-quote {
          grid-column: span 1;
        }
        .bento-feat-grid {
          grid-template-columns: 1fr;
        }
        .proc-grid {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }
        .svc-grid {
          grid-template-columns: 1fr;
        }
        .svc {
          height: 400px;
        }
        .tech-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .testi-cards {
          grid-template-columns: 1fr;
        }
        .ct-grid {
          grid-template-columns: 1fr;
        }
        .contact-box {
          padding: 36px 24px;
          border-radius: 24px;
        }
        .ct-top {
          flex-direction: column;
          align-items: flex-start;
        }
        .ct-top p {
          text-align: left;
        }
        footer {
          padding: 32px 24px;
        }
        .ft {
          flex-direction: column;
          text-align: center;
        }
        .ft-l {
          justify-content: center;
        }
        .ft-s {
          justify-content: center;
        }
        .cur-d,
        .cur-r {
          display: none;
        }
      }
 