:root {
  --bg-color: #050505;
  --text-color: #cccccc;
  --primary-color: #ffffff;
  --accent-color: #00a3ff;
  --font-heading: "IBM Plex Mono", monospace;
  --font-body: "IBM Plex Sans", sans-serif;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
  overflow-x: hidden;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-out 0.5s, visibility 1s ease-out 0.5s;
  visibility: visible;
  opacity: 1;
}

.loading-content {
  text-align: center;
}

.loading-counter {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.loading-text {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.loaded .loading-screen {
  opacity: 0;
  visibility: hidden;
}

.main-header {
  position: fixed;
  top: 2rem;
  right: 2rem;
  left: auto;
  width: auto;
  background-color: rgba(240, 240, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid rgba(200, 200, 200, 0.5);
  padding: 0;
  transition: background-color 0.3s ease;
}

.header-container {
  display: flex;
  align-items: stretch;
  min-height: var(--header-height);
  width: auto;
  max-width: none;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  color: var(--primary-color);
  text-decoration: none;
  padding: 0 3rem 0 2rem;
  transform: skewX(-20deg);
  margin-left: -1rem;
}

.logo span {
  display: block;
  transform: skewX(20deg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  color: black;
  text-decoration: none;
  margin: 0 0.5rem;
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}

.main-nav a:hover,
.main-nav a.active-nav-link {
  color: var(--primary-color);
  transition-delay: 0.05s;
}

.main-nav a:hover::before,
.main-nav a.active-nav-link::before {
  transform: scaleX(1);
}

.cta-button {
  background-color: black;
  color: white;
  padding: 0.7rem 1.2rem;
  border: 1px solid black;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}
.cta-button:hover {
  background-color: #333;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.mobile-nav-toggle {
  display: none;
  font-size: 2rem;
  color: black;
  z-index: 1001;
  padding: 0 1rem;
}
.mobile-nav-toggle .bi-x-lg {
  display: none;
}
.nav-open .mobile-nav-toggle .bi-list {
  display: none;
}
.nav-open .mobile-nav-toggle .bi-x-lg {
  display: block;
}

.hero-dashboard {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 6rem) 4rem 4rem 4rem;
  box-sizing: border-box;
}

.hero-main-stage {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 550px;
}

.hero-text-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #222;
  padding-bottom: 2rem;
}

.hero-text-content {
  opacity: 0;
  transform: translateY(15px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out,
    max-height 0.6s ease-in-out;
}

.hero-text-content.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  pointer-events: all;
}

.hero-text-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--primary-color);
  font-weight: 700;
}
.hero-text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1.5rem 0 2rem 0;
  max-width: 45ch;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
}
.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid #444;
}
.cta-button.secondary:hover {
  background-color: #222;
  border-color: #666;
}

.hero-mode-nav {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid #222;
  width: 100%;
}
.hero-mode-nav button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.hero-mode-nav button:hover {
  color: #999;
}
.hero-mode-nav button.active {
  color: var(--primary-color);
}

.hero-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.hero-visual-content {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.hero-visual-content.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.branding-composition {
  position: relative;
  width: 100%;
  height: 100%;
}
.branding-composition img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  border: 1px solid #333;
}
.mockup-1 {
  width: 70%;
  top: 10%;
  left: 0;
  transform: rotate(-5deg);
  z-index: 2;
}
.mockup-2 {
  width: 40%;
  top: 5%;
  right: 5%;
  transform: rotate(3deg);
  z-index: 1;
}
.mockup-3 {
  width: 50%;
  bottom: 10%;
  left: 15%;
  transform: rotate(6deg);
  z-index: 3;
}

.video-player-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #111;
}
.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #fff;
}
.video-player-container.playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

#webgl-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 2rem;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #222;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-color);
}
.stat-item p {
  color: #888;
}

.about-section {
  padding: 120px 4rem;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}
