@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Growme — Dark Premium Fintech Theme
   Design Inspiration: uni.cards, Apple Card, Stripe
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */


:root {
  /* Dark Mode Colors */
  --color-bg: #0a0a0a;
  --color-bg-secondary: #141414;
  --color-bg-elevated: #1a1a1a;
  --color-text-primary: #f1f1f1;
  --color-text-secondary: #9ca3af;
  --color-text-muted: #6b7280;
  --color-border: #1f1f1f;
  --color-border-hover: #2a2a2a;
  
  /* Gold Brand Identity */
  --brand-primary: #c5a85c;
  --brand-dark: #8e702a;
  --brand-light: #1a1505;
  --brand-glow: rgba(197, 168, 92, 0.12);
  --brand-gradient: linear-gradient(135deg, #c5a85c 0%, #f4e8c1 100%);
  
  /* Gold Metallic Gradients (Credit Card) */
  --gold-primary: #c5a85c;
  --gold-dark: #8e702a;
  --gold-light: #f4e8c1;
  --gold-glow: rgba(197, 168, 92, 0.15);
  --gold-metal-gradient: linear-gradient(
    135deg,
    #f2e3c6 0%,
    #d8b87d 25%,
    #c49d52 50%,
    #b08637 75%,
    #dfc08a 100%
  );
  
  /* Dark Gradient */
  --dark-gradient: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 30px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(197, 168, 92, 0.15);
  
  /* Transitions */
  --transition-bezier: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & General Setup
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   3. Common Components & Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-bezier);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #1a1505;
  box-shadow: var(--shadow-gold);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197, 168, 92, 0.3);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border-hover);
  color: var(--color-text-primary);
}

.btn-secondary:hover {
  background: var(--color-bg-elevated);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--brand-gradient);
  color: #1a1505;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197, 168, 92, 0.35);
  filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation
   -------------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-fast);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.logo-accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   5. Hero Section & Interactive 3D Card
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Radial gold glow behind card */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197, 168, 92, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 2;
}

.hero-visual {
  order: 1;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 92, 0.06);
  border: 1px solid rgba(197, 168, 92, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s var(--transition-bezier);
}

.trust-badge svg {
  color: var(--brand-primary);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--transition-bezier) 0.1s both;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  animation: fadeInUp 0.8s var(--transition-bezier) 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  animation: fadeInUp 0.8s var(--transition-bezier) 0.3s both;
}

.hero-features {
  display: flex;
  gap: 24px;
  animation: fadeInUp 0.8s var(--transition-bezier) 0.4s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero-feature-item svg {
  color: var(--brand-primary);
}

/* 3D Golden Card Visual Container */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  height: 320px;
  animation: cardFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.card-perspective-wrapper {
  position: relative;
  width: 380px;
  height: 240px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  cursor: pointer;
}

.premium-gold-card {
  width: 100%;
  height: 100%;
  background: var(--gold-metal-gradient);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(197, 168, 92, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  z-index: 1;
}

.premium-gold-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.01) 0px,
    rgba(0, 0, 0, 0.01) 2px,
    rgba(255, 255, 255, 0.02) 2px,
    rgba(255, 255, 255, 0.02) 4px
  );
  opacity: 0.6;
  pointer-events: none;
}

.card-shimmer {
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.25) 45%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.25) 55%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(-10deg);
  pointer-events: none;
  transition: transform 0.1s ease;
  mix-blend-mode: overlay;
  z-index: 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transform: translateZ(30px);
}

.card-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: #2b1f00;
  display: flex;
  align-items: center;
}

.card-logo span {
  font-weight: 900;
  margin-right: 4px;
}

.card-chip {
  width: 48px;
  height: 38px;
  background: linear-gradient(135deg, #ffea9f 0%, #d4af37 50%, #aa7c11 100%);
  border-radius: 8px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5), 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateZ(25px);
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 4px,
    rgba(0, 0, 0, 0.1) 4px,
    rgba(0, 0, 0, 0.1) 6px
  );
}

.card-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #3b2b00;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
  margin: 20px 0;
  transform: translateZ(20px);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #3b2b00;
  transform: translateZ(25px);
}

.card-holder {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(59, 43, 0, 0.6);
  margin-bottom: 2px;
}

