/* ===== CSS VARIABLES ===== */
:root {
  /* Light Theme Colors */
  --primary-color: #894545;
  --primary-color-dark: #0056b3;
  --secondary-color: #6c757d;
  --accent-color: #28a745;
  --background-color: #ffffff;
  --surface-color: #f8f9fa;
  --text-color: #212529;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 24px rgba(0,0,0,0.2);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /* Spacing */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /* Layout */
  --header-height: 4rem;
  --container-max-width: 1200px;
  --section-padding: 4rem 0;
  
  /* Transitions */
  --transition: 0.3s ease;
  
  /* Border Radius */
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-font-size);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: var(--section-padding);
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--mb-2);
}

.section__placeholder {
  text-align: center;
  padding: var(--mb-3);
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  border: 2px dashed var(--border-color);
  color: var(--text-light);
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.btn:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--background-color);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1000;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 0;
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.25rem;
  color: var(--text-color);
  cursor: pointer;
}

.nav__burger {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Desktop Navigation Styles */
@media screen and (min-width: 769px) {
  .nav__data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav__logo {
    flex: 0 0 auto;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .nav__list {
    display: flex;
    align-items: center;
    column-gap: 2.5rem;
  }

  .nav__toggle {
    display: none;
  }

  .nav__link {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
  }
}

/* ===== MAIN CONTENT ===== */
.main {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

/* Hero Section Base Styles */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 0 4rem;
}

.hero__placeholder {
  text-align: center;
  padding: 4rem 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-color);
  color: #ffffff;
  padding: var(--mb-3) 0 var(--mb-1);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--mb-2);
  margin-bottom: var(--mb-2);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--primary-color);
}

.footer__subtitle {
  font-size: var(--h4-font-size);
  margin-bottom: var(--mb-1);
  color: #ffffff;
}

.footer__description {
  color: #adb5bd;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: #adb5bd;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__contact {
  color: #adb5bd;
  margin-bottom: var(--mb-0-5);
}

.footer__bottom {
  border-top: 1px solid #495057;
  padding-top: var(--mb-1);
  text-align: center;
}