.about-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
}
.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.about-text h2 span {
  color: transparent;
  -webkit-text-stroke: 3.5px #ff0000;
}
.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 40ch;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 6rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#interactive-services {
  padding: 120px 4rem;
  background-color: #0c0c0c;
}
#interactive-services .service-canvas__container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}
#interactive-services .service-canvas__list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#interactive-services .service-canvas__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 4rem;
  text-align: left;
  margin-bottom: 3rem;
}
#interactive-services .service-canvas__list {
  display: flex;
  flex-direction: column;
}
#interactive-services .service-canvas__item {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #444;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid #282828;
  display: flex;
  align-items: center;
  transition: color 0.4s ease;
}
#interactive-services .service-canvas__item:hover,
#interactive-services .service-canvas__item.active {
  color: var(--primary-color);
}
#interactive-services .service-canvas__item-number {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: #666;
  margin-right: 2rem;
}
#interactive-services .service-canvas__item-name {
  flex-grow: 1;
}
#interactive-services .service-canvas__item i {
  font-size: 2rem;
  transform: translateX(-10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#interactive-services .service-canvas__item:hover i,
#interactive-services .service-canvas__item.active i {
  transform: translateX(0);
  opacity: 1;
}
#interactive-services .service-canvas__visual-area {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
  height: 600px;
  max-height: 80vh;
}
#interactive-services .service-canvas__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
#interactive-services .service-canvas__panel.active {
  opacity: 1;
  transform: scale(1);
}
#interactive-services .service-canvas__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#interactive-services .service-canvas__prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #555;
  z-index: 1;
  transition: opacity 0.4s ease;
}
#interactive-services .service-canvas__prompt.hidden {
  opacity: 0;
}
#interactive-services .service-canvas__prompt i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.work-section {
  padding: 120px 4rem;
}
.work-section .section-title {
  text-align: center;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1600px;
  margin: auto;
}
.work-item {
  text-decoration: none;
  color: var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.work-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #222;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.work-item:hover .work-item-inner {
  transform: translateZ(30px);
}
.work-item:hover img {
  transform: scale(1.1);
}
.work-item.wide {
  grid-column: span 2;
}
.work-item.tall {
  grid-row: span 2;
}
.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  transform: translateY(25%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.work-item:hover .work-info {
  transform: translateY(0);
  opacity: 1;
}
.work-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0;
}
.work-info span {
  font-weight: 500;
  color: var(--text-color);
}
.work-cta {
  background-color: var(--primary-color);
  color: var(--bg-color);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.work-item:hover .work-cta {
  transform: translateY(0);
}
.work-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  mix-blend-mode: overlay;
  opacity: 0;
  transform: translateX(-100%) skewX(-20deg);
  transition: none;
}
.work-item:hover .work-glare {
  opacity: 1;
  transform: translateX(100%) skewX(-20deg);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-section {
  padding: 0;
  background-color: #0c0c0c;
}

.showcase-panel {
  min-height: 100vh;
  padding: 120px 4rem;
  border-bottom: 1px solid #282828;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.showcase-panel:last-child {
  border-bottom: none;
}
#showcase-branding {
  background-color: #0c0c0c;
}
#showcase-web {
  background-color: #050505;
}
#showcase-motion {
  background-color: #0c0c0c;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.showcase-panel.alt-layout .showcase-content {
  grid-template-columns: 1.2fr 1fr;
}
.showcase-panel.alt-layout .showcase-visual {
  order: -1;
}

.showcase-text {
  max-width: 45ch;
}
.showcase-text .showcase-number {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}
.showcase-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.showcase-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}
.showcase-checklist {
  list-style: none;
  padding: 0;
  margin-top: 5rem;
}

.showcase-checklist li {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.showcase-checklist li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.showcase-visual {
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branding-animation-container {
  position: relative;
  width: 300px;
  height: 300px;
  cursor: pointer;
}

.decon-3d-space {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.decon-pane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background-size: cover;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

#pane-grid {
  background-color: #1a1a1a;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  border: 1px solid #444;
  transform: translate(-50%, -50%) translateZ(-1px);
}

#pane-type {
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%) translateZ(1px);
}

#pane-color {
  background: var(--accent-color);
}

.label {
  position: absolute;
  color: #666;
  font-family: var(--font-body);
  opacity: 0;
  white-space: nowrap;
  text-align: right;
}
.label h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ccc;
  margin: 0;
}
.label p {
  font-size: 0.9rem;
  margin: 0;
}
.label::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #444;
  top: 50%;
}
.label-1 {
  top: 50%;
  left: -100px;
}
.label-1::before {
  width: 80px;
  right: -90px;
}
.label-2 {
  bottom: 0;
  right: 0;
  text-align: left;
}
.label-2::before {
  width: 80px;
  left: -90px;
}
.label-3 {
  top: 0;
  right: -70px;
  text-align: left;
}
.label-3::before {
  width: 30px;
  left: -40px;
}

.click-prompt {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  transition: opacity 0.4s ease;
  animation: pulse 2s infinite ease-in-out;
}
.click-prompt i {
  color: var(--accent-color);
}
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

