/* ============================================================
   BOB IPTV PLAYER — Main Stylesheet
   Design: white bg, #F8FAFC grey sections, #2563EB blue
   Mobile-first, no animations, fast load
   ============================================================ */

:root {
  --primary:        #2563EB;
  --primary-dark:   #1D4ED8;
  --primary-light:  #EFF6FF;
  --primary-hover:  #1E40AF;
  --text:           #0F172A;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;
  --bg:             #FFFFFF;
  --bg-grey:        #F8FAFC;
  --bg-grey-2:      #F1F5F9;
  --border:         #E2E8F0;
  --border-light:   #F1F5F9;
  --success:        #10B981;
  --warning:        #F59E0B;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow:         0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:      0 10px 30px rgba(0,0,0,0.10);
  --shadow-blue:    0 4px 20px rgba(37,99,235,0.20);
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:          1160px;
  --nav-h:          68px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--text-secondary); line-height: 1.75; }
.lead { font-size: 1.2rem; color: var(--text-secondary); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.bg-grey  { background: var(--bg-grey); }
.bg-grey2 { background: var(--bg-grey-2); }
.bg-blue  { background: var(--primary); }
.bg-dark  { background: #0F172A; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ── Flex ── */
.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Spacing ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm); font-size: 1rem;
  font-weight: 600; line-height: 1; white-space: nowrap;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }

.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--bg-grey); }

.btn-ghost { color: var(--text-secondary); }
.btn-ghost:hover { color: var(--primary); }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: none; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-cta { display: none; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm); cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
}
.nav-mobile {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: #fff; z-index: 99; padding: 24px 20px;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile a:hover { color: var(--primary); background: var(--primary-light); }
.nav-mobile .btn { margin-top: 16px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .nav-hamburger { display: none; }
}

/* ── Hero ── */
.hero {
  padding: 72px 0 80px;
  background: linear-gradient(160deg, #EFF6FF 0%, #fff 60%);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  padding: 6px 14px; border-radius: 99px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 1.15rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.hero-stat-label { font-size: 0.85rem; color: var(--text-muted); }
.hero-image { display: flex; justify-content: center; }
.hero-image img, .hero-image svg { width: 100%; max-width: 540px; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 4px 14px; border-radius: 99px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Feature cards ── */
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--primary); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p  { font-size: 0.95rem; }

/* ── Pricing cards ── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 700px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; box-shadow: var(--shadow-sm);
}
.plan-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  padding: 5px 18px; border-radius: 99px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.plan-price .amount { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.plan-price .currency { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.plan-per { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 32px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.93rem; color: var(--text-secondary);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--success); flex-shrink: 0; margin-top: 1px; }
.plan-savings {
  font-size: 0.82rem; font-weight: 600; color: var(--success);
  background: #ECFDF5; padding: 4px 10px; border-radius: 99px;
  display: inline-block; margin-bottom: 20px;
}

/* ── How it works ── */
.steps { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }

/* ── Device list ── */
.devices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 480px) { .devices-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .devices-grid { grid-template-columns: repeat(6, 1fr); } }
.device-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 12px; text-align: center;
  font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
}
.device-item svg { width: 36px; height: 36px; color: var(--primary); }
.device-item:hover { border-color: var(--primary); color: var(--primary); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left; font-size: 1.02rem; font-weight: 600;
  color: var(--text); gap: 16px; background: none; border: none; cursor: pointer;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; line-height: 1;
}
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: #fff; }
.faq-answer {
  display: none; padding: 0 0 22px 0;
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.compare-table th, .compare-table td {
  padding: 14px 16px; border: 1px solid var(--border); text-align: center;
}
.compare-table th { background: var(--bg-grey); font-weight: 700; }
.compare-table th.highlight, .compare-table td.highlight {
  background: var(--primary-light); color: var(--primary); font-weight: 700;
}
.compare-table .check-yes { color: var(--success); font-size: 1.1rem; }
.compare-table .check-no  { color: #CBD5E1; font-size: 1.1rem; }
.compare-wrap { overflow-x: auto; }

/* ── Blog cards ── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-grey-2); }
.blog-card-img svg { width: 100%; height: 100%; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: 0.88rem; flex: 1; margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ── Order / Wizard ── */
.order-wrap {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 600px) { .order-wrap { padding: 28px 18px; } }

.progress-bar {
  display: flex; gap: 4px; margin-bottom: 40px;
}
.progress-step {
  flex: 1; height: 6px; border-radius: 99px;
  background: var(--bg-grey-2);
}
.progress-step.done   { background: var(--primary); }
.progress-step.active { background: var(--primary); opacity: 0.5; }

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.step-label {
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px;
}
.wizard-step h2 { font-size: 1.5rem; margin-bottom: 8px; }
.wizard-step > p { margin-bottom: 28px; }

/* Option cards (radio / checkbox style) */
.option-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 480px) { .option-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 480px) { .option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.option-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); cursor: pointer; text-align: center;
  font-size: 0.9rem; font-weight: 600; color: var(--text-secondary);
  background: #fff; user-select: none;
}
.option-card:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.option-card.selected { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.option-card svg { width: 32px; height: 32px; }
.option-card small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

.field-group { margin-bottom: 20px; }
.field-group label {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.field-group input, .field-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--text); background: #fff;
  outline: none;
}
.field-group input:focus, .field-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.wizard-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; gap: 12px;
}
.wizard-nav .btn { min-width: 120px; }

