*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Inter', sans-serif;
}

body{
  background:#000000;
  color:white;
}

html {
  scroll-behavior: smooth;
}


.nav-links a{
  text-decoration:none;
  opacity:.85;
}

.nav-links a:hover{
  opacity:1;
}


.btn-primary{
  text-decoration: none !important;
}


/* ---------------- NAVBAR ---------------- */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  background:rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index:1000;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:20px;
  font-weight:700;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:30px;
}

.nav-links li{
  cursor:pointer;
  font-size:14px;
  opacity:0.85;
}

.nav-links li:hover{
  opacity:1;
}

/* ---------------- HERO ---------------- */

.hero{
  height:100vh;
  background:url("hero-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding-top:100px;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(2,6,23,0.75),
    rgba(2,6,23,0.9)
  );
}

.hero-content{
  position:relative;
  max-width:900px;
  text-align:center;
}

.pill{
  background:rgba(59,130,246,0.15);
  color:#60a5fa;
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
}

.hero h1{
  font-size:72px;
  font-weight:800;
  margin-top:20px;
  line-height:1.1;
}

.hero h1 span{
  background: linear-gradient(90deg,#58a6ff,#bc8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p{
  margin-top:20px;
  font-size:18px;
  color:#000000;
  line-height:1.6;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
  justify-content:center;
}

.btn-primary{
  background:#2563eb;
  border:none;
  padding:14px 28px;
  border-radius:8px;
  color:white;
  font-size:15px;
  cursor:pointer;
}

.btn-primary:hover{
  background:#1d4ed8;
}

.btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,0.3);
  padding:14px 28px;
  border-radius:8px;
  color:white;
  font-size:15px;
  cursor:pointer;
}

.btn-outline:hover{
  background:rgba(255,255,255,0.05);
}


.hero h1{
  font-size:44px;
  font-weight:800;
  margin-top:20px;
  line-height:1.2;
}


.hero-bio{
  margin-top:22px;
  font-size:17px;
  color:#b8c2ff;
  line-height:1.6;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}







.process-flow {
  background: #ffffff;
  padding: 100px 5%;
  font-family: 'Inter', sans-serif;
  color: #111827;
}

/* --- New Header Styles --- */
.flow-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.flow-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.flow-header h2 span {
  color: #3b82f6;
}

.flow-header p {
  color: #64748b;
  font-size: 18px;
}

/* --- Process Wrapper & Spine --- */
.flow-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.flow-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #f1f5f9; /* Subtle spine color */
  transform: translateX(-50%);
}

.flow-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  width: 100%;
  position: relative;
}

.flow-item:last-child {
  margin-bottom: 0;
}

/* Alternating Logic */
.flow-item:nth-child(even) {
  flex-direction: row-reverse;
}

.flow-content {
  width: 40%;
}

.flow-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  width: 54px;
  height: 54px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #3b82f6;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.flow-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3b82f6;
  margin-bottom: 8px;
}

.flow-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.flow-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .flow-wrapper::before { 
    left: 27px; 
    transform: none; 
  }
  .flow-item, .flow-item:nth-child(even) { 
    flex-direction: column; 
    align-items: flex-start; 
    padding-left: 80px;
    margin-bottom: 60px;
  }
  .flow-content { 
    width: 100%; 
    text-align: left;
  }
  .flow-number { 
    left: 0; 
    transform: none; 
  }
}


:root {
  --bg: #0a0c10;
  --card-bg: #161b22;
  --primary: #58a6ff;

  --text-main: #f0f6fc;
  --text-muted: #9da7b3;

  --border: #2a2f36;
}

/* ================= SECTION ================= */