.web-animation-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  perspective: 1000px;
}
.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.layer-bg {
  background: linear-gradient(45deg, #111, #222);
  transform: translateZ(-100px) scale(1.5);
}
.layer-card-1 {
  width: 80%;
  height: 60%;
  top: 10%;
  left: 10%;
  background-color: #2a2a2a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateZ(50px);
}
.layer-card-2 {
  width: 70%;
  height: 50%;
  top: 35%;
  left: 15%;
  background-color: #3a3a3a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateZ(100px);
}
.layer-ui {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23555' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  transform: translateZ(150px);
}

.motion-animation-container {
  width: 100%;
  height: 100%;
}
model-viewer {
  width: 100%;
  height: 100%;
  background-color: transparent;
  --poster-color: transparent;
}

.contact-section {
  min-height: 90vh;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-container h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 2rem;
}
.minimalist-contact .minimalist-cta {
  /* Menyesuaikan dengan kelas HTML */
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 9rem);
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  padding: 1rem 0;
}
.minimalist-contact .minimalist-cta:hover {
  color: var(--accent-color);
}
.minimalist-contact .minimalist-subtext {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.site-footer {
  background-color: var(--primary-color);
  color: var(--bg-color);
  padding-top: 1px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background-color: var(--primary-color);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.marquee__inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__inner span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 2rem;
  color: var(--bg-color);
}
.marquee__inner i {
  font-size: 0.5rem;
  vertical-align: middle;
  opacity: 0.5;
  color: var(--bg-color);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 4rem 2rem 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  align-items: center;
}

.footer-column:not(.footer-column--large) {
  text-align: center;
}

.footer-column--large {
  display: flex;
  flex-direction: column;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 15ch;
  margin-bottom: auto;
  color: var(--bg-color);
}
.footer-email-link {
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 3rem;
  position: relative;
  cursor: pointer;
  color: var(--bg-color);
}

.footer-email-link::before {
  content: "→";
  display: inline-block;
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.footer-email-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-email-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: var(--bg-color);
}
.footer-email-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #555;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  color: var(--bg-color);
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: var(--bg-color);
}
.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}
.footer-back-to-top {
  color: #555;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.footer-back-to-top:hover {
  color: var(--bg-color);
}
.footer-back-to-top i {
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.footer-back-to-top:hover i {
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .hero-dashboard {
    padding: calc(var(--header-height) + 4rem) 3rem 2rem 3rem;
  }
  .hero-main-stage {
    gap: 3rem;
  }
  .hero-text-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
  }

  .about-section,
  .work-section,
  .marquee,
  .footer-main,
  #interactive-services,
  .showcase-panel,
  .contact-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
  .about-text h2 {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 5rem;
  }
  #interactive-services .service-canvas__title {
    font-size: 3.5rem;
  }
  #interactive-services .service-canvas__item {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }
  .work-info h3 {
    font-size: 1.8rem;
  }

  .showcase-content {
    gap: 3rem;
  }

  #showcase-web .showcase-content {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  #showcase-web .showcase-checklist {
    display: inline-block;
    text-align: left;
  }
  #showcase-web .showcase-text {
    order: 0;
    text-align: center;
    max-width: 60ch;
    margin: 0 auto;
  }

  .showcase-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
  .footer-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }
}

