/* ============================================
   Flimize.com — Global Stylesheet
   Cloned from flash4kiptv.com Design DNA
   Dark + Gold (#FDB94A) + Blue (#046BD2)
   ============================================ */

:root {
  --fl-bg: #000000;
  --fl-bg-alt: #0F172A;
  --fl-card: #191919;
  --fl-card-hover: #1f1f1f;
  --fl-accent: #FDB94A;
  --fl-accent-hover: #F4B54E;
  --fl-blue: #046BD2;
  --fl-text: #FFFFFF;
  --fl-muted: #A3A3A3;
  --fl-border: #292C35;
  --fl-footer: #0F172A;
  --fl-red: #FF3131;
  --fl-overlay: rgba(0,0,0,0.51);
  --fl-radius: 10px;
  --fl-radius-sm: 6px;
  --fl-shadow: 0 4px 20px rgba(0,0,0,0.3);
  --fl-font: 'Roboto', sans-serif;
  --fl-max-width: 1140px;
  --fl-transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fl-font);
  background: var(--fl-bg);
  color: var(--fl-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fl-accent); text-decoration: none; transition: color var(--fl-transition); }
a:hover { color: var(--fl-accent-hover); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* Container */
.fl-container {
  max-width: var(--fl-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- NAVIGATION ---- */
.fl-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fl-border);
  transition: background var(--fl-transition);
}
.fl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--fl-max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}
.fl-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fl-text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.fl-logo span { color: var(--fl-accent); }
.fl-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.fl-nav__links a {
  color: var(--fl-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--fl-transition);
}
.fl-nav__links a:hover,
.fl-nav__links a.active { color: var(--fl-text); }
.fl-nav__cta {
  background: var(--fl-accent);
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--fl-transition), transform var(--fl-transition);
}
.fl-nav__cta:hover {
  background: var(--fl-accent-hover);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.fl-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fl-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
.fl-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fl-text);
  margin: 5px 0;
  transition: var(--fl-transition);
}

@media (max-width: 768px) {
  .fl-nav__toggle { display: block; }
  .fl-nav__links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--fl-border);
  }
  .fl-nav__links.open { display: flex; }
  .fl-nav__links a { font-size: 1rem; }
}

/* ---- HERO ---- */
.fl-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 80px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.fl-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--fl-overlay);
  z-index: 1;
}
.fl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.fl-hero__badge {
  display: inline-block;
  background: var(--fl-accent);
  color: #000;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.fl-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.fl-hero__title span { color: var(--fl-accent); }
.fl-hero__subtitle {
  font-size: 1.15rem;
  color: var(--fl-muted);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.fl-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.fl-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--fl-transition);
  text-align: center;
  line-height: 1.4;
}
.fl-btn--primary {
  background: var(--fl-accent);
  color: #000;
}
.fl-btn--primary:hover {
  background: var(--fl-accent-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253,185,74,0.3);
}
.fl-btn--outline {
  background: transparent;
  color: var(--fl-text);
  border: 2px solid var(--fl-border);
}
.fl-btn--outline:hover {
  border-color: var(--fl-accent);
  color: var(--fl-accent);
}
.fl-btn--sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}
.fl-btn--block {
  width: 100%;
  display: block;
}

