
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #0a0a0a;
      --bg2: #121212;
      --bg3: #1a1a1a;
      --accent: #00d9ff;
      --accent-alt: #ff006e;
      --accent-tertiary: #8338ec;
      --gold: #ffd60a;
      --white: #f8f9fa;
      --muted: #888888;
      --display: 'Orbitron', serif;
      --sans: 'Epilogue', sans-serif;
      --mono: 'Space Mono', monospace;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--sans);
      overflow-x: hidden;
      line-height: 1.6;
      cursor: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

    /* ============= PRELOADER ============= */
    #loader-wrapper {
      position: fixed;
      inset: 0;
      z-index: 999999;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .loader-sphere {
      width: 100px;
      height: 100px;
      position: relative;
    }

    .sphere-ring {
      position: absolute;
      inset: 0;
      border: 2px solid transparent;
      border-radius: 50%;
      animation: spinRing 3s linear infinite;
    }

    .sphere-ring:nth-child(1) {
      border-top-color: var(--accent);
      border-right-color: var(--accent);
      animation-delay: 0s;
    }

    .sphere-ring:nth-child(2) {
      border-bottom-color: var(--accent-alt);
      border-left-color: var(--accent-alt);
      animation-delay: 0.5s;
      animation-direction: reverse;
    }

    .sphere-ring:nth-child(3) {
      border-top-color: var(--accent-tertiary);
      border-bottom-color: var(--accent-tertiary);
      animation-delay: 1s;
      width: 70px;
      height: 70px;
      top: 15px;
      left: 15px;
    }

    @keyframes spinRing {
      to {
        transform: rotate(360deg);
      }
    }

    .loader-text {
      margin-top: 35px;
      font-family: var(--display);
      color: var(--accent);
      letter-spacing: 8px;
      font-size: 1rem;
      text-transform: uppercase;
      font-weight: 700;
      animation: glitch 2s infinite;
    }

    @keyframes glitch {

      0%,
      100% {
        text-shadow: 0 0 10px var(--accent), -2px 2px 0 var(--accent-alt), 2px -2px 0 var(--accent-tertiary);
      }

      50% {
        text-shadow: 0 0 20px var(--accent), -4px 4px 0 var(--accent-alt), 4px -4px 0 var(--accent-tertiary);
      }
    }

    /* ============= CUSTOM CURSOR ============= */
    #cursor-dot {
      position: fixed;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 20px var(--accent);
    }

    #cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 2px solid var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: 0.1s ease-out;
    }

    a,
    button,
    .serv-card,
    .pc-card,
    .btn,
    .nav-cta {
      cursor: none;
    }

    /* ============= NAVIGATION ============= */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 28px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
      background: transparent;
    }

    nav.solid {
      padding: 16px 6%;
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    }

    .logo {
      font-family: var(--display);
      font-size: 1.8rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 4px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--accent), var(--accent-alt), var(--accent-tertiary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-ul {
      display: flex;
      gap: 48px;
      list-style: none;
    }

    .nav-ul a {
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: 0.3s;
      font-weight: 500;
      position: relative;
    }

    .nav-ul a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .nav-ul a:hover::after {
      width: 100%;
    }

    .nav-ul a:hover {
      color: var(--accent);
    }

    .nav-cta {
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      border: 2px solid var(--accent);
      padding: 12px 28px;
      text-decoration: none;
      transition: 0.4s;
      background: transparent;
      position: relative;
      overflow: hidden;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      z-index: -1;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s;
    }

    .nav-cta:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-cta:hover {
      color: var(--bg);
    }

    /* ============= HAMBURGER ============= */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      width: 44px;
      height: 44px;
      background: rgba(0, 217, 255, 0.08);
      border: 1px solid rgba(0, 217, 255, 0.25);
      border-radius: 10px;
      cursor: pointer;
      z-index: 1100;
      position: relative;
      transition: background 0.3s, border-color 0.3s;
    }

    .hamburger:hover {
      background: rgba(0, 217, 255, 0.15);
      border-color: var(--accent);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 1050;
      background: rgba(10, 10, 10, 0.97);
      backdrop-filter: blur(24px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
      pointer-events: none;
      border-left: 1px solid rgba(0, 217, 255, 0.15);
    }

    .mobile-nav.open {
      transform: translateX(0);
      pointer-events: all;
    }

    .mobile-nav-item {
      width: 100%;
      text-align: center;
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .mobile-nav.open .mobile-nav-item:nth-child(1) {
      transition-delay: 0.1s;
      opacity: 1;
      transform: none;
    }

    .mobile-nav.open .mobile-nav-item:nth-child(2) {
      transition-delay: 0.15s;
      opacity: 1;
      transform: none;
    }

    .mobile-nav.open .mobile-nav-item:nth-child(3) {
      transition-delay: 0.2s;
      opacity: 1;
      transform: none;
    }

    .mobile-nav.open .mobile-nav-item:nth-child(4) {
      transition-delay: 0.25s;
      opacity: 1;
      transform: none;
    }

    .mobile-nav.open .mobile-nav-item:nth-child(5) {
      transition-delay: 0.3s;
      opacity: 1;
      transform: none;
    }

    .mobile-nav.open .mobile-nav-item:nth-child(6) {
      transition-delay: 0.35s;
      opacity: 1;
      transform: none;
    }

    .mobile-nav-item a {
      display: block;
      padding: 22px 40px;
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s, background 0.3s;
      border-bottom: 1px solid rgba(0, 217, 255, 0.07);
    }

    .mobile-nav-item a:hover,
    .mobile-nav-item a:active {
      color: var(--accent);
      background: rgba(0, 217, 255, 0.05);
    }

    .mobile-nav-cta {
      margin-top: 30px;
      display: inline-block;
      padding: 16px 50px;
      border: 2px solid var(--accent);
      color: var(--accent);
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      border-radius: 50px;
      transition: background 0.3s, color 0.3s;
      background: rgba(0, 217, 255, 0.08);
    }

    .mobile-nav-cta:hover {
      background: var(--accent);
      color: var(--bg);
    }

    /* ============= HERO ============= */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px 6% 80px;
      overflow: hidden;
    }

    .grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 1;
    }

    .floating-orb {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
      filter: blur(60px);
      animation: floatOrb 20s infinite ease-in-out;
    }

    .orb1 {
      width: 500px;
      height: 500px;
      top: -10%;
      left: -5%;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent);
    }

    .orb2 {
      width: 400px;
      height: 400px;
      bottom: -5%;
      right: -2%;
      background: radial-gradient(circle, rgba(255, 0, 110, 0.15), transparent);
      animation-delay: -10s;
    }

    .orb3 {
      width: 350px;
      height: 350px;
      top: 50%;
      right: 5%;
      background: radial-gradient(circle, rgba(131, 56, 236, 0.15), transparent);
      animation-delay: -5s;
    }

    @keyframes floatOrb {

      0%,
      100% {
        transform: translate(0, 0);
      }

      33% {
        transform: translate(30px, -50px);
      }

      66% {
        transform: translate(-20px, 30px);
      }
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 60px;
      width: 100%;
      position: relative;
      z-index: 2;
      align-items: center;
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      line-height: 1;
      font-weight: 900;
      margin-bottom: 20px;
      color: var(--white);
      letter-spacing: -2px;
    }

    .hero-text h1 span {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent), var(--accent-alt), var(--accent-tertiary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.7;
      }
    }

    .hero-text .tagline {
      font-size: 1.2rem;
      color: var(--muted);
      margin-bottom: 30px;
      font-weight: 300;
      letter-spacing: 1px;
    }

    .hero-text p {
      color: var(--muted);
      max-width: 90%;
      margin-bottom: 35px;
      line-height: 1.8;
    }

    .btn-group {
      display: flex;
      gap: 20px;
      margin-top: 35px;
    }

    .btn {
      padding: 16px 40px;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.4s;
      font-weight: 600;
      position: relative;
      overflow: hidden;
    }

    .btn-cyan {
      background: var(--accent);
      color: var(--bg);
      box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
    }

    .btn-cyan:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(0, 217, 255, 0.6);
    }

    .btn-outline {
      border: 2px solid var(--accent);
      color: var(--accent);
      background: transparent;
    }

    .btn-outline:hover {
      background: rgba(0, 217, 255, 0.1);
      transform: translateY(-3px);
    }

    /* ============= HERO CUBE ============= */
    .hero-visual {
      perspective: 1200px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 400px;
    }

    .cube-container {
      width: 320px;
      height: 320px;
      position: relative;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .cube-face {
      position: absolute;
      width: 320px;
      height: 320px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 4rem;
      background: rgba(0, 217, 255, 0.08);
      border: 2px solid var(--accent);
      backdrop-filter: blur(10px);
      color: var(--accent);
      box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.15);
      font-weight: 700;
    }

    .cube-face:nth-child(odd) {
      background: rgba(255, 0, 110, 0.08);
      border-color: var(--accent-alt);
      color: var(--accent-alt);
      box-shadow: inset 0 0 30px rgba(255, 0, 110, 0.15);
    }

    .front {
      transform: translateZ(160px);
    }

    .back {
      transform: rotateY(180deg) translateZ(160px);
    }

    .right {
      transform: rotateY(90deg) translateZ(160px);
    }

    .left {
      transform: rotateY(-90deg) translateZ(160px);
    }

    .top {
      transform: rotateX(90deg) translateZ(160px);
    }

    .bottom {
      transform: rotateX(-90deg) translateZ(160px);
    }

    /* ============= MARQUEE ============= */
    .marquee-wrap {
      background: rgba(0, 217, 255, 0.05);
      border-block: 1px solid rgba(0, 217, 255, 0.2);
      padding: 25px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    .marquee-item {
      font-family: var(--mono);
      font-size: 0.9rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      padding: 0 60px;
      opacity: 0.8;
      white-space: nowrap;
    }

    @keyframes marquee {
      to {
        transform: translateX(-50%);
      }
    }

    /* ============= GLOBAL SECTIONS ============= */
    section {
      padding: 100px 6%;
      position: relative;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }

    .label-line {
      width: 40px;
      height: 1px;
      background: var(--accent);
    }

    .section-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      line-height: 1.1;
      margin-bottom: 50px;
      font-weight: 700;
      font-family: var(--display);
      letter-spacing: -1px;
    }

    .section-title em {
      background: linear-gradient(135deg, var(--accent), var(--accent-alt), var(--accent-tertiary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-style: normal;
    }

    /* ============= ABOUT — MODERNISED ============= */
    #about {
      background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
      overflow: visible;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 80px;
      align-items: center;
    }

    /* --- Visual side --- */
    .about-visual {
      position: relative;
      padding-bottom: 30px;
    }

    .about-frame {
      width: 500px;
      height: 500px;
      border: 2px solid rgba(0, 217, 255, 0.4);
      border-radius: 24px;
      background: rgba(0, 217, 255, 0.05);
      backdrop-filter: blur(10px);
      overflow: hidden;
      aspect-ratio: 4/5;
      position: relative;
      box-shadow: 0 0 60px rgba(0, 217, 255, 0.15), inset 0 0 40px rgba(0, 217, 255, 0.05);
      transition: box-shadow 0.5s;
    }

    .about-frame:hover {
      box-shadow: 0 0 80px rgba(0, 217, 255, 0.28), inset 0 0 40px rgba(0, 217, 255, 0.08);
    }

    .about-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .about-frame:hover img {
      transform: scale(1.04);
    }

    /* gradient overlay at bottom */
    .about-frame::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent);
      pointer-events: none;
    }

    /* corner decorations */
    .about-frame::before {
      content: '';
      position: absolute;
      top: 14px;
      left: 14px;
      right: 14px;
      bottom: 14px;
      border: 1px solid rgba(0, 217, 255, 0.12);
      border-radius: 16px;
      pointer-events: none;
      z-index: 2;
    }

    /* Floating tech chips on image */
    .af-chip {
      position: absolute;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(10, 10, 10, 0.82);
      border: 1px solid rgba(0, 217, 255, 0.35);
      backdrop-filter: blur(12px);
      border-radius: 40px;
      padding: 7px 14px;
      font-size: 0.72rem;
      font-family: var(--mono);
      color: var(--accent);
      letter-spacing: 1px;
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      animation: chipFloat 4s ease-in-out infinite;
    }

    .af-chip i {
      font-size: 0.85rem;
    }

    .af-chip-1 {
      top: 18px;
      right: -22px;
      animation-delay: 0s;
    }

    .af-chip-2 {
      top: 50%;
      right: -30px;
      transform: translateY(-50%);
      animation-delay: 1.3s;
    }

    .af-chip-3 {
      bottom: 50px;
      left: -22px;
      animation-delay: 0.7s;
    }

    @keyframes chipFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .af-chip-2 {
      animation: chipFloat2 4s ease-in-out infinite 1.3s;
    }

    @keyframes chipFloat2 {

      0%,
      100% {
        transform: translateY(-50%);
      }

      50% {
        transform: translateY(calc(-50% - 6px));
      }
    }

    /* ── ROTATING BADGE ── */
    .rotating-badge {
      position: absolute;
      bottom: -10px;
      right: -22px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(131, 56, 236, 0.12));
      border: 2px solid var(--accent);
      box-shadow: 0 0 40px rgba(0, 217, 255, 0.3), 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    /* outer ring with spinning SVG text */
    .rb-ring {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      animation: badgeSpin 14s linear infinite;
      animation-play-state: paused;
      /* starts paused — activated on scroll */
    }

    .rb-ring.spinning {
      animation-play-state: running;
    }

    @keyframes badgeSpin {
      to {
        transform: rotate(360deg);
      }
    }

    .rb-ring svg {
      display: block;
    }

    /* center number */
    .rb-center {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1;
      gap: 3px;
    }

    .rb-num {
      font-family: var(--display);
      font-size: 2.1rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    }

    .rb-label {
      font-size: 0.5rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--mono);
    }

    /* --- Text side --- */
    .about-text {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .about-status {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 255, 136, 0.06);
      border: 1px solid rgba(0, 255, 136, 0.2);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #00ff88;
      font-family: var(--mono);
      margin-bottom: 28px;
      width: fit-content;
    }

    .about-status .avail-dot {
      background: #00ff88;
      box-shadow: 0 0 10px #00ff88;
    }

    .about-text h3 {
      font-size: 1.45rem;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .about-text>p {
      color: var(--muted);
      margin-bottom: 0;
      line-height: 1.8;
    }

    /* Stats row */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid rgba(0, 217, 255, 0.18);
      border-radius: 18px;
      overflow: hidden;
      margin: 32px 0;
    }

    .about-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 12px;
      text-align: center;
      gap: 5px;
      background: rgba(0, 217, 255, 0.04);
      border-right: 1px solid rgba(0, 217, 255, 0.12);
      transition: background 0.3s;
    }

    .about-stat:last-child {
      border-right: none;
    }

    .about-stat:hover {
      background: rgba(0, 217, 255, 0.09);
    }

    .stat-num {
      font-family: var(--display);
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--mono);
    }

    .tags-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 8px 0 28px;
    }

    .tag {
      border: 1px solid rgba(0, 217, 255, 0.3);
      padding: 9px 18px;
      border-radius: 50px;
      color: var(--accent);
      background: rgba(0, 217, 255, 0.08);
      font-size: 0.75rem;
      letter-spacing: 1px;
      transition: 0.3s;
    }

    .tag:hover {
      background: rgba(0, 217, 255, 0.15);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    /* Meta row */
    .about-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 4px;
    }

    .about-meta-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(0, 217, 255, 0.05);
      border: 1px solid rgba(0, 217, 255, 0.15);
      border-radius: 14px;
      padding: 16px 18px;
      transition: 0.3s;
    }

    .about-meta-item:hover {
      background: rgba(0, 217, 255, 0.1);
      border-color: var(--accent);
    }

    .about-meta-item>i {
      font-size: 1.1rem;
      color: var(--accent);
      flex-shrink: 0;
    }

    .about-meta-body {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .meta-label {
      font-size: 0.6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--mono);
    }

    .meta-value {
      font-size: 0.78rem;
      color: var(--white);
      font-weight: 600;
      letter-spacing: 1px;
    }

    /* Mobile responsive only */
    @media (max-width: 768px) {

      .about-frame {
        width: 100%;
        max-width: 340px;
        height: auto;
        aspect-ratio: 340 / 278;
        /* keeps same proportion */
        margin: 0 auto;
      }

      .rb-ring {
        inset: -10px;
        border-radius: 50%;
      }

    }

    @media (max-width: 480px) {

      .about-frame {
        max-width: 320px;
      }

      .rb-ring {
        inset: -8px;
      }

    }

    /* ============= SERVICES ============= */
    #services {
      background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .service-card {
      background: rgba(0, 217, 255, 0.05);
      border: 2px solid rgba(0, 217, 255, 0.2);
      border-radius: 16px;
      padding: 50px 40px;
      transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.05));
      opacity: 0;
      transition: 0.4s;
      z-index: -1;
    }

    .service-card:hover {
      transform: translateY(-15px);
      border-color: var(--accent);
      background: rgba(0, 217, 255, 0.1);
      box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      font-size: 3rem;
      color: var(--accent);
      margin-bottom: 25px;
    }

    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .service-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* ============= PORTFOLIO ============= */
    #portfolio {
      background: #0a0a0a;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .project-card {
      background: rgba(0, 217, 255, 0.05);
      border: 2px solid rgba(0, 217, 255, 0.2);
      border-radius: 16px;
      overflow: hidden;
      transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      text-decoration: none;
      display: flex;
      flex-direction: column;
    }

    .project-card:hover {
      transform: translateY(-15px);
      border-color: var(--accent);
      box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
    }

    .project-header {
      height: 50px;
      background: #1a1a1a;
      border-bottom: 1px solid rgba(0, 217, 255, 0.1);
      display: flex;
      align-items: center;
      padding: 0 18px;
    }

    .window-dots {
      display: flex;
      gap: 8px;
      flex: 1;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(0, 217, 255, 0.3);
      transition: 0.3s;
    }

    .project-card:hover .dot:nth-child(1) {
      background: #ff5f57;
    }

    .project-card:hover .dot:nth-child(2) {
      background: #ffbd2e;
    }

    .project-card:hover .dot:nth-child(3) {
      background: #28ca41;
    }

    .project-url {
      flex: 2;
      text-align: center;
      font-size: 0.7rem;
      color: var(--muted);
      font-family: var(--mono);
    }

    .project-screenshot {
      height: 180px;
      background: #0f0f0f;
      overflow: hidden;
      flex: 1;
    }

    .project-screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 6s ease-in-out;
    }

    .project-card:hover .project-screenshot img {
      transform: translateY(calc(-100% + 280px));
    }

    .project-footer {
      padding: 25px;
      background: #121212;
      border-top: 1px solid rgba(0, 217, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .project-name {
      font-family: var(--display);
      font-size: 1.2rem;
      color: var(--white);
      font-weight: 700;
    }

    .project-arrow {
      color: var(--accent);
      font-size: 1.2rem;
      transition: 0.3s;
    }

    .project-card:hover .project-arrow {
      transform: rotate(-45deg) scale(1.2);
    }

    /* ============= PROCESS ============= */
    #process {
      background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 70px;
      position: relative;
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent-alt), transparent);
      z-index: 0;
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      background: rgba(0, 217, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent);
      transition: 0.4s;
    }

    .process-step:hover .step-circle {
      transform: scale(1.15);
      background: rgba(0, 217, 255, 0.2);
      box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
    }

    .process-step h3 {
      font-family: var(--sans);
      font-weight: 600;
      color: var(--white);
    }

    /* ============= TESTIMONIALS ============= */
    #testimonials {
      background: #121212;
    }

    .testimonials-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: scrollTestimonials 40s linear infinite;
      margin-top: 50px;
    }

    .testimonials-track:hover {
      animation-play-state: paused;
    }

    @keyframes scrollTestimonials {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-50% - 15px));
      }
    }

    .testimonial-card {
      background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(255, 0, 110, 0.08));
      border: 2px solid rgba(0, 217, 255, 0.2);
      padding: 50px;
      border-radius: 16px;
      width: 480px;
      flex-shrink: 0;
      backdrop-filter: blur(10px);
      transition: 0.3s;
    }

    .testimonial-card:hover {
      border-color: var(--accent);
      background: linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(255, 0, 110, 0.12));
      transform: translateY(-10px);
    }

    .stars {
      color: var(--accent);
      margin-bottom: 20px;
      font-size: 1.2rem;
      letter-spacing: 3px;
    }

    .testimonial-text {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 30px;
      color: var(--white);
      font-style: italic;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 5px;
    }

    .testimonial-role {
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ============= CONTACT FORM SECTION ============= */
    #contact-form {
      background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 50%, #0a0a0a 100%);
      padding: 120px 6%;
      position: relative;
      overflow: hidden;
    }

    #contact-form::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 217, 255, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    #contact-form::after {
      content: '';
      position: absolute;
      bottom: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 0, 110, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .contact-form-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 2;
    }

    .cf-info {
      padding-top: 10px;
    }

    .cf-info .section-label {
      margin-bottom: 18px;
    }

    .cf-info .section-title {
      margin-bottom: 24px;
      font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .cf-info-desc {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 48px;
    }

    .cf-details {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .cf-detail-item {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .cf-detail-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      border: 1px solid rgba(0, 217, 255, 0.25);
      background: rgba(0, 217, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: 0.3s;
    }

    .cf-detail-item:hover .cf-detail-icon {
      background: rgba(0, 217, 255, 0.15);
      border-color: var(--accent);
      box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    }

    .cf-detail-body {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .cf-detail-label {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--mono);
    }

    .cf-detail-value {
      font-size: 0.95rem;
      color: var(--white);
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
    }

    .cf-detail-value:hover {
      color: var(--accent);
    }

    .cf-availability {
      margin-top: 40px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 217, 255, 0.06);
      border: 1px solid rgba(0, 217, 255, 0.2);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.75rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      font-family: var(--mono);
    }

    .avail-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #00ff88;
      box-shadow: 0 0 10px #00ff88;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(0.8);
      }
    }

    .cf-form-wrapper {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(0, 217, 255, 0.15);
      border-radius: 28px;
      padding: 50px 48px;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }

    .cf-form-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent-alt), var(--accent-tertiary), transparent);
    }

    .cf-form-wrapper::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 56, 236, 0.12), transparent);
      pointer-events: none;
    }

    .cf-form-title {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }

    .cf-form-subtitle {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 36px;
      letter-spacing: 0.5px;
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 18px;
    }

    .cf-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }

    .cf-field label {
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--mono);
    }

    .cf-field input,
    .cf-field select,
    .cf-field textarea {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(0, 217, 255, 0.18);
      border-radius: 12px;
      padding: 14px 18px;
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.92rem;
      outline: none;
      transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
      width: 100%;
      -webkit-appearance: none;
    }

    .cf-field input::placeholder,
    .cf-field textarea::placeholder {
      color: rgba(136, 136, 136, 0.6);
    }

    .cf-field input:focus,
    .cf-field select:focus,
    .cf-field textarea:focus {
      border-color: var(--accent);
      background: rgba(0, 217, 255, 0.05);
      box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    }

    .cf-field select option {
      background: #111;
      color: var(--white);
    }

    .cf-field textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }

    .budget-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
    }

    .budget-pill {
      padding: 8px 18px;
      border: 1px solid rgba(0, 217, 255, 0.22);
      border-radius: 50px;
      background: rgba(0, 217, 255, 0.05);
      color: var(--muted);
      font-size: 0.75rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: var(--mono);
      user-select: none;
    }

    .budget-pill:hover,
    .budget-pill.selected,
    .budget-pill.active {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(0, 217, 255, 0.12);
    }

    .budget-pill-label {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      font-family: var(--mono);
      margin-bottom: 10px;
      display: block;
    }

    .cf-submit-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
      color: var(--bg);
      border: none;
      border-radius: 14px;
      font-family: var(--display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
      margin-top: 8px;
    }

    .cf-submit-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-alt), var(--accent));
      opacity: 0;
      transition: opacity 0.4s;
    }

    .cf-submit-btn:hover::before {
      opacity: 1;
    }

    .cf-submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 217, 255, 0.35);
    }

    .cf-submit-btn span {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .cf-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }

    .cf-success.show {
      display: block;
    }

    .cf-form-main.hidden {
      display: none;
    }

    .cf-success-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(0, 255, 136, 0.12);
      border: 2px solid #00ff88;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #00ff88;
      margin: 0 auto 24px;
      animation: successPop 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    @keyframes successPop {
      0% {
        transform: scale(0);
        opacity: 0;
      }

      70% {
        transform: scale(1.15);
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .cf-success h3 {
      font-family: var(--display);
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: var(--white);
    }

    .cf-success p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ============= CONTACT ============= */
    #contact {
      text-align: center;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
      padding: 50px 6%;
    }

    .contact-title {
      font-size: clamp(1.5rem, 6vw, 3rem);
      margin-bottom: 30px;
      font-family: var(--display);
      font-weight: 700;
      letter-spacing: -1px;
    }

    .contact-email {
      font-size: clamp(.5rem, 4vw, 1.5rem);
      color: var(--accent);
      text-decoration: none;
      display: inline-block;
      margin: 40px 0;
      transition: 0.4s;
      position: relative;
      font-weight: 600;
    }

    .contact-email:hover {
      text-shadow: 0 0 30px var(--accent);
      transform: scale(1.05);
    }

    .socials {
      margin-top: 60px;
      display: flex;
      justify-content: center;
      gap: 40px;
    }

    .social-link {
      width: 60px;
      height: 60px;
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      text-decoration: none;
      font-size: 1.3rem;
      transition: 0.4s;
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      z-index: -1;
      transform: scale(0);
      transition: 0.4s;
      border-radius: 50%;
    }

    .social-link:hover::before {
      transform: scale(1);
    }

    .social-link:hover {
      color: var(--bg);
    }

    /* ============= REVEAL ============= */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: 1.2s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============= PRICING ============= */
    #pricing {
      background: radial-gradient(circle at 30% 10%, #0f0f1a, #0a0a0a);
      border-block: 1px solid rgba(0, 217, 255, 0.1);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      margin-top: 60px;
    }

    .pricing-card {
      background: rgba(0, 217, 255, 0.03);
      border: 2px solid rgba(0, 217, 255, 0.2);
      border-radius: 32px;
      padding: 45px 30px 50px;
      transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      backdrop-filter: blur(8px);
      text-align: center;
      overflow: hidden;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.02));
      opacity: 0;
      transition: 0.4s;
      z-index: -1;
    }

    .pricing-card:hover {
      transform: translateY(-18px);
      border-color: var(--accent);
      background: rgba(0, 217, 255, 0.08);
      box-shadow: 0 30px 60px rgba(0, 217, 255, 0.2);
    }

    .pricing-card:hover::before {
      opacity: 1;
    }

    .pricing-badge {
      position: absolute;
      top: 25px;
      right: 25px;
      background: linear-gradient(135deg, var(--accent-alt), var(--accent-tertiary));
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 40px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: var(--mono);
    }

    .pricing-icon {
      font-size: 3rem;
      color: var(--accent);
      margin-bottom: 25px;
      background: rgba(0, 217, 255, 0.15);
      width: 80px;
      height: 80px;
      line-height: 80px;
      text-align: center;
      border-radius: 60px;
      margin-left: auto;
      margin-right: auto;
      transition: 0.3s;
      border: 1px solid rgba(0, 217, 255, 0.3);
    }

    .pricing-card:hover .pricing-icon {
      transform: scale(1.05) rotate(2deg);
      background: rgba(0, 217, 255, 0.25);
      box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    }

    .pricing-title {
      font-size: 1.8rem;
      font-family: var(--display);
      font-weight: 700;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }

    .pricing-price {
      margin: 20px 0 15px;
    }

    .price-amount {
      font-size: 3.2rem;
      font-weight: 800;
      font-family: var(--mono);
      color: var(--accent);
      letter-spacing: -2px;
    }

    .price-period {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .pricing-desc {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px dashed rgba(0, 217, 255, 0.2);
    }

    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 40px;
    }

    .pricing-features li {
      padding: 10px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--white);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pricing-features i {
      color: var(--accent);
      width: 22px;
      font-size: 0.9rem;
    }

    .pricing-btn {
      width: 100%;
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
      padding: 14px 0;
      font-size: 0.7rem;
      letter-spacing: 2px;
      font-weight: 600;
      text-transform: uppercase;
      border-radius: 50px;
      transition: 0.3s;
      cursor: pointer;
      font-family: var(--sans);
    }

    .pricing-btn:hover {
      background: var(--accent);
      color: var(--bg);
      box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
    }

    .card-highlight {
      border: 2px solid var(--accent);
      background: linear-gradient(145deg, rgba(0, 217, 255, 0.12), rgba(255, 0, 110, 0.05));
      transform: scale(1.02);
    }

    .card-highlight:hover {
      transform: translateY(-18px) scale(1.02);
    }

    /* ============= FAQ ============= */
    #faq {
      background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
      border-block: 1px solid rgba(0, 217, 255, 0.08);
    }

    .faq-grid {
      max-width: 1000px;
      margin: 50px auto 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .faq-item {
      background: rgba(0, 217, 255, 0.03);
      border: 1px solid rgba(0, 217, 255, 0.2);
      border-radius: 24px;
      transition: 0.3s ease;
      overflow: hidden;
    }

    .faq-item:hover {
      border-color: var(--accent);
      background: rgba(0, 217, 255, 0.06);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: transparent;
      border: none;
      padding: 24px 32px;
      font-family: var(--sans);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      transition: 0.2s;
      letter-spacing: -0.2px;
      cursor: pointer;
    }

    .faq-question span:first-child {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .faq-question i:first-child {
      color: var(--accent);
      font-size: 1.3rem;
      width: 28px;
    }

    .faq-icon {
      font-size: 1.2rem;
      color: var(--accent);
      transition: transform 0.3s;
    }

    .faq-item.faq-open .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      padding: 0 32px;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .faq-item.faq-open .faq-answer {
      max-height: 500px;
      padding: 0 32px 28px 32px;
      border-top: 1px solid rgba(0, 217, 255, 0.15);
    }

    .faq-answer p {
      margin-top: 20px;
    }

    .faq-answer ul {
      margin-left: 20px;
      margin-top: 8px;
      list-style-type: none;
    }

    .faq-answer ul li {
      position: relative;
      margin-top: 8px;
    }

    .faq-answer ul li::before {
      content: "▹";
      color: var(--accent);
      position: absolute;
      left: -18px;
    }

    /* ============= FLOATING ACTIONS ============= */
    .floating-actions {
      position: fixed;
      right: 24px;
      bottom: 90px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }

    .float-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      cursor: none;
    }

    .float-btn:hover {
      transform: scale(1.15) translateY(-3px);
    }

    .float-btn-wa {
      background: linear-gradient(135deg, #25d366, #128c7e);
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
      animation: floatPulse 2.5s infinite;
    }

    .float-btn-wa:hover {
      box-shadow: 0 10px 40px rgba(37, 211, 102, 0.65);
    }

    .float-btn-phone {
      background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
      box-shadow: 0 6px 28px rgba(0, 217, 255, 0.4);
    }

    .float-btn-phone:hover {
      box-shadow: 0 10px 40px rgba(0, 217, 255, 0.65);
    }

    .float-label {
      position: absolute;
      right: calc(100% + 12px);
      background: rgba(10, 10, 10, 0.92);
      color: var(--white);
      font-size: 0.72rem;
      font-family: var(--mono);
      letter-spacing: 1px;
      text-transform: uppercase;
      white-space: nowrap;
      padding: 6px 14px;
      border-radius: 30px;
      border: 1px solid rgba(0, 217, 255, 0.2);
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      pointer-events: none;
    }

    .float-btn:hover .float-label {
      opacity: 1;
      transform: translateX(0);
    }

    @keyframes floatPulse {

      0%,
      100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
      }

      50% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0);
      }
    }

    /* ============= FOOTER ============= */
    footer {
      background: #080808;
      border-top: 1px solid rgba(0, 217, 255, 0.15);
      padding: 0;
      font-size: 0.85rem;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 60px;
      padding: 70px 6% 60px;
    }

    .footer-brand .footer-logo {
      font-family: var(--display);
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: 4px;
      background: linear-gradient(135deg, var(--accent), var(--accent-alt), var(--accent-tertiary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      margin-bottom: 18px;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.8;
      max-width: 260px;
      margin-bottom: 28px;
    }

    .footer-social-row {
      display: flex;
      gap: 12px;
    }

    .footer-social-btn {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(0, 217, 255, 0.25);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 0.95rem;
      text-decoration: none;
      transition: 0.3s;
      background: rgba(0, 217, 255, 0.04);
    }

    .footer-social-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(0, 217, 255, 0.12);
      transform: translateY(-3px);
    }

    .footer-col h4 {
      font-family: var(--display);
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      position: relative;
      padding-bottom: 14px;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-alt));
      border-radius: 2px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul li a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-col ul li a::before {
      content: '▹';
      color: var(--accent);
      font-size: 0.7rem;
      opacity: 0;
      transform: translateX(-6px);
      transition: 0.3s;
    }

    .footer-col ul li a:hover {
      color: var(--white);
      padding-left: 6px;
    }

    .footer-col ul li a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .footer-contact-item i {
      color: var(--accent);
      font-size: 1rem;
      margin-top: 2px;
      min-width: 18px;
    }

    .footer-contact-item a {
      color: var(--muted);
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-contact-item a:hover {
      color: var(--accent);
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin: 0 6%;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 6%;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom-left {
      color: var(--muted);
      font-size: 0.75rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 217, 255, 0.08);
      border: 1px solid rgba(0, 217, 255, 0.2);
      border-radius: 30px;
      padding: 5px 14px;
      font-size: 0.68rem;
      color: var(--accent);
      letter-spacing: 2px;
      font-family: var(--mono);
    }

    /* ============= RESPONSIVE ============= */
    @media (max-width: 992px) {

      .nav-ul,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .btn-group {
        justify-content: center;
      }

      .process-grid::before {
        display: none;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-visual {
        max-width: 420px;
        margin: 0 auto;
        padding-bottom: 40px;
      }

      .af-chip-1 {
        right: -10px;
      }

      .af-chip-2 {
        right: -12px;
      }

      .af-chip-3 {
        left: -10px;
      }

      .rotating-badge {
        right: -10px;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .cube-container {
        width: 250px;
        height: 250px;
      }

      .cube-face {
        width: 250px;
        height: 250px;
        font-size: 3.2rem;
      }

      .front {
        transform: translateZ(125px);
      }

      .back {
        transform: rotateY(180deg) translateZ(125px);
      }

      .right {
        transform: rotateY(90deg) translateZ(125px);
      }

      .left {
        transform: rotateY(-90deg) translateZ(125px);
      }

      .top {
        transform: rotateX(90deg) translateZ(125px);
      }

      .bottom {
        transform: rotateX(-90deg) translateZ(125px);
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .contact-form-inner {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .cf-row {
        grid-template-columns: 1fr;
      }

      .about-meta {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 650px) {
      .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 6% 40px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .faq-question {
        padding: 18px 22px;
        font-size: 1rem;
      }

      .faq-item.faq-open .faq-answer {
        padding: 0 22px 22px 22px;
      }

      .cf-form-wrapper {
        padding: 36px 24px;
      }

      .about-stats {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 550px) {
      .cube-container {
        width: 180px;
        height: 180px;
      }

      .cube-face {
        width: 180px;
        height: 180px;
        font-size: 2.5rem;
      }

      .front {
        transform: translateZ(90px);
      }

      .back {
        transform: rotateY(180deg) translateZ(90px);
      }

      .right {
        transform: rotateY(90deg) translateZ(90px);
      }

      .left {
        transform: rotateY(-90deg) translateZ(90px);
      }

      .top {
        transform: rotateX(90deg) translateZ(90px);
      }

      .bottom {
        transform: rotateX(-90deg) translateZ(90px);
      }

      .af-chip {
        display: none;
      }

      .rotating-badge {
        width: 110px;
        height: 110px;
        right: 0;
      }

      .rb-num {
        font-size: 1.7rem;
      }
    }
  
/* ============= ANIMATIONS & HOVERS ============= */
.zoom-in-section {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.zoom-in-section.zoomed-in {
  opacity: 1;
  transform: scale(1);
}

/* Premium image hover */
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* Premium text gradient hover */
.text-hover-gradient {
  transition: all 0.3s ease;
}
.text-hover-gradient:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-alt), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============= GLOBAL PREMIUM HOVER EFFECTS ============= */
a:hover {
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  transition: text-shadow 0.3s ease;
}

.serv-card, .pc-card, .testimonial-card, .btn, .nav-cta {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.serv-card:hover, .pc-card:hover, .testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15), 0 0 20px rgba(255, 0, 110, 0.1);
  border-color: rgba(0, 217, 255, 0.4);
}

img:not(.logo img):hover {
  transform: scale(1.03);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(1.1);
}