@media (max-width: 992px) {
  .main-header {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
  .header-container {
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
  }
  .logo {
    margin-left: 0;
    background-color: transparent;
    transform: skewX(0);
    padding: 0;
  }
  .logo span {
    transform: skewX(0);
    color: black;
  }
  .header-right-group {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
  }

  /* Navigasi Mobile Terbuka */
  .main-header.nav-open {
    background-color: white;
    height: 100vh;
  }
  .main-header.nav-open .header-container {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 2rem;
  }
  .main-header.nav-open .logo {
    display: none;
  }
  .main-header.nav-open .header-right-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .main-header.nav-open .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .main-header.nav-open .main-nav a {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: #1a1a1a;
  }
  .main-header.nav-open .main-nav a::before {
    display: none;
  }
  .main-header.nav-open .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    text-align: center;
  }
  .main-header.nav-open .mobile-nav-toggle {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
  }

  .hero-dashboard {
    min-height: auto;
    padding: calc(var(--header-height) + 4rem) 2rem 4rem 2rem;
  }
  .hero-main-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-left {
    order: 2;
    min-height: auto;
    align-items: center;
  }
  .hero-right {
    order: 1;
    min-height: 45vh;
    height: 50vh;
    max-height: 450px;
    width: 100%;
  }
  .hero-text-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group,
  .hero-mode-nav {
    justify-content: center;
  }

  .about-section,
  .work-section {
    padding: 6rem 2rem;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-text {
    text-align: center;
  }
  .about-text h2 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 4rem;
  }

  #interactive-services {
    padding: 80px 2rem;
  }
  #interactive-services .service-canvas__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #interactive-services .service-canvas__title {
    text-align: center;
    font-size: 3rem;
  }
  #interactive-services .service-canvas__list {
    max-width: 400px;
    margin: auto;
  }
  #interactive-services .service-canvas__visual-area {
    height: 450px;
  }

  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }
  .work-item.wide,
  .work-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .work-info {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .work-info h3 {
    font-size: 1.6rem;
  }

  .showcase-panel {
    padding: 6rem 2rem;
    min-height: auto;
  }
  .showcase-content {
    margin-left: auto;
    margin-right: auto;
    place-items: center;
  }
  .showcase-visual {
    grid-row: 1;
    height: 400px;
  }
  .showcase-text {
    max-width: 60ch;
  }
  .showcase-text,
  .showcase-panel.alt-layout .showcase-text {
    text-align: center;
    order: 0;
  }
  .showcase-panel.alt-layout .showcase-visual {
    order: -1;
  }
  .showcase-checklist {
    display: inline-block;
    text-align: left;
  }

  .contact-section {
    padding: 5rem 2rem;
  }
  .minimalist-contact .minimalist-cta {
    font-size: clamp(2.5rem, 8vw, 7rem);
  }

  .footer-main {
    padding: 5rem 2rem 2rem 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .footer-column--large {
    align-items: center;
  }
  .footer-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-dashboard {
    padding: calc(var(--header-height) + 3rem) 1.5rem 3rem 1.5rem;
  }
  .hero-right {
    min-height: 30vh;
  }
  .hero-text-content h1 {
    font-size: 2.5rem;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .stat-item h3 {
    font-size: 2rem;
  }

  .about-section,
  .work-section {
    padding: 5rem 1rem;
  }
  .section-title {
    font-size: 3rem;
  }
  .about-text h2 {
    font-size: 2.5rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-info h3 {
    font-size: 1.5rem;
  }

  .showcase-panel {
    padding: 5rem 1.5rem;
  }
  .label {
    display: none;
  }
  #showcase-motion .showcase-visual {
    height: 400px;
  }
  .showcase-visual {
    height: 300px;
  }
  .showcase-text h2 {
    font-size: 2rem;
  }
  .branding-animation-container {
    transform: scale(0.8);
  }
  .click-prompt {
    font-size: 0.8rem;
    bottom: -20px;
  }

  .contact-section {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }

  .hero-dashboard {
    padding: calc(var(--header-height) + 2rem) 1rem 3rem 1rem;
  }
  .hero-text-content h1 {
    font-size: 2.2rem;
  }
  .hero-text-content p {
    font-size: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  .hero-mode-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .hero-stats-bar {
    gap: 1rem;
  }

  .about-section {
    padding: 4rem 1rem;
  }
  .about-text h2 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 3rem;
  }

  #interactive-services {
    padding: 60px 1rem;
  }
  #interactive-services .service-canvas__title {
    font-size: 2.5rem;
  }
  #interactive-services .service-canvas__item {
    font-size: 1.2rem;
  }
  #interactive-services .service-canvas__visual-area {
    height: 300px;
  }

  .work-section {
    padding: 4rem 1rem;
  }
  .work-info h3 {
    font-size: 1.4rem;
  }
  .work-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .showcase-panel {
    padding: 4rem 1.5rem;
    min-height: auto;
    overflow-x: hidden;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    place-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .showcase-visual,
  .showcase-text {
    grid-column: 1 / -1 !important;
    width: 100%;
    order: 0 !important;
  }

  .showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .showcase-text {
    max-width: 45ch;
    text-align: center;
  }

  .showcase-text .showcase-number {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
  }

  .showcase-text h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .showcase-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-top: 1.25rem;
    color: var(--text-color);
  }

  .showcase-checklist {
    margin-top: 2rem;
    padding-left: 0;
    font-size: 0.9rem;
    display: inline-block;
    text-align: left;
  }

  .showcase-checklist li {
    gap: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .label {
    display: none !important;
  }

  #showcase-branding .showcase-visual {
    height: 280px;
    overflow: hidden;
  }

  #showcase-branding .branding-animation-container {
    width: 260px;
    height: 260px;
    transform: scale(0.8);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }

  #showcase-web .showcase-visual {
    height: 240px;
  }
  #showcase-web .showcase-content {
    order: 0;
  }
  #showcase-web .web-animation-container {
    width: 100%;
    height: 100%;
    transform: scale(0.95);
    overflow: hidden;
  }

  #showcase-motion .showcase-visual {
    height: 350px;
    max-width: 100%;
  }
  #showcase-motion .motion-animation-container {
    width: 100%;
    height: 100%;
  }

  .contact-section {
    padding: 4rem 1rem;
  }
  .minimalist-contact .minimalist-cta {
    font-size: clamp(2rem, 7vw, 5rem);
  }
  .footer-main {
    padding: 4rem 1rem 1.5rem 1rem;
  }
  .marquee__inner span {
    font-size: 1.2rem;
  }
  .footer-heading {
    font-size: 2.5rem;
  }
}