.order-summary {
  background: var(--bg-grey); border-radius: var(--radius);
  padding: 20px; margin-bottom: 24px; font-size: 0.9rem;
}
.order-summary h4 { margin-bottom: 12px; font-size: 1rem; }
.summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.summary-row:last-child { border-bottom: none; font-weight: 700; color: var(--text); }

/* ── Thank you ── */
.thankyou-box {
  max-width: 600px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 56px 32px;
  box-shadow: var(--shadow-lg);
}
.thankyou-icon {
  width: 72px; height: 72px; background: #ECFDF5;
  border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.thankyou-icon svg { width: 36px; height: 36px; color: var(--success); }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; border: 2px solid var(--border);
  background: #fff; color: var(--text); width: 100%;
}
.contact-btn.whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.contact-btn.email    { border-color: var(--primary); color: var(--primary); }
.contact-btn:hover    { opacity: 0.9; }

/* ── Testimonials ── */
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; }
.review-card p { font-size: 0.93rem; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loc  { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white:hover { background: #EFF6FF; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 0.85rem; color: var(--text-muted);
  padding: 16px 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ── Article ── */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 40px 0 16px; }
.article-body h3 { margin: 28px 0 12px; }
.article-body p  { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  margin: 0 0 18px 24px; list-style: disc;
}
.article-body ol { list-style: decimal; }
.article-body li { color: var(--text-secondary); margin-bottom: 6px; line-height: 1.7; }
.article-body a  { color: var(--primary); text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 14px 20px; background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0; font-size: 1rem; color: var(--primary-dark);
}

/* ── Footer ── */
.footer {
  background: #0F172A; color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.15rem; font-weight: 800; color: #fff;
}
.footer-logo span { color: var(--primary); }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ── Notice / Alert ── */
.notice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 0.9rem; margin-bottom: 24px;
}
.notice-info    { background: var(--primary-light); color: var(--primary-dark); }
.notice-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.notice-success { background: #ECFDF5; color: #065F46; }
.notice svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── Install steps ── */
.install-steps { counter-reset: step; }
.install-step {
  display: flex; gap: 20px; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.install-step:last-child { border-bottom: none; margin-bottom: 0; }
.install-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.install-step-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.install-step-body p  { font-size: 0.93rem; }

/* ── Tabs ── */
.tab-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 28px; border-bottom: 2px solid var(--border); }
.tab-btn {
  padding: 10px 18px; font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; background: none; cursor: pointer;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 99px; font-size: 0.75rem; font-weight: 700;
}
.badge-blue   { background: var(--primary-light); color: var(--primary); }
.badge-green  { background: #ECFDF5; color: #065F46; }
.badge-orange { background: #FFF7ED; color: #9A3412; }

/* ── Misc ── */
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-success { color: var(--success); }
.font-bold    { font-weight: 700; }
.font-semibold{ font-weight: 600; }
.rounded-full { border-radius: 99px; }
.w-full { width: 100%; }

/* ── Responsive helpers ── */
@media (max-width: 639px) { .hide-sm { display: none; } }
@media (min-width: 640px) { .show-sm { display: none; } }

/* ── Print ── */
@media print { .nav, .footer, .cta-banner, .nav-mobile { display: none; } }
