/* ============================================
   BOUQUETX - CSS Stylesheet
   Design DNA: Clean white + warm cream accents
   Cloned from 6iptv.com visual identity
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-body: #ffffff;
  --bg-warm: #fff7ef;
  --bg-card: #ffffff;
  --accent: #1e89bf;
  --accent-hover: #166a94;
  --accent-green: #00f482;
  --text-primary: #343a40;
  --text-muted: rgba(0,0,0,0.55);
  --text-white: #ffffff;
  --border-color: #e9ecef;
  --border-subtle: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --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(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Utility --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--text-primary); }
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
.section-subtitle { color: var(--accent); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }

/* --- Sections --- */
.section { padding: 80px 0; }
.section--warm { background: var(--bg-warm); }
.section--white { background: var(--bg-body); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-body);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 70px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--text-primary); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--text-white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); color: var(--text-white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: var(--transition); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--text-white); }
.btn-primary:hover { background: var(--accent-hover); color: var(--text-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--text-white); }
.btn-green { background: var(--accent-green); color: var(--text-primary); font-weight: 700; }
.btn-green:hover { background: #00d96f; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--text-white); color: var(--accent); }
.btn-white:hover { background: var(--border-color); color: var(--accent-hover); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* --- Hero --- */
.hero {
  background: var(--bg-warm);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* --- Features Grid --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 20px; }
.feature-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--accent); box-shadow: var(--shadow-md); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-muted); font-weight: 500; }
.price { font-size: 2.75rem; font-weight: 800; color: var(--text-primary); font-family: var(--font-heading); }
.price-period { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; display: block; margin-top: 4px; margin-bottom: 24px; }
.pricing-card ul { text-align: left; margin-bottom: 30px; }
.pricing-card li { padding: 8px 0; font-size: 0.9rem; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.pricing-card li::before { content: '\2713'; color: var(--accent-green); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.pricing-card .btn { width: 100%; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--accent);
  padding: 40px 0;
  color: var(--text-white);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 2.25rem; font-weight: 800; color: var(--text-white); margin-bottom: 5px; }
.stat-item p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.testimonial-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: 0.9rem; display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* --- Benefits --- */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-item img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.benefit-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.benefit-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent); font-weight: 300; transition: transform var(--transition); }
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #0f6a9a);
  padding: 80px 0;
  text-align: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--text-white); font-size: 2.25rem; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
  background: var(--bg-body);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 280px; }
.footer h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: var(--text-primary); }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 0.875rem; color: var(--text-muted); }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
.footer-address { font-size: 0.85rem; color: var(--text-muted); font-style: normal; margin-top: 12px; line-height: 1.6; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-body);
  transition: border-color var(--transition);
  min-height: 48px;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,137,191,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23343a40'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-message { padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; margin-top: 16px; }
.form-message--success { background: #d1fae5; color: #065f46; }
.form-message--error { background: #fee2e2; color: #991b1b; }
.trust-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--bg-warm);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 { font-size: 2.25rem; margin-bottom: 10px; }
.page-header p { color: var(--text-muted); font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* --- Content Pages --- */
.content-section { padding: 60px 0; }
.content-section .container { max-width: 900px; }
.content-section h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px; }
.content-section h3 { font-size: 1.2rem; margin-top: 30px; margin-bottom: 12px; }
.content-section ul, .content-section ol { margin-left: 20px; margin-bottom: 16px; }
.content-section li { margin-bottom: 8px; list-style: disc; color: var(--text-primary); }
.content-section ol li { list-style: decimal; }
.content-section table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.content-section th, .content-section td { padding: 12px 16px; border: 1px solid var(--border-color); text-align: left; }
.content-section th { background: var(--bg-warm); font-weight: 600; }
.content-section strong { font-weight: 700; }

/* --- Channel Categories --- */
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.channel-category {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.channel-category:hover { border-color: var(--accent); transform: translateY(-3px); }
.channel-category .emoji { font-size: 2rem; margin-bottom: 10px; }
.channel-category h3 { font-size: 1rem; margin-bottom: 6px; }
.channel-category p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

/* --- Reseller Tiers --- */
.reseller-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.reseller-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  transition: all var(--transition);
}
.reseller-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reseller-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.reseller-card .credits { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-heading); }
.reseller-card .price-label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.reseller-card ul { text-align: left; margin-bottom: 24px; }
.reseller-card li { padding: 6px 0; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.reseller-card li::before { content: '\2713'; color: var(--accent-green); font-weight: 700; }

/* --- Contact Info --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* --- Setup Guide --- */
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content h2 { color: var(--accent); border-bottom: 2px solid var(--border-color); padding-bottom: 10px; }
.guide-step {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.guide-step h3 { color: var(--accent); }

/* --- Trial Form (index) --- */
.trial-section { background: var(--bg-warm); padding: 60px 0; }
.trial-form-wrapper { max-width: 500px; margin: 0 auto; background: var(--bg-card); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.trial-form-wrapper h3 { text-align: center; margin-bottom: 6px; }
.trial-form-wrapper .trial-sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image { order: -1; }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .reseller-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg-body); flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius); z-index: 999; }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border-color); }
  .nav-toggle { display: block; }
}
@media (max-width: 576px) {
  .section { padding: 50px 0; }
  h1 { font-size: 1.75rem; }
  .hero { padding: 60px 0 50px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item h3 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
}

/* --- FAQ Toggle Script Helper --- */
.faq-item .faq-answer { overflow: hidden; }
