/* --- BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #ffffff;

  --purple: #00d2ff;
  --purple-light: #3a7bd5;
  --purple-glow: rgba(0, 210, 255, 0.15);

  --text: #111827;
  --text-muted: #6b7280;

  --glass: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.08);

  --radius: 16px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

/* ── NAV ── */
/* ── NAV ── */
body {
  padding-top: 50px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  padding: 2px 20px;

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

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;

  transition: transform 0.3s ease;
}

nav.hide-nav {
  transform: translateY(-100%);
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo img {
  height: 25px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-logo span {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
.nav-links {
  display: flex;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  color: #4b5563;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #111827;
}

/* Button */
.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.2s;
}

.nav-cta:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
}

@media (max-width:768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
  }

  .hamburger {
    display: flex;
  }
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero > div {
  position: relative;
  z-index: 10;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/best-iptv-service-2026.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.85);
  z-index: -1;
  transform: scale(1.05);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    rgba(0, 210, 255, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--purple);
  margin-bottom: 24px;
}
.hero-badge span {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
h1.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h1.hero-title span {
  background: linear-gradient(
    135deg,
    #7c3aed,
    #5b21b6,
    #2563eb
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 520px;
  margin: 32px auto 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 260px;
  height: 65px;

  padding: 0 40px;
  border-radius: 50px;

  font-size: 22px;
  font-weight: 700;
  color: #fff;

  background: linear-gradient(135deg,#7c3aed,#2563eb);

  box-shadow: 0 10px 25px rgba(124,58,237,.25);
  transition: all .3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg,#6d28d9,#1d4ed8);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(124,58,237,.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: 0.25s;
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: #ffffff;
  margin-top: 2px;
  font-weight: 500;
}

/* ── COMMON ── */
section {
  padding: 90px 24px;
  scroll-margin-top: 80px;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: rgba(0, 210, 255, 0.12);
  color: var(--purple);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.text-center {
  text-align: center;
}

/* ── FEATURES ── */
.features-bg {
  background: var(--bg2);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 210, 255, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple);
  margin-bottom: 20px;
}
.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── PRICING ── */
/* =========================
   PRICING SECTION
========================= */

#pricing{
    padding:100px 20px;
    background:linear-gradient(to bottom,#f7fbff,#eef6ff);
}

.pricing-grid{
    display:flex;
    justify-content:center;
    margin-top:50px;
}

.pricing-card{
    position:relative;
    width:100%;
    max-width:540px;
    padding:45px 40px;
    border-radius:28px;

    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(16px);

    border:1px solid rgba(0,210,255,0.25);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08),
    0 0 25px rgba(0,210,255,0.08);

    transition:0.4s ease;
    overflow:hidden;
}

.pricing-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,210,255,0.10),
        rgba(58,123,213,0.05)
    );
    z-index:0;
}

.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    0 0 40px rgba(0,210,255,0.18);
}

/* content above overlay */
.pricing-card *{
    position:relative;
    z-index:2;
}

/* badge */
.popular-badge{
    position:absolute;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    
    background:linear-gradient(135deg,#00d2ff,#3a7bd5);
    color:#fff;

    padding:8px 18px;
    border-radius:999px;

    font-size:13px;
    font-weight:700;

    box-shadow:0 5px 20px rgba(0,210,255,0.35);
}

/* plan name */
.plan-name{
    margin-top:35px;
    font-size:18px;
    font-weight:600;
    color:#444;
}

/* price */
.plan-price{
    margin-top:12px;
    font-size:64px;
    font-weight:900;
    line-height:1;
    color:#0f172a;
}

.plan-price span{
    font-size:22px;
    font-weight:600;
    color:#666;
}

/* period */
.plan-period{
    margin-top:10px;
    color:#777;
    font-size:15px;
}

/* features */
.plan-features{
    margin-top:35px;
    padding:0;
    list-style:none;
}

.plan-features li{
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 0;

    border-bottom:1px solid rgba(0,0,0,0.06);

    color:#333;
    font-size:15px;
}

.plan-features li i{
    color:#00c853;
    font-size:15px;
}

/* button */
.plan-btn{
    margin-top:30px !important;

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

    width:100%;
    max-width:260px;
    margin-left:auto;
    margin-right:auto;

    padding:16px 24px;

    border:none;
    border-radius:14px;

    font-size:16px;
    font-weight:700;
    text-decoration:none;
    color:#fff;

    background:linear-gradient(135deg,#00d2ff,#3a7bd5);

    box-shadow:0 8px 22px rgba(58,123,213,0.28);

    transition:all .3s ease;
}

.plan-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(58,123,213,0.38);
}
/* mobile */
@media(max-width:768px){

    .pricing-card{
        padding:40px 24px;
    }

    .plan-price{
        font-size:52px;
    }

    .plan-features li{
        font-size:14px;
    }
}
/* ── CHANNELS ── */
.fav-scroll-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 40%,
    black 60%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 30%,
    black 70%,
    transparent
  );
}
.fav-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollFav 40s linear infinite;
  margin-bottom: 16px;
}
.fav-track.reverse {
  animation-direction: reverse;
  animation-duration: 45s;
}
@keyframes scrollFav {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}
.fav-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: 0.2s;
}
.fav-img:hover {
  filter: brightness(1.3);
  transform: scale(1.08);
}

