:root {
  --bg-light: #fbfbfd;
  --bg-dark: #101010;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --text-on-dark: #f5f5f7;
  --accent-blue: #0071e3;
  --accent-hover: #0077ed;
  --card-light: #fff;
  --card-dark: #1c1c1e;
  --transition-curve: cubic-bezier(0.25, 1, 0.5, 1);
  --border-color: #d2d2d7;
  --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  background-color: var(--bg-light);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { 
  text-decoration: none; 
  color: var(--accent-blue);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}


/* --- 2. SHARED UTILITIES --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Animation Utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--transition-curve);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px; 
  background: rgba(251, 251, 253, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  display: flex;
  justify-content: center;
  align-items: center; 
}

.nav-content {
  width: 100%;
  max-width: 980px;
  padding: 0 22px;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center; 
}

.logo { 
  font-weight: 600; 
  font-size: 19px; 
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links { 
  display: flex; 
  gap: 24px; 
  list-style: none; 
  font-size: 12px; 
  color: #333;
  margin: 0;
  padding: 0;
  height: 100%;

  align-items: center; 
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { 
  color: var(--accent-blue);
  opacity: 1;
  text-decoration: none;
}

.btn-nav { 
  background: var(--text-primary); 
  color: white !important; 
  padding: 4px 12px; 
  border-radius: 20px; 
  font-size: 12px; 
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.btn-nav:hover {
    opacity: 0.9;
    text-decoration: none;
}

.hero {
  padding: 160px 20px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.pill {
  font-size: 12px;
  color: #bf4800;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #1d1d1f 30%, #6e6e73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-icon-placeholder {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 113, 227, 0.3);
  margin-bottom: 24px;
  object-fit: cover;
  display: block;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: scale(1.02);
}

/* HERO MOCKUPS */
.mockup-stack-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  perspective: 1000px; 
}

.ipad-mockup {
  position: absolute;
  width: 70%;
  background: transparent;
  border: none;
  box-shadow: none; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s var(--transition-curve), opacity 0.5s;
}

.ipad-mockup img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

.ipad-back {
  z-index: 1;
  transform: translateY(-60px) scale(0.85);
  opacity: 0.6;
}

.ipad-middle {
  z-index: 2;
  transform: translateY(-30px) scale(0.92);
  opacity: 0.8;
}

.ipad-front {
  z-index: 3;
  transform: translateY(0) scale(1);
}

.mockup-stack-container:hover .ipad-back {
  opacity: 1;
  transform: translateY(-10px) translateX(-400px) scale(0.85) rotate(-5deg);
}

.mockup-stack-container:hover .ipad-middle {
  opacity: 1;
  transform: translateY(-10px) translateX(400px) scale(0.92) rotate(5deg);
}

.mockup-stack-container:hover .ipad-front {
  transform: translateY(0) scale(1); 
}

