/* --- SIXPACK WEB PORTAL STYLESHEET (AESTHETIC DARK LUXURY) --- */

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 23, 42, 0.7);
  --bg-card-hover: rgba(30, 41, 59, 0.8);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(245, 158, 11, 0.3);
  
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glow Blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}
.glow-1 {
  width: 550px;
  height: 550px;
  background: #f59e0b;
  top: -100px;
  right: -100px;
}
.glow-2 {
  width: 600px;
  height: 600px;
  background: #3b82f6;
  top: 600px;
  left: -200px;
  opacity: 0.15;
}
.glow-3 {
  width: 500px;
  height: 500px;
  background: #f59e0b;
  bottom: 200px;
  right: 10%;
  opacity: 0.18;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(7, 9, 14, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-box {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}
.gold-dot {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LANGUAGE SELECTOR */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 160px;
  background: #0f172a;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 1000;
  backdrop-filter: blur(16px);
}
.lang-dropdown.show {
  display: flex;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.lang-opt:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
}
.lang-opt.active {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 700;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.btn-playstore:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
}
.play-icon {
  width: 26px;
  height: 26px;
  color: var(--gold-primary);
}
.btn-playstore-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.btn-playstore-text .subtext {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.btn-playstore-text .maintext {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.1;
}

/* HERO SECTION */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.hero-title {
  font-size: 3.6rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* SMARTPHONE MOCKUP */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.mockup-halo {
  position: absolute;
  width: 350px;
  height: 580px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: 355px;
  height: 720px;
  background: #1e293b;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 0 4px #334155, 0 0 0 7px #0f172a;
}
.phone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.island-camera {
  width: 8px;
  height: 8px;
  background: #111827;
  border-radius: 50%;
  border: 1px solid #1f2937;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #060911;
  border-radius: 36px;
  overflow: hidden;
  padding: 34px 14px 0;
  display: flex;
  flex-direction: column;
}

/* REAL APP HEADER (Exact match to app prtscr) */
.app-real-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-badge-6p {
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.92rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}
.header-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.online-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}
.user-name {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.8px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.heart-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ef4444;
}
.heart-icon { font-size: 0.75rem; }
.qr-btn {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.crown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.crown-icon { font-size: 0.88rem; }
.crown-points {
  font-size: 0.58rem;
  font-weight: 900;
  color: var(--gold-light);
}

/* SCREENS CONTAINER */
.phone-screens-wrapper {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none;
}
.phone-screens-wrapper::-webkit-scrollbar { display: none; }

.phone-screen-tab {
  display: none;
  animation: fadeInTab 0.25s ease forwards;
}
.phone-screen-tab.active {
  display: block;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* DYNAMIC HABIT TILES (Exact match to real app) */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.app-tile {
  background: #121824;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 10px 8px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  text-align: center;
}
.app-tile:hover {
  transform: translateY(-2px);
}
.tile-tag {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}
.tile-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}
.tile-icon.img-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}
.tile-title {
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin: 2px 0;
}
.tile-streak-pill {
  background: #000000;
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.tile-status-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.5rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* COMPLETED GOLD GLOW STATE (Matches user screenshot) */
.app-tile.completed {
  background: #f59e0b;
  border: none;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.45);
}
.app-tile.completed .tile-tag {
  color: rgba(0, 0, 0, 0.6);
}
.app-tile.completed .tile-title {
  color: #000000;
}
.app-tile.completed .tile-streak-pill {
  background: #000000;
  color: #ffffff;
}
.app-tile.completed .tile-status-tag {
  background: #000000;
  color: #ffffff;
}

/* SUB-SCREENS STYLING */
.subscreen-header {
  margin-bottom: 12px;
  text-align: left;
}
.subscreen-header h3 {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 800;
}
.mini-stat-card {
  background: #121824;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  margin-bottom: 10px;
}
.mini-stat-card.gold-glow {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}
.mini-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-heading);
}
.mini-stat-txt {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}
.mini-chart-mockup {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: #0c111a;
  border-radius: 16px;
  padding: 14px 10px 8px;
  height: 95px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.chart-bar {
  width: 11%;
  background: rgba(245, 158, 11, 0.3);
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s ease;
}
.chart-bar.active {
  background: var(--gold-gradient);
}
.chart-bar span {
  font-size: 0.55rem;
  color: var(--text-dim);
  margin-top: 4px;
  transform: translateY(16px);
}
.mini-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-box {
  background: #121824;
  border-radius: 12px;
  padding: 8px;
  text-align: center;
}
.mini-box strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}
.mini-box small {
  font-size: 0.6rem;
  color: var(--text-dim);
}

/* MINI LEADERBOARD */
.mini-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.leader-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121824;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.leader-row.rank-1 {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
}
.leader-row .medal { font-size: 1rem; width: 22px; }
.leader-row .leader-name { flex: 1; font-weight: 700; color: #ffffff; }
.leader-row .leader-name small { color: var(--gold-primary); font-weight: 800; }
.leader-row .leader-score { font-weight: 800; color: var(--gold-light); }

/* MINI BADGES GRID */
.mini-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-badge-item {
  background: #121824;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.badge-emoji { font-size: 1.6rem; margin-bottom: 4px; }
.mini-badge-item strong { font-size: 0.72rem; color: #ffffff; }
.mini-badge-item small { font-size: 0.58rem; color: var(--text-dim); }

/* MINI CIRCLES */
.mini-circle-card {
  background: #121824;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px;
}
.circle-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #ffffff;
  margin-bottom: 6px;
}
.circle-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
}
.circle-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.circle-code-box {
  background: #080c14;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  color: var(--text-dim);
}
.circle-code-box code {
  color: var(--gold-light);
  font-weight: 800;
}

/* MINI SETTINGS */
.mini-settings-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #121824;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.setting-val {
  font-weight: 700;
  color: #ffffff;
}
.setting-val.gold {
  color: var(--gold-primary);
}

.phone-tip {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 6px;
}

/* REAL 6-TAB BOTTOM NAVIGATION BAR (Exact match to app BottomNav.tsx) */
.phone-bottom-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  background: rgba(8, 12, 20, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  margin: auto -14px 0 -14px;
  padding: 8px 2px 14px;
  border-radius: 0 0 36px 36px;
}
.bottom-tab {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 4px 0;
  user-select: none;
}
.bottom-tab:hover {
  color: #94a3b8;
}
.bottom-tab.active {
  color: var(--gold-primary);
  transform: scale(1.08);
}
.bottom-tab.active svg {
  stroke: var(--gold-primary);
}
.bottom-label {
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* SECTION COMMONS */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section-darker {
  background: #040609;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FEATURE CARDS GRID */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
}
.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card-icon-box.gold { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); }
.card-icon-box.red { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); }
.card-icon-box.blue { background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); }
.card-icon-box.emerald { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); }
.card-icon-box.purple { background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.3); }
.card-icon-box.amber { background: rgba(217, 119, 6, 0.15); border: 1px solid rgba(217, 119, 6, 0.3); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* WIDGET SHOWCASE */
.widget-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.widget-feature-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.widget-feature-list li {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.widget-card-mockup {
  background: #0f172a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.widget-header-mockup {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.widget-tiles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.w-tile {
  background: #1e293b;
  border-radius: 14px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 1.3rem;
}
.w-tile small {
  font-size: 0.7rem;
  font-weight: 700;
}
.w-tile.done {
  background: var(--gold-gradient);
  color: #000000;
}
.w-tile.active {
  border: 1px solid var(--gold-primary);
  color: #ffffff;
}
.w-tile.pending {
  color: var(--text-dim);
}

/* FAQ */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.2s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA BANNER */
.cta-banner {
  padding: 60px 0 100px;
}
.cta-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}
.cta-box h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.cta-box p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

/* FOOTER */
.footer {
  background: #020305;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-title { font-size: 2.8rem; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .nav-links { display: none; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .widget-split { grid-template-columns: 1fr; }
}
