/* ===========================
        RESET & GENERAL
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
  color: #222;
  line-height: 1.7;
  padding-top: 130px; 
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 90px 0;
}

/* ===========================
    HEADER & NAVBAR (FIXED)
=========================== */

/* Header Wrapper: Mengunci seluruh navbar agar SELALU MENYATU */
header,
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
}

/* Navbar Top (Informasi Kontak) */
.navbar-top {
  width: 100%;
  margin-top: 1rem;
  background: #003b4e;
  color: white;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  position: fixed;
  box-sizing: border-box;
  right: 0;
  left: 0;
  z-index: 9999;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #54504c;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
.navbar img {
  border-radius: 50%;
  width: 6rem;
  display: inline-block;
}

.navbar .navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c0808;
  font-style: italic;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #0a0909;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
  color: #002c3e;
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #002c3e;
  transform: scaleX(0);
  transition: 0.2s linear;
}
.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra a {
  color: #110202;
  margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu {
  display: none;
}

/* Navbar Search Form */
.navbar .search-form {
  position: absolute;
  top: 100%;
  right: 7%;
  background-color: #002c3e;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s;
}

.navbar .search-form.active {
  transform: scaleY(1);
}
.navbar .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.7rem;
  color: #002c3e;
  padding: 1rem;
}

.navbar .search-form label {
  cursor: pointer;
  font-size: 2rem;
  margin-right: 1.5rem;
  color: #00888b;
}

/* ===========================
      DROPDOWN AREA & GALLERY
=========================== */

.area-dropdown {
  position: relative;
}

.area-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  overflow: hidden;
  z-index: 999;
}

.area-dropdown:hover .area-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

.area-item {
  display: block;
  margin: 0;
  padding: 18px 20px;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #eee;
  transition: .3s;
}

.area-item:last-child {
  border-bottom: none;
}

.area-item:hover {
  width: 90%;
  border-radius: 20px;
  background: #b2b4b6;
  color: #fff;
}

.area-item h4 {
  margin: 0 0 5px;
  font-size: 18px;
}

.area-item p {
  margin: 0;
  font-size: 13px;
  opacity: .8;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  border-radius: 15px;
  min-width: 100px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  flex-direction: column; 
  width: max-content;
}

.dropdown-content a {
  color: black;
  padding: 8px 15px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ddd;
  border-radius: 10px;
}

.dropdown:hover .dropbtn {
  background-color: transparent;
  color: #05dde4; 
  transition: color 0.3s ease;
}

.gallery-dropdown:hover .dropdown-content {
  display: flex;
}

/* ===========================
            HERO
=========================== */

.hero {
  margin-top: -1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg,#012534,#003b4e);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  width: 600px;
  height: 600px;
  background: #00aaff30;
  filter: blur(150px);
  right: -150px;
  top: -150px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  color: white;
  z-index: 2;
}

.hero-tag {
  background: #ffffff15;
  backdrop-filter: blur(15px);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 4.5rem;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #55cfff;
}

.hero p {
  font-size: 18px;
  color: #d7d7d7;
  margin-bottom: 35px;
}

.hero-button {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #00aaff;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
}

.btn-outline:hover {
  background: white;
  color: #003b4e;
}

.hero-right {
  z-index: 2;
}

.hero-right img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.hero-rating {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.rating-card {
  background: #ffffff10;
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  min-width: 150px;
}

.rating-card h2 {
  color: #55cfff;
  margin-bottom: 10px;
}

/* ===========================
            STATS
=========================== */

.stats {
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: .35s;
}

.stat-card:hover {
  transform: translateY(-12px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: #003b4e;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 28px;
  margin-bottom: 20px;
}

.stat-card h2 {
  font-size: 38px;
  color: #003b4e;
  margin-bottom: 10px;
}

.stat-card p {
  color: #666;
}

/* ===========================
            TITLE
=========================== */

.title {
  text-align: center;
  margin-bottom: 60px;
}

.title h2 {
  color: #006d91;
  font-size: 40px;
  margin-bottom: 15px;
}

.title p {
  color: #666;
}

/* ===========================
            WHY US
=========================== */

.why {
  padding: 120px 0;
}

.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #eaf6fb;
  color: #003b4e;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-left h2 {
  font-size: 48px;
  margin-bottom: 25px;
  color: #1f2937;
}

.why-left p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}

