/* ───────────────────────────────────────
   NRI Wealth — Premium Marketing Site
   Design System & Styles
   ─────────────────────────────────────── */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050810;
  color: #e0e6f0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CSS Variables ─── */
:root {
  --bg-primary: #050810;
  --bg-card: #0d1220;
  --bg-card-hover: #111830;
  --glass-border: rgba(255, 255, 255, 0.06);
  --accent-cyan: #00e5ff;
  --accent-purple: #a855f7;
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-gold: #f59e0b;
  --text-primary: #e8ecf4;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gradient-hero: linear-gradient(135deg, #050810 0%, #0d1a2d 40%, #0a1628 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  --gradient-card: linear-gradient(145deg, rgba(13, 18, 32, 0.9), rgba(5, 8, 16, 0.95));
  --max-width: 1200px;
  --section-pad: 100px 0;
  --radius: 16px;
  --shadow-glow: 0 0 60px rgba(0, 229, 255, 0.08);
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
}

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

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

/* ─── Gradient Text ─── */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #000;
  box-shadow: 0 4px 30px rgba(0, 229, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ─── Glass Card ─── */
.glass-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(5, 8, 16, 0.95);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  animation: glow-pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  animation: glow-pulse 10s ease-in-out infinite reverse;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.hero-stat h4 {
  font-size: 1.8rem;
  color: var(--accent-cyan);
}

.hero-stat p {
  font-size: 0.85rem;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screenshot {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 229, 255, 0.08);
  transition: transform 0.5s ease;
}

.hero-screenshot:hover {
  transform: scale(1.02);
}

/* ─── Desktop Showcase ─── */
.desktop-showcase {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.desktop-screen-frame {
  width: 100%;
  background: #111;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.1);
}

.desktop-screen-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
}

.desktop-img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.desktop-img.active {
  opacity: 1;
}

.desktop-swapper {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--glass-border);
}

.swap-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swap-dot:hover {
  background: var(--text-secondary);
}

.swap-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  transform: scale(1.2);
}

/* ─── Trusted Bar ─── */
.trusted-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--glass-border);
}

.trusted-bar .container {
  text-align: center;
}

.trusted-bar p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trusted-logos span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon.cyan {
  background: rgba(0, 229, 255, 0.1);
}

.feature-icon.purple {
  background: rgba(168, 85, 247, 0.1);
}

.feature-icon.green {
  background: rgba(16, 185, 129, 0.1);
}

.feature-icon.blue {
  background: rgba(59, 130, 246, 0.1);
}

.feature-icon.gold {
  background: rgba(245, 158, 11, 0.1);
}

.feature-icon.pink {
  background: rgba(236, 72, 153, 0.1);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
}

/* ─── Data Control ─── */
.data-section {
  background: #050810;
  border-top: 1px solid var(--glass-border);
}

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

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

.data-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* ─── Screenshots Showcase ─── */
.showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0a101f 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.showcase-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
}

.showcase-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 900px) {
  .showcase-display {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.feature-snippet {
  display: none;
  animation: fadeIn 0.5s ease;
}

.feature-snippet.active {
  display: block;
}

.snippet-label {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-purple);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-snippet h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

.feature-snippet p {
  font-size: 1.1rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-tabs-horizontal {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 20px 20px;
  max-width: 100vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@media (min-width: 1024px) {
  .showcase-tabs-horizontal {
    justify-content: center;
    mask-image: none;
  }
}

.showcase-tabs-horizontal::-webkit-scrollbar {
  display: none;
}

.showcase-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  white-space: nowrap;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.showcase-tab i {
  font-size: 1.1rem;
}

.showcase-tab:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--text-primary);
}

.showcase-tab.active {
  background: var(--gradient-accent);
  border-color: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transform: scale(1.05);
}

/* ─── Phone Mockup ─── */
.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 100%;
  background: #111;
  border: 2px solid #333;
  border-radius: 36px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.1);
  overflow: hidden;
  padding: 2px;
}

.phone-screen {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  border-radius: 32px;
}

.showcase-img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  border-radius: 32px;
  transform: scale(1.02) translateZ(0);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s;
  pointer-events: none;
  background-color: #000;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.showcase-img.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateZ(0);
  pointer-events: auto;
}

.phone-button {
  display: none;
  /* Removed to maximize screen space */
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 240px;
    height: 490px;
  }
}

/* ─── Dual Jurisdiction ─── */
.dual-section {
  background: #080d18;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.jurisdiction-card {
  position: relative;
  overflow: hidden;
}

.jurisdiction-card .flag {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.jurisdiction-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.jurisdiction-card ul {
  list-style: none;
  margin-top: 16px;
}

.jurisdiction-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.jurisdiction-card ul li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

/* ─── Pricing ─── */
.pricing-section {
  background: var(--bg-primary);
}

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

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.1);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  border-radius: 99px;
  background: var(--gradient-accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .tier-name {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .price {
  margin: 20px 0 8px;
}

.pricing-card .price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-card .price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card .price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card .features-list {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card .features-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card .features-list li .check {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

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

/* ─── Testimonials ─── */
.testimonials-section {
  background: #080d18;
}

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

.testimonial-card {
  padding: 28px;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.15);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
}

.faq-chevron {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628, #0d1a32);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ─── Footer ─── */
.footer {
  padding: 60px 0 30px;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Animate on Scroll ─── */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

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

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

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

  .hero-visual {
    margin-top: 40px;
  }

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn-secondary {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.98);
    border-bottom: 1px solid var(--glass-border);
    padding: 24px;
    gap: 16px;
  }

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

  .showcase-info {
    order: 2;
  }

  .showcase-visual {
    order: 1;
  }

  .showcase-tabs-vertical {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for Chrome/Safari/Firefox */
  }

  .showcase-tabs-vertical::-webkit-scrollbar {
    display: none;
  }

  .showcase-tab {
    min-width: 180px;
    flex-shrink: 0;
    padding: 12px 16px;
  }

  .showcase-tab .tab-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .showcase-tab .tab-text strong {
    font-size: 0.9rem;
  }

  .showcase-tab .tab-text span {
    font-size: 0.75rem;
  }

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

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

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

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

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

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
/* ─── Life Events Section ─── */
.life-events-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.life-events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.event-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
}

.event-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.event-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--accent-blue); }
.event-icon.purple { background: rgba(168, 85, 247, 0.1); color: var(--accent-purple); }
.event-icon.cyan { background: rgba(0, 229, 255, 0.1); color: var(--accent-cyan); }
.event-icon.gold { background: rgba(245, 158, 11, 0.1); color: var(--accent-gold); }

.event-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.event-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mini-list {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.mini-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-list li::before {
  content: '→';
  color: var(--accent-cyan);
  font-weight: bold;
}

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