/* bamya.co - Main Stylesheet */

/* =====================================================
   CSS VARIABLES
   ===================================================== */

:root {
  /* Primary Colors - ADHD Assets Style: Black/White/Gold */
  --color-primary: #141414;
  --color-primary-dark: #333333;

  /* Brand Colors */
  --color-gold: #fdb614;
  --color-gold-dark: #c48c0f;

  /* Neutrals */
  --color-black: #141414;
  --color-white: #FFFFFF;
  --color-grey-100: #f7f7f7;
  --color-grey-200: #e0e0e0;
  --color-grey-400: #A3A3A3;
  --color-grey-500: #666666;
  --color-grey-600: #525252;
  --color-grey-800: #262626;

  /* Semantic Colors */
  --color-success: #10b981;

  /* Gradients */
  --gradient-primary: #141414;
  --gradient-gold: #fdb614;

  /* Typography */
  --font-display: 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-grey-800);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

/* Focus Visible - WCAG 2.4.7 / 2.4.13 */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* High contrast focus on dark backgrounds */
.hero :focus-visible,
.section-gradient :focus-visible,
footer :focus-visible {
  outline-color: var(--color-gold);
}


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

a:hover {
  color: var(--color-primary-dark);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-black);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}


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


/* =====================================================
   LAYOUT
   ===================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 800px;
}


.section {
  padding: var(--space-4xl) 0;
}



/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-grey-200);
  transition: background var(--transition-base);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-black);
  text-decoration: none;
  border: 1px solid var(--color-black);
  padding: 0.3em 0.5em;
  border-radius: 4px;
}

.nav-logo .logo-bamya {
  color: var(--color-black);
  font-weight: 900;
}

.nav-logo .logo-co {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.1em 0.3em;
  border-radius: 3px;
  margin-left: 0.1em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-grey-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-grey-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 120px var(--space-lg) var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}


.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}


.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}


/* =====================================================
   CARDS
   ===================================================== */

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--color-white);
}

.card-icon-gold {
  background: var(--gradient-gold);
  color: var(--color-black);
}


.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--color-grey-500);
}

/* Feature Card */
.feature-card {
  text-align: center;
  padding: var(--space-2xl);
}

.feature-card .card-icon {
  margin-left: auto;
  margin-right: auto;
}



/* =====================================================
   SECTIONS
   ===================================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--color-grey-500);
  font-size: 1.125rem;
}

.section-dark {
  background: var(--color-grey-100);
}

.section-gradient {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.section-gradient h2,
.section-gradient h3 {
  color: var(--color-white);
}

.section-gradient p {
  color: rgba(255, 255, 255, 0.9);
}


/* =====================================================
   TIMELINE / PROCESS
   ===================================================== */

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--color-black);
  color: var(--color-grey-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}


.footer h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}


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

.footer-bottom p {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


.mb-lg { margin-bottom: var(--space-lg); }


/* Text Colors */
.text-white {
  color: var(--color-white);
}

.text-white-muted {
  color: rgba(255, 255, 255, 0.8);
}


/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .card-grid.cols-3,
  .card-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.two-ways-section {
  margin-top: var(--space-4xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--color-grey-200);
}


/* Timeline */
.timeline-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-grey-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.timeline-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gold, #fdb614);
}

.timeline-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-primary);
  color: var(--color-gold, #fdb614);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 2px solid var(--color-gold, #fdb614);
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-black, #141414);
}

.timeline-content p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}

.research-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: 0.75rem;
}