/* ── FLAGS ── */
.flags-bg {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.f-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: f-scroll 50s linear infinite;
}
@keyframes f-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}
.f-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
}
.f-item:hover {
  border-color: var(--purple);
  background: rgba(0, 210, 255, 0.05);
}
.f-img {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.f-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── DEVICES ── */
.dev-img-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.dev-img-card:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 0 24px var(--purple-glow);
}
.dev-logo-wrap {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 12px;
  width: 100px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dev-img-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tutorial-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.25s;
}
.tutorial-btn:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--purple-glow);
}

/* ── FAQ ── */
.faq-bg {
  background: var(--bg2);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.2s;
  background: var(--bg);
}
.faq-item.active {
  border-color: rgba(0, 210, 255, 0.4);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
}
.faq-question i {
  color: var(--purple);
  transition: 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 0;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 48px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 60px;
  width: auto;
}
.footer-logo span {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: 0.2s;
}
.footer-col ul li a:hover {
  color: var(--text);
}
.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

/* --- WHATSAPP --- */
.wa-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: 0.2s;
  animation: wa-pulse 1.5s infinite;
}

.wa-btn:hover {
  transform: scale(1.05);
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-num {
    font-size: 1.5rem;
  }
}

/* ── CTA / CONTACT ── */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(124, 58, 237, 0.12),
    transparent
  );
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.contact-methods {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.contact-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
}
.wa-primary {
  background: #25d366;
  color: #fff;
}
.wa-primary:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.wa-outline {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.wa-outline:hover {
  background: var(--glass-border);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.tutorial-quick-link {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.tutorial-quick-link a {
  color: var(--purple);
  font-weight: 700;
  margin-left: 8px;
  transition: 0.2s;
}
.tutorial-quick-link a:hover {
  text-decoration: underline;
  color: var(--purple-light);
}
#contact .section-tag {
  margin-bottom: 24px;
}
#contact .cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
#contact .cta-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── CATEGORIES ── */
.categories-section {
  padding: 40px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--glass-border);
}
.category-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-grid::-webkit-scrollbar {
  display: none;
}
.category-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: 0.3s;
  cursor: pointer;
  min-width: max-content;
}
.category-card i {
  color: var(--purple);
  font-size: 1.1rem;
}
.category-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.category-card:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--purple-glow);
  background: rgba(0, 210, 255, 0.05);
}

@media (max-width: 768px) {
  .category-grid {
    justify-content: flex-start;
  }
}

/* ── SUB-PAGE COMMON ── */
.sub-hero {
  padding: 95px 24px 30px;
  text-align: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 210, 255, 0.1),
    transparent 70%
  );
}
.sub-hero-title {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.sub-hero-title span {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── POLICY PAGES ── */
.policy-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--purple);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-content h2::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--purple);
  border-radius: 2px;
}
.policy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 10px;
}
.policy-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.policy-content li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--purple);
  font-size: 0.9rem;
  margin-top: 4px;
}
.policy-content a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 1px dashed var(--purple);
}
.policy-content .note {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 15px;
  color: #fca5a5;
  border-radius: 4px;
  margin: 20px 0;
}

/* ── ABOUT PAGE ── */
.about-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}
.stat-item h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================
   WHITE THEME OVERRIDES
=================================== */

body {
  background: #ffffff;
  color: #111827;
}

/* Navigation */
nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
}

.nav-links a {
  color: #4b5563;
}

.nav-links a:hover {
  color: #111827;
}

/* Hero */
.hero-stat-label {
  color: #374151;
}

.hero::after {
  filter: blur(6px) brightness(1.1);
}

/* Cards */
.pricing-card,
.faq-item,
.contact-card,
.policy-content,
.about-card,
.dev-img-card,
.category-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

/* Sections */
.categories-section,
.faq-bg,
.features-bg,
.cta-section,
.sub-hero {
  background: #f8fafc;
}

/* Contact */
.contact-card {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Footer */
footer {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.footer-desc,
.footer-bottom,
.footer-col ul li a {
  color: #6b7280;
}

.footer-col ul li a:hover {
  color: #111827;
}

/* Mobile menu */
@media (max-width:768px){
  .nav-links.active{
    background:#ffffff;
  }
}
