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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: #ffffff;
  color: #03224c;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #03224c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
}

.get-started-btn:hover {
  background: white;
  color: #00224d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== BANNER (FOTO POLOS) ===== */
.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay untuk meningkatkan readability teks */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 50, 0.3); /* Overlay ringan untuk kontras */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  color: white;
  text-align: left;
}

.banner-left {
  width: 100%;
  text-align: left;
}

.banner-left h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
}

.banner-left em {
  font-style: italic;
  color: #ffcc00;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 0;
  background: #ffffff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  opacity: 1 !important;
  transform: none !important;
}

.content-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 80vh;
}

.text-content {
  flex: 0 0 50%;
  text-align: left;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active .text-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.text-content h2 {
  font-size: 2.2rem;
  color: #001932;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.text-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

.text-content-right {
  text-align: right;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active .text-content-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.text-content-right p {
  text-align: right;
}

.image-content {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active .image-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.content-section-reverse .image-content {
  opacity: 0;
  transform: translateX(-40px);
}

.content-section-reverse.active .image-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.content-section-reverse .text-content-right {
  opacity: 0;
  transform: translateX(40px);
}

.content-section-reverse.active .text-content-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  /* HAPUS transition dan transform untuk menghilangkan efek zoom */
}

/* ===== PRODUCT GRID SECTION ===== */
.product-grid-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-grid-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

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

.product-grid-header h2 {
  font-size: 2.5rem;
  color: #00224d;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-grid-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* HAPUS transition untuk menghilangkan efek zoom */
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 1.5rem;
  color: #00224d;
  margin-bottom: 15px;
  font-weight: 700;
}

.product-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 25px;
}

.product-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00224d;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 44px;
  width: 100%;
  text-align: center;
}

.product-cta:hover {
  background: #001933;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 34, 77, 0.3);
}

/* ===== SPECIFICATIONS SECTION ===== */
.specifications-section {
  padding: 80px 0;
  background: #ffffff;
}

.specifications-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

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

.specifications-header h2 {
  font-size: 2.5rem;
  color: #00224d;
  margin-bottom: 20px;
  font-weight: 700;
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.spec-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: #00224d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.spec-icon {
  font-size: 3rem;
  color: #00224d;
  margin-bottom: 20px;
}

.spec-card h3 {
  font-size: 1.3rem;
  color: #00224d;
  margin-bottom: 15px;
  font-weight: 700;
}

.spec-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: #03224c;
  color: #fff;
  padding: 80px 5% 0;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 80vh;
}

.hero-text {
  flex: 1.1;
  min-width: 300px;
  padding-bottom: 80px;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e6f0;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 450px;
  margin-bottom: 0;
}