/* ---- STATS BAR ---- */
.fl-stats {
  background: var(--fl-card);
  padding: 40px 0;
  border-top: 1px solid var(--fl-border);
  border-bottom: 1px solid var(--fl-border);
}
.fl-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.fl-stats__item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fl-accent);
  margin-bottom: 4px;
}
.fl-stats__item p {
  color: var(--fl-muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .fl-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- SECTIONS ---- */
.fl-section {
  padding: 80px 0;
}
.fl-section--alt {
  background: var(--fl-card);
}
.fl-section--dark {
  background: var(--fl-bg-alt);
}
.fl-section__header {
  text-align: center;
  margin-bottom: 50px;
}
.fl-section__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.fl-section__title span { color: var(--fl-accent); }
.fl-section__subtitle {
  color: var(--fl-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- CONTENT CAROUSEL / IMAGE ROW ---- */
.fl-carousel {
  overflow-x: auto;
  display: flex;
  gap: 16px;
  padding: 20px 0;
  scrollbar-width: none;
}
.fl-carousel::-webkit-scrollbar { display: none; }
.fl-carousel__item {
  flex: 0 0 200px;
  border-radius: var(--fl-radius);
  overflow: hidden;
}
.fl-carousel__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--fl-transition);
}
.fl-carousel__item:hover img { transform: scale(1.05); }

/* ---- PRICING ---- */
.fl-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fl-pricing__card {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--fl-transition);
  position: relative;
}
.fl-pricing__card:hover {
  border-color: var(--fl-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(253,185,74,0.15);
}
.fl-pricing__card--featured {
  border-color: var(--fl-accent);
  box-shadow: 0 0 30px rgba(253,185,74,0.1);
}
.fl-pricing__card--featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fl-accent);
  color: #000;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.fl-pricing__duration {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.fl-pricing__price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fl-accent);
  margin-bottom: 20px;
}
.fl-pricing__price small {
  font-size: 0.5em;
  color: var(--fl-muted);
  display: block;
  font-weight: 400;
}
.fl-pricing__features {
  text-align: left;
  margin-bottom: 24px;
}
.fl-pricing__features li {
  padding: 6px 0;
  color: var(--fl-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.fl-pricing__features li::before {
  content: '\2713';
  color: var(--fl-accent);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .fl-pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .fl-pricing__grid { grid-template-columns: 1fr; }
}

/* ---- FEATURE BOXES ---- */
.fl-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fl-feature {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 30px;
  text-align: center;
  transition: all var(--fl-transition);
}
.fl-feature:hover {
  border-color: var(--fl-accent);
  transform: translateY(-3px);
}
.fl-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.fl-feature__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.fl-feature__desc {
  color: var(--fl-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fl-features__grid { grid-template-columns: 1fr; }
}

/* ---- DEVICES ---- */
.fl-devices {
  text-align: center;
}
.fl-devices__img {
  max-width: 900px;
  margin: 0 auto;
}

/* ---- SUPPORT GRID ---- */
.fl-support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fl-support__card {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 30px;
  text-align: center;
  transition: all var(--fl-transition);
}
.fl-support__card:hover { border-color: var(--fl-accent); }
.fl-support__icon { font-size: 2.2rem; margin-bottom: 14px; }
.fl-support__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.fl-support__text { color: var(--fl-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
  .fl-support__grid { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS ---- */
.fl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fl-testimonial {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 24px;
}
.fl-testimonial__stars { color: var(--fl-accent); margin-bottom: 12px; font-size: 1.1rem; }
.fl-testimonial__text {
  color: var(--fl-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.fl-testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
}
.fl-testimonial__location {
  color: var(--fl-muted);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .fl-testimonials__grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ACCORDION ---- */
.fl-faq__list { max-width: 800px; margin: 0 auto; }
.fl-faq__item {
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--fl-card);
}
.fl-faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--fl-text);
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--fl-transition);
}
.fl-faq__question:hover { background: rgba(253,185,74,0.05); }
.fl-faq__question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--fl-accent);
  transition: transform var(--fl-transition);
}
.fl-faq__item.active .fl-faq__question::after {
  content: '-';
}
.fl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.fl-faq__item.active .fl-faq__answer {
  max-height: 500px;
  padding: 0 24px 18px;
}
.fl-faq__answer p {
  color: var(--fl-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- TRIAL FORM ---- */
.fl-trial {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
}
.fl-trial__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.fl-trial__subtitle {
  color: var(--fl-muted);
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ---- FORMS ---- */
.fl-form { display: flex; flex-direction: column; gap: 16px; }
.fl-form__group { display: flex; flex-direction: column; gap: 6px; }
.fl-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fl-muted);
}
.fl-form__input,
.fl-form__select,
.fl-form__textarea {
  background: var(--fl-bg);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-sm);
  padding: 12px 16px;
  color: var(--fl-text);
  font-size: 0.95rem;
  transition: border-color var(--fl-transition);
  min-height: 44px;
}
.fl-form__input:focus,
.fl-form__select:focus,
.fl-form__textarea:focus {
  outline: none;
  border-color: var(--fl-accent);
}
.fl-form__textarea { min-height: 120px; resize: vertical; }
.fl-form__select { appearance: none; cursor: pointer; }
.fl-form__honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.fl-form__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--fl-muted);
  justify-content: center;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--fl-radius-sm);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
}
.form-message--success {
  background: rgba(46,204,113,0.15);
  color: #2ecc71;
  border: 1px solid rgba(46,204,113,0.3);
}
.form-message--error {
  background: rgba(255,49,49,0.15);
  color: var(--fl-red);
  border: 1px solid rgba(255,49,49,0.3);
}

