/* =============================================
   ReddyBook — Main Stylesheet
   Version: 2.0
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #000000;
  --bg-secondary: #080808;
  --bg-card: #0e0e0e;
  --bg-card-hover: #161616;
  --color-gold: #ffaa00;
  --color-gold-light: #ffc94a;
  --color-gold-dim: rgba(255,170,0,0.12);
  --color-blue: #3366ff;
  --color-blue-light: #5580ff;
  --color-white: #ffffff;
  --color-text: #d8d8d8;
  --color-muted: #888888;
  --color-border: #1c1c1c;
  --color-border-gold: rgba(255,170,0,0.25);
  --color-divider: rgba(255, 170, 0, 0.4);
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --font-primary: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 28px rgba(255, 170, 0, 0.22);
  --transition: 0.25s ease;
  --max-width: 1100px;
  --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.4rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-white);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

strong {
  color: var(--color-white);
  font-weight: 700;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

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

.section {
  padding: 60px 0;
}

.section-sm {
  padding: 40px 0;
}

.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.text-white { color: var(--color-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #e89400);
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 170, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: #000;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2de873, #25d366);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.9rem;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 2px solid var(--color-gold);
  height: var(--header-height);
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-logo {
  flex-shrink: 0;
}

/* Main nav */
.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav li {
  margin: 0;
  position: relative;
}

.main-nav > ul > li > a,
.main-nav > ul > li > .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: var(--font-primary);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a,
.main-nav > ul > li > .nav-dropdown-toggle:hover {
  color: var(--color-gold);
  background: rgba(255,170,0,0.08);
}

/* Dropdown arrow */
.nav-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  display: inline-block;
  transition: transform var(--transition);
}

.nav-has-dropdown:hover .nav-arrow {
  transform: rotate(-135deg) translateY(-3px);
}

/* Dropdown submenu */
.nav-submenu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 200px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 6px;
  list-style: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.nav-has-dropdown:hover .nav-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.nav-submenu li {
  margin: 0;
}

.nav-submenu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-submenu a:hover {
  color: var(--color-gold);
  background: rgba(255,170,0,0.1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 60px 0 50px;
  background: #000;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,170,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,170,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,170,0,0.12);
  border: 1px solid rgba(255,170,0,0.3);
  color: var(--color-gold);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--color-gold);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--color-gold);
  border-top: none;
  border-bottom: none;
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ---------- Feature Table ---------- */
.feature-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.feature-table thead {
  background: rgba(255,170,0,0.1);
}

.feature-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-border);
}

.feature-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.feature-table tbody tr:last-child {
  border-bottom: none;
}

.feature-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.feature-table tbody td {
  padding: 13px 18px;
  font-size: 0.92rem;
}

.feature-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-white);
}

/* ---------- Section Headings ---------- */
.section-header {
  margin-bottom: 40px;
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--color-border);
  border-top-color: var(--color-gold);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,170,0,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Steps Section ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step-item {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-gold), #e89400);
  color: #000;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

/* ---------- FAQ / Accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--color-white);
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255,170,0,0.05);
}

.faq-icon {
  width: 22px;
  height: 22px;
  background: rgba(255,170,0,0.15);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: #000;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,170,0,0.1);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,170,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-banner .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Content Section (Article Style) ---------- */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
}

.content-block h2 {
  color: var(--color-gold);
  font-size: 1.4rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.content-block h3 {
  color: var(--color-gold-light);
  font-size: 1.1rem;
  margin: 20px 0 10px;
}

.content-block p {
  color: var(--color-text);
  line-height: 1.75;
}

.content-block ul {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.content-block ul li {
  line-height: 1.7;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: #000;
  border-bottom: 2px solid var(--color-gold);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-hero h1 span {
  color: var(--color-gold);
}

.page-hero p {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 22px;
}

.page-hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb-sep {
  color: var(--color-muted);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--color-gold);
}

/* ---------- Game Info Card ---------- */
.game-info-box {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 30px;
}

.game-info-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.game-info-details {
  padding: 24px;
}

.game-info-details h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--color-muted);
  font-weight: 500;
}

.info-value {
  color: var(--color-white);
  font-weight: 600;
}

.info-value.gold {
  color: var(--color-gold);
}

/* ---------- Numbered List Feature ---------- */
.numbered-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.numbered-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.numbered-item:hover {
  border-color: var(--color-gold);
  border-left-color: var(--color-gold);
  background: var(--bg-card-hover);
}

/* ---------- Numbered List (homepage deep-dive) ---------- */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.numbered-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.numbered-badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-gold);
  color: #000;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255,170,0,0.3);
}

.numbered-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-white);
}

.numbered-content p,
.numbered-content ul {
  font-size: 0.93rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.numbered-content ul {
  padding-left: 1.4rem;
}

.numbered-content ul li {
  margin-bottom: 5px;
}

.numbered-item-num {
  width: 38px;
  height: 38px;
  background: rgba(255,170,0,0.15);
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.numbered-item-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.numbered-item-content p {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0;
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.two-col-equal {
  grid-template-columns: 1fr 1fr;
}

/* ---------- Sidebar Widget ---------- */
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 22px;
}

.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-links {
  list-style: none;
  padding: 0;
}

.sidebar-links li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sidebar-links li:last-child {
  border-bottom: none;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--color-text);
}

.sidebar-links a::before {
  content: '›';
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 700;
}

.sidebar-links a:hover {
  color: var(--color-gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  border-top: 2px solid var(--color-gold);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer-bottom-links li {
  margin: 0;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-top: 20px;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: rgba(255,170,0,0.07);
  border: 1px solid rgba(255,170,0,0.25);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}

.highlight-box p {
  color: var(--color-text);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Comparison Table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.compare-table thead {
  background: rgba(255,170,0,0.1);
}

.compare-table th {
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gold);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.compare-table td {
  padding: 12px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--color-success);
  font-weight: 700;
}

.compare-table .cross {
  color: #ef4444;
}

/* ---------- Tag / Badge ---------- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-gold {
  background: rgba(255,170,0,0.15);
  color: var(--color-gold);
}

.tag-blue {
  background: rgba(51,102,255,0.15);
  color: var(--color-blue-light);
}

.tag-green {
  background: rgba(34,197,94,0.15);
  color: var(--color-success);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
    order: -1;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary);
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav > ul > li > a,
  .main-nav > ul > li > .nav-dropdown-toggle {
    font-size: 1rem;
    padding: 14px 10px;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-submenu {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    padding: 0;
    min-width: unset;
    box-shadow: none;
    pointer-events: auto;
  }

  .nav-has-dropdown.open .nav-submenu {
    display: block;
  }

  .nav-has-dropdown.open .nav-arrow {
    transform: rotate(-135deg) translateY(-3px);
  }

  .nav-submenu a {
    padding: 10px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .hero {
    padding: 40px 0 30px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .section {
    padding: 40px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 36px 20px;
  }

  .content-block {
    padding: 24px 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Floating WhatsApp CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.float-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.5);
  color: #fff;
}

.float-cta svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  flex-shrink: 0;
}

/* pulse ring animation */
.float-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: floatPulse 2s ease-out infinite;
}

@keyframes floatPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

@media (max-width: 480px) {
  .float-cta {
    bottom: 18px;
    right: 18px;
    padding: 12px 16px 12px 12px;
    font-size: 0.78rem;
  }
  .float-cta svg {
    width: 20px;
    height: 20px;
  }
}