.research-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold, #fdb614);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.research-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-col ul li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.research-col ul li::before {
  content: '\2022';
  color: var(--color-gold, #fdb614);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.research-note {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .research-columns {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

.timeline-content h3 i {
  margin-right: 0.5rem;
  color: var(--color-gold, #fdb614);
  font-size: 1rem;
}

.workflow-example {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(253, 182, 20, 0.08);
  border-left: 3px solid var(--color-gold, #fdb614);
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.workflow-example-label {
  display: inline-block;
  font-weight: 700;
  color: var(--color-gold, #fdb614);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.workflow-example + .workflow-example {
  margin-top: 0.5rem;
}

/* Example Button */
.btn-example {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.4rem 0.85rem;
  background: transparent;
  color: var(--color-gold, #fdb614);
  border: 1px solid var(--color-gold, #fdb614);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-example:hover {
  background: var(--color-gold, #fdb614);
  color: #141414;
}

.btn-example i {
  font-size: 0.75rem;
}

/* Example Modal */
.example-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.example-modal-overlay.active {
  display: flex;
}

.example-modal {
  background: #1a1a1a;
  border: 1px solid rgba(253, 182, 20, 0.25);
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.example-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(253, 182, 20, 0.15);
}

.example-modal-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-white, #fff);
}

.example-modal-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.2s;
}

.example-modal-close:hover {
  color: var(--color-white, #fff);
}

.example-modal-body {
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.7;
}

.example-modal-body .workflow-example-label {
  display: inline-block;
  font-weight: 700;
  color: var(--color-gold, #fdb614);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}


/* Card without hover effect */
.card-hover:hover {
  transform: translateY(-4px);
}


/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-info { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.contact-card { background: var(--color-white, #fff); border-radius: 12px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.contact-card-icon { width: 60px; height: 60px; background: var(--color-primary, #141414); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--color-gold, #fdb614); font-size: 1.5rem; }
.contact-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-card p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }
.contact-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.contact-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-gold, #fdb614); font-weight: 600; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.contact-link:hover { color: #e5a412; }
.copy-btn { background: none; border: none; cursor: pointer; padding: 0.25rem; color: #888; transition: color 0.2s; display: inline-flex; align-items: center; font-size: 1rem; }
.copy-btn:hover { color: var(--color-gold, #fdb614); }
.copy-btn.copied { color: #25D366; }
.phone-section { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); border-radius: 12px; padding: 2.5rem; margin-top: 2rem; color: #fff; }
.phone-section h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.phone-section h3 i { margin-right: 0.5rem; color: var(--color-gold, #fdb614); }
.phone-display { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.phone-number { font-size: 1.25rem; font-weight: 600; color: var(--color-gold, #fdb614); }
.phone-display .copy-btn { color: #aaa; }
.phone-display .copy-btn:hover { color: var(--color-gold, #fdb614); }
.phone-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.phone-btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.phone-btn:hover { transform: translateY(-2px); }
.phone-btn-call { background: var(--color-gold, #fdb614); color: var(--color-primary, #141414); }
.phone-btn-call:hover { box-shadow: 0 4px 15px rgba(253, 182, 20, 0.4); }
.booking-section { margin-top: 2rem; background: linear-gradient(135deg, var(--color-primary, #141414), #2a2a2a); border-radius: 12px; padding: 2.5rem; color: white; text-align: center; }
.booking-section h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: white; }
.booking-section h3 i { margin-right: 0.5rem; color: var(--color-gold, #fdb614); }
.booking-section p { opacity: 0.9; margin-bottom: 1.5rem; }
.booking-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--color-gold, #fdb614); color: var(--color-primary, #141414); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1.1rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.booking-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(253, 182, 20, 0.4); }

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto 3rem; }
.pricing-grid-3 { max-width: 960px; }
.pricing-card { background: var(--color-white, #fff); border-radius: 12px; padding: 2.5rem 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center; position: relative; }
.pricing-card-featured { border: 2px solid var(--color-gold, #fdb614); transform: scale(1.03); }
.pricing-tier { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-primary, #141414); }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--color-primary, #141414); margin-bottom: 1.5rem; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: #888; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.pricing-features li { padding: 0.5rem 0; font-size: 0.95rem; display: flex; align-items: center; gap: 0.75rem; }
.pricing-features li::before { content: '✓'; color: var(--color-success); font-weight: bold; }
.pricing-highlight { font-weight: 800; text-decoration: underline; text-decoration-color: var(--color-gold, #fdb614); text-underline-offset: 2px; }

/* =====================================================
   TOKEN GRID
   ===================================================== */

.token-grid-light { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.token-card-light { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 0; overflow: hidden; text-align: center; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.token-card-light:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.token-cost-circle { background: var(--color-primary, #141414); color: var(--color-gold, #fdb614); font-weight: 900; font-size: 2rem; padding: 1.25rem 0; letter-spacing: -0.02em; }
.token-cost-circle::after { content: " token"; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(253, 182, 20, 0.7); }
.token-card-light-body { padding: 1.25rem 1rem 1.5rem; }
.token-card-light-body i { color: var(--color-gold, #fdb614); font-size: 1.3rem; margin-bottom: 0.5rem; display: block; }
.token-card-light-body h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 0.4rem; color: var(--color-primary, #141414); }
.token-card-light-body p { font-size: 0.8rem; color: #777; margin: 0; line-height: 1.4; }
@media (max-width: 768px) { .token-grid-light { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .token-grid-light { grid-template-columns: 1fr; max-width: 300px; } }

/* =====================================================
   SMART CAMPAIGN FLOW
   ===================================================== */

.smart-campaign-flow { display: flex; align-items: flex-start; gap: 1rem; max-width: 1000px; margin: 0 auto 2.5rem; }
.smart-campaign-step { flex: 1; background: #fff; border-radius: 12px; padding: 2rem 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center; }
.smart-campaign-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.smart-campaign-step p { font-size: 0.9rem; color: #555; margin: 0; line-height: 1.5; }
.smart-campaign-icon { width: 56px; height: 56px; background: var(--color-primary, #141414); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--color-gold, #fdb614); font-size: 1.3rem; }
.smart-campaign-arrow { display: flex; align-items: center; padding-top: 3rem; color: var(--color-gold, #fdb614); font-size: 1.5rem; flex-shrink: 0; }
.smart-campaign-result { max-width: 800px; margin: 0 auto; background: linear-gradient(135deg, var(--color-primary, #141414), #2a2a2a); border-radius: 12px; padding: 2rem 2.5rem; color: #fff; display: flex; align-items: flex-start; gap: 1.25rem; }
.smart-campaign-result i { color: var(--color-gold, #fdb614); font-size: 1.5rem; flex-shrink: 0; margin-top: 0.15rem; }
.smart-campaign-result p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #ccc; }
.smart-campaign-result strong { color: #fff; }
@media (max-width: 768px) {
    .smart-campaign-flow { flex-direction: column; align-items: stretch; }
    .smart-campaign-arrow { justify-content: center; padding-top: 0; }
    .smart-campaign-arrow i::before { content: "\f063"; } /* arrow-down on mobile */
}

/* =====================================================
   CTA LOGIN TEXT
   ===================================================== */

.landing-login-text { max-width: 600px; margin: 0 auto var(--space-xl); }
