/* ═══════════════════════════════════════════════════════
   my99exchh.com — Design System
   Premium Dark Theme · Mobile-First · SEO Optimized
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors - Obsidian Art Direction */
  --bg-primary: #020617;
  --bg-secondary: #050b1d;
  --bg-tertiary: #0a1329;
  --bg-card: rgba(10, 19, 41, 0.6);
  --bg-glass: rgba(10, 19, 41, 0.4);

  --accent-amber: #facc15;
  --accent-amber-hover: #eab308;
  --accent-amber-glow: rgba(250, 204, 21, 0.15);
  
  --accent-emerald: #10b981;
  --accent-emerald-dim: rgba(16, 185, 129, 0.1);
  
  --accent-indigo: #6366f1;
  --accent-indigo-dim: rgba(99, 102, 241, 0.08);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --border-color: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(250, 204, 21, 0.25);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Spacing & Radii */
  --container-max: 1200px;
  --section-gap: 120px; /* Agency airiness */
  --card-radius: 24px;
  --btn-radius: 100px; /* Pill buttons - more premium */

  /* Transitions */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 200ms var(--ease-in-out);
  --transition-med: 400ms var(--ease-in-out);
  --transition-slow: 600ms var(--ease-in-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 0% 0%, var(--accent-indigo-dim) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, var(--accent-amber-glow) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* ═══════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-med);
  padding: 12px 0;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.3), transparent);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(2, 6, 23, 0.9);
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); filter: shadow(0 0 10px var(--accent-emerald)); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-menu-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-menu-footer {
  display: none;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-amber);
  background: var(--accent-amber-glow);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-amber);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-med);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px -8px rgba(250, 204, 21, 0.4);
}

.btn-header-cta:hover {
  background: var(--accent-white);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(250, 204, 21, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-menu-btn.active {
  z-index: 2000;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--accent-gold);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--accent-amber);
}

.mesh-blob {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  animation: blob-float 20s infinite alternate var(--ease-in-out);
}

.blob-1 {
  top: -10%;
  left: -10%;
  background: var(--accent-indigo);
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  background: var(--accent-amber);
  animation-delay: -5s;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.1); }
}

.stat-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-emerald);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-gold-glow), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-blue-dim), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green-dim);
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  margin-bottom: 24px;
}

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  color: var(--accent-amber);
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, var(--accent-amber), #FB923C);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 680px;
}

.hero-subtitle strong {
  color: var(--text-white);
}

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

.hero-stats {
  display: flex;
  align-items: flex-end;
  gap: 64px;
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* Featured Stat */
.hero-stat.stat-highlight {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-right: 16px;
}

.hero-stat.stat-highlight .stat-number {
  font-size: 48px;
  color: var(--accent-amber);
}

.hero-stat.stat-highlight .stat-label {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-amber);
  color: #000;
  box-shadow: 0 20px 40px -10px rgba(250, 204, 21, 0.3);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(250, 204, 21, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
}

.btn-whatsapp {
  background: var(--accent-emerald);
  color: #fff;
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
  background: #059669;
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 17px;
  border-radius: var(--btn-radius);
  letter-spacing: -0.2px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn svg, .btn-header-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════════════════ */
.section {
  padding: var(--section-gap) 0;
}

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

.section-header {
  margin-bottom: 48px;
}

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header .section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 40px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-med);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--accent-amber);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.card-icon.gold { background: var(--accent-amber-glow); color: var(--accent-amber); }
.card-icon.green { background: var(--accent-emerald-dim); color: var(--accent-emerald); }
.card-icon.blue { background: var(--accent-blue-dim); color: var(--accent-blue); }
.card-icon.orange { background: rgba(249, 115, 22, 0.1); color: var(--accent-orange); }

.card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ═══════════════════════════════════════════════════════
   STEPS / HOW-TO
   ═══════════════════════════════════════════════════════ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  transition: all var(--transition-med);
}