.premium-analysis-section {
  background: radial-gradient(circle at top, #0f1420, #0a0c10);
  color: var(--text-main);
  padding: 90px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

.main-header {
  text-align: center;
  margin-bottom: 70px;
}

.badge {
  display: inline-block;
  background: rgba(88,166,255,0.12);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(90deg,#58a6ff,#bc8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-header h2{
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.main-header p{
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* ================= METRICS ================= */

.metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 22px;
  margin-bottom: 80px;
}

.metric-box {
  background: linear-gradient(180deg,#161b22,#11151c);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 16px;
  transition: all 0.25s ease;
}

.metric-box:hover{
  transform: translateY(-6px);
  border-color: var(--primary);
}

.val {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
}

.metric-box label {
  color: var(--text-muted);
  font-size: 14px;
}

/* ================= CARDS GRID ================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* ================= DATA CARD ================= */

.data-card {
  background: linear-gradient(180deg,#161b22,#0f131a);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 420px;
  transition: all 0.25s ease;
}

.data-card:hover{
  transform: translateY(-6px);
  border-color: var(--primary);
}

/* HEADER */

.card-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

/* CONTENT */

.card-content {
  padding: 40px 26px;
}

.card-content.blurred {
  filter: blur(6px);
  opacity: 0.35;
  text-align: center;
}

.matchup {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ================= OVERLAY ================= */

.gate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,12,16,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.lock-circle {
  width: 64px;
  height: 64px;
  background: #0a0c10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.gate-overlay p{
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 20px;
}

/* ================= BUTTON ================= */

.primary-btn {
  background: linear-gradient(90deg,#58a6ff,#4a90e2);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  width: 80%;
  transition: 0.25s;
}

.primary-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}


/* ===== LIMITED OFFER ===== */

.limited-offer{
  max-width:900px;
  margin:120px auto;
  padding:70px 50px;
  background:linear-gradient(180deg,#f8faff,#f1f5ff);
  border-radius:20px;
  text-align:center;
  border:1px solid #dbeafe;
}

.offer-badge{
  display:inline-block;
  background:#e0e7ff;
  color:#2563eb;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}

.limited-offer h2{
  font-size:36px;
  margin-bottom:14px;
}

.limited-offer p{
  max-width:600px;
  margin:0 auto 35px;
  font-size:16px;
  color:#475569;
  line-height:1.6;
}

.offer-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:35px;
}

.btn-outline-dark{
  background:white;
  border:1px solid #cbd5f5;
  padding:14px 26px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}

.offer-points{
  display:flex;
  justify-content:center;
  gap:25px;
  font-size:14px;
  color:#475569;
}

.limited-offer h2{
  color:#000000 !important;
}


:root {
    --bg-main: #0d1117;
    --card-bg: #161b22;
    --accent: #58a6ff;
    --accent-glow: rgba(88, 166, 255, 0.4);
    --text-dim: #8b949e;
    --border-color: #30363d;
}

.pricing-section {
    background-color: var(--bg-main);
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title { font-size: 2.5rem; font-weight: 800; }
.accent-text { color: var(--accent); }
.section-subtitle { color: var(--text-dim); margin-top: 10px; }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #4ade80; /* Success green */
}

/* Plan Cards Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.plan-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.05);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-info h3 { font-size: 1.5rem; margin-bottom: 5px; }
.desc { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 25px; }

.price-block { margin-bottom: 30px; }
.main-price { display: block; font-size: 2.2rem; font-weight: 800; }
.main-price small { font-size: 1rem; color: var(--text-dim); }
.sub-price { color: var(--accent); font-weight: 600; }

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✓";
    color: #4ade80;
    margin-right: 12px;
    font-weight: bold;
}

/* Buttons */
.actions { display: flex; flex-direction: column; gap: 12px; }

.btn {
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn.primary { background: var(--accent); color: #000; }
.btn.secondary { background: #30363d; color: #fff; }
.btn.outline { background: transparent; border: 1px solid var(--border-color); color: #fff; }

.btn:hover { filter: brightness(1.2); }

.note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .plan-card.featured { transform: scale(1); }
}

:root {
    --bg-dark: #0a0c10;
    --item-bg: #161b22;
    --border: #30363d;
    --accent-blue: #58a6ff;
    --text-main: #f0f6fc;
    --text-dim: #8b949e;
}

.faq-section {
    background-color: var(--bg-dark);
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.pre-title {
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, #58a6ff, #bc8cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Accordion Logic */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--item-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.1);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Removes default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

/* Custom Chevron */
.chevron::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] .chevron::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

/* Smooth internal animation hint */
details > summary {
  transition: color 0.3s;
}

details[open] > summary {
  color: var(--accent-blue);
}


:root {
    --footer-bg: #0d1117;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --accent-blue: #58a6ff;
    --border-subtle: #30363d;
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--text-primary);
    padding: 80px 20px 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

/* Brand Area */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo .highlight {
    color: var(--accent-blue);
}

.brand-desc, .brand-stats {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-blue);
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column li {
    margin-bottom: 12px;
}

.link-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.link-column a:hover {
    color: var(--accent-blue);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.built-on {
    font-weight: 500;
}

/* Social icon buttons */

.social-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255, 255, 255, 0);
  border:1px solid rgb(255, 255, 255);
  border-radius:10px;
  transition:.3s ease;
}

.social-icon img{
  width:18px;
  height:18px;
  filter: brightness(0) invert(1);
}

/* Hover effect */
.social-icon:hover{
  background:rgba(88, 166, 255, 0);
  border-color:#58a6ff;
  transform:translateY(-3px);
}

.social-icon:hover img{
  filter:none;
}


/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    .bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.btn,
.primary-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.25s ease;
}

.btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn:active,
.primary-btn:active {
  transform: scale(0.97);
}

.btn.disabled,
.primary-btn.disabled {
  background: linear-gradient(135deg, #3f3f46, #27272a);
  color: #a1a1aa;
  border: 1px solid #3f3f46;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

.btn.disabled::after,
.primary-btn.disabled::after {
  content: " ";
}


.actions button,
.btn,
.primary-btn {
  width: 100%;
  height: 48px;
  padding: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-buttons{
  display:flex;
  gap:18px;
  justify-content:center;
  margin-top:30px;
  flex-wrap:wrap;
}

.primary-btn{
  background:#2563eb;
  color:#fff;
  padding:14px 34px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.primary-btn:hover{
  background:#1d4ed8;
}

.secondary-btn{
  background:transparent;
  color:#fff;
  padding:14px 34px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  border:1px solid #2563eb;
  transition:.3s;
}

.secondary-btn:hover{
  background:#2563eb;
}


.hero-buttons{
  display:flex;
  gap:18px;
  justify-content:center;
  margin-top:35px;
}

/* Primary */
.btn-primary{
  background:linear-gradient(90deg,#2563eb,#7c3aed);
  color:#fff;
  padding:14px 38px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  box-shadow:0 0 25px rgba(124,58,237,0.45);
  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 0 40px rgba(124,58,237,0.7);
}

/* Secondary */
.btn-secondary{
  background:transparent;
  color:#fff;
  padding:14px 38px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  border:1px solid #3b82f6;
  transition:.3s;
}

.btn-secondary:hover{
  background:#2563eb;
}



/* =====================================================
   GLOBAL THEME CORE (OVERRIDES ALL OLD ROOTS)
===================================================== */

:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --card: #ffffff;
  --border: #e5e7eb;

  --text-main: #0f172a;
  --text-muted: #64748b;

  --primary: #2563eb;
}

/* DARK MODE */
body.dark {
  --bg: #020617;
  --surface: #0f172a;
  --card: #161b22;
  --border: #30363d;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;

  --primary: #58a6ff;
}

/* =====================================================
   BASE
===================================================== */

body {
  background: var(--bg) !important;
  color: var(--text-main) !important;
  transition: background .3s,color .3s;
}

/* =====================================================
   NAVBAR FIX
===================================================== */

.navbar {
  background: rgba(24, 31, 62, 0.92) !important;
  backdrop-filter: blur(12px);
}

body:not(.dark) .navbar{
  background: rgba(255,255,255,.95) !important;
}

/* =====================================================
   HERO FIX
===================================================== */

.hero {
  background: radial-gradient(circle at top,#1e293b,#020617) !important;
}

body:not(.dark) .hero{
  background: radial-gradient(circle at top,#f8fafc,#e5e7eb) !important;
}

.hero h1,
.hero p{
  color: var(--text-main) !important;
}

/* =====================================================
   SECTIONS
===================================================== */

.process-flow,
.pricing-section,
.faq-section,
.main-footer,
.premium-analysis-section{
  background: var(--bg) !important;
  color: var(--text-main);
}

/* =====================================================
   CARDS
===================================================== */

.metric-box,
.data-card,
.plan-card,
.faq-item{
  background: var(--card) !important;
  border-color: var(--border) !important;
  color: var(--text-main);
}

/* =====================================================
   MUTED TEXT
===================================================== */

p,
.desc,
.note,
.section-subtitle,
.metric-box label,
.faq-answer,
.brand-desc,
.brand-stats{
  color: var(--text-muted) !important;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn,
.primary-btn{
  width:100%;
  height:48px;
  border-radius:10px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  cursor:pointer;
  transition:.25s;
}

.btn.primary,
.primary-btn{
  background: var(--primary);
  color:#fff;
}

.btn.outline{
  background:transparent;
  border:1px solid var(--border);
  color: var(--text-main);
}

.btn:hover,
.primary-btn:hover{
  transform:translateY(-2px);
}

/* DISABLED */

.btn.disabled,
.primary-btn.disabled{
  background:#2a2f36;
  color:#9ca3af;
  pointer-events:none;
  cursor:not-allowed;
}

/* =====================================================
   ACTION STACK FIX
===================================================== */

.actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.actions button{
  margin:0;
}

/* =====================================================
   FOOTER LINKS
===================================================== */

.link-column a{
  color: var(--text-muted);
}

.link-column a:hover{
  color: var(--primary);
}

/* =====================================================
   TRANSITION POLISH
===================================================== */

*{
  transition: background .3s,border-color .3s,color .3s;
}


/* =====================================================
   RESET & BASE
===================================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{scroll-behavior:smooth;}

body{
  background:var(--bg);
  color:var(--text-main);
  transition:background .3s,color .3s;
}

/* =====================================================
   THEME VARIABLES
===================================================== */

:root{
  --bg:#ffffff;
  --surface:#f8fafc;
  --card:#ffffff;
  --border:#e5e7eb;

  --text-main:#0f172a;
  --text-muted:#64748b;

  --primary:#2563eb;
  --gradient:linear-gradient(90deg,#58a6ff,#bc8cff);
}

/* DARK MODE */

body.dark{
  --bg:#020617;
  --surface:#0f172a;
  --card:#161b22;
  --border:#30363d;

  --text-main:#f8fafc;
  --text-muted:#94a3b8;

  --primary:#58a6ff;
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  background:rgba(20,25,40,.9);
  backdrop-filter:blur(12px);
  z-index:1000;
}

body:not(.dark) .navbar{
  background:rgba(255,255,255,.95);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{font-weight:800;font-size:20px;}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:var(--text-main);
  opacity:.85;
}

.nav-links a:hover{opacity:1;}

/* =====================================================
   HERO
===================================================== */

.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:100px;
  background:radial-gradient(circle at top,#1e293b,#020617);
}

body:not(.dark) .hero{
  background:radial-gradient(circle at top,#f8fafc,#e5e7eb);
}

.hero-content{
  max-width:900px;
  text-align:center;
}

.hero h1{
  font-size:48px;
  font-weight:800;
  margin-top:20px;
}

.hero h1 span{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-bio{
  margin-top:22px;
  font-size:17px;
  color:var(--text-muted);
  max-width:620px;
  margin-inline:auto;
}

/* =====================================================
   BUTTONS (GLOBAL)
===================================================== */

.btn,
.primary-btn{
  height:48px;
  border-radius:10px;
  font-weight:600;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.btn.primary,
.primary-btn{
  background:var(--primary);
  color:white;
}

.btn.outline{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text-main);
}

.btn:hover,
.primary-btn:hover{
  transform:translateY(-2px);
}

/* =====================================================
   PROCESS FLOW
===================================================== */

.process-flow{
  background:var(--bg);
  padding:100px 5%;
}

.flow-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 80px;
}

.flow-header h2{font-size:42px;font-weight:800;}
.flow-header h2 span{color:var(--primary);}
.flow-header p{color:var(--text-muted);}

.flow-wrapper{
  max-width:1000px;
  margin:auto;
  position:relative;
}

.flow-wrapper::before{
  content:'';
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:1px;
  background:var(--border);
}

.flow-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:80px;
}

.flow-item:nth-child(even){flex-direction:row-reverse;}

.flow-content{width:40%;}

.flow-number{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--card);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
}

/* =====================================================
   PREMIUM ANALYSIS
===================================================== */

.premium-analysis-section{
  background:var(--bg);
  padding:90px 20px;
}

.metrics-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:22px;
  margin-bottom:80px;
}

.metric-box{
  background:var(--card);
  border:1px solid var(--border);
  padding:26px;
  border-radius:16px;
}

.metric-box:hover{
  border-color:var(--primary);
  transform:translateY(-4px);
}

/* =====================================================
   DATA CARDS
===================================================== */

.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.data-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  height:420px;
}

/* =====================================================
   PRICING
===================================================== */

.pricing-section{
  background:var(--bg);
  padding:100px 20px;
}

.plan-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:40px 30px;
}

.plan-card.featured{
  border:2px solid var(--primary);
}

/* =====================================================
   FAQ
===================================================== */

.faq-section{
  background:var(--bg);
  padding:80px 20px;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
}

/* =====================================================
   FOOTER
===================================================== */

.main-footer{
  background:var(--bg);
  padding:80px 20px 20px;
  border-top:1px solid var(--border);
}

.link-column a{
  color:var(--text-muted);
  text-decoration:none;
}

.link-column a:hover{
  color:var(--primary);
}

/* =====================================================
   GLOBAL TEXT
===================================================== */

p,
.desc,
.note,
.metric-box label,
.faq-answer,
.brand-desc{
  color:var(--text-muted);
}

/* ================================
   LIGHT GRAY DISABLED BUTTONS
================================ */

button:has(span:contains("Subscribe with QTV")),
.subscribe-qtv,
.btn-subscribe,
.primary-btn.subscribe,
.primary-btn.disabled {
  background: #e5e7eb !important;   /* light gray */
  color: #6b7280 !important;        /* dark gray text */
  border: 1px solid #d1d5db !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

/* ================================
   FIX HERO IN LIGHT MODE
================================ */

body:not(.dark) .hero{
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2ff 50%,
    #e5e7eb 100%
  ) !important;
}

body:not(.dark) .hero .overlay{
  display:none !important;
}



/* =====================================
   FINAL MOBILE RESPONSIVE OVERRIDE
===================================== */

@media (max-width: 768px){

/* GLOBAL */
body{
  overflow-x:hidden;
}

section{
  padding-left:20px !important;
  padding-right:20px !important;
}

/* NAVBAR */
.navbar{
  padding:14px 20px;
}

.nav-container{
  flex-direction:column;
  gap:14px;
}

.nav-links{
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

.logo{
  font-size:18px;
}

/* HERO */
.hero{
  height:auto;
  min-height:100vh;
  padding-top:120px;
  padding-bottom:80px;
}

.hero h1{
  font-size:32px;
  line-height:1.25;
}

.hero h1 span{
  font-size:30px;
}

.hero-bio{
  font-size:15px;
}

.hero-buttons{
  flex-direction:column;
  gap:14px;
}

.hero-buttons a,
.hero-buttons button{
  width:100%;
}

/* PROCESS FLOW */
.flow-wrapper::before{
  left:26px;
}

.flow-item,
.flow-item:nth-child(even){
  flex-direction:column;
  align-items:flex-start;
  padding-left:70px;
  margin-bottom:60px;
}

.flow-content{
  width:100%;
}

.flow-number{
  left:0;
  transform:none;
}

/* METRICS */
.metrics-container{
  grid-template-columns:1fr;
}

/* CARDS */
.cards-grid{
  grid-template-columns:1fr;
}

.data-card{
  height:auto;
}

/* PRICING */
.plans-grid{
  grid-template-columns:1fr;
}

.plan-card{
  padding:28px 22px;
}

.plan-card.featured{
  transform:none;
}

/* FAQ */
.faq-question{
  padding:18px;
  font-size:14px;
}

.faq-answer{
  font-size:14px;
}

/* FOOTER */
.footer-container{
  grid-template-columns:1fr;
  gap:40px;
}

.footer-links-grid{
  grid-template-columns:1fr;
}

.bottom-container{
  flex-direction:column;
  gap:10px;
  text-align:center;
}

}


/* =============================== */
/* 📱 FORCE HERO BUTTON MOBILE */
/* =============================== */

@media (max-width: 600px){

.hero .hero-buttons{
display:flex !important;
flex-direction:column !important;
gap:16px !important;
width:100% !important;
}

.hero .hero-buttons a{
display:block !important;
width:100% !important;
max-width:100% !important;
padding:16px 0 !important;
font-size:16px !important;
text-align:center !important;
border-radius:14px !important;
}

}

