    :root {
      --primary: #0f56d9;
      --primary-dark: #073b9a;
      --secondary: #00b4ff;
      --dark: #0f172a;
      --gray: #64748b;
      --light: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --radius: 22px;
      --shadow: 0 20px 45px rgba(15, 86, 217, 0.14);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
    }

    body {
      background: var(--white);
      color: var(--dark);
      line-height: 1.7;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    /* NAVBAR */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-wrapper {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 26px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }

    .logo-icon {
      width: 160px;
      /* height: 42px; */
      border-radius: 12px;
      /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
      display: flex;
      align-items: center;
      justify-content: center;
      /* color: white; */
      /* font-weight: 900; */
      /* font-size: 24px; */
      /* box-shadow: 0 10px 25px rgba(15, 86, 217, 0.28); */
    }
    .logo-icon img{
        width: 130px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 15px;
      font-weight: 600;
      color: #334155;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--primary);
    }

    .btn-nav {
      padding: 12px 20px;
      border-radius: 999px;
      background: var(--primary);
      color: white !important;
      box-shadow: 0 12px 28px rgba(15, 86, 217, 0.24);
    }

    .btn-nav:hover {
      background: var(--primary-dark);
    }

    /* MOBILE MENU TOGGLE */
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: white;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    .menu-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: var(--primary);
      transition: 0.25s ease;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.38);
      opacity: 0;
      visibility: hidden;
      transition: 0.25s ease;
      z-index: 98;
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu {
      position: fixed;
      top: 82px;
      right: 4%;
      left: 4%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(18px);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
      padding: 18px;
      display: none;
      z-index: 99;
      transform: translateY(-12px);
      opacity: 0;
      transition: 0.25s ease;
    }

    .mobile-menu.active {
      display: block;
      transform: translateY(0);
      opacity: 1;
    }

    .mobile-menu a,
    .mobile-menu summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 14px;
      border-radius: 16px;
      color: #334155;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu a:hover,
    .mobile-menu summary:hover {
      background: #eef6ff;
      color: var(--primary);
    }

    .mobile-submenu {
      padding: 6px 0 10px 12px;
      display: grid;
      gap: 4px;
    }

    .mobile-submenu a {
      font-size: 14px;
      font-weight: 700;
      padding: 11px 14px;
      color: var(--gray);
    }

    .mobile-cta {
      margin-top: 10px;
      justify-content: center !important;
      background: var(--primary);
      color: white !important;
      box-shadow: 0 14px 30px rgba(15, 86, 217, 0.22);
    }

    body.menu-open {
      overflow: hidden;
    }


    /* HERO */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 80px 0 20px;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.16), transparent 34%),
        radial-gradient(circle at top left, rgba(15, 86, 217, 0.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .hero-wrapper {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 60px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 15px;
      border-radius: 999px;
      background: #eef6ff;
      color: var(--primary);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
      border: 1px solid #dbeafe;
    }

    .badge span {
      width: 8px;
      height: 8px;
      background: var(--secondary);
      border-radius: 50%;
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.08;
      letter-spacing: -2.5px;
      margin-bottom: 26px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      font-size: 18px;
      color: var(--gray);
      max-width: 650px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 42px;
    }

    .btn-primary,
    .btn-secondary {
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 18px 35px rgba(15, 86, 217, 0.25);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: white;
      color: var(--dark);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 600px;
    }

    .stat-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    }

    .stat-card strong {
      display: block;
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .stat-card span {
      font-size: 13px;
      color: var(--gray);
    }

    .hero-visual {
      position: relative;
      margin-top: -10%;
    }

    .dashboard-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 18px 18px 11px 18px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .dashboard-card img{
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 32px;
      position: relative;
      z-index: 1;
    }

    .dashboard-card::before {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      background: linear-gradient(135deg, rgba(15, 86, 217, 0.16), rgba(0, 180, 255, 0.18));
      border-radius: 50%;
      top: -80px;
      right: -70px;
    }

    .mock-header {
      display: flex;
      gap: 8px;
      margin-bottom: 26px;
      position: relative;
      z-index: 1;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #cbd5e1;
    }

    .dot:nth-child(1) { background: #ef4444; }
    .dot:nth-child(2) { background: #f59e0b; }
    .dot:nth-child(3) { background: #22c55e; }

    .mock-title {
      position: relative;
      z-index: 1;
      margin-bottom: 24px;
    }

    .mock-title h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .mock-title p {
      color: var(--gray);
      font-size: 14px;
    }

    .feature-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px;
      border-radius: 18px;
      background: #f8fafc;
      border: 1px solid #eef2f7;
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }

    .feature-item h4 {
      font-size: 15px;
      margin-bottom: 2px;
    }

    .feature-item p {
      font-size: 13px;
      color: var(--gray);
      margin: 0;
    }

    /* SERVICES PREVIEW */
    .section {
      padding: 90px 0;
    }

    .section-heading {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 54px;
    }

    .section-heading span {
      color: var(--primary);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
    }

    .section-heading h2 {
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.18;
      margin: 12px 0 16px;
      letter-spacing: -1.5px;
    }

    .section-heading p {
      color: var(--gray);
      font-size: 17px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      padding: 30px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: white;
      transition: 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
      border-color: #bfdbfe;
    }

    .service-card .icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: #eef6ff;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 22px;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    }

    .service-card .icon::before {
      content: "";
      position: absolute;
      inset: 7px auto auto 8px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.48);
    }

    .service-card .icon-website {
      background: linear-gradient(135deg, #eaf3ff 0%, #dff8ff 100%);
      box-shadow: 0 12px 24px rgba(15, 86, 217, 0.13);
    }

    .service-card .icon-mobile {
      background: linear-gradient(135deg, #eef4ff 0%, #e9fff3 100%);
      box-shadow: 0 12px 24px rgba(34, 197, 94, 0.13);
    }

    .service-card .icon-system {
      background: linear-gradient(135deg, #eef2ff 0%, #f4edff 48%, #e6fbff 100%);
      box-shadow: 0 12px 24px rgba(124, 58, 237, 0.13);
    }

    .service-card .icon svg {
      width: 34px;
      height: 34px;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      font-size: 21px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--gray);
      font-size: 15px;
      margin-bottom: 20px;
    }

    .service-card a {
      font-weight: 800;
      color: var(--primary);
      font-size: 14px;
    }


    /* HAFIX WORKSPACE */
    .workspace-section {
      position: relative;
      overflow: hidden;
      padding: 90px 0;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      scroll-margin-top: 82px;
    }

    .workspace-section::before {
      content: "";
      position: absolute;
      right: -140px;
      bottom: -170px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 180, 255, 0.22), rgba(15, 86, 217, 0.05) 58%, transparent 70%);
      pointer-events: none;
    }

    .workspace-heading {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 880px;
      margin: 0 auto 58px;
    }

    .workspace-heading span,
    .about-content span {
      color: var(--primary);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
    }

    .workspace-heading h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.14;
      margin: 12px 0 12px;
      letter-spacing: -1.5px;
      color: var(--dark);
    }

    .workspace-heading h2 strong {
      color: var(--primary);
      font-weight: 900;
    }

    .workspace-heading p {
      color: var(--gray);
      font-size: 17px;
      font-weight: 600;
    }

    .workspace-flow {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(300px, 1fr) minmax(440px, 0.95fr);
      gap: 44px;
      align-items: center;
    }

    .workspace-copy {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .workspace-copy article {
      padding: 24px 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    }

    .workspace-copy article h3 {
      margin-bottom: 8px;
      color: var(--dark);
      font-size: 18px;
      line-height: 1.25;
    }

    .workspace-copy article p {
      color: var(--gray);
      font-size: 14px;
      line-height: 1.55;
      margin: 0;
    }

    .workspace-roadmap-image {
      position: relative;
      width: 100%;
    }

    .workspace-roadmap-image img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 30px;
    }

    /* ABOUT */
    .about-section {
      padding: 90px 0;
      background: white;
      overflow: hidden;
      scroll-margin-top: 82px;
    }

    .about-wrapper {
      display: grid;
      grid-template-columns: 2fr 1.05fr;
      align-items: center;
      gap: 72px;
    }

    .about-visual {
      position: relative;
    }

    .about-visual::before {
      content: "";
      position: absolute;
      width: 540px;
      height: 220px;
      left: -110px;
      top: -64px;
      border-radius: 0 0 50% 50%;
      background: rgba(0, 180, 255, 0.12);
      z-index: 0;
    }

    .about-photo-card {
      position: relative;
      z-index: 1;
      min-height: 430px;
      border-radius: 32px;
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at center, rgba(15, 86, 217, 0.12), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .team-photo-card {
      padding: 0;
      min-height: 0;
      height: clamp(360px, 35vw, 450px);
      background: #f8fbff;
    }

    .team-photo-card img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .team-photo-card img.photo-fallback {
      width: min(320px, 72%);
      height: auto;
      min-height: 0;
      object-fit: contain;
      padding: 70px 0;
    }

    .about-content h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.18;
      margin: 12px 0 22px;
      letter-spacing: -1.5px;
      color: var(--dark);
    }

    .about-content h2 strong {
      color: var(--primary);
      font-weight: 900;
    }

    .about-content p {
      color: var(--gray);
      font-size: 17px;
      margin-bottom: 28px;
      max-width: 630px;
    }

    .about-button {
      width: fit-content;
    }

    /* TEAM */
    .team-section {
      background:
        radial-gradient(circle at top left, rgba(0, 180, 255, 0.1), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }

    .team-members-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .team-member-card {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .team-member-card:hover {
      transform: translateY(-6px);
      border-color: #bfdbfe;
      box-shadow: var(--shadow);
    }

    .team-member-media {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.2), transparent 34%),
        linear-gradient(135deg, #eaf7ff, #ffffff);
    }

    .team-member-media::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.2));
      pointer-events: none;
    }

    .team-member-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--member-position, center);
      display: block;
      filter: saturate(1.04) contrast(1.02);
      transform: scale(2.9);
      transform-origin: var(--member-origin, center);
    }

    .team-member-media img.member-photo-fallback {
      width: 76%;
      height: 100%;
      object-fit: contain;
      margin: auto;
      padding: 34px 0;
      filter: none;
      transform: none;
    }

    .team-member-body {
      padding: 18px 18px 20px;
      background: #ffffff;
    }

    .team-member-body h3 {
      color: var(--dark);
      font-size: 17px;
      line-height: 1.3;
      margin-bottom: 8px;
      letter-spacing: 0;
      overflow-wrap: anywhere;
    }

    .team-member-body p {
      color: var(--primary);
      font-size: 12px;
      font-weight: 900;
      line-height: 1.45;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0;
    }

    /* PORTFOLIO AND CLIENTS */
    .portfolio-section,
    .clients-section {
      background: var(--light);
      scroll-margin-top: 82px;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .project-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
      transition: 0.25s ease;
    }

    .project-card:hover {
      transform: translateY(-6px);
      border-color: #bfdbfe;
      box-shadow: var(--shadow);
    }

    .project-card-link {
      display: block;
      height: 100%;
    }

    .project-thumb {
      position: relative;
      height: 150px;
      margin: 16px 16px 0;
      border-radius: 6px 6px 0 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, rgba(15, 86, 217, 0.12), rgba(0, 180, 255, 0.1));
    }

    .project-thumb-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .project-thumb::before,
    .project-thumb::after {
      content: "";
      position: absolute;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.58);
      transform: rotate(-42deg);
    }

    .project-thumb::before {
      width: 22px;
      height: 95px;
      left: 11px;
      top: -25px;
    }

    .project-thumb::after {
      width: 28px;
      height: 100px;
      right: 18px;
      bottom: -44px;
    }

    .thumb-blue {
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, #eaf7ff, #dff1ff);
    }

    .thumb-orange {
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, #fff1e6, #ffe0c2);
    }

    .thumb-red {
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, #fff0f3, #ffd5de);
    }

    .thumb-green {
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, #eafff3, #d7fbe7);
    }

    .thumb-cyan {
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, #e8fbff, #d8f5ff);
    }

    .thumb-purple {
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
        linear-gradient(135deg, #f2efff, #e2ddff);
    }

    .project-window {
      position: absolute;
      left: 14%;
      right: 8%;
      top: 31px;
      height: 92px;
      border-radius: 5px;
      background: #ffffff;
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
      overflow: hidden;
      z-index: 1;
    }

    .project-window span {
      position: absolute;
      left: 16px;
      right: 18px;
      height: 8px;
      border-radius: 999px;
      background: #dbeafe;
    }

    .project-window span:nth-child(1) {
      top: 18px;
      width: 44%;
      background: #0f56d9;
    }

    .project-window span:nth-child(2) {
      top: 38px;
      width: 72%;
    }

    .project-window span:nth-child(3) {
      top: 58px;
      width: 55%;
    }

    .project-bars {
      position: absolute;
      right: 18px;
      bottom: 16px;
      width: 58px;
      height: 34px;
      border-radius: 6px;
      background:
        linear-gradient(90deg, #0f56d9 18%, transparent 18% 30%, #00b4ff 30% 52%, transparent 52% 64%, #22c55e 64%);
      opacity: 0.85;
    }

    .thumb-orange .project-window span:nth-child(1),
    .thumb-orange .project-bars {
      background: #fb923c;
    }

    .thumb-red .project-window span:nth-child(1),
    .thumb-red .project-bars {
      background: #ef4444;
    }

    .thumb-green .project-window span:nth-child(1),
    .thumb-green .project-bars {
      background: #22c55e;
    }

    .thumb-cyan .project-window span:nth-child(1),
    .thumb-cyan .project-bars {
      background: #00b4ff;
    }

    .thumb-purple .project-window span:nth-child(1),
    .thumb-purple .project-bars {
      background: #7c3aed;
    }

    .project-card-body {
      padding: 22px 36px 36px;
      min-height: 118px;
    }

    .project-card h3 {
      font-size: 19px;
      line-height: 1.25;
      margin-bottom: 6px;
      color: var(--dark);
    }

    .project-card p {
      color: #1e293b;
      font-size: 13px;
      line-height: 1.5;
      margin: 0;
    }

    /* NEWS / BERITA CARDS */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .news-card {
      border-radius: 16px;
      background: var(--white);
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
      transition: 0.25s ease;
    }

    .news-card:hover {
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
    }

    .news-card-link {
      display: block;
      height: 100%;
    }

    .news-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.2), transparent 34%),
        linear-gradient(135deg, #eaf7ff, #ffffff);
    }

    .news-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .news-card:hover .news-thumb img {
      transform: scale(1.06);
    }

    .news-thumb img.news-thumb-fallback {
      width: 62%;
      height: 100%;
      object-fit: contain;
      margin: auto;
      padding: 26px 0;
    }

    .news-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 1;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(4px);
      color: var(--primary);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

    .news-card-body {
      padding: 22px 24px 18px;
    }

    .news-card-body h3 {
      font-size: 19px;
      line-height: 1.3;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .news-card-body p {
      color: var(--gray);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    .news-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px 22px;
      border-top: 1px solid var(--border);
      margin-top: 14px;
    }

    .news-date {
      color: var(--gray);
      font-size: 12px;
      font-weight: 700;
    }

    .news-read-more {
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
    }

    /* NEWS DETAIL */
    .news-detail-hero {
      padding: 64px 0 48px;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.15), transparent 32%),
        radial-gradient(circle at top left, rgba(15, 86, 217, 0.11), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .news-detail-hero .news-badge-static {
      position: static;
      display: inline-flex;
      margin-bottom: 18px;
      backdrop-filter: none;
      background: #eef6ff;
    }

    .news-detail-hero h1 {
      font-size: clamp(32px, 4.6vw, 52px);
      line-height: 1.15;
      letter-spacing: -1.4px;
      margin-bottom: 14px;
      max-width: 820px;
    }

    .news-detail-hero .news-date {
      display: block;
      font-size: 13px;
    }

    .news-detail-media {
      margin-top: 40px;
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 21 / 9;
      box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    }

    .news-detail-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .news-detail-media img.news-thumb-fallback {
      width: 44%;
      height: 100%;
      object-fit: contain;
      margin: auto;
      padding: 40px 0;
      background: #eef6ff;
    }

    .news-detail-content {
      padding-top: 72px;
    }

    .news-article {
      max-width: 760px;
      margin: 0 auto;
    }

    .news-article p {
      color: #1e293b;
      font-size: 16px;
      line-height: 1.85;
      margin-bottom: 22px;
    }

    .related-news {
      background: var(--light);
      border-top: 1px solid var(--border);
    }

    .section-actions {
      display: flex;
      justify-content: center;
      margin-top: 44px;
    }

    .btn-outline-small {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 22px;
      border: 1px solid var(--primary);
      border-radius: 6px;
      color: var(--primary);
      font-size: 14px;
      font-weight: 800;
      background: #ffffff;
      transition: 0.25s ease;
    }

    .btn-outline-small:hover {
      background: var(--primary);
      color: #ffffff;
      transform: translateY(-2px);
    }

    .clients-section {
      padding: 90px 0;
      background: white;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .clients-logo-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    .client-card {
      min-height: 94px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: #ffffff;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 15px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    }

    .client-logo-card {
      aspect-ratio: 1 / 1;
      border: 1px solid var(--border);
      border-radius: 18px;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.08), transparent 38%),
        #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
      transition: 0.25s ease;
    }

    .client-logo-card:hover {
      transform: translateY(-5px);
      border-color: #bfdbfe;
      box-shadow: var(--shadow);
    }

    .client-logo-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: saturate(0.95);
    }

    /* PROJECT DETAIL */
    .project-detail-hero {
      padding: 88px 0 92px;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.15), transparent 32%),
        radial-gradient(circle at top left, rgba(15, 86, 217, 0.11), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .project-detail-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      gap: 58px;
    }

    .back-link {
      display: inline-flex;
      margin-bottom: 24px;
      color: var(--primary);
      font-size: 14px;
      font-weight: 800;
    }

    .project-detail-copy > span,
    .project-story article span,
    .related-projects .section-heading span {
      color: var(--primary);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
    }

    .project-detail-copy > span {
      display: block;
    }

    .project-detail-copy h1 {
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.08;
      letter-spacing: -2px;
      margin: 12px 0 22px;
    }

    .project-detail-copy p {
      color: var(--gray);
      font-size: 18px;
      max-width: 640px;
      margin-bottom: 28px;
    }

    .project-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      max-width: 560px;
    }

    .project-meta div {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    }

    .project-meta strong,
    .project-meta span {
      display: block;
    }

    .project-meta strong {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 4px;
    }

    .project-meta span {
      font-weight: 900;
      color: var(--dark);
    }

    .project-detail-preview {
      position: relative;
    }

    .project-showcase {
      position: relative;
      min-height: 430px;
      border-radius: 8px;
      padding: 38px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    /* SHARED PHOTO GALLERY / SLIDER (Portfolio detail + Berita foto pendukung) */
    .js-gallery-frame {
      position: relative;
      overflow: hidden;
    }

    .js-gallery-main {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .js-gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.55);
      color: var(--white);
      font-size: 18px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .js-gallery-arrow:hover {
      background: var(--primary);
    }

    .js-gallery-prev {
      left: 14px;
    }

    .js-gallery-next {
      right: 14px;
    }

    .js-gallery-counter {
      position: absolute;
      right: 14px;
      bottom: 14px;
      padding: 4px 11px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.6);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
    }

    .js-gallery-thumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .js-gallery-thumb {
      width: 64px;
      height: 48px;
      padding: 0;
      border: 2px solid transparent;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.6;
      transition: 0.2s ease;
    }

    .js-gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .js-gallery-thumb:hover {
      opacity: 0.9;
    }

    .js-gallery-thumb.active {
      border-color: var(--primary);
      opacity: 1;
    }

    .news-gallery-frame-size {
      max-width: 760px;
      margin: 0 auto;
      aspect-ratio: 16 / 9;
      border-radius: 14px;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    }

    .showcase-window {
      position: relative;
      z-index: 1;
      height: 354px;
      border-radius: 8px;
      background: white;
      box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
      display: grid;
      grid-template-columns: 90px 1fr;
      overflow: hidden;
    }

    .showcase-sidebar {
      background:
        linear-gradient(#0f172a 0 0) 24px 34px / 42px 8px no-repeat,
        linear-gradient(#dbeafe 0 0) 24px 76px / 44px 7px no-repeat,
        linear-gradient(#dbeafe 0 0) 24px 106px / 38px 7px no-repeat,
        linear-gradient(#dbeafe 0 0) 24px 136px / 48px 7px no-repeat,
        #f8fafc;
      border-right: 1px solid #eef2f7;
    }

    .showcase-main {
      padding: 30px;
      display: grid;
      gap: 20px;
      align-content: start;
    }

    .showcase-toolbar {
      height: 28px;
      border-radius: 999px;
      background: linear-gradient(90deg, #dbeafe 0 42%, #eef6ff 42% 100%);
    }

    .showcase-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .showcase-stats span {
      height: 74px;
      border-radius: 8px;
      background: #f8fafc;
      border: 1px solid #eef2f7;
    }

    .showcase-chart {
      height: 92px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, transparent 42%, rgba(15, 86, 217, 0.18) 42% 46%, transparent 46%),
        linear-gradient(180deg, #f8fbff, #eef6ff);
      border: 1px solid #e2e8f0;
    }

    .showcase-table {
      height: 62px;
      border-radius: 8px;
      background:
        linear-gradient(#e2e8f0 0 0) 18px 18px / 78% 7px no-repeat,
        linear-gradient(#e2e8f0 0 0) 18px 38px / 64% 7px no-repeat,
        #ffffff;
      border: 1px solid #eef2f7;
    }

    .project-detail-content {
      background: white;
    }

    .project-content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 34px;
      align-items: start;
    }

    .project-story {
      display: grid;
      gap: 18px;
    }

    .project-story article {
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    }

    .project-story article h2 {
      font-size: 25px;
      line-height: 1.25;
      margin: 8px 0 10px;
      letter-spacing: -0.5px;
    }

    .project-story article p {
      color: var(--gray);
      font-size: 16px;
      margin: 0;
    }

    .project-sidebar {
      position: sticky;
      top: 106px;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--light);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    }

    .project-sidebar h3 {
      font-size: 22px;
      margin-bottom: 18px;
    }

    .project-sidebar ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 26px;
    }

    .project-sidebar li {
      display: flex;
      gap: 10px;
      color: #334155;
      font-size: 15px;
      font-weight: 700;
    }

    .project-sidebar li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      flex: 0 0 8px;
      margin-top: 9px;
    }

    .project-sidebar .btn-primary {
      width: 100%;
      justify-content: center;
    }

    .related-projects {
      background: var(--light);
      border-top: 1px solid var(--border);
    }

    /* MULTI PAGE CONTENT */
    .page-only {
      min-height: calc(100vh - 198px);
    }

    .page-hero {
      padding: 88px 0 84px;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.16), transparent 34%),
        radial-gradient(circle at top left, rgba(15, 86, 217, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 56px;
    }

    .page-hero h1 {
      font-size: clamp(40px, 5vw, 64px);
      line-height: 1.08;
      letter-spacing: -2.2px;
      margin-bottom: 24px;
    }

    .page-hero h1 span {
      color: var(--primary);
    }

    .page-hero p {
      font-size: 18px;
      color: var(--gray);
      max-width: 670px;
      margin-bottom: 32px;
    }

    .hero-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 32px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      background: linear-gradient(135deg, rgba(15, 86, 217, 0.16), rgba(0, 180, 255, 0.18));
      border-radius: 50%;
      top: -90px;
      right: -80px;
    }

    .hero-card-content {
      position: relative;
      z-index: 1;
    }

    .hero-card h3 {
      font-size: 25px;
      margin-bottom: 14px;
      letter-spacing: -0.7px;
    }

    .hero-card p {
      font-size: 15px;
      margin-bottom: 24px;
    }

    .check-list {
      display: grid;
      gap: 14px;
    }

    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      border-radius: 16px;
      background: #f8fafc;
      border: 1px solid #eef2f7;
    }

    .check-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 28px;
      font-size: 14px;
      font-weight: 900;
    }

    .check-item strong {
      display: block;
      font-size: 15px;
      margin-bottom: 2px;
    }

    .check-item span {
      color: var(--gray);
      font-size: 13px;
    }

    .section-light {
      background: var(--light);
    }

    .service-card ul,
    .package-card ul {
      list-style: none;
      display: grid;
      gap: 9px;
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }

    .service-card li,
    .package-card li {
      color: #334155;
      font-size: 14px;
      display: flex;
      gap: 9px;
      align-items: flex-start;
    }

    .service-card li::before {
      content: "•";
      color: var(--primary);
      font-weight: 900;
    }

    .package-card li::before {
      content: "✓";
      color: var(--primary);
      font-weight: 900;
    }

    .process-grid,
    .package-grid {
      display: grid;
      gap: 24px;
    }

    .process-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .package-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .process-card,
    .package-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    }

    .process-card {
      padding: 28px;
    }

    .process-number {
      width: 46px;
      height: 46px;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .process-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .process-card p {
      font-size: 14px;
      color: var(--gray);
    }

    .package-card {
      padding: 34px;
      transition: 0.25s ease;
    }

    .package-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    .package-card.featured {
      border: 2px solid var(--primary);
      box-shadow: 0 20px 45px rgba(15, 86, 217, 0.13);
    }

    .label {
      display: inline-flex;
      padding: 7px 13px;
      border-radius: 999px;
      background: #eef6ff;
      color: var(--primary);
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .package-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .package-price {
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 14px;
    }

    .package-card p {
      color: var(--gray);
      font-size: 15px;
      margin-bottom: 22px;
    }

    .package-card a {
      display: inline-flex;
      width: 100%;
      justify-content: center;
      padding: 13px 20px;
      border-radius: 999px;
      background: var(--primary);
      color: white;
      font-weight: 800;
      margin-top: 24px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 820px;
      margin: 0 auto;
    }

    .center-actions {
      justify-content: center;
      margin-top: 28px;
      margin-bottom: 0;
    }
    /* CTA */
    .cta {
      padding: 80px 0;
      background: var(--light);
    }

    .cta-heading {
      margin-bottom: 34px;
    }

    .cta-box {
      border-radius: 34px;
      padding: 58px;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.25), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      align-items: center;
      gap: 30px;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.16;
      margin-bottom: 16px;
      letter-spacing: -1.4px;
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
    }

    .cta-action {
      text-align: right;
    }

    .cta-action a {
      display: inline-flex;
      padding: 15px 25px;
      background: white;
      color: var(--primary);
      border-radius: 999px;
      font-weight: 800;
    }

    /* FOOTER */
    .site-footer {
      position: relative;
      overflow: hidden;
      padding: 64px 0 26px;
      border-top: 1px solid #dbeafe;
      background:
        radial-gradient(circle at top right, rgba(0, 180, 255, 0.2), transparent 30%),
        radial-gradient(circle at bottom left, rgba(15, 86, 217, 0.13), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
      color: #334155;
      font-size: 14px;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(15, 86, 217, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 86, 217, 0.05) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
      pointer-events: none;
    }

    .footer-wrapper,
    .footer-bottom {
      position: relative;
      z-index: 1;
    }

    .footer-wrapper {
      display: grid;
      grid-template-columns: 1.35fr 1fr 1.15fr 1.15fr;
      gap: 42px;
      align-items: start;
    }

    .footer-brand {
      max-width: 330px;
    }

    .footer-logo {
      display: inline-flex;
      width: 150px;
      margin-bottom: 18px;
    }

    .footer-logo img {
      display: block;
      width: 100%;
      height: auto;
    }

    .footer-brand p,
    .footer-note {
      color: var(--gray);
      line-height: 1.75;
      margin: 0;
    }

    .footer-column h3 {
      color: var(--dark);
      font-size: 15px;
      line-height: 1.2;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

    .footer-links,
    .footer-contact,
    .support-hours {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 0;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #334155;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .footer-links a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 2px solid var(--secondary);
      border-right: 2px solid var(--secondary);
      transform: rotate(45deg);
      flex: 0 0 7px;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: var(--primary);
      transform: translateX(2px);
    }

    .footer-contact {
      margin-top: 14px;
    }

    .footer-contact li,
    .support-hours li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #334155;
      line-height: 1.55;
      font-weight: 650;
    }

    .footer-contact li > span:first-child,
    .support-hours li > span {
      min-width: 34px;
      height: 24px;
      padding: 0 7px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #dbeafe;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 8px 18px rgba(15, 86, 217, 0.08);
      flex: 0 0 auto;
    }

    .support-map {
      width: 100%;
      height: 108px;
      margin: -6px 0 16px;
      border-radius: 8px;
      border: 1px solid #dbeafe;
      background:
        radial-gradient(circle at 30% 42%, rgba(0, 180, 255, 0.18), transparent 20%),
        radial-gradient(circle at 68% 48%, rgba(15, 86, 217, 0.16), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 246, 255, 0.92));
      position: relative;
      overflow: hidden;
      box-shadow: 0 14px 32px rgba(15, 86, 217, 0.08);
    }

    .support-map::before {
      content: "";
      position: absolute;
      inset: 18px 22px;
      background-image: radial-gradient(circle, rgba(15, 86, 217, 0.46) 1.2px, transparent 1.6px);
      background-size: 9px 9px;
      opacity: 0.72;
      clip-path: polygon(5% 46%, 18% 24%, 36% 30%, 44% 52%, 56% 28%, 78% 22%, 95% 44%, 82% 68%, 58% 62%, 42% 80%, 24% 66%);
    }

    .support-map span {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--secondary);
      box-shadow: 0 0 0 6px rgba(0, 180, 255, 0.14);
    }

    .support-map span:nth-child(1) { left: 24%; top: 42%; }
    .support-map span:nth-child(2) { left: 36%; top: 58%; }
    .support-map span:nth-child(3) { left: 56%; top: 40%; }
    .support-map span:nth-child(4) { left: 69%; top: 55%; }
    .support-map span:nth-child(5) { left: 77%; top: 34%; }
    .support-map span:nth-child(6) { left: 48%; top: 66%; }

    .support-hours {
      margin-top: 12px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 42px;
      padding-top: 22px;
      border-top: 1px solid #dbeafe;
      color: var(--gray);
      font-size: 13px;
    }

    .footer-top-button {
      position: absolute;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      width: 52px;
      height: 52px;
      border-radius: 8px;
      background: var(--primary);
      color: #ffffff;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1px;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 16px 30px rgba(15, 86, 217, 0.26);
      transition: 0.2s ease;
    }

    .footer-top-button span {
      font-size: 15px;
      line-height: 1;
    }

    .footer-top-button:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .nav-menu {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .hero-wrapper,
      .hero-grid,
      .workspace-flow,
      .about-wrapper,
      .project-detail-grid,
      .project-content-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 70px 0 80px;
      }

      .hero-wrapper {
        gap: 38px;
      }

      .hero-visual {
        order: -1;
        margin-top: 0;
      }

      .services-grid,
      .process-grid,
      .package-grid,
      .contact-grid,
      .workspace-copy,
      .clients-grid,
      .clients-logo-grid,
      .team-members-grid,
      .footer-wrapper,
      .stats {
        grid-template-columns: 1fr;
      }



      .page-hero {
        padding: 64px 0 70px;
      }

      .hero-card,
      .package-card,
      .process-card {
        padding: 24px;
      }
      .workspace-section {
        padding: 70px 0;
      }

      .workspace-heading {
        text-align: left;
        margin-bottom: 34px;
      }

      .workspace-flow {
        gap: 30px;
      }

      .workspace-copy {
        gap: 18px;
      }

      .workspace-copy article {
        padding: 22px;
      }
      .workspace-roadmap-image {
        margin-top: 4px;
      }

      .about-section,
      .clients-section {
        padding: 70px 0;
      }

      .about-wrapper {
        gap: 34px;
      }

      .about-photo-card {
        min-height: 300px;
        padding: 34px;
      }

      .team-photo-card {
        min-height: 0;
        height: clamp(220px, 56vw, 320px);
        padding: 0;
      }

      .team-photo-card img {
        min-height: 0;
      }

      .team-photo-card img.photo-fallback {
        min-height: 0;
        padding: 54px 0;
      }

      .about-visual::before {
        width: 360px;
        height: 150px;
        left: -80px;
        top: -44px;
      }

      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      .team-member-body {
        padding: 18px;
      }

      .project-grid,
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .project-detail-hero {
        padding: 70px 0;
      }

      .project-detail-preview {
        order: -1;
      }

      .project-showcase {
        min-height: 340px;
        padding: 24px;
      }

      .showcase-window {
        height: 292px;
      }

      .project-sidebar {
        position: static;
      }
      .cta-action {
        text-align: left;
      }

      .cta-box {
        padding: 36px;
      }

      .site-footer {
        padding: 52px 0 28px;
      }

      .footer-wrapper {
        gap: 30px;
      }

      .footer-brand {
        max-width: 560px;
      }

      .support-map {
        max-width: 420px;
      }

      .footer-bottom {
        padding-right: 72px;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 32px, 1180px);
      }

      .hero {
        padding: 42px 0 56px;
      }

      .hero-wrapper {
        gap: 28px;
      }

      .hero-content {
        text-align: center;
      }

      .hero h1 {
        font-size: clamp(34px, 10.8vw, 46px);
        line-height: 1.12;
        letter-spacing: 0;
        margin-bottom: 18px;
      }

      .hero p {
        font-size: 16px;
        line-height: 1.68;
        margin: 0 auto 26px;
      }

      .hero-actions {
        justify-content: center;
        gap: 12px;
        margin-bottom: 0;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
      }

      .hero-visual {
        order: 0;
        width: 100%;
      }

      .dashboard-card {
        border-radius: 24px;
        padding: 10px;
      }

      .dashboard-card img {
        border-radius: 18px;
      }

      .dashboard-card::before {
        width: 150px;
        height: 150px;
        top: -54px;
        right: -42px;
      }

      .project-grid,
      .news-grid,
      .team-members-grid,
      .project-meta,
      .showcase-stats {
        grid-template-columns: 1fr;
      }

      .team-member-media {
        aspect-ratio: 16 / 11;
      }

      .team-member-body h3 {
        font-size: 17px;
      }

      .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }

      .client-logo-card {
        border-radius: 16px;
        padding: 14px;
      }

      .project-thumb {
        height: 136px;
        margin: 12px 12px 0;
      }

      .project-card-body {
        padding: 18px 22px 26px;
        min-height: auto;
      }

      .project-detail-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: 0;
      }

      .project-detail-copy p {
        font-size: 16px;
      }

      .project-showcase {
        min-height: 280px;
        padding: 16px;
      }

      .showcase-window {
        height: 248px;
        grid-template-columns: 62px 1fr;
      }

      .showcase-main {
        padding: 18px;
        gap: 14px;
      }

      .showcase-stats span,
      .showcase-chart,
      .showcase-table {
        height: 54px;
      }

      .project-story article,
      .project-sidebar {
        padding: 22px;
      }

      .site-footer {
        padding: 46px 0 94px;
      }

      .footer-logo {
        width: 158px;
      }

      .footer-column h3 {
        margin-bottom: 14px;
      }

      .footer-contact li,
      .support-hours li {
        gap: 8px;
      }

      .support-map {
        height: 96px;
      }

      .footer-bottom {
        padding-right: 0;
        margin-top: 32px;
      }

      .footer-top-button {
        right: 16px;
        bottom: 22px;
      }
    }
