/* ============================================
   ANDROID IPTV - Landing Page Theme
   Pure HTML/CSS/JS conversion from React
   ============================================ */

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  color: #323232;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes shimmerText {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes floatLeft {
  0%, 100% { transform: translate(0px, 0px); }
  25% { transform: translate(-20px, 30px); }
  50% { transform: translate(10px, 50px); }
  75% { transform: translate(25px, 20px); }
}

@keyframes floatRight {
  0%, 100% { transform: translate(0px, 0px); }
  25% { transform: translate(15px, -25px); }
  50% { transform: translate(-10px, -40px); }
  75% { transform: translate(-20px, -15px); }
}

@keyframes floatBlue {
  0%, 100% { transform: translate(0px, 0px); }
  33% { transform: translate(-15px, 20px); }
  66% { transform: translate(10px, -10px); }
}

@keyframes tabletShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes phoneShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(-120%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideToLeft {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-120%) scale(0.9);
    opacity: 0;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes growIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideCard {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-8px) translateY(-4px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px dashed rgba(230, 230, 230, 0.4);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-logo {
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.02);
}

.header-nav {
  display: flex;
  gap: 5px;
  margin-left: auto;
  margin-right: 20px;
}

.nav-link {
  color: #323232;
  text-transform: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.5px;
  background: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #635bff;
  background-color: transparent;
}

.login-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05857em;
  padding: 8px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.login-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

/* ==================== MEGA MENU ==================== */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  display: none;
}