.feature-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  margin-bottom: 25px;
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
  transition: .35s;
}

.feature-card:hover {
  transform: translateX(12px);
}

.feature-card i {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #003b4e;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  flex-shrink: 0;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #003b4e;
}

.feature-card p {
  color: #666;
}

/* ===========================
         COVERAGE / AREA
=========================== */

.coverage {
  background: linear-gradient(135deg,#175874,#0679a0);
  overflow: hidden;
  padding: 120px 0;
}

.section-heading p,
.section-heading span {
  color: #e8f6fb;
}

.coverage-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.coverage-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.coverage-content h3 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.coverage-content p {
  color: #dddada;
  line-height: 1.9;
  margin-bottom: 35px;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.location {
  background: #f5f7fa;
  padding: 18px;
  border-radius: 15px;
  transition: .3s;
}

.location:hover {
  background: #003b4e;
  color: white;
  transform: translateX(10px);
}

/* ===========================
        TV DIAGNOSIS
=========================== */

.tv-diagnosis {
  padding: 120px 0;
  background: #f7fbfd;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;
  background: #e8f6fb;
  color: #0096d6;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1f2937;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.diagnosis-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.diagnosis-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 140px;
}

.diagnosis-menu button {
  border: none;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: .35s;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.diagnosis-menu button:hover {
  transform: translateX(8px);
}

.diagnosis-menu button.active {
  background: #003b4e;
  color: #fff;
}

.diagnosis-menu button i {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #00a8d7;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.diagnosis-menu button span {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.diagnosis-content {
  background: #fff;
  border-radius: 35px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  width: 100%;
  box-sizing: border-box;
}

.tv-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  width: 100%;
}

.tv-frame {
  width: 100%;
  max-width: 650px;
  height: 360px;
  background: #111;
  border: 15px solid #2c2c2c;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  box-sizing: border-box;
}

.tv-stand {
  width: 160px;
  height: 12px;
  background: #444;
  border-radius: 20px;
  margin-top: 15px;
  position: relative;
}

.tv-stand::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 60px;
  background: #555;
  left: 50%;
  transform: translateX(-50%);
  top: -55px;
}

#tv-screen {
  width: 100%;
  height: 100%;
  transition: .45s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

/* Screen States */
.screen-off { background: #000; }
.screen-line {
  background: repeating-linear-gradient(0deg, #00b8ff 0px, #00b8ff 8px, #ffffff 8px, #ffffff 16px);
  animation: scan .3s linear infinite;
}
.screen-dark { background: #222; }
.screen-sound { background: #353535; }
.screen-error { background: #d93025; }

.android-error {
  text-align: center;
  color: white;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}

@keyframes scan {
  from { background-position: 0 0; }
  to { background-position: 0 16px; }
}

.info h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

.cause {
  background: #f8fbfd;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.cause h4 {
  margin-bottom: 20px;
}

#cause-list {
  list-style: none;
  padding: 0;
}

#cause-list li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px dashed #ddd;
}

.info-bottom {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-bottom div {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
}

.info-bottom strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

/* ===========================
        SERVICE PROCESS
=========================== */

.service-process {
  padding: 120px 0;
  background: linear-gradient(180deg,#ffffff,#f6fbfd);
}

.process-line {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 30px;
}

.process-line .line {
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 5px;
  background: #d8eaf1;
  z-index: 1;
  border-radius: 50px;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step .icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  background: #003b4e;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  transition: .4s;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.step .icon.success {
  background: #12b76a;
}

.step h3 {
  margin-top: 25px;
  font-size: 22px;
}

.step p {
  margin-top: 12px;
  line-height: 1.8;
  color: #666;
  font-size: 15px;
}

.step:hover .icon {
  transform: translateY(-12px) scale(1.08);
  background: #00a8d7;
}

.step:hover h3 {
  color: #003b4e;
}

/* ===========================
            FAQ
=========================== */

.faq {
  padding: 120px 0;
  background: #f8fbfd;
}

.faq-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: .35s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.faq-question i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #003b4e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .35s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .4s;
}

.faq-answer p {
  padding: 0 28px 28px;
  color: #666;
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  background: #00a8d7;
  transform: rotate(45deg);
}

/* ===========================
            CTA
=========================== */

.cta {
  background: #f5f9fc;
  padding: 80px 20px;
}

.cta-box {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, #006d91, #003b4e);
  border-radius: 25px;
  padding: 70px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 35px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 35px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37,211,102,.4);
}

/* ===========================
          FOOTER
=========================== */

.footer {
  background: #001820;
  color: white;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.footer h3 span {
  color: #25D366;
}

.footer p {
  color: #b9c7cc;
  line-height: 1.7;
}

.footer h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-info p,
.footer-contact p {
  margin: 10px 0;
}

.copyright {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #9aaeb5;
}

/* ===================================
      RESPONSIVE (MEDIA QUERIES)
=================================== */

/* Laptop / Desktop Kecil */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 52px;
  }
  .hero-container {
    gap: 40px;
  }
}

/* Tablet & Mobile Landscape */
@media (max-width: 991px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  .navbar {
    padding: 18px 5%;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: .4s;
    box-shadow: -5px 0 20px rgba(0,0,0,.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    margin: 0;
    font-size: 18px;
  }

  .gallery-dropdown,
  .area-dropdown {
    width: 100%;
  }

  .dropdown-content,
  .area-menu {
    display: none;
    position: static;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: visible;
  }

  .gallery-dropdown.active .dropdown-content,
  .area-dropdown.active .area-menu {
    display: block;
  }

  .dropdown-content a,
  .area-item {
    display: block;
    padding: 1rem 3rem;
    margin: 0;
  }

  .area-item h4 { font-size: 1.5rem; }
  .area-item p { font-size: 1.2rem; }

  /* Hero Adjustments */
  .hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-left {
    order: 2;
    text-align: center;
  }

  .hero-right {
    order: 1;
    text-align: center;
  }

  .hero-right img {
    max-width: 420px;
    width: 100%;
  }

  .hero-button,
  .hero-rating {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Grid Adjustments */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .why .container,
  .coverage-wrapper,
  .diagnosis-wrapper,
  .info-bottom,
  .process-line,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .diagnosis-menu { position: static; }
  .process-line .line { display: none; }

  .step {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
  }
}

/* HP / Smartphone General (< 768px) */
@media (max-width: 768px) {
  body {
    padding-top: 150px; /* Ditambah sedikit di HP karena navbar top membesar saat wrapping */
  }
  .navbar-top{
    margin-top: -5.5rem;
  }
  .hero{
    margin-top: -2rem;
  }
  .section-title h2{
    line-height: 50px;
  }
  .section-heading p{
    margin-bottom: 10px;
  }
  .why-left h2{
    line-height: 50px;
  }

  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }

  .hero-button {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-right img { max-width: 320px; }
  .stats-grid,
  .coverage-list { grid-template-columns: 1fr; }

  .faq-question {
    font-size: 16px;
    padding: 22px;
  }

  .cta h2 { font-size: 32px; }
  .footer { text-align: center; }

  /* FIX KHUSUS TV DIAGNOSIS AGAR TIDAK KEPOTONG DI HP */
  .diagnosis-content {
    padding: 25px 15px;
    border-radius: 20px;
  }

  .tv-frame {
    height: 210px;
    border-width: 8px;
    border-radius: 16px;
  }

  #tv-screen {
    font-size: 22px;
  }

  .android-error {
    font-size: 20px;
  }

  .tv-stand {
    width: 120px;
    height: 8px;
  }

  .tv-stand::before {
    height: 40px;
    top: -35px;
  }

  .diagnosis-menu button {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .diagnosis-menu button i {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .diagnosis-menu button span {
    font-size: 15px;
  }
}

/* HP Layar Kecil (< 480px) */
@media (max-width: 480px) {
  .navbar-top {
    font-size: 11px;
    padding: 8px 12px;
    justify-content: center;
    text-align: center;
  }

  .hero h1 { font-size: 32px; }

  .title h2,
  .section-title h2,
  .why-left h2,
  .coverage-content h3,
  .info h2,
  .cta h2 {
    font-size: 28px;
  }

  .hero-rating { flex-direction: column; }
  .rating-card { width: 100%; box-sizing: border-box; }

  /* Penyesuaian Bingkai TV di HP Sangat Kecil */
  .tv-frame {
    height: 160px;
    border-width: 6px;
  }

  #tv-screen {
    font-size: 18px;
  }

  .android-error {
    font-size: 16px;
  }
}