/* --- 5. BENTO GRID FEATURES (INDEX.HTML ONLY) --- */
.section-bento { padding: 100px 0; background: #fff; }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.bento-card { background-color: #f5f5f7; border-radius: 30px; padding: 40px; height: 500px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.4s var(--transition-curve); }
.bento-card:hover { transform: scale(1.015); }
.bento-card h3 { font-size: 32px; font-weight: 600; margin-bottom: 12px; }
.bento-card p { font-size: 17px; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }
.bento-visual { flex-grow: 1; background: #fff; border-radius: 18px; margin-top: 30px; display: flex; align-items: center; justify-content: center; font-size: 50px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04); }
.bento-full { grid-column: span 2; background: #000; color: #fff; text-align: center; justify-content: center; align-items: center; }
.bento-full h3 { font-size: 56px; color: #fff; }
.bento-full p { color: #86868b; max-width: 500px; }

/* --- SECTION: COMPONENTS (INDEX.HTML ONLY) --- */
.section-components {
  padding: 100px 0;
  background-color: var(--bg-light); 
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.component-card {
  background: #fff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}
.component-card:hover { transform: translateY(-5px); }

.comp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.comp-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.c-pitch { background: #e0f2fe; } /* Light Blue */
.c-pace { background: #fef3c7; }  /* Light Orange */
.c-volume { background: #dcfce7; } /* Light Green */
.c-pause { background: #f3e8ff; }  /* Light Purple */

.component-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.component-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.5; }

.section-tech { background-color: var(--bg-dark); color: var(--text-on-dark); padding: 120px 0; position: relative; }
.tech-header { text-align: center; margin-bottom: 80px; }
.tech-header h2 { color: #fff; }
.tech-header p { color: #86868b; }
.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.tech-card { background: rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 24px; height: 260px; border: 1px solid rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; justify-content: space-between; transition: background 0.3s; }
.tech-card:hover { background: rgba(255, 255, 255, 0.1); }

/* UPDATE: Menghapus background rectangle dan memperbesar ikon */
.tech-icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px; /* Memberi jarak dengan teks */
}

.tech-icon img {
  width: 64px; /* Memperbesar ukuran ikon */
  height: 64px;
  object-fit: contain;
}

/* UPDATE: Mengubah warna judul menjadi putih solid agar kontras */
.tech-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff; /* Warna putih solid */
}

.tech-desc { font-size: 13px; color: #86868b; line-height: 1.4; }

.section-faq { padding: 120px 0; background: var(--bg-light); }
.faq-container { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; text-align: left; padding: 24px 0; font-size: 18px; font-weight: 600; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
.faq-answer p { padding-bottom: 24px; color: var(--text-secondary); line-height: 1.6; }
.faq-icon { font-size: 24px; font-weight: 300; transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.contributors-block { margin-top: 80px; background: #f5f5f7; padding: 40px; border-radius: 24px; }
.contributors-block h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.contributors-block p { color: var(--text-secondary); margin-bottom: 24px; }
.contributors-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contributors-list li a { color: var(--accent-blue); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; transition: opacity 0.2s; }
.contributors-list li a:hover { opacity: 0.8; text-decoration: underline; }

.section-team { padding: 120px 0; background: var(--bg-light); text-align: center; }
.team-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }

.member-card { 
  display: block; 
  width: 180px; 
  height: 240px; 
  border-radius: 20px; 
  background: #f5f5f7; 
  position: relative; 
  overflow: hidden; 
  cursor: pointer; 
  transition: transform 0.4s var(--transition-curve), box-shadow 0.4s; 
}
.member-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); z-index: 2; }

.avatar { 
  width: 100%; 
  height: 100%; 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
  transition: transform 0.5s; 
}

.g1 { background-color: #6D23F8; } 
.g2 { background-color: #165C68; } 
.g3 { background-color: #F5C710; } 
.g4 { background-color: #D847B6; } 
.g5 { background-color: #2DB5C5; } 

.avatar img {
  width: auto;
  height: 85%; 
  max-width: 90%;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
}

.member-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); transform: translateY(100%); transition: transform 0.3s ease; text-align: left; }
.member-card:hover .member-info { transform: translateY(0); }
.member-name { font-size: 15px; font-weight: 600; color: #000; }
.member-role { font-size: 12px; color: #666; margin-top: 2px; }

footer { padding: 50px 0; background: #f5f5f7; border-top: 1px solid var(--border-color); font-size: 12px; color: var(--text-secondary); text-align: center; }
.footer-links { margin-top: 10px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; margin: 0 8px; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 1024px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .hero h1 { font-size: 48px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-full { grid-column: span 1; height: auto; padding: 60px 30px; }
  .components-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .mockup-stack-container { height: 350px; margin-top: 40px; }
  .ipad-mockup { width: 85%; }
  .contributors-list { grid-template-columns: 1fr; } 
}
@media (max-width: 480px) {
  .tech-grid { grid-template-columns: 1fr; }
  .team-grid { gap: 10px; }
  .member-card { width: 45%; }
}

.content-wrapper {
  max-width: 800px;
  margin: 100px auto 80px;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block; 
  text-decoration: none;
  text-align: center;
  
  /* Styling Utama */
  background-color: var(--accent-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 500; 
  border: none;
  cursor: pointer;
  
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), 
              background-color 0.2s ease, 
              box-shadow 0.2s ease;
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: scale(1.02); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18); 
}

.header-section {
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-wrapper h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.intro-text {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.policy-body {
  font-size: 17px;
  color: #333;
}

.policy-body h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.policy-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-body p {
  margin-bottom: 16px;
  color: #424245;
}

.policy-body ul {
  margin-bottom: 16px;
  padding-left: 20px;
  color: #424245;
}

.policy-body li {
  margin-bottom: 8px;
}

.contact-highlight {
  background-color: #f5f5f7;
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
}

/* --- 10. ABOUT PAGE STYLES (about.html) --- */
.text-center { text-align: center; }
.section-pad-lg { padding: 120px 0; }
.section-pad-sm { padding: 60px 0; }
.page-hero { padding: 160px 20px 80px; text-align: center; }
.page-title {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.section-title-small {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.005em;
    color: var(--text-primary);
}

/* Story Section */
.section-story { background: #fff; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-text p {
    font-size: 19px;
    line-height: 1.6;
    color: #424245;
    margin-bottom: 24px;
}
.story-visual {
    padding: 20px;
    border-radius: 30px;
    background: #f5f5f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.story-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.story-text h3 { /* Gaya tambahan untuk sub-heading Mission yang baru */
    font-size: 20px; 
    font-weight: 600; 
    margin-top: 24px; 
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Values Section */
.section-values { background: var(--bg-light); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); }
.value-icon { font-size: 40px; margin-bottom: 15px; }
.value-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.5; }

/* Careers & Contact Section */
.section-careers { padding: 80px 0; background: #fff; }
.section-contact { padding: 80px 0 120px; background: var(--bg-light); }
.contact-info p {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}
.contact-info a {
    font-weight: 500;
    font-size: 19px;
}

/* Team Section override to remove padding added on index.html section */
.section-team-about { padding: 120px 0 60px; background: #fff; }

@media (max-width: 768px) {
    .page-title { font-size: 48px; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .section-pad-lg { padding: 80px 0; }
    .section-title-small { font-size: 32px; }
    .story-text p { font-size: 17px; }
}

/* --- 11. PRODUCT LIST STYLES (products.html) --- */

.section-product-list {
    background-color: var(--bg-light); 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--card-light);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1; /* Mendorong status ke bawah */
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.product-icon .emoji {
    font-size: 32px;
}

.product-status {
    margin-top: 20px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
}

.product-status.primary {
    background-color: #dcfce7; /* Light Green */
    color: #065f46;
}

.product-status.secondary {
    background-color: #f3e8ff; /* Light Purple */
    color: #6b21a8;
}

.product-status.tertiary {
    background-color: #fef3c7; /* Light Orange */
    color: #b45309;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.bento-card { 
  background-color: #f5f5f7; 
  border-radius: 32px; 
  padding: 30px 24px 0 24px; 
  
  height: 380px;
  
  position: relative; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  transition: transform 0.4s var(--transition-curve); 
}

.bento-full { 
  grid-column: span 2; 
  background: #000; 
  color: #fff; 
  text-align: center;
  align-items: center; 
  
  height: 560px; 
  padding-top: 90px; /* Tambah padding atas sedikit biar lega */
}

/* Penyesuaian konten */
.bento-content {
  margin-bottom: 16px; 
  z-index: 2; 
}

.bento-card h3 { 
  font-size: 24px; /* Font judul sedikit lebih kecil biar muat */
  font-weight: 600; 
  margin-bottom: 8px; 
}

.bento-card p { 
  font-size: 16px; 
  color: var(--text-secondary); 
  line-height: 1.4; 
}

.bento-full h3 { font-size: 32px; color: #fff; }
.bento-full p { font-size: 18px; color: #86868b; }

/* Wrapper Gambar */
.bento-mockup-wrapper {
  flex-grow: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end; 
}

.bento-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px 12px 0 0; 
  box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
  display: block;
  transform: translateY(10px); 
}

/* Gambar Besar tetap sama */
.bento-img-full {
  width: 60%; 
  max-width: 550px;
  height: auto;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4); 
  display: block;
}

/* --- MEDIA QUERIES (Mobile Optimization) --- */

@media (max-width: 1024px) { 
    .tech-grid { grid-template-columns: repeat(3, 1fr); } 
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Font Adjustments */
    .hero h1 { font-size: 48px; }
    .page-title { font-size: 48px; }
    
    /* Layout Adjustments */
    .bento-grid { grid-template-columns: 1fr; }
    .bento-full { grid-column: span 1; height: auto; padding: 60px 30px; }
    .components-grid { grid-template-columns: 1fr; }
    
    /* >>> TECH STACK TABLET OPTIMIZATION <<< */
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-card { 
        height: auto; /* Ubah fixed height jadi auto agar teks tidak terpotong */
        min-height: 240px; /* Beri tinggi minimal agar tetap rapi */
    }

    .nav-links { display: none; }
    .contributors-list { grid-template-columns: 1fr; } 
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; gap: 20px; }

    /* MOCKUP STACK MOBILE FIX */
    .mockup-stack-container { 
        height: 350px; 
        margin-top: 40px; 
    }
    .ipad-mockup { width: 90%; }
    .ipad-back { transform: translateY(-30px) scale(0.9); }
    .ipad-middle { transform: translateY(-15px) scale(0.95); }
    .ipad-front { transform: translateY(0) scale(1); }
    
    .mockup-stack-container:hover .ipad-back { transform: translateY(-30px) scale(0.9); }
    .mockup-stack-container:hover .ipad-middle { transform: translateY(-15px) scale(0.95); }
}

@media (max-width: 480px) {
    /* >>> TECH STACK MOBILE OPTIMIZATION <<< */
    .tech-grid { 
        grid-template-columns: 1fr; /* 1 Kolom ke bawah */
        gap: 16px; /* Jarak antar kartu lebih rapat */
    }
    
    .tech-card { 
        height: auto; /* Pastikan auto */
        min-height: auto; /* Reset min-height */
        padding: 24px; /* Padding sedikit dikecilkan biar lega */
    }
    
    .tech-icon img {
        width: 56px; /* Sedikit kecilkan ikon agar proporsional di layar HP */
        height: 56px;
    }

    /* Team Grid adjustments */
    .team-grid { gap: 10px; }
    .member-card { width: 45%; }
}