.mega-menu-overlay.active {
  display: block;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  max-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 999;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-bottom: none;
  transform: translateX(-50%) rotate(45deg);
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mega-menu-item {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mega-menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mega-menu-item.canli:hover {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.mega-menu-item.filmler:hover {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.mega-menu-item.diziler:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.mega-menu-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
}

.mega-menu-icon.canli { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.mega-menu-icon.filmler { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.mega-menu-icon.diziler { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.mega-menu-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.mega-menu-desc {
  font-size: 0.7rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding-top: 210px;
  padding-bottom: 112px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-orange {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 60, 0.125) 0%, rgba(255, 140, 60, 0) 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: floatLeft 4s ease-in-out infinite;
}

.hero-bg-yellow {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 208, 90, 0.15) 0%, rgba(255, 208, 90, 0) 70%);
  border-radius: 50%;
  filter: blur(90px);
  animation: floatRight 5s ease-in-out infinite;
}

.hero-bg-blue {
  position: absolute;
  bottom: 60%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(154, 192, 228, 0.4) 0%, rgba(154, 192, 228, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatBlue 4.5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.hero-text {
  width: 48%;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.1s forwards;
}

.hero-stars {
  display: flex;
  gap: 4px;
}

.hero-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
}

.hero-rating-text {
  font-size: 15px;
  font-weight: 500;
  color: #425466;
}

.xiaomi-icon {
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
  /* Note: Class name kept as xiaomi-icon for compatibility, but now used for Android icon */
  position: relative;
  top: -2px;
  -webkit-text-fill-color: initial;
}

.hero-title-small {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #0a2540 0%, #0a2540 15%, #2E5090 35%, #4169E1 50%, #2E5090 65%, #0a2540 85%, #0a2540 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
  opacity: 0;
  animation: shimmerText 6s linear infinite, fadeInUp 1s ease-out 0.2s forwards;
}

.hero-title-big {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #0a2540 0%, #0a2540 15%, #2E5090 35%, #4169E1 50%, #2E5090 65%, #0a2540 85%, #0a2540 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite, fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.google-play-icon {
  height: 20px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  top: -1px;
}

.hero-desc {
  font-size: 18px;
  color: #425466;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.4s forwards;
  transition: color 0.3s ease;
}

.hero-desc:hover {
  color: #667eea;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.4s ease-out 0.5s forwards;
}

.hero-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.hero-chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #383838;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-chat-btn:hover {
  background-color: rgba(56, 56, 56, 0.08);
}

.hero-chat-btn svg {
  width: 20px;
  height: 20px;
}

/* Hero Device / Image */
.hero-device {
  width: 48%;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* ==================== TRUSTED BY ==================== */
.trusted-by {
  padding: 48px 0;
  border-top: 1px dashed #e6e6e6;
  border-bottom: 1px dashed #e6e6e6;
}

.trusted-logos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.trusted-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.trusted-logo-wrapper {
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.trusted-logo-wrapper:hover {
  transform: scale(1.2);
}

.trusted-logo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.trusted-logo-wrapper:hover .trusted-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==================== PHONE SHOWCASE ==================== */
.phone-showcase {
  padding: 96px 0;
  background-color: #fafbfc;
  position: relative;
  clip-path: inset(0);
}

.phone-showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.phone-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.phone-sections {
  padding-right: 100px;
}

.phone-section {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
  cursor: default;
}

.phone-section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
  margin-bottom: 16px;
}

.phone-section-title small {
  font-size: 0.65em;
  display: block;
}

.phone-section-title.blue {
  background-image: linear-gradient(90deg, #0a2540 0%, #0a2540 15%, #2E5090 35%, #4169E1 50%, #2E5090 65%, #0a2540 85%, #0a2540 100%);
}

.phone-section-title.red {
  background-image: linear-gradient(90deg, #8B0000 0%, #8B0000 15%, #DC143C 35%, #FF6347 50%, #DC143C 65%, #8B0000 85%, #8B0000 100%);
}

.phone-section-title.green {
  background-image: linear-gradient(90deg, #0d5e0d 0%, #0d5e0d 15%, #16a34a 35%, #22c55e 50%, #16a34a 65%, #0d5e0d 85%, #0d5e0d 100%);
}

.phone-section-title.purple {
  background-image: linear-gradient(90deg, #6b21a8 0%, #6b21a8 15%, #9333ea 35%, #a855f7 50%, #9333ea 65%, #6b21a8 85%, #6b21a8 100%);
}

.phone-section-desc {
  font-size: 19px;
  color: #6b7280;
  line-height: 1.7;
  font-weight: 500;
  white-space: pre-line;
}

/* Sticky TV */
.phone-sticky {
  position: sticky;
  top: 200px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  margin-bottom: 120px;
}

.tv-frame {
  position: relative;
  width: 600px;
  max-width: 100%;
  aspect-ratio: 600 / 450;
  background-image: url('https://pngimg.com/d/tv_PNG39248.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 25px 80px rgba(0, 0, 0, 0.35));
}

.tv-frame-img {
  display: none;
}

.tv-screen {
  position: absolute;
  top: 12%;
  left: 4%;
  width: 87%;
  height: 66%;
  overflow: hidden;
  background-color: #000000;
  border-radius: 1px;
  z-index: 10;
}

.tv-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.tv-screenshot.active {
  opacity: 1;
  z-index: 2;
}

.tv-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tv-shimmer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: phoneShimmer 4s infinite;
}

/* ==================== PRICING ==================== */
.pricing {
  padding: 58px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pricing-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF6B35 15%, #E63946 25%, #9D4EDD 50%, #E63946 75%, #FF6B35 85%, #FF6B35 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 490px) 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  padding: 13px 16px;
  border: 1px dashed #e5e7eb;
  border-radius: 8px;
  background: linear-gradient(359deg, #d3d3d330 0%, #dad8d800 50%, #fafbfc 100%);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.pricing-item:hover {
  background: linear-gradient(135deg, #f0f3ff 0%, #e8eeff 50%, #f0f3ff 100%);
}

.pricing-item.selected {
  border: 1px dashed #009688;
  background: linear-gradient(320deg, #e0f2f1 0%, #b2dfdb4f 50%, #e0f2f124 100%);
}

.pricing-item.selected:hover {
  background: linear-gradient(320deg, #d1f0ed 0%, #a5d6d045 50%, #d1f0ed1f 100%);
}

.pricing-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-item-check {
  display: none;
  color: #009688;
}

.pricing-item.selected .pricing-item-check {
  display: inline-flex;
}

.pricing-item-check svg {
  width: 18px;
  height: 18px;
  fill: #009688;
}

.pricing-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #4b4b4b;
}

.pricing-item-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

.pricing-item-price {
  font-size: 15px;
  font-weight: 600;
  color: #4b4b4b;
  line-height: 1;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 4px;
  height: 18px;
  display: flex;
  align-items: center;
}

.discount-badge {
  background-color: #f0fdf4;
  color: #232323;
  font-weight: 600;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  height: 20px;
  display: flex;
  align-items: center;
}

/* Pricing Cards */
.pricing-cards {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.selected-card {
  padding: 34px;
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
  position: relative;
  width: calc(47% - 12px);
  z-index: 10;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selected-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f3ff 0%, #e8eeff38 50%, #f0f9ff 100%);
  border-radius: 12px;
  z-index: -1;
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-weight: 600;
  font-size: 10px;
  height: 20px;
  padding: 0 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.card-badge.selection {
  background-color: #000000;
  color: #ffffff;
}

.card-badge.recommendation {
  background-color: #10b981;
  color: #ffffff;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 8px;
  line-height: 2.5;
  color: #374151;
}

.card-price {
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  color: #667eea;
  margin-bottom: 16px;
}

.card-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.card-features {
  margin-bottom: 16px;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-feature svg {
  width: 14px;
  height: 14px;
  fill: #10b981;
  flex-shrink: 0;
}

.card-feature span {
  font-weight: 600;
  font-size: 13px;
  line-height: 2.75;
  color: #3e3e3e;
}

.card-buy-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.card-buy-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

/* Recommendation Card */
.recommendation-card {
  padding: 34px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
  box-shadow: none;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(53% - 12px);
  z-index: 6;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideFromRight 0.5s ease-out forwards;
}

.recommendation-card:hover {
  transform: translateY(-8px);
}

.recommendation-card:hover .rec-title { color: #374151; }
.recommendation-card:hover .rec-price { color: #10b981; }
.recommendation-card:hover .rec-check { fill: #10b981; }
.recommendation-card:hover .rec-btn { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.rec-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 8px;
  line-height: 2.5;
  color: #6b7280;
  transition: color 0.3s ease;
}

.rec-price {
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  color: #6b7280;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.rec-savings-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #10b981;
  border-radius: 8px;
  margin-bottom: 16px;
}

.rec-savings-box svg {
  width: 20px;
  height: 20px;
  fill: #10b981;
  flex-shrink: 0;
  margin-top: 4px;
  transition: fill 0.3s ease;
}

.rec-savings-amount {
  font-size: 14px;
  color: #009b12;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.rec-savings-detail {
  font-size: 13px;
  color: #272828;
  line-height: 2;
  font-weight: 600;
}

.rec-btn {
  width: 100%;
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  color: white;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  z-index: 20;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner.green {
  border-top-color: #10b981;
  width: 24px;
  height: 24px;
}

/* ==================== APPS SECTION ==================== */
.apps-section {
  padding: 58px 0 78px;
  background-color: #fafbfc;
  position: relative;
  overflow: hidden;
}

.apps-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.apps-title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF6B35 15%, #E63946 25%, #9D4EDD 50%, #E63946 75%, #FF6B35 85%, #FF6B35 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
}

.apps-grid {
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.apps-category {
  flex: 1;
}

.apps-category-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 15%, #4a4a4a 25%, #6b6b6b 50%, #4a4a4a 75%, #1a1a1a 85%, #1a1a1a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
}

.app-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-item {
  width: 100%;
  background: #ffffff;
  border-radius: 6px;
  border: 1px dashed #e8ecf1;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.app-item:hover .app-logo {
  filter: grayscale(0%);
}

.app-logo-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(60%);
  transition: filter 0.3s ease;
}

.app-info {
  flex: 1;
  min-width: 0;
}

.app-name {
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 4px;
  line-height: 1.3;
}

.app-desc {
  font-size: 13px;
  color: #565656;
  line-height: 1.4;
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 80px 0;
  background-color: #fafbfc;
  position: relative;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.faq-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF6B35 15%, #E63946 25%, #9D4EDD 50%, #E63946 75%, #FF6B35 85%, #FF6B35 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
}

.faq-list {
  width: 100%;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* ==================== FOOTER ==================== */
.footer {
  padding-left: 80px;
  padding-right:80px;
  padding-top:0px;
  padding-bottom:0px;
  background-image: url('../assets/footer.png');
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #faf9fb;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  height: 55px;
  margin-bottom: 16px;
  filter: grayscale(100%);
  opacity: 0.6;
}

.footer-texts {
  max-width: 800px;
}

.footer-text {
  font-size: 14px;
  color: #b2b2b2;
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-social-btn .material-icons {
  font-size: 20px;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  background-color: #0088cc;
}

.telegram-btn:hover {
  background: linear-gradient(135deg, #0099dd 0%, #0088cc 100%);
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #2EE576 0%, #25D366 100%);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}


.footer-copyright {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
  margin-top: 16px;
}

/* ==================== CONTENT SECTION ==================== */
.content-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.content-wrapper {
  width: 100%;
  max-width: 100%;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.3;
}

.content-text {
  color: #333;
  line-height: 1.8;
}

.content-text p {
  font-size: 13px;
  margin-bottom: 16px;
  color: #4a4a4a;
}

.content-text p:first-of-type {
  font-size: 14px;
  font-weight: 500;
  color: #0a2540;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

.scroll-top-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  width: 520px;
  max-width: 90vw;
  background-color: #eaeaea;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 40px;
  outline: none;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  margin-top: 8px;
}

.modal-logo img {
  width: 190px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
}

.modal-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  padding: 0 16px;
}

.modal-date-box {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.modal-date-label {
  font-size: 15px;
  color: #343434;
  margin-bottom: 8px;
  font-weight: 400;
}

.modal-date-value {
  font-size: 16px;
  color: #10b981;
  font-weight: 700;
}

.modal-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: none;
}

/* App Modal */
.app-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.app-modal-logo {
  width: 100px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.app-modal-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 500;
  flex: 1;
}

.app-modal-info {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.app-modal-info-title {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 500;
}

.app-modal-info-desc {
  font-size: 13px;
  color: #424242;
  line-height: 1.7;
}

/* Canli Kanallar Modal */
.canli-modal-title {
  font-size: 22px;
  color: #3a3a3a;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
  padding: 0 16px;
}

.canli-modal-text {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
  padding: 0 16px;
}

/* ==================== HEADER RIGHT ==================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #323232;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2.5px 0;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==================== MOBILE NAV DRAWER ==================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background-color: #ffffff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-logo {
  height: 40px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  color: #6b7280;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.mobile-nav-links {
  flex: 1;
  padding: 16px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background-color: #f3f4f6;
  color: #635bff;
}

.mobile-nav-link .material-icons {
  font-size: 22px;
  color: #9ca3af;
}

.mobile-nav-link:hover .material-icons,
.mobile-nav-link:active .material-icons {
  color: #635bff;
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav-login-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-login-btn:active {
  transform: scale(0.98);
}

/* ==================== RESPONSIVE ==================== */

/* ---- Tablet & Small Desktop ---- */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text,
  .hero-device {
    width: 100%;
    text-align: center;
  }

  .hero-device {
    justify-content: center;
	margin-right: 50px;
    order: -1;
  }

  .hero-rating {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
  }

  .phone-showcase-grid {
    grid-template-columns: 1fr;
  }

  .phone-sections {
    padding-right: 0;
  }

  .phone-section {
    min-height: auto;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.6);
  }

  .phone-sticky {
    position: relative;
    top: 0;
    margin-bottom: 40px;
    padding-top: 0;
  }

  .tv-frame {
    width: 100%;
    max-width: 500px;
  }

  .tv-screen {
    top: 12%;
    left: 4%;
    width: 87%;
    height: 65%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-list {
    order: 1;
  }

  .pricing-cards {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 2;
  }

  .selected-card {
    width: 100%;
  }

  .recommendation-card {
    position: relative;
    width: 100%;
    margin-top: 0;
  }

  .apps-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .apps-category {
    flex: 1 1 45%;
    min-width: 250px;
  }

  .mega-menu {
    left: auto;
    right: 0;
    transform: none;
    max-width: 90vw;
  }

  .mega-menu::before {
    left: auto;
    right: 30px;
    transform: rotate(45deg);
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- Mobile Landscape & Small Tablets ---- */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 64px;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-title-small {
    font-size: 20px;
  }

  .xiaomi-icon {
    height: 17px;
  }

  .hero-title-big {
    font-size: 33px;
    margin-bottom: 16px;
  }

  .google-play-icon {
    height: 18px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-image {
    max-width: 400px;
  }

  .trusted-by {
    padding: 32px 0;
  }

  .trusted-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .trusted-logo-wrapper {
    width: 130px;
    height: 50px;
  }

  .phone-showcase {
    padding: 64px 0;
  }

  .phone-section {
    min-height: auto;
    margin-bottom: 12px;
    padding: 28px 20px;
    border-radius: 14px;
  }

  .phone-section-title {
    font-size: 30px;
  }

  .phone-section-desc {
    font-size: 15px;
  }

  .pricing {
    padding: 40px 0;
  }

  .pricing-title {
    font-size: 22px;
  }

  .pricing-item-right {
    gap: 16px;
  }

  .pricing-item-price {
    font-size: 14px;
  }

  .apps-section {
    padding: 40px 0 56px;
  }

  .apps-grid {
    flex-direction: column;
    gap: 32px;
  }

  .apps-category {
    flex: 1 1 100%;
    min-width: 0;
  }

  .faq-section {
    padding: 48px 0;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .footer {
    padding: 48px 0;
  }

  .footer-logo {
    height: 45px;
  }

  .footer-logo + span {
    font-size: 13px !important;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer-social-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer-social-btn .material-icons {
    font-size: 18px;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .content-text p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .content-text p:first-of-type {
    font-size: 13px;
  }

  .scroll-top {
    bottom: 20px;
    left: 20px;
  }

  .scroll-top-btn {
    width: 48px;
    height: 48px;
  }

  .modal-box {
    padding: 28px;
    border-radius: 16px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-logo img {
    width: 150px;
    height: 55px;
  }

  .modal-text {
    font-size: 14px;
    padding: 0 8px;
  }

  .app-modal-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .app-modal-logo {
    width: 80px;
  }
}

/* ---- Mobile: Reduce background blobs ---- */
@media (max-width: 768px) {
  .hero-bg-orange {
    width: 250px;
    height: 250px;
  }

  .hero-bg-yellow {
    width: 200px;
    height: 200px;
  }

  .hero-bg-blue {
    width: 150px;
    height: 150px;
  }
}

/* ---- Mobile Portrait ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-logo {
    height: 40px;
  }

  .header-logo + span {
    font-size: 12px !important;
  }

  .login-btn {
    font-size: 13px;
    padding: 6px 14px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-title-small {
    font-size: 17px;
  }

  .xiaomi-icon {
    height: 20px;
  }

  .hero-title-big {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .google-play-icon {
    height: 16px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-rating-text {
    font-size: 13px;
  }

  .hero-stars svg {
    width: 14px;
    height: 14px;
  }

  .hero-image {
    max-width: 100%;
    border-radius: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-cta,
  .hero-chat-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  .trusted-by {
    padding: 24px 0;
  }

  .trusted-row {
    gap: 12px;
  }

  .trusted-logo-wrapper {
    width: 100px;
    height: 38px;
  }

  .trusted-logos {
    gap: 20px;
  }

  .phone-showcase {
    padding: 32px 0;
  }

  .phone-showcase-grid {
    gap: 16px;
  }

  .phone-section {
    margin-bottom: 10px;
    padding: 24px 18px;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }

  .phone-section-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .phone-section-title small {
    font-size: 1em;
  }

  .phone-section-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .tv-frame {
    max-width: 100%;
  }

  .tv-screen {
  top: 12%;
    left: 4%;
    width: 87%;
    height: 65%;
  }

  .pricing {
    padding: 32px 0;
  }

  .pricing-title {
    font-size: 20px;
  }

  .pricing-item {
    padding: 12px;
  }

  .pricing-item-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .pricing-item-right {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .pricing-item-name {
    font-size: 13px;
  }

  .pricing-item-price {
    font-size: 13px;
  }

  .selected-card,
  .recommendation-card {
    padding: 20px;
  }

  .card-title,
  .rec-title {
    font-size: 13px;
  }

  .card-price,
  .rec-price {
    font-size: 18px;
  }

  .card-feature span {
    font-size: 12px;
  }

  .card-buy-btn,
  .rec-btn {
    padding: 12px;
    font-size: 14px;
  }

  .rec-savings-box {
    padding: 12px;
    gap: 10px;
  }

  .rec-savings-amount {
    font-size: 13px;
  }

  .rec-savings-detail {
    font-size: 12px;
  }

  .apps-section {
    padding: 32px 0 48px;
  }

  .apps-title {
    font-size: 20px;
  }

  .apps-category-title {
    font-size: 13px;
  }

  .app-item {
    padding: 12px;
    gap: 12px;
  }

  .app-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .app-logo-wrapper {
    width: 40px;
    height: 40px;
  }

  .app-name {
    font-size: 13px;
  }

  .app-desc {
    font-size: 13px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-content {
    gap: 16px;
  }

  .faq-section {
    padding: 32px 0;
  }

  .faq-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question-text {
    font-size: 14px;
    padding-right: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 1.8;
	color: #5e6062;
  }

  .footer-logo {
    height: 38px;
    margin-bottom: 8px;
  }

  .footer-logo + span {
    font-size: 12px !important;
  }

  .footer-text {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .footer-social {
    gap: 12px;
    margin: 20px 0;
  }

  .footer-social-btn {
    padding: 12px 16px;
    font-size: 13px;
	letter-spacing: 0.5px;
  }

  .footer-social-btn .material-icons {
    font-size: 16px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .content-section {
    padding: 32px 0;
  }

  .content-title {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: left;
  }

  .content-text p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .content-text p:first-of-type {
    font-size: 12px;
  }

  .modal-box {
    padding: 24px 20px;
    border-radius: 14px;
    max-width: 95vw;
    margin: 12px;
  }

  .modal-logo img {
    width: 130px;
    height: 50px;
  }

  .modal-text {
    font-size: 13px;
    margin-bottom: 24px;
    padding: 0;
  }

  .modal-date-box {
    padding: 16px;
    margin-bottom: 24px;
  }

  .modal-date-label {
    font-size: 13px;
  }

  .modal-date-value {
    font-size: 14px;
  }

  .modal-btn {
    padding: 12px;
    font-size: 15px;
    border-radius: 10px;
  }

  .canli-modal-title {
    font-size: 18px;
  }

  .canli-modal-text {
    font-size: 13px;
    padding: 0;
  }

  .mega-menu {
    margin-top: 8px;
    padding: 16px;
  }

  .mega-menu-item {
    padding: 14px;
    border-radius: 10px;
  }

  .mega-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .mega-menu-title {
    font-size: 0.85rem;
  }

  .mega-menu-desc {
    font-size: 0.65rem;
  }

  .popular-badge {
    font-size: 8px;
    top: -8px;
    right: 8px;
    padding: 1px 6px;
    height: 16px;
  }

  .discount-badge {
    font-size: 9px;
    padding: 1px 6px;
    height: 18px;
  }

  .scroll-top {
    bottom: 16px;
    left: 16px;
  }

  .scroll-top-btn {
    width: 44px;
    height: 44px;
  }

  .scroll-top-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ---- Extra Small Devices ---- */
@media (max-width: 360px) {
  .hero-title-big {
    font-size: 28px;
  }

  .hero-title-small {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .phone-section-title {
    font-size: 22px;
  }

  .phone-section-desc {
    font-size: 13px;
  }

  .pricing-title,
  .apps-title {
    font-size: 18px;
  }

  .trusted-logo-wrapper {
    width: 80px;
    height: 32px;
  }

  .modal-box {
    padding: 20px 16px;
  }
}

/* ---- Touch Device Improvements ---- */
@media (hover: none) and (pointer: coarse) {
  .nav-link,
  .login-btn,
  .hero-cta,
  .hero-chat-btn,
  .pricing-item,
  .app-item,
  .card-buy-btn,
  .rec-btn,
  .modal-btn,
  .mobile-nav-link,
  .mobile-nav-login-btn,
  .trusted-logo-wrapper,
  .mega-menu-item {
    -webkit-tap-highlight-color: transparent;
  }

  .app-item:hover {
    transform: none;
    box-shadow: none;
  }

  .app-item:active {
    transform: scale(0.98);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }

  .trusted-logo-wrapper:hover {
    transform: none;
  }

  .trusted-logo-wrapper:active {
    transform: scale(1.05);
  }

  .hero-cta:hover,
  .login-btn:hover,
  .card-buy-btn:hover {
    transform: none;
  }

  .hero-cta:active,
  .login-btn:active,
  .card-buy-btn:active {
    transform: scale(0.98);
  }
}

/* ---- Landscape Phone ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-content {
    flex-direction: row;
    gap: 24px;
  }

  .hero-text,
  .hero-device {
    width: 50%;
    text-align: left;
  }

  .hero-device {
    order: 0;
  }

  .hero-rating {
    justify-content: flex-start;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-title-big {
    font-size: 28px;
  }

  .hero-title-small {
    font-size: 16px;
  }

  .mobile-nav {
    width: 280px;
  }

  .modal-box {
    max-height: 85vh;
    overflow-y: auto;
  }
}

/* ---- Safe Area for notched devices ---- */
@supports (padding: env(safe-area-inset-top)) {
  .header {
    padding-top: env(safe-area-inset-top);
  }

  .mobile-nav {
    padding-top: env(safe-area-inset-top);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .scroll-top {
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: calc(16px + env(safe-area-inset-left));
  }

  .footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}
