/* ═══════════════════════════════════════════════════════════════════════════════
   MAHADEV BOOK - SHARED STYLESHEET
   Comprehensive CSS for all pages: index, about, app, faq, id
   ═════════════════════════════════════════════════════════════════════════════════
*/

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dark: #a88a3a;
  --text-primary: #f0ede6;
  --text-secondary: #9d9ba3;
  --text-muted: #6b6974;
  --border: #2a2a35;
  --border-light: #3a3a48;
  --accent-green: #34d399;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --section-pad: clamp(60px, 8vw, 120px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NOISE OVERLAY
   ───────────────────────────────────────────────────────────────────────────── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  height: 40px;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 10px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Mobile CTA - hidden on desktop, shown in mobile nav */
.mobile-cta {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Nav Dropdown */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.nav-links.open .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING CTA
   ───────────────────────────────────────────────────────────────────────────── */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: gentlePulse 3s ease-in-out infinite;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .floating-cta a {
    padding: 12px 18px;
    font-size: 0.8rem;
  }

  .floating-cta svg {
    width: 16px;
    height: 16px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
  padding-top: calc(var(--section-pad) + 80px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

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

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  max-width: 424px;
  width: calc(100% + 4px);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-dark));
  opacity: 0.3;
  z-index: -1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

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

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────────────────────────────────────── */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.stat-item {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: var(--bg-card-hover);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CARDS & GRIDS
   ───────────────────────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

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

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECURITY STRIP
   ───────────────────────────────────────────────────────────────────────────── */

.security-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.security-item:hover {
  border-color: var(--border-light);
}

.security-item svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
}

.security-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BENEFITS & ROWS
   ───────────────────────────────────────────────────────────────────────────── */

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.benefit-row:hover {
  border-color: var(--border-light);
}

.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.benefit-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   EDUCATION & SETUP CARDS
   ───────────────────────────────────────────────────────────────────────────── */

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.edu-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.edu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

.edu-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
}

.edu-card:hover::before {
  opacity: 1;
}

.edu-card .edu-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.edu-card .edu-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

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

.edu-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Setup/Steps Cards */
.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.setup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
  position: relative;
}

.setup-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.08);
}

.setup-number,
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.setup-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.setup-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   APP SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.app-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.app-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.app-content ol {
  list-style: decimal;
  padding-left: 20px;
  color: var(--text-secondary);
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-content ol li {
  font-size: 0.92rem;
  padding-left: 4px;
}

.app-content ol li::marker {
  color: var(--gold);
  font-weight: 600;
}

.app-image-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.app-image-wrap img {
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.app-image {
  width: 100%;
  max-width: 400px;
  justify-self: center;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   COMPLIANCE BADGES
   ───────────────────────────────────────────────────────────────────────────── */

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.compliance-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.badges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.badge-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
}

.badge-card svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin: 0 auto 12px;
}

.badge-card span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg-card);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
  width: 100%;
  border: none;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  text-align: left;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question .chevron,
.faq-question .faq-chevron svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-chevron {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.faq-item.open .faq-question .chevron,
.faq-item.open .faq-question .faq-chevron svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAYMENT & LOGOS
   ───────────────────────────────────────────────────────────────────────────── */

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 32px 0;
}

.payment-logos img {
  height: 32px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(30%);
}

.payment-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.payment-logo {
  height: 50px;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-logo:hover {
  opacity: 1;
}

.payment-logo img {
  height: 100%;
  width: auto;
  max-width: 150px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   WEBINAR & CTA SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */

.webinar-cta {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
}

.webinar-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.webinar-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cta-section {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(52, 211, 153, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-section .section-title {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   KEYWORD TAGS
   ───────────────────────────────────────────────────────────────────────────── */

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.keyword-tags a, .keyword-tags span {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: border-color 0.25s, color 0.25s;
}

.keyword-tags a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: var(--section-pad) 0 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

.social-links a:hover svg {
  fill: var(--gold);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.25s;
}

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

.footer-bottom-bar {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   ABOUT PAGE SPECIFIC
   ───────────────────────────────────────────────────────────────────────────── */

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

.benefits-list.about-variant {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-section {
  margin-top: 60px;
}

.column-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}

.column-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column-list li {
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.column-list li:hover {
  border-color: var(--border-light);
}

.column-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.column-list li span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.goals-grid .feature-card {
  text-align: center;
}

.goals-grid .feature-icon {
  margin: 0 auto 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ID PAGE SPECIFIC
   ───────────────────────────────────────────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.1);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.app-promo {
  margin-top: 60px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.features-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Emoji feature icons (id.html benefits) */
.feature-icon:not(:has(svg)) {
  font-size: 1.5rem;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ PAGE SPECIFIC
   ───────────────────────────────────────────────────────────────────────────── */

.faq-section {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.info-section {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.info-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.indicator {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.indicator-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.indicator-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.indicator-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.service-guide {
  margin-top: 60px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-features {
    align-items: center;
  }

  .hero-image-wrap {
    margin-top: 40px;
  }

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

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

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

  .app-image-wrap {
    order: -1;
  }

  .app-image {
    order: -1;
  }

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

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

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

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

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

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

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

  .info-grid {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .header-cta-desktop {
    display: none;
  }
  .mobile-cta {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex !important;
  }

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

  .security-strip {
    grid-template-columns: 1fr;
  }

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

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

  .badges-row {
    grid-template-columns: 1fr;
  }

  .payment-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: var(--section-pad) 0 32px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .webinar-cta {
    padding: 32px 20px;
  }

  .cta-section {
    padding: 32px 20px;
  }

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

  .sports-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .features-grid.id-variant {
    grid-template-columns: 1fr;
  }

  .app-grid {
    gap: 30px;
  }

  .app-image {
    max-width: 300px;
  }

  .faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 18px;
    font-size: 14px;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .floating-cta a {
    padding: 12px 18px;
    font-size: 0.8rem;
  }

  .floating-cta svg {
    width: 16px;
    height: 16px;
  }
}
