/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =============== VARIABLES =============== */
:root {
  --primary-color: #0a0a0a;
  --secondary-color: #121212;
  --accent-color: #95AE98;
  --accent-dark: #7A8D7C;
  --text-color: #F0F0EC;
  --text-secondary: #C8C8C2;
  --glass-bg: rgba(25, 25, 25, 0.6);
  --glass-border: rgba(149, 174, 152, 0.3);
  --transition: all 0.4s ease;
}

/* =============== RESET & BASE STYLES =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at center, #0f0f0f, #000000);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* =============== PARTIKEL BACKGROUND =============== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* =============== GLASSMORPHISM EFFECT =============== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: var(--transition);
}

/* =============== FLOATING ANIMATION =============== */
.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* =============== NAVIGATION =============== */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.logo-icon {
  margin-right: 10px;
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 30px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background: var(--text-color);
  margin: 5px;
  transition: var(--transition);
}

/* =============== HERO SECTION =============== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 100px 50px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.cta-btn {
  padding: 14px 30px;
  background: linear-gradient(45deg, var(--accent-dark), var(--accent-color));
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-btn i {
  font-size: 1.2rem;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.hero-animation {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.floating-cube {
  position: relative;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(25, 25, 25, 0.4);
  border: 0.2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: #95AE98;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: inset 0 0 10px rgba(149, 174, 152, 0.3), 
              0 0 20px rgba(0, 0, 0, 0.5);
}

.face.front  { transform: translateZ(150px); }
.face.back   { transform: rotateY(180deg) translateZ(150px); }
.face.top    { transform: rotateX(90deg) translateZ(150px); }
.face.bottom { transform: rotateX(-90deg) translateZ(150px); }
.face.left   { transform: rotateY(-90deg) translateZ(150px); }
.face.right  { transform: rotateY(90deg) translateZ(150px); }

/* =============== SECTION STYLES =============== */
.section {
  padding: 100px 20px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* =============== PORTFOLIO SECTION =============== */
.tech-foundation {
  margin: 20px 0 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.freedom-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.freedom-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.freedom-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-color);
  width: 24px;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  transition: var(--transition);
  transform: translateY(0);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-header {
  height: 200px;
  overflow: hidden;
}

.card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-card:hover .card-header img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card-footer {
  padding: 0 20px 20px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.portfolio-link:hover {
  gap: 12px;
}

/* =============== PACKAGES SECTION =============== */
.paket-section {
  background: radial-gradient(circle at top, #1a1a1a, #000000);
}

.paket-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.paket-card {
  padding: 30px;
  transform: translateY(0);
  transition: var(--transition);
}

.paket-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paket-badge {
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.starter {
  background: linear-gradient(45deg, #00c853, #64dd17);
  color: #000;
}

.pro {
  background: linear-gradient(45deg, #2979ff, #2962ff);
  color: #fff;
}

.custom {
  background: linear-gradient(45deg, #d50000, #ff1744);
  color: #fff;
}

.paket-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.paket-features {
  list-style: none;
  margin-bottom: 30px;
}

.paket-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.paket-features i {
  color: var(--accent-color);
  margin-top: 4px;
  font-size: 0.9rem;
}

.cta-wa {
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(45deg, #128C7E, #25D366);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* =============== ADD-ONS SECTION =============== */
.addons-section {
  background: radial-gradient(circle at bottom, #1a1a1a, #000000);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 20px;
}

.accordion-btn {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-btn i {
  margin-right: 15px;
  color: var(--accent-color);
}

.accordion-btn:hover {
  color: var(--accent-color);
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-btn.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.addon-list {
  list-style: none;
  padding: 0 20px 20px;
}

.addon-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.addon-list li:last-child {
  border-bottom: none;
}

/* =============== ORDER SECTION =============== */
.order-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.order-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-color);
}

.form-group label i {
  margin-right: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, var(--accent-dark), var(--accent-color));
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.order-info {
  padding: 30px;
}

.info-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-header h3 {
  font-size: 1.4rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 5px;
}

.info-content {
  margin-bottom: 30px;
}

.cta-btn.wa-btn {
  background: linear-gradient(45deg, #128C7E, #25D366);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn.wa-btn:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.step {
  text-align: center;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin: 0 auto 10px;
  position: relative;
}

.step-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 15px;
  height: 2px;
  background: var(--accent-color);
}

.step:last-child .step-icon::after {
  display: none;
}

.step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* =============== POWERED BY SECTION =============== */
.powered-by { 
  padding: 1.5rem 1rem; 
  text-align: center; 
  background: rgba(255, 255, 255, 0.05); 
  border-radius: 1rem; 
  backdrop-filter: blur(16px); 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 20px rgba(78, 84, 200, 0.2); 
  margin: 2rem auto; 
  max-width: 1100px; 
  border: 1px solid rgba(255, 255, 255, 0.12); 
  position: relative; 
  overflow: hidden; 
}

.powered-logos { 
  overflow: hidden; 
  position: relative; 
  padding: 0.5rem 0; 
} 

.logos-track { 
  display: flex; 
  gap: 1.8rem; 
  padding: 0.8rem 0; 
  justify-content: flex-start; 
  width: max-content; 
  animation: scroll 120s linear infinite; 
}

.tech-logo { 
  min-width: 130px; 
  text-align: center; 
  flex-shrink: 0; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  background: rgba(255, 255, 255, 0.08); 
  border-radius: 14px; 
  padding: 1.2rem 1rem; 
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  border: 1px solid rgba(255, 255, 255, 0.15); 
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2); 
  backdrop-filter: blur(4px); 
}

.tech-logo:hover { 
  transform: translateY(-7px) scale(1.05); 
  background: rgba(255, 255, 255, 0.15); 
  box-shadow: 0 10px 25px rgba(78, 84, 200, 0.3); 
  border-color: rgba(143, 148, 251, 0.35); 
}

.tech-logo img { 
  height: 36px; 
  margin-bottom: 0.7rem; 
  transition: all 0.3s ease; 
  object-fit: contain; 
}

.tech-logo:hover img { 
  transform: scale(1.15); 
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); 
}

.tech-logo span { 
  color: #e0e0ff; 
  font-size: 0.92rem; 
  font-weight: 500; 
  white-space: nowrap; 
  transition: color 0.3s ease; 
}

.tech-logo:hover span { 
  color: #fff; 
  text-shadow: 0 1px 2px rgba(0,0,0,0.2); 
}

@keyframes scroll { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(calc(-100% + 100vw)); } 
}

/* =============== FOOTER =============== */
.glass-footer {
  background: radial-gradient(circle at bottom, #1a1a1a, #000000);
  padding: 60px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-color);
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.footer-contact i {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ========== SCROLL TOP BUTTON ========== */

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;

  /* Dark glassmorphism */
  background: rgba(18, 18, 18, 0.4); /* gelap transparan */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.08); /* white low-opacity border */

  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); /* bayangan gelap */
  color: #fff; /* warna ikon putih */
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  background: rgba(18, 18, 18, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
}















/* =============== RESPONSIVE STYLES =============== */
/* Tablet */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-animation {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
  }
  
  .order-container {
    grid-template-columns: 1fr;
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
  
  .step:nth-child(3) .step-icon::after,
  .step:nth-child(4) .step-icon::after {
    display: none;
  }
  
  /* Horizontal Scroll */
  #portfolio .portfolio-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  #portfolio .portfolio-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  #paket .paket-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  #paket .paket-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  /* Hide scrollbar */
  #portfolio .portfolio-grid::-webkit-scrollbar,
  #paket .paket-container::-webkit-scrollbar {
    display: none;
  }
  
  /* Disable floating animation */
  #paket .paket-card.floating {
    animation: none;
    transition: none;
    transform: none !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .floating-cube {
    width: 250px;
    height: 250px;
  }
  
  .face {
    width: 250px;
    height: 250px;
    font-size: 3rem;
  }
  
  .face.front  { transform: translateZ(125px); }
  .face.back   { transform: rotateY(180deg) translateZ(125px); }
  .face.top    { transform: rotateX(90deg) translateZ(125px); }
  .face.bottom { transform: rotateX(-90deg) translateZ(125px); }
  .face.left   { transform: rotateY(-90deg) translateZ(125px); }
  .face.right  { transform: rotateY(90deg) translateZ(125px); }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step:nth-child(2) .step-icon::after,
  .step:nth-child(4) .step-icon::after {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 100px 20px 30px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .floating-cube {
    width: 150px;
    height: 150px;
    margin-top: 35px;
    margin-bottom: 30px;
  }
  
  .face {
    width: 150px;
    height: 150px;
    font-size: 2.5rem;
  }
  
  .face.front  { transform: translateZ(100px); }
  .face.back   { transform: rotateY(180deg) translateZ(100px); }
  .face.top    { transform: rotateX(90deg) translateZ(100px); }
  .face.bottom { transform: rotateX(-90deg) translateZ(100px); }
  .face.left   { transform: rotateY(-90deg) translateZ(100px); }
  .face.right  { transform: rotateY(90deg) translateZ(100px); }
  
  .nav-container {
    padding: 12px 15px;
  }
  
  .section {
    padding: 60px 15px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .paket-container {
    grid-template-columns: 1fr;
  }
  
  .order-form,
  .order-info {
    padding: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  
  .step:nth-child(2n) .step-icon::after {
    display: none;
  }
  
  .footer-container {
    gap: 30px;
  }
  
  /* Powered By adjustments */
  .tech-logo {
    min-width: 110px;
    padding: 1rem 0.8rem;
  }
  
  .tech-logo img {
    height: 32px;
  }
  
  .tech-logo span {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 30px 40px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 20px 30px;
  }
}