.card-holder-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-class {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2b1f00;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .card-perspective-wrapper {
    width: 290px;
    height: 183px;
  }
  .visualizer-gold-card {
    width: 290px;
    height: 183px;
  }
  .premium-gold-card {
    padding: 16px 20px;
  }
  .card-logo {
    font-size: 1.2rem;
  }
  .card-chip {
    width: 36px;
    height: 28px;
  }
  .card-number {
    font-size: 1rem;
    margin: 8px 0;
    letter-spacing: 0.08em;
  }
  .card-holder-name {
    font-size: 0.75rem;
  }
  .card-class {
    font-size: 0.8rem;
    padding: 3px 8px;
  }
  .benefit-trigger-item {
    padding: 16px;
    gap: 12px;
  }
  .referral-promo-card {
    padding: 24px 16px;
  }
  .referral-cta-box {
    padding: 24px 16px;
  }
}

@media (max-width: 340px) {
  .card-perspective-wrapper {
    width: 250px;
    height: 158px;
  }
  .visualizer-gold-card {
    width: 250px;
    height: 158px;
  }
  .premium-gold-card {
    padding: 12px 16px;
  }
  .card-logo {
    font-size: 1.1rem;
  }
  .card-chip {
    width: 30px;
    height: 24px;
  }
  .card-number {
    font-size: 0.85rem;
    margin: 6px 0;
    letter-spacing: 0.05em;
  }
  .card-holder-name {
    font-size: 0.7rem;
  }
  .card-class {
    font-size: 0.75rem;
    padding: 2px 6px;
  }
}

/* --------------------------------------------------------------------------
   6. Benefits Section
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   6. Benefits Section (Interactive Morphing Stage)
   -------------------------------------------------------------------------- */
.interactive-benefits-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

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

.benefit-trigger-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-bezier);
  text-align: left;
}

.benefit-trigger-item:hover {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(197, 168, 92, 0.08);
}

.benefit-trigger-item.active {
  background: var(--color-bg-secondary);
  border-color: rgba(197, 168, 92, 0.25);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.benefit-trigger-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.benefit-trigger-item.active .benefit-trigger-icon {
  background: var(--brand-gradient);
  color: #1a1505;
}

.benefit-trigger-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.benefit-trigger-item.active .benefit-trigger-text h3 {
  color: var(--brand-primary);
}

.benefit-trigger-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Card Visualizer Frame */
.benefits-card-visualizer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 380px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.visualizer-radial-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 168, 92, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visualizer-card-wrapper {
  perspective: 1200px;
  transition: transform 0.1s ease;
  cursor: pointer;
  z-index: 2;
}

.visualizer-gold-card {
  width: 340px;
  height: 215px;
  background: var(--gold-metal-gradient);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(197, 168, 92, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  .interactive-benefits-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .benefits-card-visualizer {
    height: 320px;
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   7. How It Works Section (Connected Stepper Timeline)
   -------------------------------------------------------------------------- */
.how-it-works {
  background-color: var(--color-bg-secondary);
}

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

.horizontal-timeline-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: var(--color-border);
  border-radius: 10px;
  margin: 80px 0 50px;
}

.horizontal-timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%; /* Dynamic fill */
  background: var(--brand-gradient);
  box-shadow: 0 0 12px var(--brand-primary);
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-nodes-row {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
}

.timeline-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.node-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  border: 3px solid var(--color-border);
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bezier);
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.timeline-step-node.active .node-circle {
  background: var(--color-bg);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: 0 0 20px rgba(197, 168, 92, 0.3);
  transform: scale(1.15);
}

.timeline-step-node.completed .node-circle {
  background: var(--brand-gradient);
  border-color: var(--brand-primary);
  color: #1a1505;
}

.node-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.timeline-step-node.active .node-label {
  color: var(--brand-primary);
}

.timeline-step-node.completed .node-label {
  color: var(--color-text-secondary);
}

/* Steps Pane Details */
.steps-details-stage {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-detail-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  max-width: 600px;
}

.step-detail-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.step-detail-pane h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--color-text-primary);
}

.step-detail-pane p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .horizontal-timeline-track {
    display: none;
  }
  .steps-details-stage {
    min-height: auto;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .step-detail-pane {
    display: block;
    opacity: 1;
    transform: none;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
  }
  .step-detail-pane:last-child {
    padding-bottom: 30px;
  }
}