.step-item:hover {
  border-color: var(--border-accent);
  background: rgba(22, 32, 50, 0.9);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-gold-glow);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

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

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.active {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.faq-question .faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

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

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 28px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.testimonial-author strong {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════════════ */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
  margin: 24px 0;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.styled-table thead th {
  background: var(--bg-tertiary);
  color: var(--text-white);
  font-weight: 600;
  font-size: 13px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.styled-table tbody td {
  padding: 14px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

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

.styled-table tbody tr:hover {
  background: rgba(245, 158, 11, 0.03);
}

.styled-table tbody td strong {
  color: var(--text-white);
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, var(--accent-amber-glow), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   CONTENT BLOCKS (for content-heavy pages)
   ═══════════════════════════════════════════════════════ */
.content-section {
  padding: 100px 0 60px;
}

.content-body {
  max-width: 800px;
}

.content-body h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.content-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-white);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.content-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.content-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.content-body p strong {
  color: var(--text-white);
  font-weight: 600;
}

.content-body ul, .content-body ol {
  padding-left: 0;
  margin-bottom: 20px;
}

.content-body ul li, .content-body ol li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.7;
}

.content-body ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.content-body ol {
  counter-reset: ol-counter;
}

.content-body ol li {
  counter-increment: ol-counter;
}

.content-body ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 14px;
}

.content-body ul li strong, .content-body ol li strong {
  color: var(--text-white);
}

.content-body a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast);
}

.content-body a:hover {
  text-decoration-color: var(--accent-gold);
}

.content-body .highlight-box {
  background: var(--accent-gold-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
}

.content-body .highlight-box p {
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-disclaimer {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
}

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

/* ═══════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 90px 0 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

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

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

.breadcrumb-separator {
  color: var(--text-muted);
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════
   PAGE HEADER (for inner pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 120px 0 60px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-gold-glow), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
}

.page-hero > p, .page-hero .hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID (for Why Choose section)
   ═══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ═══════════════════════════════════════════════════════
   PAYMENT INFO BAR
   ═══════════════════════════════════════════════════════ */
.info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  flex-wrap: wrap;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.info-bar-item strong {
  color: var(--text-white);
}

.info-bar-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

/* ═══════════════════════════════════════════════════════
   BLOG INDEX
   ═══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 32px;
  position: relative;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--accent-gold);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-white);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: auto;
}

.testimonial-author strong {
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE SPECIFIC
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 32px;
}

.contact-card.primary {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.03);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-detail strong {
  color: var(--text-white);
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-in-out), transform 1s var(--ease-in-out);
  will-change: transform, opacity;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:not(.visible), .step-item:not(.visible), .hero-stat:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

.card.visible, .step-item.visible, .hero-stat.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-in-out), transform 0.8s var(--ease-in-out);
}

/* ═══════════════════════════════════════════════════════
   BLOG & CARDS
   ═══════════════════════════════════════════════════════ */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 16px;
  transition: gap var(--transition-fast);
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.99), rgba(17, 26, 46, 0.99));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 100px 24px 40px;
    overflow-y: auto;
    z-index: 1500;
    animation: menuFadeIn 0.4s var(--ease-out);
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav.mobile-open a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    width: 100%;
  }

  .main-nav.mobile-open a:hover,
  .main-nav.mobile-open a.active {
    background: var(--accent-gold-glow);
    border-color: var(--border-accent);
    color: var(--accent-gold);
    transform: translateX(4px);
  }

  .main-nav.mobile-open .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .mobile-menu-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .mobile-menu-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .mobile-legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-legal-links a {
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    color: var(--text-secondary) !important;
  }

  .mobile-social-prompt {
    margin-top: 8px;
    font-size: 12px;
    color: var(--accent-red);
    font-weight: 600;
    opacity: 0.8;
  }

  .header-cta .btn-header-cta { display: none; }
  .header-cta .btn-header-cta.mobile-show { display: inline-flex; }
  
  .features-grid, .grid-3, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
  }

  .hero { padding: 110px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  
  .features-grid, .grid-2, .grid-3, .grid-4, .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner { padding: 32px 24px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }

  .page-hero { padding: 100px 0 40px; }

  .info-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .info-bar-divider { width: 60px; height: 1px; }

  .hero-stat .stat-number { font-size: 24px; }

  .step-item { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .card { padding: 20px; }
}