.circle-bg {
  display: none;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  z-index: 2;
  position: relative;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.slide-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-left,
.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-right,
.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-up,
.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animation delays */
.slide-animation.animate .slide-left:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-left:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-left:nth-child(3) { transition-delay: 0.3s; }

.slide-animation.animate .slide-right:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-right:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-right:nth-child(3) { transition-delay: 0.3s; }

.slide-animation.animate .slide-up:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-up:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-up:nth-child(3) { transition-delay: 0.3s; }
.slide-animation.animate .slide-up:nth-child(4) { transition-delay: 0.4s; }

.content-section.animate .text-content { transition-delay: 0.2s; }
.content-section.animate .image-content { transition-delay: 0.4s; }
.content-section.animate .text-content-right { transition-delay: 0.4s; }
.content-section-reverse.animate .image-content { transition-delay: 0.2s; }
.content-section-reverse.animate .text-content-right { transition-delay: 0.4s; }

/* Product grid animations */
.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.product-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.spec-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.spec-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================== */
/* ===== MONITOR 24 INCI OPTIMIZATIONS ===== */
/* ========================================== */

@media (min-width: 1400px) {
  /* ===== GLOBAL IMPROVEMENTS ===== */
  body {
    font-size: 18px;
    line-height: 1.7;
  }
  
  /* ===== BANNER SECTION - JUDUL RATA KIRI MEMANJANG PENUH ===== */
  .banner-content {
    max-width: 1600px;
    text-align: left;
    width: 100%;
    padding: 0 5%;
  }
  
  .banner-left {
    width: 100%;
  }
  
  .banner-left h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
    width: 100%;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    padding-right: 0;
  }
  
  .banner-left p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
  
  .banner-left em {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .get-started-btn {
    padding: 16px 35px;
    font-size: 1.2rem;
    min-height: 55px;
  }
  
  /* ===== CONTENT SECTION ===== */
  .content-container {
    max-width: 1600px;
  }
  
  .text-content {
    padding: 100px 80px;
  }
  
  .text-content h2 {
    font-size: 3rem;
    margin-bottom: 35px;
  }
  
  .text-content p {
    font-size: 1.3rem;
    line-height: 1.9;
  }
  
  /* ===== PRODUCT GRID SECTION ===== */
  .product-grid-section {
    padding: 120px 0;
  }
  
  .product-grid-container {
    max-width: 1600px;
  }
  
  .product-grid-header {
    margin-bottom: 80px;
  }
  
  .product-grid-header h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
  
  .product-grid-header p {
    font-size: 1.3rem;
    max-width: 800px;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .product-card {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
  
  .product-image {
    height: 300px;
  }
  
  .product-content {
    padding: 40px;
  }
  
  .product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .product-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .product-features li {
    font-size: 1.1rem;
    padding: 10px 0;
  }
  
  .product-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 55px;
  }
  
  /* ===== SPECIFICATIONS SECTION ===== */
  .specifications-section {
    padding: 120px 0;
  }
  
  .specifications-container {
    max-width: 1600px;
  }
  
  .specifications-header {
    margin-bottom: 80px;
  }
  
  .specifications-header h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
  
  .specifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
  }
  
  .spec-card {
    padding: 50px 40px;
    border-radius: 15px;
  }
  
  .spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .spec-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }
  
  .spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .spec-card p {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  
  /* ===== HERO SECTION ===== */
  .hero-container {
    max-width: 1600px;
    gap: 60px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    max-width: 650px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .hero-image img {
    max-width: 600px;
  }
}

/* ===== EXTRA LARGE MONITORS ===== */
@media (min-width: 1800px) {
  .banner-left h1 {
    font-size: 5rem;
  }
  
  .banner-left p {
    font-size: 1.5rem;
  }
  
  .get-started-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
  }
  
  .content-container {
    max-width: 1800px;
  }
  
  .text-content h2 {
    font-size: 3.2rem;
  }
  
  .text-content p {
    font-size: 1.4rem;
  }
  
  .product-grid-container,
  .specifications-container {
    max-width: 1800px;
  }
  
  .product-grid-header h2,
  .specifications-header h2 {
    font-size: 3.5rem;
  }
  
  .product-grid-header p {
    font-size: 1.4rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
  }
  
  .product-content h3 {
    font-size: 2rem;
  }
  
  .product-content p {
    font-size: 1.3rem;
  }
  
  .specifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
  }
  
  .spec-card h3 {
    font-size: 1.6rem;
  }
  
  .spec-card p {
    font-size: 1.3rem;
  }
  
  .hero-container {
    max-width: 1800px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
}

/* ===== RESPONSIVE DESIGN (TETAP SEPERTI AWAL) ===== */
@media (max-width: 1200px) {
  .banner-left h1 {
    font-size: 2.5rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .specifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 1024px) {
  .banner-left h1 {
    font-size: 2.3rem;
  }
  
  /* Content section menjadi stacked */
  .content-container {
    flex-direction: column;
    min-height: auto;
  }
  
  .content-section-reverse .content-container {
    flex-direction: column;
  }
  
  .text-content {
    flex: 0 0 100%;
    padding: 60px 40px;
    order: 2;
    opacity: 0;
    transform: translateY(40px);
  }
  
  .content-section.active .text-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  .image-content {
    flex: 0 0 100%;
    order: 1;
    min-height: 50vh;
    opacity: 0;
    transform: translateY(40px);
  }
  
  .content-section.active .image-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  .text-content h2 {
    font-size: 2rem;
  }

  .text-content-right,
  .text-content-right p {
    text-align: left;
  }

  /* Product grid adjustments */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .product-grid-header h2,
  .specifications-header h2 {
    font-size: 2.2rem;
  }
  
  /* Hero section adjustments */
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }

  .hero-image {
    margin-bottom: 0;
    min-height: 300px;
    width: 100%;
  }

  .hero-image img {
    max-width: 400px;
    width: 100%;
  }

  .hero-text {
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===== MOBILE OPTIMIZATION (768px and below) ===== */
@media (max-width: 768px) {
  /* Banner improvements */
  .banner {
    height: 70vh;
    min-height: 500px;
  }
  
  .banner-left h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .banner-left p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .get-started-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 200px;
  }
  
  /* Content section mobile */
  .text-content {
    padding: 50px 30px;
  }
  
  .text-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .text-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  .image-content {
    min-height: 40vh;
  }
  
  /* Product grid mobile */
  .product-grid-section,
  .specifications-section {
    padding: 60px 0;
  }
  
  .product-grid-header,
  .specifications-header {
    margin-bottom: 40px;
  }
  
  .product-grid-header h2,
  .specifications-header h2 {
    font-size: 2rem;
  }
  
  .product-grid-header p {
    font-size: 1rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .product-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .product-content {
    padding: 25px;
  }
  
  .product-content h3 {
    font-size: 1.3rem;
  }
  
  .specifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .spec-card {
    padding: 30px 25px;
  }
  
  .spec-card h3 {
    font-size: 1.2rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    padding: 60px 15px 0;
  }
  
  .hero-container {
    min-height: auto;
  }
  
  .hero-text {
    padding-bottom: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin: 0 auto 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .btn-primary, 
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 14px 20px;
  }
  
  .hero-image {
    min-height: 250px;
    margin-bottom: 30px;
  }
  
  .hero-image img {
    max-width: 300px;
  }
}

/* ... (rest of the mobile responsive styles remain exactly the same) ... */

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .get-started-btn,
  .btn-primary, 
  .btn-secondary,
  .product-cta {
    min-height: 44px; /* Minimum touch target size */
  }
  
  /* Remove hover effects on touch devices */
  .product-card:hover {
    transform: none;
  }
  
  .spec-card:hover {
    transform: none;
    border-color: transparent;
  }
  
  .get-started-btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .product-cta:hover {
    transform: none;
  }
}

@media (max-width: 480px) {

  body {
    font-size: 14px;
  }
  
  .banner {
    height: 60vh;
    min-height: 400px;
  }
  
  .banner-left h1 {
    font-size: 1.6rem;
  }
  
  .banner-left p {
    font-size: 0.9rem;
  }
  
  .get-started-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 180px;
  }
  
  .company-overview,
  .beyond-compare-section {
    padding: 50px 0;
  }
  
  .container {
    width: 95%;
  }
  
  .overview-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .overview-text p {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .beyond-compare-header h2 {
    font-size: 1.6rem;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1rem;
  }
  
  .cards-container {
    gap: 15px;
  }
  
  .card {
    padding: 25px 20px;
    border-radius: 8px;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .card p {
    font-size: 0.95rem;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    gap: 8px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 16px;
    font-size: 0.9rem;
    max-width: 220px;
  }
  
  .hero-image img {
    max-width: 250px;
  }
}

/* Prevent horizontal scroll and improve performance */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Improve scrolling performance on mobile */
* {
  -webkit-overflow-scrolling: touch;
}

/* Optimize images for mobile */
img {
  max-width: 100%;
  height: auto;
}

/* Loading state for images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .slide-animation {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .slide-left,
  .slide-right,
  .slide-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .content-section .text-content,
  .content-section .image-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .product-card,
  .spec-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}