/* ---- FOOTER ---- */
.fl-footer {
  background: var(--fl-footer);
  padding: 60px 0 30px;
  border-top: 1px solid var(--fl-border);
}
.fl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.fl-footer__brand { max-width: 300px; }
.fl-footer__brand .fl-logo { font-size: 1.4rem; display: inline-block; margin-bottom: 12px; }
.fl-footer__brand p { color: var(--fl-muted); font-size: 0.88rem; line-height: 1.7; }
.fl-footer__col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--fl-text);
}
.fl-footer__col a {
  display: block;
  color: var(--fl-muted);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--fl-transition);
}
.fl-footer__col a:hover { color: var(--fl-accent); }
.fl-footer__bottom {
  border-top: 1px solid var(--fl-border);
  padding-top: 20px;
  text-align: center;
  color: var(--fl-muted);
  font-size: 0.82rem;
}
.fl-footer__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.fl-footer__payments span {
  background: var(--fl-card);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--fl-muted);
}

@media (max-width: 768px) {
  .fl-footer__grid { grid-template-columns: 1fr 1fr; }
  .fl-hero__title { font-size: 2.2rem; }
}
@media (max-width: 500px) {
  .fl-footer__grid { grid-template-columns: 1fr; }
}

/* ---- PAGE HERO (inner pages) ---- */
.fl-page-hero {
  padding: 120px 20px 50px;
  text-align: center;
  background: var(--fl-card);
  border-bottom: 1px solid var(--fl-border);
}
.fl-page-hero__title {
  font-size: 2.2rem;
  font-weight: 700;
}
.fl-page-hero__breadcrumb {
  color: var(--fl-muted);
  font-size: 0.85rem;
  margin-top: 8px;
}
.fl-page-hero__breadcrumb a { color: var(--fl-accent); }

/* ---- CONTENT AREA (inner pages) ---- */
.fl-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
.fl-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--fl-text);
}
.fl-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--fl-text);
}
.fl-content p {
  color: var(--fl-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.fl-content ul, .fl-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.fl-content li {
  color: var(--fl-muted);
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: disc;
}
.fl-content ol li { list-style: decimal; }
.fl-content a { color: var(--fl-accent); }
.fl-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.fl-content th, .fl-content td {
  padding: 12px 16px;
  border: 1px solid var(--fl-border);
  text-align: left;
  font-size: 0.9rem;
}
.fl-content th {
  background: var(--fl-card);
  font-weight: 600;
  color: var(--fl-text);
}
.fl-content td { color: var(--fl-muted); }
.fl-content strong { color: var(--fl-text); }

/* ---- CHANNEL GRID ---- */
.fl-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.fl-channel-cat {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 24px;
  transition: border-color var(--fl-transition);
}
.fl-channel-cat:hover { border-color: var(--fl-accent); }
.fl-channel-cat__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fl-channel-cat__count {
  color: var(--fl-accent);
  font-size: 0.85rem;
}
.fl-channel-cat__list {
  color: var(--fl-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---- RESELLER ---- */
.fl-reseller__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .fl-reseller__grid { grid-template-columns: 1fr; }
}

/* ---- SETUP GUIDE ---- */
.fl-guide__toc {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 24px;
  margin-bottom: 32px;
}
.fl-guide__toc h3 { font-size: 1rem; margin-bottom: 12px; }
.fl-guide__toc a {
  display: block;
  padding: 4px 0;
  color: var(--fl-muted);
  font-size: 0.9rem;
}
.fl-guide__toc a:hover { color: var(--fl-accent); }

/* ---- CHECKOUT ---- */
.fl-checkout {
  max-width: 600px;
  margin: 0 auto;
}
.fl-checkout__summary {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 24px;
  margin-bottom: 24px;
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-accent { color: var(--fl-accent); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fl-animate { animation: fadeInUp 0.6s ease forwards; }