/* --------------------------------------------------------------------------
   8. FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 24px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-elevated);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  transition: var(--transition-fast);
}

.faq-question:hover h3 {
  color: var(--brand-primary);
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-bezier);
  flex-shrink: 0;
}

.faq-icon-wrapper svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--brand-gradient);
  color: #1a1505;
}

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

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin-top 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 12px;
}

.faq-answer p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. CTA & Conversion Section
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-banner {
  background: var(--brand-gradient);
  color: #1a1505;
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(197, 168, 92, 0.15);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  color: #1a1505;
}

.cta-banner h2 span {
  color: #2b1f00;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(26, 21, 5, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
  background: #1a1505;
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.cta-banner .btn:hover {
  background: #0a0a0a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 24px;
    border-radius: 24px;
  }
  .cta-banner h2 {
    font-size: 2.25rem;
  }
  .cta-banner p {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   10. Footer Section
   -------------------------------------------------------------------------- */
.site-footer, footer {
  background-color: #0f0f0f !important;
  color: #f3f4f6 !important;
  padding: 4.5rem 0 2.5rem 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.footer-brand .logo {
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  margin-bottom: 1rem !important;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff !important;
  gap: 0;
}

.footer-brand .logo-accent {
  color: #F59E0B !important;
}

.footer-brand p {
  color: #9CA3AF !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  max-width: 380px !important;
  margin: 0 !important;
}

.footer-links {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem !important;
  justify-content: flex-start !important;
}

.footer-col h4 {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 1.25rem !important;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.footer-col ul li {
  margin-bottom: 0 !important;
}

.footer-col ul li a {
  color: #9CA3AF !important;
  font-size: 0.925rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.footer-col ul li a:hover {
  color: #F59E0B !important;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 2rem !important;
  text-align: center !important;
  width: 100% !important;
}

.footer-disclaimer p {
  font-size: 0.85rem !important;
  color: #6B7280 !important;
  margin: 0 !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  .site-footer, footer {
    padding: 3rem 0 2rem 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

/* --------------------------------------------------------------------------
   11. Secure Redirection Modal (Overlay)
   -------------------------------------------------------------------------- */
.secure-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.secure-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.secure-modal {
  width: 90%;
  max-width: 420px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.secure-overlay.active .secure-modal {
  transform: translateY(0);
}

.secure-shield {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(197, 168, 92, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.secure-shield::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--brand-primary);
  animation: spin 1s linear infinite;
}

.secure-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.secure-modal p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

.secure-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.secure-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.secure-step svg {
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.secure-step.active {
  color: var(--color-text-primary);
}

.secure-step.active svg {
  color: var(--brand-primary);
  animation: pulse 1.5s infinite;
}

.secure-step.completed {
  color: var(--brand-primary);
}

.secure-step.completed svg {
  color: var(--brand-primary);
}

/* --------------------------------------------------------------------------
   12. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   13. Lead Capture Form Styles
   -------------------------------------------------------------------------- */
.lead-form {
  margin-top: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

.form-group input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus {
  border-color: var(--brand-primary);
  background: var(--color-bg);
  box-shadow: 0 0 0 4px var(--brand-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-primary);
  transition: var(--transition-fast);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-group select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px var(--brand-glow);
}

/* --------------------------------------------------------------------------
   14. CTA Disclaimers
   -------------------------------------------------------------------------- */
.cta-subtitle-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  opacity: 0.85;
  line-height: 1.45;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero-ctas-container {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-ctas-container .cta-subtitle-disclaimer {
  text-align: center;
}

.cta-banner .cta-subtitle-disclaimer {
  text-align: center;
  color: rgba(26, 21, 5, 0.6);
  opacity: 0.9;
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   15. Tracker & Stepper Component Styles
   -------------------------------------------------------------------------- */
#pulse-dot {
  animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 168, 92, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(197, 168, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 168, 92, 0);
  }
}

/* --------------------------------------------------------------------------
   16. Google Circular Progress Spinner Styles
   -------------------------------------------------------------------------- */
.google-spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-spinner {
  animation: google-rotate 2s linear infinite;
  transform-origin: center center;
}

.google-spinner circle {
  stroke: var(--brand-primary);
  stroke-linecap: round;
  animation: google-dash 1.5s ease-in-out infinite;
}

@keyframes google-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes google-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* --------------------------------------------------------------------------
   12. Refer & Earn Promo Card Styles
   -------------------------------------------------------------------------- */
.referral-promo-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--transition-bezier);
}

.referral-cta-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .referral-promo-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Growme — Multi-Card Comparison Portal & Details Modal
   ========================================================================== */

/* Card Specific Accent Variables & Mockups */
:root {
  --color-onecard: #ef4444;
  --color-onecard-glow: rgba(239, 68, 68, 0.15);
  --onecard-gradient: linear-gradient(135deg, #1f1f2e 0%, #0d0d13 60%, #050508 100%);
  
  --color-hdfc: #00b4d8;
  --color-hdfc-glow: rgba(0, 180, 216, 0.15);
  --hdfc-gradient: linear-gradient(135deg, #0a1e3f 0%, #040e21 60%, #01050e 100%);
}

/* Card Comparison Section */
.card-comparison-section {
  background-color: var(--color-bg);
}

.card-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.offer-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--transition-bezier), border-color 0.4s var(--transition-bezier), box-shadow 0.4s var(--transition-bezier);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
}

/* Accent Card Borders & Glows */
.offer-card.card-theme-unicard:hover {
  border-color: rgba(197, 168, 92, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 8px 24px var(--gold-glow);
}

.offer-card.card-theme-onecard:hover {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 8px 24px var(--color-onecard-glow);
}

.offer-card.card-theme-hdfccard:hover {
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 8px 24px var(--color-hdfc-glow);
}

/* Card Mockup Visual inside Grid */
.grid-card-visual {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-card-visual .card-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.grid-card-visual .card-logo span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-card.card-theme-onecard .grid-card-visual .card-logo span {
  background: linear-gradient(135deg, #ff6b6b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-card.card-theme-hdfccard .grid-card-visual .card-logo span {
  background: linear-gradient(135deg, #00f5ff, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-card-visual .card-chip {
  width: 24px;
  height: 18px;
  background: linear-gradient(135deg, #f0d080, #c09030);
  border-radius: 4px;
}

.grid-card-visual .card-number {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-top: auto;
  margin-bottom: 10px;
}

.grid-card-visual .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Card Content Details */
.card-info-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

/* Reward Badges */
.payout-badges-container {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payout-badge {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.payout-badge.badge-apply {
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
  background: rgba(16, 185, 129, 0.03);
}

.payout-badge.badge-refer {
  border-color: rgba(197, 168, 92, 0.2);
  color: var(--brand-primary);
  background: rgba(197, 168, 92, 0.03);
}

/* Card Bullet Highlights */
.card-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.card-highlights-list li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-highlights-list li svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

.offer-card.card-theme-onecard .card-highlights-list li svg {
  color: var(--color-onecard);
}

.offer-card.card-theme-hdfccard .card-highlights-list li svg {
  color: var(--color-hdfc);
}

/* Card Actions Container */
.card-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-actions-wrapper .btn {
  width: 100%;
}

.card-actions-wrapper .view-details-trigger {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  margin-top: 4px;
  transition: color var(--transition-fast);
}

.card-actions-wrapper .view-details-trigger:hover {
  color: var(--color-text-primary);
  text-decoration: underline;
}

/* Card Details Modal */
.details-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
}

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

.details-modal-box {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  width: 100%;
  max-width: 650px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-hover) transparent;
}

.details-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.details-modal-close:hover {
  color: var(--color-text-primary);
}

.details-modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.modal-header-visual {
  width: 120px;
  height: 75px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  font-size: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-header-info .modal-payout-text {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
}

.modal-section-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
}

.modal-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.modal-benefit-item {
  display: flex;
  gap: 16px;
}

.modal-benefit-icon {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-benefit-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.modal-benefit-text p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}

.modal-grid-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 32px;
}

.modal-detail-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.modal-detail-col p {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Skeleton Loading State for Dynamic Offers */
.offers-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  width: 100%;
}

.skeleton-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  height: 480px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.skeleton-item {
  background: linear-gradient(90deg, #181818 25%, #242424 50%, #181818 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  border-radius: 10px;
}

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

@media (max-width: 600px) {
  .details-modal-box {
    padding: 24px;
    border-radius: 20px;
  }
  .modal-grid-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .details-modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