.footer__copy {
  color: #adb5bd;
  font-size: var(--small-font-size);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
  :root {
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .header {
    padding: 0 1rem;
  }

  .nav__data {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__logo {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
    font-weight: var(--font-semi-bold);
  }

  .nav__logo img {
    width: 120px;
  }

  /* Show menu */
  .nav__menu {
    position: fixed;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    padding: 3.5rem 2rem;
    z-index: var(--z-fixed);
    transition: right 0.4s;
    overflow-y: auto;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2.5rem;
    align-items: flex-start;
  }

  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: var(--z-tooltip);
  }

  .nav__burger {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .nav__toggle.active .nav__burger:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .nav__toggle.active .nav__burger:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active .nav__burger:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }

  .nav__logo {
    order: 1;
  }

  .nav__toggle {
    order: 2;
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
    display: block;
  }

  /* Show menu */
  .show-menu {
    right: 0;
  }
  
  /* Prevent button duplication */
  .nav__toggle span {
    pointer-events: none;
  }
  
  /* Fix button stacking issues */
  button {
    -webkit-appearance: none;
    appearance: none;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    min-height: 48px;
    border-radius: 8px;
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 52px;
  }

  /* Mobile Grid Optimizations */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Mobile Typography */
  .hero__title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Mobile Navigation Logo */
  .nav__logo-img {
    height: 32px;
    width: auto;
  }

  /* Mobile Touch Targets */
  .nav__link {
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  /* Mobile Accordion */
  .accordion__header {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .accordion__content-inner {
    padding: 1rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .section {
    padding: 2rem 0;
  }

  .hero__title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero__description {
    margin-bottom: var(--mb-1-5);
    font-size: 0.9rem;
  }

  .nav__menu {
    width: 100%;
    border-radius: 0;
    padding: 3rem 1rem 0;
  }

  .nav__logo-img {
    height: 28px;
  }

  .nav__toggle {
    width: 28px;
    height: 18px;
  }

  /* Extra Small Mobile Optimizations */
  .btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .btn--large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  /* Mobile Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 2rem;
  }

  .stat__label {
    font-size: 0.8rem;
  }

  /* Mobile Form */
  .form__group {
    margin-bottom: 1rem;
  }

  .form__input,
  .form__textarea {
    padding: 1rem;
    font-size: 0.9rem;
  }

  /* Mobile Spacing */
  .section__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section__subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease forwards;
}

/* ===== HOMEPAGE SECTIONS ===== */
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.hero__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
}

.hero__title .highlight {
  color: var(--primary-color);
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
}

.hero__feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
}

.hero__image-placeholder {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  color: #ffffff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* Features Section */
.features__grid {
  margin-top: var(--mb-3);
}

.feature__card {
  background-color: var(--surface-color);
  padding: var(--mb-2);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.feature__icon i {
  font-size: 2rem;
  color: #ffffff;
}

.feature__title {
  font-size: var(--h4-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.feature__description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #894545, #0056b3);
  color: white;
  padding: 4rem 0;
}

.stats__grid {
  margin-top: var(--mb-2);
}

.stat__item {
  text-align: center;
  padding: var(--mb-2);
}

.stat__number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--mb-0-5);
}

.stat__label {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials__grid {
  margin-top: var(--mb-3);
}

.testimonial__card {
  background-color: var(--background-color);
  padding: var(--mb-2);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.testimonial__card:hover {
  box-shadow: var(--shadow-medium);
}

.testimonial__content p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.7;
}

.testimonial__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial__info h4 {
  font-size: var(--normal-font-size);
  margin-bottom: 0.25rem;
}

.testimonial__info span {
  font-size: var(--small-font-size);
  color: var(--text-light);
}

.testimonial__rating {
  color: #ffd700;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #ffffff;
}

.cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: #ffffff;
}

.cta__description {
  font-size: 1.1rem;
  margin-bottom: var(--mb-2-5);
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta .btn {
  background-color: #ffffff;
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--surface-color);
}

.cta .btn--secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.cta .btn--secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* ===== CHANNELS PAGE STYLES ===== */
.channel-stats {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    padding: 4rem 0;
}

.channel-filter {
    padding: 3rem 0;
    background: #f8f9fa;
}

.filter__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.filter__search {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.filter__search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter__search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.filter__search i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.filter__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0 1rem;
}

.filter__btn {
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 100px;
    text-align: center;
}

.filter__btn:hover,
.filter__btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.channel-categories {
    padding: 5rem 0;
}

.categories__grid {
    gap: 2rem;
}

.category__card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category__icon i {
    font-size: 2rem;
    color: white;
}

.category__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.category__count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category__description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category__highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    color: #495057;
    font-size: 0.9rem;
}

.category__highlights li:last-child {
    border-bottom: none;
}

.category__highlights li:before {
    content: "▶";
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.regional-coverage {
    padding: 5rem 0;
    background: #f8f9fa;
}

.regions__grid {
    gap: 2rem;
}

.region__card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.region__card:hover {
    transform: translateY(-3px);
}

.region__flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.region__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.region__count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.region__description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-size: 0.9rem;
}

.channel-quality {
    padding: 5rem 0;
}

.quality__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.quality__description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quality__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quality__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quality__feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quality__feature span {
    color: #495057;
    font-weight: 500;
}

.quality__image-placeholder {
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.quality__image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.quality__image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Channels Page */
@media screen and (max-width: 768px) {
    .filter__controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filter__search {
        max-width: none;
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
    }
    
    .regions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality__title {
        font-size: 2rem;
    }
    
    .category__card {
        padding: 2rem;
    }
    
    .category__icon {
        width: 60px;
        height: 60px;
    }
    
    .category__icon i {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .filter__buttons {
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .filter__btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        min-width: 80px;
    }
    
    .regions__grid {
        grid-template-columns: 1fr;
    }
    
    .quality__image-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .quality__image-placeholder i {
        font-size: 3rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-methods {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact__method {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 300px;
    max-width: 350px;
    min-width: 300px;
}

.contact__method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact__icon i {
    font-size: 2rem;
    color: white;
}

.contact__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact__details {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 1rem;
}

.contact__description {
    color: #6c757d;
    line-height: 1.6;
}

.contact-forms {
    padding: 5rem 0;
}

.forms__grid {
    gap: 3rem;
}

.form__container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__submit {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.support-categories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.support__grid {
    gap: 2rem;
}

.support__card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.support__card:hover {
    transform: translateY(-3px);
}

.support__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support__icon i {
    font-size: 1.8rem;
    color: white;
}

.support__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.support__description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.response-time {
    padding: 4rem 0;
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
}

.response__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.response__icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response__icon i {
    font-size: 3rem;
    color: white;
}

.response__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #894545, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.response__times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.response__time {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
}

.response__time strong {
    color: #ffd700;
}

/* Responsive Design for Contact Page */
@media screen and (max-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .forms__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .response__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .response__times {
        grid-template-columns: 1fr;
    }
    
    .response__title {
        font-size: 2rem;
    }
    
    .form__container {
        padding: 2rem;
    }
    
    .contact__method {
        padding: 2rem;
        min-width: 280px;
    }
    
    .contact__details {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .support__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__method {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    .contact__details {
        font-size: 0.9rem;
        padding: 0;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .contact__icon,
    .support__icon {
        width: 60px;
        height: 60px;
    }
    
    .contact__icon i,
    .support__icon i {
        font-size: 1.5rem;
    }
    
    .response__icon {
        width: 80px;
        height: 80px;
    }
    
    .response__icon i {
        font-size: 2rem;
    }
    
    .form__title {
        font-size: 1.5rem;
    }
}

/* ===== IPTV SETUP PAGE STYLES ===== */
.setup-hero {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header {
  text-align: center;
  padding: 4rem 0;
}

.page-header__content {
  text-align: center;
}

.page-header__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
  text-align: center;
}

.page-header__description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--mb-2);
}

.pricing__toggle-label {
  font-weight: 500;
  color: var(--text-color);
}

.pricing__save {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: var(--smaller-font-size);
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.pricing__toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: var(--transition);
  border-radius: 30px;
}

.pricing__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: var(--transition);
  border-radius: 50%;
}

.pricing__toggle:checked + .pricing__slider {
  background-color: var(--primary-color);
}

.pricing__toggle:checked + .pricing__slider:before {
  transform: translateX(30px);
}

.pricing__grid {
  margin-top: var(--mb-3);
}

.pricing__card {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  padding: var(--mb-2-5);
  text-align: center;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.pricing__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.pricing__card--popular {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
}

.pricing__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: var(--small-font-size);
  font-weight: 600;
}

.pricing__header {
  margin-bottom: var(--mb-2);
}

.pricing__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.pricing__description {
  color: var(--text-light);
  font-size: var(--normal-font-size);
}

.pricing__price-container {
  margin-bottom: var(--mb-2-5);
}

.pricing__price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
}

.pricing__period {
  color: var(--text-light);
  font-size: var(--normal-font-size);
  margin-left: 0.5rem;
}

.pricing__features {
  text-align: left;
  margin-bottom: var(--mb-2-5);
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.pricing__feature i {
  color: var(--accent-color);
  font-size: 1rem;
  width: 16px;
}

.pricing__btn {
  width: 100%;
  padding: 1rem;
}

.pricing__card--popular .pricing__btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #ffffff;
}

/* Comparison Table */
.comparison__table-container {
  overflow-x: auto;
  margin-top: var(--mb-3);
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.comparison__table th,
.comparison__table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison__table th {
  background-color: var(--surface-color);
  font-weight: 600;
  color: var(--text-color);
}

.comparison__table th:first-child {
  text-align: left;
}

.comparison__table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison__table tbody tr:hover {
  background-color: var(--surface-color);
}

/* Guarantee Section */
.guarantee {
  background-color: var(--surface-color);
}

.guarantee__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.guarantee__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #20a745);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee__icon i {
  font-size: 2rem;
  color: #ffffff;
}

.guarantee__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.guarantee__description {
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

/* FAQ Section */
.faq__grid {
  margin-top: var(--mb-3);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--mb-1); }
.mt-2 { margin-top: var(--mb-2); }
.mb-1 { margin-bottom: var(--mb-1); }
.mb-2 { margin-bottom: var(--mb-2); }

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media screen and (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__buttons,
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__features {
    margin-bottom: var(--mb-1-5);
  }

  .stat__number {
    font-size: 2.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.company-story {
    padding: 4rem 0;
    background: #f8f9fa;
}

.story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story__image-placeholder,
.tech__image-placeholder {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story__image-placeholder i,
.tech__image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.story__image-placeholder p,
.tech__image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: white;
}

.mission__card,
.vision__card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission__card:hover,
.vision__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.mission__icon,
.vision__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.mission__title,
.vision__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mission__description,
.vision__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Core Values */
.core-values {
    padding: 4rem 0;
    background: #f8f9fa;
}

.values__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value__card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.value__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.value__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Company Stats */
.company-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.stat__item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Technology Section */
.technology {
    padding: 4rem 0;
    background: white;
}

.tech__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.tech__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.tech__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech__feature i {
    font-size: 2rem;
    color: #894545;
    margin-top: 0.5rem;
}

.tech__feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tech__feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team__member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team__member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.member__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #894545, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.member__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member__role {
    font-size: 1rem;
    color: #894545;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Awards Section */
.awards {
    padding: 4rem 0;
    background: white;
}

.awards__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award__card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.award__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.award__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.award__organization {
    font-size: 1rem;
    color: #894545;
    font-weight: 500;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .story__content,
    .tech__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story__title,
    .tech__title {
        font-size: 2rem;
        text-align: center;
    }
    
    .mission-vision .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team__grid,
    .awards__grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats .stat__number {
        font-size: 2.5rem;
    }
}

/* Resellers Page Styles */
.program-overview {
    padding: 4rem 0;
    background: white;
}

.overview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.overview__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.overview__highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.highlight__item i {
    color: #28a745;
    font-size: 1.2rem;
}

.highlight__item span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.overview__image-placeholder {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overview__image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.overview__image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit__card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.benefit__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.benefit__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Commission Structure */
.commission {
    padding: 4rem 0;
    background: white;
}

.commission__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commission__tier {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commission__tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.commission__tier--featured {
    border-color: #894545;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

.tier__badge {
    background: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.tier__badge--gold {
    background: linear-gradient(135deg, #894545, #0056b3);
}

.tier__badge--platinum {
    background: linear-gradient(135deg, #ffd700, #ffa500);
}

.tier__commission {
    font-size: 3rem;
    font-weight: 700;
    color: #894545;
    margin-bottom: 1rem;
}

.tier__price {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 1rem;
}

.tier__description {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    margin-bottom: 0.5rem;
}

.tier__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tier__sales {
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tier__features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.tier__features li:last-child {
    border-bottom: none;
}

.tier__features i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Policy Pages Styles */
.policy-content {
    padding: 4rem 0;
    background: white;
}

.policy__wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.toc {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    position: sticky;
    top: 2rem;
}

.toc__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.toc__list {
    list-style: none;
    padding: 0;
}

.toc__list li {
    margin-bottom: 0.5rem;
}

.toc__link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.toc__link:hover {
    color: #894545;
}

.policy__content {
    max-width: none;
}

.policy__section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.policy__section:last-child {
    border-bottom: none;
}

.policy__heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.policy__subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.policy__list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy__list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #666;
}

.policy__note {
    background: #e3f2fd;
    border-left: 4px solid #894545;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.policy__note p {
    margin: 0;
    color: #1565c0;
}

.policy__meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.policy__meta p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Refund Policy Specific Styles */
.guarantee {
    padding: 4rem 0;
    background: #f8f9fa;
}

.guarantee__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.guarantee__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.guarantee__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.guarantee__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature__item i {
    color: #28a745;
    font-size: 1.2rem;
}

.feature__item span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.guarantee__badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 3rem 2rem;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
}

.guarantee__badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.badge__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.badge__content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.refund__steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step__item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step__number {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step__content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step__content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.timeframes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.timeframe__card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.timeframe__card:hover {
    transform: translateY(-5px);
}

.timeframe__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.timeframe__time {
    font-size: 2rem;
    font-weight: 700;
    color: #894545;
    margin-bottom: 0.5rem;
}

.timeframe__description {
    color: #666;
    font-size: 0.9rem;
}

.contact__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact__method i {
    color: #894545;
    font-size: 1.5rem;
}

.method__content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.method__content p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

.method__content small {
    color: #999;
    font-size: 0.8rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .overview__content,
    .guarantee__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc {
        position: static;
    }
    
    .guarantee__features {
        grid-template-columns: 1fr;
    }
    
    .guarantee__badge {
        width: 150px;
        height: 150px;
        padding: 2rem 1rem;
    }
    
    .badge__content h3 {
        font-size: 1.5rem;
    }
    
    .timeframes__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__methods {
        grid-template-columns: 1fr;
    }
}

/* Homepage Pricing Section */
.homepage-pricing {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Device Toggle Buttons */
.pricing__device-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.device-btn {
    padding: 12px 24px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.device-btn.active {
    background: #894545;
    color: white;
    border-color: #894545;
}

.device-btn:hover {
    border-color: #894545;
    color: #894545;
}

.device-btn.active:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Pricing Plans Grid */
.pricing__plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.pricing__plan-card {
    background: white;
    border: 2px solid #894545;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing__plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.plan__duration {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.plan__price {
    font-size: 3rem;
    font-weight: 700;
    color: #894545;
    margin-bottom: 0.5rem;
}

.plan__discount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-decoration: underline;
}

.plan__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #333;
}

.plan__features i {
    color: #894545;
    font-size: 1.1rem;
}

/* Featured Plan Styling */
.pricing__plan-card--featured {
    border-color: #dc3545;
    position: relative;
    transform: scale(1.05);
}

.pricing__plan-card--featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}


/* Order Now Button */
.plan__order-btn {
    width: 100%;
    padding: 12px 24px;
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.plan__order-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.plan__order-btn i {
    transition: transform 0.3s ease;
}

.plan__order-btn:hover i {
    transform: translateX(3px);
}

.pricing__note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: 10px;
    border-left: 4px solid #894545;
}

.pricing__note p {
    margin: 0;
    color: #1565c0;
    font-weight: 500;
}

.pricing__note a {
    color: #894545;
    font-weight: 600;
    text-decoration: none;
}

.pricing__note a:hover {
    text-decoration: underline;
}

/* Homepage FAQ Section */
.homepage-faq {
    padding: 4rem 0;
    background: white;
}

.faq__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.05);
    transition: all 0.3s ease;
}

.accordion__item:hover {
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
}

.accordion__item.active {
    border-color: #894545;
}

.accordion__header {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
}

.accordion__header:hover {
    background: #e9ecef;
}

.accordion__item.active .accordion__header {
    background: #894545;
    color: white;
}

.accordion__header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.accordion__item.active .accordion__header h3 {
    color: white;
}

.accordion__header i {
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
}

.accordion__item.active .accordion__header i {
    color: white;
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.accordion__content-inner {
    padding: 1.5rem 2rem;
}

.accordion__content-inner p {
    margin: 0;
    line-height: 1.7;
    color: #666;
    font-size: 1rem;
}

.faq__cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq__cta p {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
}

.faq__link {
    color: #894545;
    font-weight: 600;
    text-decoration: none;
}

.faq__link:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
}

.final-cta__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.final-cta__description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.cta-feature i {
    font-size: 1.5rem;
    color: #ffd700;
}

.cta-feature span {
    font-weight: 600;
    font-size: 1rem;
}

.final-cta__buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-cta__buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #ffd700;
    color: #894545;
}

.btn--primary:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.btn--secondary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.final-cta__guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.final-cta__guarantee i {
    font-size: 1.5rem;
    color: #ffd700;
}

.final-cta__guarantee strong {
    color: #ffd700;
}

.final-cta__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cta-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-5px);
}

.cta-stat .stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.cta-stat .stat__label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design for New Homepage Sections */
@media (max-width: 1200px) {
    .pricing__plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing__plan-card--featured {
        transform: scale(1.02);
    }
}

@media (max-width: 968px) {
    .pricing__plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pricing__plan-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing__plan-card--featured {
        transform: none;
    }
    
    .pricing__device-toggle {
        gap: 0.5rem;
    }
    
    .device-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .plan__price {
        font-size: 2.5rem;
    }
    
    .final-cta__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .final-cta__title {
        font-size: 2.2rem;
    }
    
    .final-cta__features {
        grid-template-columns: 1fr;
    }
    
    .final-cta__buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing__plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .final-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta__buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .final-cta__guarantee {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ===== SETUP PAGE STYLES ===== */
.quick-start {
    background: #f8f9fa;
    padding: 4rem 0;
}

.quick-steps {
    margin-top: 3rem;
}

.quick-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

.step__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #894545, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step__icon i {
    font-size: 2rem;
    color: white;
}

.step__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step__description {
    color: #666;
    line-height: 1.6;
}

/* Device Setup Styles */
.device-setup {
    padding: 4rem 0;
}

.device-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #666;
}

.tab-btn:hover {
    background: #e9ecef;
    border-color: #894545;
    color: #894545;
}

.tab-btn.active {
    background: #894545;
    border-color: #894545;
    color: white;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.device-guide {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.guide-header {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.difficulty {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty.easy {
    background: #28a745;
}

.difficulty.medium {
    background: #ffc107;
    color: #212529;
}

.difficulty.hard {
    background: #dc3545;
}

.setup-steps {
    padding: 2rem;
}

.setup-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.setup-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #894545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.step-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.step-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.step-note {
    background: #e7f3ff;
    border-left: 4px solid #894545;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.step-note i {
    color: #894545;
    margin-top: 0.2rem;
}

.code-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

.code-block code {
    color: #e83e8c;
    font-size: 0.9rem;
}

/* Troubleshooting Section */
.troubleshooting {
    background: #f8f9fa;
    padding: 4rem 0;
}

.trouble-grid {
    margin-top: 3rem;
}

.trouble-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trouble-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trouble-icon i {
    font-size: 1.5rem;
    color: white;
}

.trouble-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trouble-item ul {
    text-align: left;
    color: #666;
    line-height: 1.6;
}

.trouble-item li {
    margin-bottom: 0.5rem;
}

/* Support CTA */
.support-cta {
    background: linear-gradient(135deg, #894545, #0056b3);
    color: white;
    padding: 4rem 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
}

.cta-text p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.page-header__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.header-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.header-stat i {
    color: #894545;
    font-size: 1.2rem;
}

/* Setup Page Mobile Responsive */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .setup-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .page-header__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trouble-grid {
        grid-template-columns: 1fr;
    }
}
