/* Local Font Declarations (Self-hosted) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-v18-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/outfit-v18-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/outfit-v18-latin-900.woff2') format('woff2');
}

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-subtle: #f7f7fb;
  --color-bg-muted: #f0f0f8;
  --color-surface: #ffffff;
  --color-surface-raised: #fafafa;

  --color-border: #e8e8f0;
  --color-border-strong: #d0d0e0;

  --color-text-primary: #0d0d1a;
  --color-text-secondary: #4a4a6a;
  --color-text-muted: #8a8aaa;
  --color-text-disabled: #b8b8cc;

  --color-accent: #4f46e5;
  --color-accent-hover: #4338ca;
  --color-accent-light: #eef2ff;
  --color-accent-lighter: #f5f3ff;
  --color-accent-dark: #3730a3;
  --color-accent-text: #4f46e5;

  --color-green: #16a34a;
  --color-green-light: #f0fdf4;
  --color-orange: #ea580c;
  --color-orange-light: #fff7ed;
  --color-blue: #0ea5e9;
  --color-blue-light: #f0f9ff;
  --color-purple: #9333ea;
  --color-purple-light: #faf5ff;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(13, 13, 26, 0.05);
  --shadow-sm: 0 1px 3px rgba(13, 13, 26, 0.08), 0 1px 2px rgba(13, 13, 26, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(13, 13, 26, 0.07), 0 2px 4px -1px rgba(13, 13, 26, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(13, 13, 26, 0.08), 0 4px 6px -2px rgba(13, 13, 26, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(13, 13, 26, 0.08), 0 10px 10px -5px rgba(13, 13, 26, 0.03);
  --shadow-accent: 0 8px 25px -5px rgba(79, 70, 229, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 68px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-hero {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.text-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-base { font-size: 1rem; line-height: 1.7; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-xs { font-size: 0.75rem; line-height: 1.5; }

.text-muted { color: var(--color-text-secondary); }
.text-faint { color: var(--color-text-muted); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-5);
  }
}

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

.section-sm {
  padding: var(--space-16) 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -5px rgba(79, 70, 229, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--color-bg-subtle);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-bg-muted);
  border-color: var(--color-border-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--color-accent);
  padding: 10px 16px;
}
.btn-ghost:hover {
  background: var(--color-accent-light);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════
   BADGE / LABEL
═══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-accent {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid rgba(79, 70, 229, 0.15);
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
}

.card-flat {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

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

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ICON CONTAINER
═══════════════════════════════════════════ */
.icon-container {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-container-lg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.3); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(79, 70, 229, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE UTILITIES
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: var(--space-20) 0; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .section-header { margin-bottom: var(--space-10); }
  .section-header p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 12px 22px; font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════
   GRID PATTERNS
═══════════════════════════════════════════ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

/* ═══════════════════════════════════════════
   GRADIENT BACKGROUNDS
═══════════════════════════════════════════ */
.gradient-hero {
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(79, 70, 229, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 60%, rgba(147, 51, 234, 0.04) 0%, transparent 50%),
              var(--color-bg);
}

.gradient-subtle {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-subtle) 100%);
}

.gradient-accent-text {
  background: linear-gradient(135deg, var(--color-accent) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ================= SCOPED MODULES ================= */


/* Scoped styles for page */
.page-scope .page {
  --background: #fafafa;
  --foreground: #fff;

  --text-primary: #000;
  --text-secondary: #666;

  --button-primary-hover: #383838;
  --button-secondary-hover: #f2f2f2;
  --button-secondary-border: #ebebeb;

  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-geist-sans);
  background-color: var(--background);
}.page-scope .main {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--foreground);
  padding: 120px 60px;
}.page-scope .intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}.page-scope .intro h1 {
  max-width: 320px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -2.4px;
  text-wrap: balance;
  color: var(--text-primary);
}.page-scope .intro p {
  max-width: 440px;
  font-size: 18px;
  line-height: 32px;
  text-wrap: balance;
  color: var(--text-secondary);
}.page-scope .intro a {
  font-weight: 500;
  color: var(--text-primary);
}.page-scope .ctas {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 440px;
  gap: 16px;
  font-size: 14px;
}.page-scope .ctas a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 128px;
  border: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
  width: fit-content;
  font-weight: 500;
}.page-scope a.primary {
  background: var(--text-primary);
  color: var(--background);
  gap: 8px;
}.page-scope a.secondary {
  border-color: var(--button-secondary-border);
}/* Enable hover only on non-touch devices */@media (hover: hover) and (pointer: fine) {
.page-scope a.primary:hover {
    background: var(--button-primary-hover);
    border-color: transparent;
  }.page-scope a.secondary:hover {
    background: var(--button-secondary-hover);
    border-color: transparent;
  }
}@media (max-width: 600px) {
.page-scope .main {
    padding: 48px 24px;
  }.page-scope .intro {
    gap: 16px;
  }.page-scope .intro h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.92px;
  }
}@media (prefers-color-scheme: dark) {
.page-scope .logo {
    filter: invert();
  }.page-scope .page {
    --background: #000;
    --foreground: #000;

    --text-primary: #ededed;
    --text-secondary: #999;

    --button-primary-hover: #ccc;
    --button-secondary-hover: #1a1a1a;
    --button-secondary-border: #1a1a1a;
  }
}

/* Scoped styles for contact */
.contact-scope .page { padding-top: var(--nav-height); }.contact-scope .hero { padding: var(--space-20) 0; }.contact-scope .heroInner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 640px;
}.contact-scope .heroTitle {}.contact-scope .heroSub { max-width: 500px; }/* Grid */.contact-scope .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}.contact-scope .card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}.contact-scope .cardIcon { font-size: 2rem; }.contact-scope .cardTitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}/* Emails */.contact-scope .emailList {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}.contact-scope .emailItem {
  display: flex;
  flex-direction: column;
  gap: 2px;
}.contact-scope .emailLabel {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}.contact-scope .emailAddr {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}.contact-scope .emailAddr:hover { opacity: 0.7; }/* Hours */.contact-scope .hoursList {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}.contact-scope .hoursRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}.contact-scope .hoursRow:last-child { border-bottom: none; }.contact-scope .hoursDay { color: var(--color-text-secondary); font-weight: 500; }.contact-scope .hoursTime { font-weight: 600; color: var(--color-text-primary); }.contact-scope .closed { color: var(--color-text-muted) !important; }/* Address */.contact-scope .address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}.contact-scope .cin {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: monospace;
}/* Back */.contact-scope .back { padding-bottom: var(--space-16); }@media (max-width: 900px) {
.contact-scope .grid { grid-template-columns: 1fr; }
}

/* Scoped styles for privacy */
.privacy-scope .page {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-24);
}.privacy-scope .inner {
  max-width: 720px;
  margin: 0 auto;
}.privacy-scope .header {
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}.privacy-scope .title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}.privacy-scope .updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}.privacy-scope .body {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}.privacy-scope .section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}.privacy-scope .section p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}.privacy-scope .section a {
  color: var(--color-accent);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}.privacy-scope .section a:hover { opacity: 0.7; }.privacy-scope .back {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

/* Scoped styles for signup */
.signup-scope .page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 50%, #f0f9ff 100%);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}.signup-scope .card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}.signup-scope .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  align-self: flex-start;
}.signup-scope .logo span:first-child { font-size: 1.4rem; }.signup-scope .header { display: flex; flex-direction: column; gap: var(--space-1); }.signup-scope .title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; letter-spacing: -0.025em; }.signup-scope .sub { font-size: 0.95rem; color: var(--color-text-secondary); }.signup-scope .errorBox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #dc2626;
}.signup-scope .form { display: flex; flex-direction: column; gap: var(--space-4); }.signup-scope .field { display: flex; flex-direction: column; gap: var(--space-2); }.signup-scope .label { font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); }.signup-scope .optional { color: var(--color-text-muted); font-weight: 400; }.signup-scope .mobileRow { display: flex; align-items: center; gap: 0; }.signup-scope .countryCode {
  padding: 11px 12px;
  background: var(--color-bg-subtle);
  border: 1.5px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
}.signup-scope .mobileInput { border-radius: 0 var(--radius-md) var(--radius-md) 0 !important; }.signup-scope .input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}.signup-scope .input::placeholder { color: var(--color-text-disabled); }.signup-scope .input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}.signup-scope .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}.signup-scope .submitBtn { width: 100%; justify-content: center; padding: 13px; font-size: 1rem; margin-top: var(--space-2); }.signup-scope .submitBtn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }.signup-scope .spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}@keyframes spin { to { transform: rotate(360deg); } }.signup-scope .footer { text-align: center; font-size: 0.9rem; color: var(--color-text-secondary); }.signup-scope .link { color: var(--color-accent); font-weight: 600; transition: opacity var(--transition-fast); }.signup-scope .link:hover { opacity: 0.75; }.signup-scope .bgDeco1 {
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.07) 0%, transparent 70%);
  pointer-events: none;
}.signup-scope .bgDeco2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
  pointer-events: none;
}@media (max-width: 480px) {
.signup-scope .card { padding: var(--space-8) var(--space-5); }.signup-scope .row { grid-template-columns: 1fr; }
}

/* Scoped styles for terms */
.terms-scope .page {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-24);
}.terms-scope .inner {
  max-width: 720px;
  margin: 0 auto;
}.terms-scope .header {
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}.terms-scope .title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}.terms-scope .updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}.terms-scope .body {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}.terms-scope .section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}.terms-scope .section p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}.terms-scope .section a {
  color: var(--color-accent);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}.terms-scope .section a:hover { opacity: 0.7; }.terms-scope .back {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

/* Scoped styles for admin-layout */
.admin-layout-scope .layout { display: flex; min-height: 100vh; background: #f1f1f8; }.admin-layout-scope .main { margin-left: 240px; flex: 1; }.admin-layout-scope .content { padding: var(--space-8) var(--space-10); max-width: 1200px; }@media (max-width: 900px) {
.admin-layout-scope .main { margin-left: 0; }.admin-layout-scope .content { padding: var(--space-6); }
}

/* Scoped styles for admin-overview */
.admin-overview-scope .page { display: flex; flex-direction: column; gap: var(--space-8); }.admin-overview-scope .header { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }.admin-overview-scope .title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }.admin-overview-scope .sub { font-size: 0.9rem; color: var(--color-text-secondary); margin-top: 4px; }.admin-overview-scope .alertBtn { display: inline-flex; align-items: center; gap: var(--space-2); padding: 10px 18px; background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; color: #92400e; text-decoration: none; transition: all var(--transition-fast); white-space: nowrap; }.admin-overview-scope .alertBtn:hover { background: #fef3c7; }.admin-overview-scope .statsGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }.admin-overview-scope .statCard { background: var(--sc-bg); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: var(--space-5); display: flex; align-items: center; gap: var(--space-4); }.admin-overview-scope .statIcon { font-size: 1.8rem; }.admin-overview-scope .statValue { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text-primary); }.admin-overview-scope .statLabel { font-size: 0.78rem; color: var(--color-text-muted); font-weight: 500; margin-top: 2px; }.admin-overview-scope .quickLinks { display: flex; gap: var(--space-3); flex-wrap: wrap; }.admin-overview-scope .quickLink { display: inline-flex; align-items: center; gap: var(--space-2); padding: 10px 18px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); text-decoration: none; transition: all var(--transition-fast); }.admin-overview-scope .quickLink:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-light); }.admin-overview-scope .section { display: flex; flex-direction: column; gap: var(--space-4); }.admin-overview-scope .sectionRow { display: flex; align-items: center; justify-content: space-between; }.admin-overview-scope .sectionTitle { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }.admin-overview-scope .viewAll { font-size: 0.85rem; color: var(--color-accent); font-weight: 600; }.admin-overview-scope .table { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }.admin-overview-scope .tableHead { display: grid; grid-template-columns: 2fr 1.5fr 0.8fr 0.8fr 1fr; padding: var(--space-3) var(--space-5); background: var(--color-bg-subtle); border-bottom: 1px solid var(--color-border); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }.admin-overview-scope .tableRow { display: grid; grid-template-columns: 2fr 1.5fr 0.8fr 0.8fr 1fr; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-border); align-items: center; transition: background var(--transition-fast); }.admin-overview-scope .tableRow:last-child { border-bottom: none; }.admin-overview-scope .tableRow:hover { background: var(--color-bg-subtle); }.admin-overview-scope .serviceCell { display: flex; align-items: center; gap: var(--space-3); }.admin-overview-scope .rowIcon { font-size: 1.1rem; width: 32px; height: 32px; background: var(--color-bg-subtle); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.admin-overview-scope .serviceName { font-size: 0.82rem; font-weight: 600; color: var(--color-text-primary); }.admin-overview-scope .serviceTarget { font-size: 0.72rem; color: var(--color-text-muted); }.admin-overview-scope .userName { font-size: 0.82rem; font-weight: 600; color: var(--color-text-primary); }.admin-overview-scope .userEmail { font-size: 0.72rem; color: var(--color-text-muted); }.admin-overview-scope .amount { font-size: 0.875rem; font-weight: 700; color: var(--color-text-primary); }.admin-overview-scope .date { font-size: 0.82rem; color: var(--color-text-secondary); }.admin-overview-scope .statusBadge { display: inline-block; font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.05em; }@media (max-width: 1100px) {
.admin-overview-scope .statsGrid { grid-template-columns: repeat(2, 1fr); }
}@media (max-width: 700px) {
.admin-overview-scope .statsGrid { grid-template-columns: 1fr; }.admin-overview-scope .tableHead, .admin-overview-scope .tableRow { grid-template-columns: 2fr 1fr 1fr; }
}

/* Scoped styles for admin-users */
.admin-users-scope .page { display: flex; flex-direction: column; gap: var(--space-8); }.admin-users-scope .header { display: flex; flex-direction: column; gap: var(--space-2); }.admin-users-scope .title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.admin-users-scope .sub { font-size: 0.9rem; color: var(--color-text-secondary); }.admin-users-scope .loading { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-16); text-align: center; color: var(--color-text-muted); }.admin-users-scope .table { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }.admin-users-scope .tableHead { display: grid; grid-template-columns: 2fr 1fr 0.6fr 1fr 0.8fr 1.2fr; padding: var(--space-3) var(--space-5); background: var(--color-bg-subtle); border-bottom: 1px solid var(--color-border); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }.admin-users-scope .tableRow { display: grid; grid-template-columns: 2fr 1fr 0.6fr 1fr 0.8fr 1.2fr; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-border); align-items: center; transition: background var(--transition-fast); }.admin-users-scope .tableRow:last-child { border-bottom: none; }.admin-users-scope .tableRow:hover { background: var(--color-bg-subtle); }.admin-users-scope .userCell { display: flex; align-items: center; gap: var(--space-3); }.admin-users-scope .avatar { width: 34px; height: 34px; border-radius: 50%; color: white; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.admin-users-scope .userName { font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); }.admin-users-scope .userEmail { font-size: 0.72rem; color: var(--color-text-muted); }.admin-users-scope .cell { font-size: 0.875rem; color: var(--color-text-secondary); }.admin-users-scope .roleBadge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.05em; }.admin-users-scope .adminRole { background: #f5f3ff; color: #7c3aed; }.admin-users-scope .userRole { background: var(--color-accent-light); color: var(--color-accent); }.admin-users-scope .roleBtn { padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all var(--transition-fast); border: none; }.admin-users-scope .roleBtn:disabled { opacity: 0.5; cursor: not-allowed; }.admin-users-scope .promoteBtn { background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; }.admin-users-scope .promoteBtn:hover:not(:disabled) { background: #ede9fe; }.admin-users-scope .demoteBtn { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }.admin-users-scope .demoteBtn:hover:not(:disabled) { background: #fee2e2; }

/* Scoped styles for admin-orders */
.admin-orders-scope .page { display: flex; flex-direction: column; gap: var(--space-6); }.admin-orders-scope .header { display: flex; align-items: flex-start; justify-content: space-between; }.admin-orders-scope .title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.admin-orders-scope .sub { font-size: 0.9rem; color: var(--color-text-secondary); margin-top: 4px; }.admin-orders-scope .tabs { display: flex; gap: var(--space-2); background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-2); align-self: flex-start; }.admin-orders-scope .tab { display: flex; align-items: center; gap: var(--space-2); padding: 8px 16px; border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 600; color: var(--color-text-secondary); cursor: pointer; background: none; border: none; transition: all var(--transition-fast); }.admin-orders-scope .tab:hover { background: var(--color-bg-subtle); color: var(--color-text-primary); }.admin-orders-scope .tabActive { background: var(--color-accent) !important; color: white !important; }.admin-orders-scope .tabCount { background: rgba(0,0,0,0.1); border-radius: var(--radius-full); padding: 1px 7px; font-size: 0.72rem; }.admin-orders-scope .tabActive .tabCount { background: rgba(255,255,255,0.25); }.admin-orders-scope .loading, .admin-orders-scope .empty { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-16); text-align: center; color: var(--color-text-muted); }.admin-orders-scope .empty { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }.admin-orders-scope .empty span { font-size: 2rem; }.admin-orders-scope .table { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }.admin-orders-scope .tableHead { display: grid; grid-template-columns: 2fr 1.5fr 0.7fr 0.9fr 1fr 1.3fr; padding: var(--space-3) var(--space-5); background: var(--color-bg-subtle); border-bottom: 1px solid var(--color-border); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }.admin-orders-scope .tableRow { display: grid; grid-template-columns: 2fr 1.5fr 0.7fr 0.9fr 1fr 1.3fr; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--color-border); align-items: center; transition: background var(--transition-fast); }.admin-orders-scope .tableRow:last-child { border-bottom: none; }.admin-orders-scope .tableRow:hover { background: var(--color-bg-subtle); }.admin-orders-scope .serviceCell { display: flex; align-items: center; gap: var(--space-3); }.admin-orders-scope .rowIcon { font-size: 1.1rem; width: 32px; height: 32px; background: var(--color-bg-subtle); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.admin-orders-scope .serviceName { font-size: 0.82rem; font-weight: 600; color: var(--color-text-primary); }.admin-orders-scope .serviceTarget { font-size: 0.72rem; color: var(--color-text-muted); }.admin-orders-scope .custName { font-size: 0.82rem; font-weight: 600; color: var(--color-text-primary); }.admin-orders-scope .custEmail { font-size: 0.72rem; color: var(--color-text-muted); }.admin-orders-scope .amount { font-size: 0.875rem; font-weight: 700; color: var(--color-text-primary); }.admin-orders-scope .date { font-size: 0.82rem; color: var(--color-text-secondary); }.admin-orders-scope .statusBadge { display: inline-block; font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.05em; }.admin-orders-scope .adminNote { font-size: 0.7rem; color: var(--color-text-muted); margin-top: 3px; font-style: italic; }.admin-orders-scope .actions { display: flex; gap: var(--space-2); }.admin-orders-scope .approveBtn { padding: 6px 12px; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius-md); font-size: 0.78rem; font-weight: 700; color: #16a34a; cursor: pointer; transition: all var(--transition-fast); }.admin-orders-scope .approveBtn:hover:not(:disabled) { background: #dcfce7; border-color: #4ade80; }.admin-orders-scope .rejectBtn { padding: 6px 12px; background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius-md); font-size: 0.78rem; font-weight: 700; color: #dc2626; cursor: pointer; transition: all var(--transition-fast); }.admin-orders-scope .rejectBtn:hover:not(:disabled) { background: #fee2e2; }.admin-orders-scope .approveBtn:disabled, .admin-orders-scope .rejectBtn:disabled { opacity: 0.5; cursor: not-allowed; }.admin-orders-scope .processed { font-size: 0.78rem; color: var(--color-text-muted); font-weight: 500; }/* Note modal */.admin-orders-scope .modalBg { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; }.admin-orders-scope .noteModal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 201; background: white; border-radius: var(--radius-xl); padding: var(--space-8); width: 420px; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; gap: var(--space-4); }.admin-orders-scope .noteTitle { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }.admin-orders-scope .noteSub { font-size: 0.875rem; color: var(--color-text-secondary); }.admin-orders-scope .noteInput { width: 100%; padding: 10px 12px; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.9rem; resize: vertical; outline: none; }.admin-orders-scope .noteInput:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-light); }.admin-orders-scope .noteActions { display: flex; gap: var(--space-3); }.admin-orders-scope .cancelBtn { padding: 10px 18px; border: 1px solid var(--color-border); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; color: var(--color-text-secondary); cursor: pointer; background: white; }.admin-orders-scope .confirmApprove { flex: 1; padding: 10px; background: #16a34a; color: white; border: none; border-radius: var(--radius-full); font-weight: 700; cursor: pointer; }.admin-orders-scope .confirmApprove:hover:not(:disabled) { background: #15803d; }.admin-orders-scope .confirmReject { flex: 1; padding: 10px; background: #dc2626; color: white; border: none; border-radius: var(--radius-full); font-weight: 700; cursor: pointer; }.admin-orders-scope .confirmReject:hover:not(:disabled) { background: #b91c1c; }.admin-orders-scope .confirmApprove:disabled, .admin-orders-scope .confirmReject:disabled { opacity: 0.7; cursor: not-allowed; }

/* Scoped styles for about */
.about-scope .page {
  padding-top: var(--nav-height);
}/* Hero */.about-scope .hero {
  padding: var(--space-20) 0;
}.about-scope .heroInner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 700px;
}.about-scope .heroTitle {
  line-height: 1.1;
}.about-scope .heroSub {
  max-width: 560px;
}/* Belief */.about-scope .beliefSection {
  background: var(--color-bg-subtle);
}.about-scope .beliefInner {
  max-width: 760px;
}.about-scope .beliefCard {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}.about-scope .beliefTitle { margin-bottom: var(--space-2); }.about-scope .beliefText em {
  font-style: italic;
  color: var(--color-accent);
}/* Shipping */.about-scope .shippingSection {}.about-scope .shippingTitle {
  margin-bottom: var(--space-10);
}.about-scope .shippingGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}.about-scope .shippingCard {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  flex-direction: row;
  padding: var(--space-5) var(--space-6);
}.about-scope .shippingIcon { font-size: 1.5rem; flex-shrink: 0; }.about-scope .shippingText {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.5;
}/* Careers */.about-scope .careersSection {
  background: var(--color-bg-subtle);
}.about-scope .careersInner {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}.about-scope .careersText {}/* Press */.about-scope .pressSection {
  border-top: 1px solid var(--color-border);
}.about-scope .pressInner {
  display: flex;
  align-items: baseline;
  gap: var(--space-6);
  flex-wrap: wrap;
}.about-scope .pressTitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}.about-scope .pressText { font-size: 0.95rem; }.about-scope .pressLink {
  color: var(--color-accent);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}.about-scope .pressLink:hover { opacity: 0.7; }/* Back */.about-scope .back { padding-bottom: var(--space-16); }@media (max-width: 640px) {
.about-scope .shippingGrid { grid-template-columns: 1fr; }.about-scope .pressInner { flex-direction: column; gap: var(--space-2); }
}

/* Scoped styles for dashboard */
.dashboard-scope .page { display: flex; flex-direction: column; gap: var(--space-8); }.dashboard-scope .greeting { margin-bottom: calc(-1 * var(--space-2)); }.dashboard-scope .greetTitle { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.dashboard-scope .greetSub { font-size: 0.9rem; color: var(--color-text-secondary); margin-top: 4px; }/* Stats */.dashboard-scope .statsRow { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }.dashboard-scope .statCard {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}.dashboard-scope .statWarn { border-color: #fcd34d; background: #fffbeb; }.dashboard-scope .statIcon { font-size: 1.8rem; }.dashboard-scope .statValue { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text-primary); }.dashboard-scope .statLabel { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 500; }/* Section */.dashboard-scope .section { display: flex; flex-direction: column; gap: var(--space-4); }.dashboard-scope .sectionRow { display: flex; align-items: center; justify-content: space-between; }.dashboard-scope .sectionTitle { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }.dashboard-scope .viewAll { font-size: 0.85rem; color: var(--color-accent); font-weight: 600; transition: opacity var(--transition-fast); }.dashboard-scope .viewAll:hover { opacity: 0.7; }/* Quick Actions */.dashboard-scope .quickGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }.dashboard-scope .quickCard {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--qa-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-decoration: none;
  transition: all var(--transition-base);
}.dashboard-scope .quickCard:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }.dashboard-scope .quickIcon { font-size: 1.8rem; flex-shrink: 0; }.dashboard-scope .quickLabel { font-size: 0.95rem; font-weight: 700; color: var(--color-text-primary); font-family: var(--font-display); }.dashboard-scope .quickDesc { font-size: 0.78rem; color: var(--color-text-secondary); margin-top: 2px; }.dashboard-scope .quickArrow { margin-left: auto; color: var(--qa-accent); font-size: 1.1rem; }/* Orders */.dashboard-scope .empty {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}.dashboard-scope .empty span { font-size: 2rem; }.dashboard-scope .empty p { font-size: 0.9rem; color: var(--color-text-muted); }.dashboard-scope .orderList {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}.dashboard-scope .orderRow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}.dashboard-scope .orderRow:last-child { border-bottom: none; }.dashboard-scope .orderRow:hover { background: var(--color-bg-subtle); }.dashboard-scope .orderIcon {
  width: 38px; height: 38px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}.dashboard-scope .orderInfo { flex: 1; min-width: 0; }.dashboard-scope .orderTitle { font-size: 0.9rem; font-weight: 600; color: var(--color-text-primary); }.dashboard-scope .orderSub { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 2px; }.dashboard-scope .orderRight { text-align: right; flex-shrink: 0; }.dashboard-scope .orderAmount { font-size: 0.9rem; font-weight: 700; color: var(--color-text-primary); }.dashboard-scope .badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}@media (max-width: 900px) {
.dashboard-scope .statsRow { grid-template-columns: repeat(2, 1fr); }.dashboard-scope .quickGrid { grid-template-columns: 1fr; }
}@media (max-width: 600px) {
.dashboard-scope .statsRow { grid-template-columns: 1fr; }
}

/* Scoped styles for dash-layout */
.dash-layout-scope .layout {
  display: flex;
  min-height: 100vh;
  background: var(--color-bg-subtle);
}.dash-layout-scope .main {
  margin-left: 240px;
  flex: 1;
  min-height: 100vh;
}.dash-layout-scope .content {
  padding: var(--space-8) var(--space-10);
  max-width: 1100px;
}@media (max-width: 900px) {
  .dash-layout-scope .main { margin-left: 0; padding-top: 60px; }
  .dash-layout-scope .content { padding: var(--space-6); }
  
  .dash-layout-scope .mobile-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 var(--space-5);
    background: white;
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .dash-layout-scope .menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dash-layout-scope .mobile-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
  }
  .dash-layout-scope .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }
  .dash-layout-scope .sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 901px) {
  .dash-layout-scope .mobile-dash-header { display: none; }
  .dash-layout-scope .sidebar-overlay { display: none; }
}

/* Scoped styles for bills-page */
.bills-page-scope .page { display: flex; flex-direction: column; gap: var(--space-8); max-width: 700px; }.bills-page-scope .header { display: flex; flex-direction: column; gap: var(--space-2); }.bills-page-scope .title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.bills-page-scope .sub { font-size: 0.95rem; color: var(--color-text-secondary); }.bills-page-scope .typeGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }.bills-page-scope .typeCard {
  background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-6); display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  cursor: pointer; transition: all var(--transition-base);
}.bills-page-scope .typeCard:hover { border-color: var(--color-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }.bills-page-scope .typeIcon { font-size: 2rem; }.bills-page-scope .typeLabel { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--color-text-primary); }.bills-page-scope .formCard { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }.bills-page-scope .formCardHeader {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-6); background: var(--color-bg-subtle);
  border-bottom: 1px solid var(--color-border); font-size: 0.9rem; font-weight: 600;
}.bills-page-scope .backLink { color: var(--color-accent); cursor: pointer; background: none; border: none; font-size: 0.9rem; font-weight: 600; }.bills-page-scope .formBody { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-5); }.bills-page-scope .field { display: flex; flex-direction: column; gap: var(--space-2); }.bills-page-scope .label { font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); }.bills-page-scope .input, .bills-page-scope .select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--color-text-primary); background: white; outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}.bills-page-scope .input:focus, .bills-page-scope .select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-light); }.bills-page-scope .select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a8aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer; }.bills-page-scope .formError { font-size: 0.85rem; color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-md); padding: var(--space-3) var(--space-4); }.bills-page-scope .payBtn {
  width: 100%; padding: 13px; background: var(--color-accent); color: white; border: none;
  border-radius: var(--radius-full); font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; box-shadow: var(--shadow-accent); transition: all var(--transition-base);
}.bills-page-scope .payBtn:hover:not(:disabled) { background: var(--color-accent-hover); transform: translateY(-1px); }.bills-page-scope .payBtn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }/* UPI step */.bills-page-scope .upiCard { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-6); align-items: center; }.bills-page-scope .upiTitle { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }.bills-page-scope .summaryCard { width: 100%; background: var(--color-bg-subtle); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }.bills-page-scope .summaryRow { display: flex; justify-content: space-between; font-size: 0.9rem; }.bills-page-scope .summaryRow span { color: var(--color-text-muted); }.bills-page-scope .summaryRow strong { color: var(--color-text-primary); font-weight: 600; }.bills-page-scope .summaryAmt { color: var(--color-accent) !important; font-size: 1.05rem; }.bills-page-scope .qrWrap { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }.bills-page-scope .qr { border-radius: var(--radius-md); }.bills-page-scope .upiId { font-size: 0.9rem; font-weight: 600; }.bills-page-scope .upiAmt { font-size: 1rem; font-weight: 700; color: var(--color-accent); }.bills-page-scope .upiActions { display: flex; gap: var(--space-3); width: 100%; }.bills-page-scope .backBtn { padding: 13px 20px; border: 1.5px solid var(--color-border); border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 600; color: var(--color-text-secondary); cursor: pointer; background: white; }.bills-page-scope .paidBtn { flex: 1; padding: 13px; background: var(--color-green); color: white; border: none; border-radius: var(--radius-full); font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; cursor: pointer; }.bills-page-scope .paidBtn:hover:not(:disabled) { background: #15803d; }.bills-page-scope .paidBtn:disabled { opacity: 0.7; cursor: not-allowed; }.bills-page-scope .note { font-size: 0.78rem; color: var(--color-text-muted); text-align: center; }/* Success */.bills-page-scope .successBox { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-xl); padding: var(--space-12); text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }.bills-page-scope .successIcon { font-size: 3rem; }.bills-page-scope .successBox h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #15803d; }.bills-page-scope .successBox p { font-size: 0.9rem; color: #16a34a; max-width: 400px; }.bills-page-scope .anotherBtn { padding: 10px 22px; background: var(--color-accent); color: white; border: none; border-radius: var(--radius-full); font-weight: 600; cursor: pointer; }@media (max-width: 600px) {
.bills-page-scope .typeGrid { grid-template-columns: repeat(2, 1fr); }
}

/* Scoped styles for profile */
.profile-scope .page { display: flex; flex-direction: column; gap: var(--space-6); max-width: 600px; }.profile-scope .title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.profile-scope .card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }.profile-scope .avatarSection { display: flex; align-items: center; gap: var(--space-5); padding: var(--space-8); }.profile-scope .avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--color-accent); color: white; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }.profile-scope .name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }.profile-scope .role { font-size: 0.8rem; font-weight: 600; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }.profile-scope .divider { height: 1px; background: var(--color-border); }.profile-scope .details { padding: var(--space-6); display: flex; flex-direction: column; gap: 0; }.profile-scope .detailRow { display: flex; justify-content: space-between; align-items: center; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }.profile-scope .detailRow:last-child { border-bottom: none; }.profile-scope .detailLabel { font-size: 0.875rem; color: var(--color-text-muted); font-weight: 500; }.profile-scope .detailValue { font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); }

/* Scoped styles for recharge-page */
.recharge-page-scope .page { display: flex; flex-direction: column; gap: var(--space-8); max-width: 700px; }.recharge-page-scope .header { display: flex; flex-direction: column; gap: var(--space-2); }.recharge-page-scope .title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.recharge-page-scope .sub { font-size: 0.95rem; color: var(--color-text-secondary); }.recharge-page-scope .successBox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: #16a34a;
  font-weight: 500;
}.recharge-page-scope .operatorsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}.recharge-page-scope .opCard {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: all var(--transition-base);
}.recharge-page-scope .opCard:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }.recharge-page-scope .opEmoji { font-size: 2rem; }.recharge-page-scope .opName { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--color-text-primary); }.recharge-page-scope .opDesc { font-size: 0.75rem; color: var(--color-text-muted); }.recharge-page-scope .divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}.recharge-page-scope .divider::before, .recharge-page-scope .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--color-border);
}.recharge-page-scope .openBtn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px 24px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-base);
  align-self: flex-start;
}.recharge-page-scope .openBtn:hover { background: var(--color-accent-hover); transform: translateY(-1px); }@media (max-width: 600px) {
.recharge-page-scope .operatorsGrid { grid-template-columns: repeat(2, 1fr); }
}

/* Scoped styles for orders */
.orders-scope .page { display: flex; flex-direction: column; gap: var(--space-8); }.orders-scope .header { display: flex; flex-direction: column; gap: var(--space-2); }.orders-scope .title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }.orders-scope .sub { font-size: 0.95rem; color: var(--color-text-secondary); }.orders-scope .empty { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-16); text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }.orders-scope .empty span { font-size: 2.5rem; }.orders-scope .empty p { font-size: 0.9rem; color: var(--color-text-muted); }.orders-scope .table { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; }.orders-scope .tableHead {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1.2fr 1fr;
  padding: var(--space-3) var(--space-5);
  background: var(--color-bg-subtle);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted);
}.orders-scope .tableRow {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1.2fr 1fr;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  transition: background var(--transition-fast);
}.orders-scope .tableRow:last-child { border-bottom: none; }.orders-scope .tableRow:hover { background: var(--color-bg-subtle); }.orders-scope .serviceCell { display: flex; align-items: center; gap: var(--space-3); }.orders-scope .rowIcon { font-size: 1.2rem; width: 36px; height: 36px; background: var(--color-bg-subtle); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.orders-scope .serviceName { font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); }.orders-scope .serviceType { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 2px; }.orders-scope .cell { font-size: 0.875rem; color: var(--color-text-secondary); }.orders-scope .amount { font-weight: 700; color: var(--color-text-primary) !important; }.orders-scope .statusBadge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.05em; }.orders-scope .adminNote { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 4px; font-style: italic; }@media (max-width: 900px) {
.orders-scope .tableHead, .orders-scope .tableRow { grid-template-columns: 2fr 1fr 1fr; }.orders-scope .tableHead span:nth-child(2), .orders-scope .tableRow .cell:nth-child(2), .orders-scope .tableHead span:nth-child(4), .orders-scope .tableRow .cell:nth-child(4) { display: none; }
}

/* Scoped styles for login */
.login-scope .page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 50%, #f0f9ff 100%);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}.login-scope .card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}.login-scope .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  align-self: flex-start;
}.login-scope .logo span:first-child { font-size: 1.4rem; }.login-scope .header { display: flex; flex-direction: column; gap: var(--space-1); }.login-scope .title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}.login-scope .sub { font-size: 0.95rem; color: var(--color-text-secondary); }/* Error */.login-scope .errorBox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #dc2626;
}/* Form */.login-scope .form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}.login-scope .field { display: flex; flex-direction: column; gap: var(--space-2); }.login-scope .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}.login-scope .labelRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}.login-scope .input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}.login-scope .input::placeholder { color: var(--color-text-disabled); }.login-scope .input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}.login-scope .submitBtn {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 1rem;
  margin-top: var(--space-2);
}.login-scope .submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}/* Spinner */.login-scope .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}@keyframes spin { to { transform: rotate(360deg); } }.login-scope .footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}.login-scope .link {
  color: var(--color-accent);
  font-weight: 600;
  transition: opacity var(--transition-fast);
}.login-scope .link:hover { opacity: 0.75; }/* Background decorations */.login-scope .bgDeco1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.07) 0%, transparent 70%);
  pointer-events: none;
}.login-scope .bgDeco2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
  pointer-events: none;
}@media (max-width: 480px) {
.login-scope .card { padding: var(--space-8) var(--space-6); }
}

/* Scoped styles for FeaturesSection */
.features-section-scope .section {
  padding: var(--space-16) 0;
}/* Header — same as ServicesSection */.features-section-scope .header {
  text-align: center;
  margin-bottom: var(--space-10);
}.features-section-scope .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}.features-section-scope .title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}.features-section-scope .accent {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}.features-section-scope .sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto;
}/* 3-column grid */.features-section-scope .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}/* Card — same base as ServicesSection */.features-section-scope .card {
  background: var(--card-color, #eef2ff);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.features-section-scope .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}.features-section-scope .cardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}.features-section-scope .iconBubble {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}.features-section-scope .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}.features-section-scope .cardTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d0d1a;
  font-family: var(--font-display);
  line-height: 1.3;
}.features-section-scope .cardDesc {
  font-size: 0.82rem;
  color: #4a4a6a;
  line-height: 1.55;
  flex: 1;
}.features-section-scope .cardFooter {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
  margin-top: 4px;
}/* Live chip — identical to ServicesSection */.features-section-scope .liveChip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #dcfce7;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #15803d;
}.features-section-scope .liveDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: blink 1.8s ease-in-out infinite;
}@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}@media (max-width: 768px) {
.features-section-scope .grid { grid-template-columns: 1fr; max-width: 480px; }
}@media (min-width: 769px) and (max-width: 1024px) {
.features-section-scope .grid { grid-template-columns: repeat(2, 1fr); }
}

/* Scoped styles for Footer */
.footer-scope .footer {
  background: var(--color-text-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-20) 0 var(--space-8);
}.footer-scope .inner {}.footer-scope .top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}/* Brand */.footer-scope .brand {}.footer-scope .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-4);
}.footer-scope .logoIcon {
  font-size: 1.3rem;
}.footer-scope .logoText {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}.footer-scope .tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-4);
  max-width: 280px;
}.footer-scope .email {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}.footer-scope .email:hover {
  color: #ffffff;
}/* Links */.footer-scope .links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}.footer-scope .linkGroup {}.footer-scope .groupTitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-4);
}.footer-scope .linkGroup ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}.footer-scope .link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}.footer-scope .link:hover {
  color: #ffffff;
}/* Bottom */.footer-scope .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}.footer-scope .madeIn {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}@media (max-width: 768px) {
.footer-scope .top {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }.footer-scope .links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }.footer-scope .tagline { max-width: 100%; }.footer-scope .bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}@media (max-width: 480px) {
.footer-scope .links { grid-template-columns: 1fr; }
}

/* Scoped styles for ServicesSection */
.services-section-scope .section {
  padding: var(--space-16) 0;
}/* Header */.services-section-scope .header {
  text-align: center;
  margin-bottom: var(--space-10);
}.services-section-scope .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}.services-section-scope .title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}.services-section-scope .accent {
  background: linear-gradient(135deg, #4f46e5, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}.services-section-scope .sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 440px;
  margin: 0 auto;
}/* Two-column grid */.services-section-scope .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}/* Card */.services-section-scope .card {
  background: var(--card-color, #eef2ff);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}.services-section-scope .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}.services-section-scope .cardInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}.services-section-scope .cardLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}.services-section-scope .iconBubble {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}.services-section-scope .cardTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d0d1a;
  font-family: var(--font-display);
}.services-section-scope .cardSub {
  font-size: 0.72rem;
  color: #8a8aaa;
  margin-top: 2px;
}/* Live chip */.services-section-scope .liveChip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #dcfce7;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #15803d;
  flex-shrink: 0;
}.services-section-scope .liveDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: blink 1.8s ease-in-out infinite;
}@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}/* Pills */.services-section-scope .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}.services-section-scope .pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0d0d1a;
  transition: all 0.15s;
  cursor: default;
}.services-section-scope .pill:hover {
  border-color: var(--pill-accent);
  color: var(--pill-accent);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}/* Footer note */.services-section-scope .cardFooter {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
}.services-section-scope .footerNote {
  font-size: 0.72rem;
  color: #8a8aaa;
}@media (max-width: 640px) {
.services-section-scope .grid { grid-template-columns: 1fr; }.services-section-scope .card { padding: 18px; }
}

/* Scoped styles for HeroSection */
.hero-section-scope .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}.hero-section-scope .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
  pointer-events: none;
}.hero-section-scope .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
}/* Copy */.hero-section-scope .copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}.hero-section-scope .badge {
  align-self: flex-start;
}.hero-section-scope .headline {
  line-height: 1.1;
}.hero-section-scope .sub {
  max-width: 480px;
  line-height: 1.7;
}

/* Quick Operators Widget */
.hero-section-scope .quickOperators {
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero-section-scope .quickOperatorsTitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}
.hero-section-scope .operatorsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  max-width: 480px;
}
.hero-section-scope .operatorCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  outline: none;
  font-family: inherit;
}
.hero-section-scope .operatorCard:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-section-scope .operatorCard:active {
  transform: translateY(0);
}
.hero-section-scope .operatorIcon {
  font-size: 1.4rem;
}
.hero-section-scope .operatorName {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-section-scope .actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}/* Stats */.hero-section-scope .stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-2);
}.hero-section-scope .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}.hero-section-scope .statValue {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}.hero-section-scope .statLabel {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}/* ── iPhone 15 Pro Mockup ── */.hero-section-scope .phoneWrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 72px;
}/* Outer titanium frame */.hero-section-scope .phone {
  width: 248px;
  background: linear-gradient(160deg, #b8b8c0 0%, #8e8e96 40%, #a8a8b0 70%, #c8c8d0 100%);
  border-radius: 50px;
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 50px 100px rgba(0,0,0,0.4),
    0 20px 40px rgba(0,0,0,0.25),
    0 4px 8px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}/* Side buttons — volume */.hero-section-scope .phone::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 90px;
  width: 4px;
  height: 32px;
  background: linear-gradient(180deg, #909098, #a0a0a8);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 38px 0 #909098, 0 76px 0 #909098;
}/* Side button — power */.hero-section-scope .phone::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 110px;
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, #909098, #a0a0a8);
  border-radius: 0 3px 3px 0;
}/* Inner black bezel */.hero-section-scope .phoneInner {
  background: #000;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
}/* Dynamic Island */.hero-section-scope .phoneDynamicIsland {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}.hero-section-scope .phoneScreen {
  background: linear-gradient(180deg, #f0f2f8 0%, #f8f9fd 100%);
  padding: 52px 14px 14px;
  min-height: 440px;
  position: relative;
}.hero-section-scope .phoneHomeBar {
  height: 24px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}.hero-section-scope .phoneHomeBar::after {
  content: '';
  width: 100px;
  height: 5px;
  background: #333;
  border-radius: 5px;
}/* ── App UI inside screen ── */.hero-section-scope .appHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}.hero-section-scope .appGreet {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0d0d1a;
  letter-spacing: -0.01em;
}.hero-section-scope .appName {
  font-size: 0.6rem;
  color: #8a8aaa;
  margin-top: 1px;
}.hero-section-scope .appAvatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  font-size: 0.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(79,70,229,0.4);
}.hero-section-scope .appActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}.hero-section-scope .btnRecharge, .hero-section-scope .btnBill {
  border: none;
  border-radius: 14px;
  padding: 12px 6px;
  font-size: 0.66rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.01em;
}.hero-section-scope .btnRecharge {
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  color: white;
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}.hero-section-scope .btnBill {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: white;
  box-shadow: 0 4px 12px rgba(249,115,22,0.35);
}.hero-section-scope .txLabel {
  font-size: 0.58rem;
  font-weight: 800;
  color: #8a8aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}.hero-section-scope .txList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}.hero-section-scope .txRow {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 12px;
  padding: 9px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}.hero-section-scope .txIcon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f4f6fb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}.hero-section-scope .txInfo { flex: 1; min-width: 0; }.hero-section-scope .txName {
  font-size: 0.64rem;
  font-weight: 700;
  color: #0d0d1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}.hero-section-scope .txStatus {
  font-size: 0.56rem;
  color: #16a34a;
  font-weight: 600;
}.hero-section-scope .txAmt {
  font-size: 0.64rem;
  font-weight: 800;
  color: #0d0d1a;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}/* ── Floating notification cards ── */.hero-section-scope .floatCard1, .hero-section-scope .floatCard2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 5;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}.hero-section-scope .floatCard1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}.hero-section-scope .floatCard2 {
  bottom: 18%;
  right: -20px;
  animation-delay: 2s;
}@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}.hero-section-scope .floatCardIcon { font-size: 1.3rem; flex-shrink: 0; }.hero-section-scope .floatCardTitle {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0d0d1a;
  letter-spacing: -0.01em;
}.hero-section-scope .floatCardSub {
  font-size: 0.68rem;
  color: #8a8aaa;
  margin-top: 1px;
}@media (max-width: 1024px) {
.hero-section-scope .inner {
    grid-template-columns: 1fr;
    text-align: center;
  }.hero-section-scope .copy {
    align-items: center;
  }.hero-section-scope .sub {
    max-width: 600px;
    text-align: center;
  }.hero-section-scope .stats {
    justify-content: center;
  }.hero-section-scope .badge1 { display: none; }.hero-section-scope .badge2 { display: none; }.hero-section-scope .mockup { max-width: 380px; }
  .hero-section-scope .operatorsGrid {
    justify-content: center;
  }
}@media (max-width: 640px) {
.hero-section-scope .hero {
    padding-bottom: var(--space-12);
  }.hero-section-scope .actions {
    justify-content: center;
  }.hero-section-scope .mockup { max-width: 300px; }
}
@media (max-width: 480px) {
  .hero-section-scope .operatorsGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
}

/* Scoped styles for BillModal */
/* Shared with RechargeModal style */.bill-modal-scope .backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 200; animation: fadeIn 0.2s ease; }@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }.bill-modal-scope .modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 201; background: #fff; border-radius: 20px;
  width: 520px; max-width: calc(100vw - 32px); max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  animation: slideUp 0.25s ease;
}@keyframes slideUp {
  from { opacity:0; transform: translate(-50%, calc(-50% + 20px)); }
  to   { opacity:1; transform: translate(-50%,-50%); }
}.bill-modal-scope .header { display:flex; align-items:flex-start; justify-content:space-between; padding: 24px 24px 16px; border-bottom: 1px solid #f0f0f0; }.bill-modal-scope .title { font-size:1.15rem; font-weight:700; color:#0d0d1a; font-family: var(--font-display); }.bill-modal-scope .sub { font-size:0.82rem; color:#8a8aaa; margin-top:3px; }.bill-modal-scope .closeBtn { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.9rem; color:#8a8aaa; background:#f5f5f8; border:none; cursor:pointer; transition:background 0.15s; flex-shrink:0; }.bill-modal-scope .closeBtn:hover { background:#e8e8f0; color:#0d0d1a; }.bill-modal-scope .body { padding: 20px 24px 24px; display:flex; flex-direction:column; gap:14px; }/* Bill type grid */.bill-modal-scope .typeGrid { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }.bill-modal-scope .typeCard { background:white; border:1.5px solid #e8e8f0; border-radius:14px; padding:18px 12px; display:flex; flex-direction:column; align-items:center; gap:8px; cursor:pointer; transition:all 0.15s; }.bill-modal-scope .typeCard:hover { border-color: #4f46e5; transform:translateY(-2px); box-shadow:0 6px 20px rgba(79,70,229,0.12); }.bill-modal-scope .typeIcon { font-size:1.8rem; }.bill-modal-scope .typeLabel { font-family: var(--font-display); font-size:0.82rem; font-weight:700; color:#0d0d1a; }/* Form fields */.bill-modal-scope .field { display:flex; flex-direction:column; gap:6px; }.bill-modal-scope .label { font-size:0.8rem; font-weight:600; color:#4a4a6a; }.bill-modal-scope .input { width:100%; height:44px; padding:0 14px; border:1.5px solid #e8e8f0; border-radius:10px; font-family:var(--font-body); font-size:0.9rem; color:#0d0d1a; background:white; outline:none; transition:border-color 0.15s, box-shadow 0.15s; }.bill-modal-scope .input:focus { border-color:#4f46e5; box-shadow:0 0 0 3px rgba(79,70,229,0.1); }.bill-modal-scope .select { width:100%; height:44px; padding:0 14px; border:1.5px solid #e8e8f0; border-radius:10px; font-family:var(--font-body); font-size:0.9rem; color:#0d0d1a; background:white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a8aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center; appearance:none; outline:none; cursor:pointer; transition:border-color 0.15s; }.bill-modal-scope .select:focus { border-color:#4f46e5; box-shadow:0 0 0 3px rgba(79,70,229,0.1); }.bill-modal-scope .error { font-size:0.82rem; color:#dc2626; background:#fef2f2; border:1px solid #fecaca; border-radius:10px; padding:10px 14px; }/* Actions row */.bill-modal-scope .formActions { display:flex; gap:12px; align-items:center; margin-top:4px; }.bill-modal-scope .backBtn { height:48px; padding:0 20px; border:1.5px solid #e8e8f0; border-radius:999px; background:white; font-size:0.9rem; font-weight:600; color:#4a4a6a; cursor:pointer; white-space:nowrap; transition:all 0.15s; flex-shrink:0; }.bill-modal-scope .backBtn:hover { border-color:#c0c0d8; color:#0d0d1a; }.bill-modal-scope .continueBtn { flex:1; height:48px; background:#4f46e5; color:white; border:none; border-radius:999px; font-family:var(--font-display); font-size:0.95rem; font-weight:700; cursor:pointer; transition:all 0.2s; box-shadow:0 8px 20px -4px rgba(79,70,229,0.35); }.bill-modal-scope .continueBtn:hover:not(:disabled) { background:#4338ca; transform:translateY(-1px); }.bill-modal-scope .continueBtn:disabled { opacity:0.45; cursor:not-allowed; }.bill-modal-scope .paidBtn { flex:1; height:48px; background:#f43f6b; color:white; border:none; border-radius:999px; font-family:var(--font-display); font-size:0.95rem; font-weight:700; cursor:pointer; transition:all 0.2s; box-shadow:0 8px 20px -4px rgba(244,63,107,0.4); }.bill-modal-scope .paidBtn:hover:not(:disabled) { background:#e11d54; transform:translateY(-1px); }.bill-modal-scope .paidBtn:disabled { opacity:0.6; cursor:not-allowed; }/* Review cards */.bill-modal-scope .reviewCard { background:#f7f7fb; border-radius:14px; padding:16px; display:flex; flex-direction:column; gap:6px; }.bill-modal-scope .reviewCardLabel { font-size:0.68rem; font-weight:700; letter-spacing:0.08em; color:#8a8aaa; text-transform:uppercase; margin-bottom:6px; }.bill-modal-scope .reviewName { font-size:0.95rem; font-weight:700; color:#0d0d1a; }.bill-modal-scope .reviewEmail { font-size:0.82rem; color:#8a8aaa; }.bill-modal-scope .reviewRow { display:flex; align-items:center; justify-content:space-between; padding:4px 0; }.bill-modal-scope .reviewKey { font-size:0.88rem; color:#4a4a6a; }.bill-modal-scope .reviewVal { font-size:0.88rem; font-weight:600; color:#0d0d1a; }.bill-modal-scope .reviewAmountRow { margin-top:8px; padding-top:12px; border-top:1px solid #e8e8f0; }.bill-modal-scope .reviewBigAmount { font-size:1.35rem; font-weight:800; color:#0d0d1a; font-family:var(--font-display); letter-spacing:-0.02em; }/* UPI section */.bill-modal-scope .upiLayout { display:flex; gap:16px; align-items:flex-start; margin-top:4px; }.bill-modal-scope .qr { border-radius:8px; flex-shrink:0; border:1px solid #e8e8f0; }.bill-modal-scope .upiRight { flex:1; display:flex; flex-direction:column; gap:10px; }.bill-modal-scope .upiHint { font-size:0.82rem; color:#4a4a6a; line-height:1.5; }.bill-modal-scope .upiIdBox { display:flex; align-items:center; justify-content:space-between; background:white; border:1px solid #e8e8f0; border-radius:10px; padding:10px 12px; }.bill-modal-scope .upiIdLabel { font-size:0.68rem; font-weight:700; color:#8a8aaa; text-transform:uppercase; letter-spacing:0.06em; }.bill-modal-scope .upiIdValue { font-size:0.85rem; font-weight:600; color:#0d0d1a; margin-top:2px; font-family:monospace; }.bill-modal-scope .copyBtn { width:30px; height:30px; border-radius:8px; background:#f0f0f8; border:none; font-size:1rem; color:#4a4a6a; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.15s; }.bill-modal-scope .copyBtn:hover { background:#e0e0f0; color:#4f46e5; }.bill-modal-scope .note { font-size:0.78rem; color:#8a8aaa; text-align:center; }@media (max-width: 480px) {
.bill-modal-scope .typeGrid { grid-template-columns: repeat(2,1fr); }
}

/* Scoped styles for WorkspaceSection */
.workspace-section-scope .section {
  padding: var(--space-24) 0;
}.workspace-section-scope .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}/* Copy */.workspace-section-scope .copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}.workspace-section-scope .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}.workspace-section-scope .headline {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
}.workspace-section-scope .gradientText {
  background: linear-gradient(135deg, #4f46e5, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}.workspace-section-scope .desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 420px;
}/* Stat badges */.workspace-section-scope .stats {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: 16px 20px;
  background: #f7f7fb;
  border-radius: 14px;
  border: 1px solid #e8e8f0;
}.workspace-section-scope .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}.workspace-section-scope .statVal {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #0d0d1a;
  letter-spacing: -0.02em;
}.workspace-section-scope .statLabel {
  font-size: 0.72rem;
  color: #8a8aaa;
  font-weight: 500;
}.workspace-section-scope .statDivider {
  width: 1px;
  height: 32px;
  background: #e8e8f0;
  flex-shrink: 0;
}/* Feature pills */.workspace-section-scope .featurePills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}.workspace-section-scope .featurePill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: white;
  border: 1.5px solid #e8e8f0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d0d1a;
  transition: all 0.15s;
}.workspace-section-scope .featurePill:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,70,229,0.12);
}/* Panel */.workspace-section-scope .panel {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}/* Panel Header */.workspace-section-scope .panelHeader {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-subtle);
}.workspace-section-scope .panelTitle {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}.workspace-section-scope .panelAvatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}.workspace-section-scope .panelName {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
}.workspace-section-scope .panelSub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}.workspace-section-scope .panelBell {
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
}/* Quick Actions */.workspace-section-scope .quickActions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
}.workspace-section-scope .quickAction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast);
}.workspace-section-scope .quickAction:hover {
  transform: scale(1.04);
}.workspace-section-scope .qaIcon { font-size: 1.4rem; }.workspace-section-scope .qaLabel {
  font-size: 0.75rem;
  font-weight: 600;
}/* Activity */.workspace-section-scope .activitySection {
  padding: var(--space-5) var(--space-6);
}.workspace-section-scope .activityTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}.workspace-section-scope .activityTitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}.workspace-section-scope .liveTag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #16a34a;
  animation: pulse 2s ease-in-out infinite;
}@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}.workspace-section-scope .activityList {
  display: flex;
  flex-direction: column;
  gap: 0;
}.workspace-section-scope .txRow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}.workspace-section-scope .txRow:last-child { border-bottom: none; }.workspace-section-scope .txRow:hover {
  background: var(--color-bg-subtle);
  margin: 0 calc(-1 * var(--space-2));
  padding-left: var(--space-2);
  padding-right: var(--space-2);
  border-radius: var(--radius-sm);
}.workspace-section-scope .txIcon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}.workspace-section-scope .txInfo { flex: 1; min-width: 0; }.workspace-section-scope .txTitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}.workspace-section-scope .txSub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}.workspace-section-scope .txRight { text-align: right; flex-shrink: 0; }.workspace-section-scope .txAmount {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
}.workspace-section-scope .txTime {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}.workspace-section-scope .txStatus {
  font-size: 0.68rem;
  font-weight: 700;
  display: block;
}/* Skeleton */.workspace-section-scope .skeletonIcon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, #f0f0f8 25%, #e0e0f0 50%, #f0f0f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  flex-shrink: 0;
}.workspace-section-scope .skeletonLines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}.workspace-section-scope .skeletonLine {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f8 25%, #e0e0f0 50%, #f0f0f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  display: block;
}@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}/* Empty state */.workspace-section-scope .emptyState {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--space-8) 0;
  text-align: center;
}.workspace-section-scope .emptyState span { font-size: 1.8rem; }.workspace-section-scope .emptyState p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}@media (max-width: 1024px) {
.workspace-section-scope .inner {
    grid-template-columns: 1fr;
  }.workspace-section-scope .desc { max-width: 100%; }
}

/* Scoped styles for CtaSection */
.cta-section-scope .section {
  padding: var(--space-20) 0 var(--space-24);
}.cta-section-scope .inner {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 50%, #f0f9ff 100%);
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}.cta-section-scope .glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
}.cta-section-scope .badge {
  position: relative;
}.cta-section-scope .title {
  position: relative;
  max-width: 480px;
}.cta-section-scope .sub {
  color: var(--color-text-secondary);
  max-width: 500px;
  position: relative;
}.cta-section-scope .actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}.cta-section-scope .note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  position: relative;
}@media (max-width: 640px) {
.cta-section-scope .inner {
    padding: var(--space-10) var(--space-5);
  }.cta-section-scope .actions {
    flex-direction: column;
    align-items: stretch;
  }.cta-section-scope .actions a {
    justify-content: center;
  }
}

/* Scoped styles for SecuritySection */
.security-section-scope .section {
  padding: var(--space-24) 0;
  background: var(--color-text-primary);
  color: white;
  position: relative;
  overflow: hidden;
}.security-section-scope .section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
}.security-section-scope .inner {}.security-section-scope .header {
  text-align: center;
  margin-bottom: var(--space-16);
}.security-section-scope .header h2 {
  color: white;
}.security-section-scope .header p {
  color: rgba(255, 255, 255, 0.6);
}.security-section-scope .header .label {
  color: rgba(79, 70, 229, 0.9);
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}.security-section-scope .grid {}.security-section-scope .pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-base);
}.security-section-scope .pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}.security-section-scope .pillarIcon {
  font-size: 2rem;
  line-height: 1;
}.security-section-scope .highlight {
  align-self: flex-start;
  background: rgba(79, 70, 229, 0.2) !important;
  color: rgba(147, 130, 255, 0.95) !important;
  border: 1px solid rgba(79, 70, 229, 0.3) !important;
  font-size: 0.72rem;
  padding: 3px 10px;
}.security-section-scope .pillarTitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
}.security-section-scope .pillarDesc {
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 1.65;
}/* Trust bar */.security-section-scope .trustBar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-10);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}.security-section-scope .trustItem {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}.security-section-scope .checkmark {
  color: #22c55e;
  font-weight: 700;
}@media (max-width: 768px) {
.security-section-scope .trustBar {
    gap: var(--space-4) var(--space-6);
  }
}

/* Scoped styles for Navbar */
.navbar-scope .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base), border-bottom var(--transition-base);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}.navbar-scope .header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}.navbar-scope .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}/* Logo */.navbar-scope .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}.navbar-scope .logoIcon {
  font-size: 1.3rem;
  line-height: 1;
}.navbar-scope .logoText {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}/* Nav */.navbar-scope .nav {
  display: flex;
  align-items: center;
  gap: 4px;
}.navbar-scope .navLink {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
}.navbar-scope .navLink:hover {
  color: var(--color-text-primary);
  background: var(--color-bg-subtle);
}/* Actions */.navbar-scope .actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}.navbar-scope .ctaBtn {
  font-size: 0.875rem;
  padding: 9px 20px;
}.navbar-scope .loginBtn {
  font-size: 0.875rem;
  padding: 9px 18px;
}/* Hamburger */.navbar-scope .menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  position: relative;
}.navbar-scope .menuBtn:hover {
  background: var(--color-bg-subtle);
}.navbar-scope .menuIcon, .navbar-scope .menuIcon::before, .navbar-scope .menuIcon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  position: relative;
}.navbar-scope .menuIcon::before, .navbar-scope .menuIcon::after {
  content: '';
  position: absolute;
  left: 0;
}.navbar-scope .menuIcon::before { top: -6px; }.navbar-scope .menuIcon::after { top: 6px; }.navbar-scope .menuIcon.open { background: transparent; }.navbar-scope .menuIcon.open::before { transform: rotate(45deg); top: 0; }.navbar-scope .menuIcon.open::after { transform: rotate(-45deg); top: 0; }/* Mobile Menu */
.navbar-scope .mobileMenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: #ffffff !important;
  z-index: 2000 !important;
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.navbar-scope .mobileMenuHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.navbar-scope .closeBtn {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.navbar-scope .closeBtn:hover {
  background: var(--color-bg-muted);
  border-color: var(--color-border-strong);
}

.navbar-scope .mobileNav {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-5) var(--space-10);
  background: #ffffff;
}

.navbar-scope .mobileLinksList {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar-scope .mobileNavLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: var(--space-4) var(--space-2);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.navbar-scope .mobileNavLink .arrow {
  color: var(--color-text-muted);
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.navbar-scope .mobileNavLink:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  padding-left: var(--space-3);
}

.navbar-scope .mobileNavLink:hover .arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

.navbar-scope .mobileAuthRow {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.navbar-scope .mobileLoginBtn {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 13px 24px;
  font-size: 0.95rem;
}

.navbar-scope .mobileCta {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .navbar-scope .nav { display: none; }
  .navbar-scope .ctaBtn { display: none; }
  .navbar-scope .loginBtn { display: none; }
  .navbar-scope .menuBtn { display: flex; }
  .navbar-scope .mobileMenu { display: flex; flex-direction: column; }
}

/* Scoped styles for QuickRecharge */
/* ── Speed Dial Container ── */.quick-recharge-scope .speedDial {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}/* ── Main FAB ── */.quick-recharge-scope .fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px -4px rgba(79, 70, 229, 0.5), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  animation: fabPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  white-space: nowrap;
}.quick-recharge-scope .fab:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -4px rgba(79, 70, 229, 0.55), 0 4px 12px rgba(0,0,0,0.15);
}.quick-recharge-scope .fabActive {
  background: #374151;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}.quick-recharge-scope .fabActive:hover { background: #1f2937; }.quick-recharge-scope .fabIcon { font-size: 1.1rem; line-height: 1; }.quick-recharge-scope .fabLabel { white-space: nowrap; }@keyframes fabPop {
  from { opacity: 0; transform: translateY(16px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}/* ── Sub Buttons ── */.quick-recharge-scope .subBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  color: white;
  white-space: nowrap;
  transition: all 0.2s ease;
  animation: subPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  box-shadow: 0 6px 20px -4px rgba(0,0,0,0.25);
}.quick-recharge-scope .subBtn:hover { transform: translateY(-2px); }.quick-recharge-scope .subBtnRecharge {
  background: #4f46e5;
  box-shadow: 0 6px 20px -4px rgba(79,70,229,0.45);
}.quick-recharge-scope .subBtnRecharge:hover { background: #4338ca; }.quick-recharge-scope .subBtnBill {
  background: #059669;
  box-shadow: 0 6px 20px -4px rgba(5,150,105,0.45);
}.quick-recharge-scope .subBtnBill:hover { background: #047857; }@keyframes subPop {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}/* ── Success Toast ── */.quick-recharge-scope .toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 151;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #16a34a;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  max-width: 300px;
  animation: toastSlide 0.3s ease;
}@keyframes toastSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}.quick-recharge-scope .toastIcon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }.quick-recharge-scope .toastTitle { font-size: 0.875rem; font-weight: 700; color: #15803d; }.quick-recharge-scope .toastSub { font-size: 0.78rem; color: #4a4a6a; margin-top: 2px; }.quick-recharge-scope .toastClose { background: none; border: none; cursor: pointer; font-size: 0.75rem; color: #8a8aaa; padding: 2px; margin-left: auto; flex-shrink: 0; }.quick-recharge-scope .toastClose:hover { color: #4a4a6a; }@media (max-width: 480px) {
.quick-recharge-scope .speedDial { bottom: 20px; right: 16px; }.quick-recharge-scope .fab { padding: 12px 18px; font-size: 0.88rem; }.quick-recharge-scope .toast { right: 16px; bottom: 90px; }
}

/* Scoped styles for FaqSection */
.faq-section-scope .section {
  padding: var(--space-16) 0;
}/* Header */.faq-section-scope .header {
  text-align: center;
  margin-bottom: var(--space-10);
}.faq-section-scope .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}.faq-section-scope .title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}.faq-section-scope .accent {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}.faq-section-scope .sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}/* 2-column grid */.faq-section-scope .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}/* Accordion list (one per column) */.faq-section-scope .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}/* Item */.faq-section-scope .item {
  background: #f7f7fb;
  border: 1.5px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}.faq-section-scope .item:hover {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}.faq-section-scope .open {
  background: white;
  border-color: #e0e0f4;
  box-shadow: 0 6px 24px rgba(79,70,229,0.08);
}/* Question button */.faq-section-scope .question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}.faq-section-scope .qLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}.faq-section-scope .qIcon {
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  background: white;
  border: 1px solid #e8e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}.faq-section-scope .open .qIcon {
  border-color: #c7c7f0;
}.faq-section-scope .qText {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d0d1a;
  font-family: var(--font-display);
  line-height: 1.3;
}/* Chevron */.faq-section-scope .chevron {
  color: #8a8aaa;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
}.faq-section-scope .chevronOpen {
  transform: rotate(180deg);
  color: #4f46e5;
}/* Answer */.faq-section-scope .answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
}.faq-section-scope .answer p {
  font-size: 0.85rem;
  color: #4a4a6a;
  line-height: 1.65;
  padding: 0 18px 16px 64px;
}@media (max-width: 640px) {
.faq-section-scope .columns { grid-template-columns: 1fr; }.faq-section-scope .answer p { padding-left: 18px; }.faq-section-scope .qIcon { display: none; }
}

/* Scoped styles for AdminSidebar */
.admin-sidebar-scope .sidebar { width: 240px; min-height: 100vh; background: #1a1a2e; display: flex; flex-direction: column; padding: var(--space-6) 0; position: fixed; left: 0; top: 0; bottom: 0; z-index: 50; }.admin-sidebar-scope .logoWrap { display: flex; align-items: center; justify-content: space-between; padding: 0 var(--space-5) var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: var(--space-4); }.admin-sidebar-scope .logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: white; letter-spacing: -0.02em; }.admin-sidebar-scope .logo span:first-child { font-size: 1.2rem; }.admin-sidebar-scope .adminBadge { background: rgba(79,70,229,0.4); border: 1px solid rgba(79,70,229,0.5); border-radius: var(--radius-full); padding: 2px 8px; font-size: 0.65rem; font-weight: 700; color: #a5b4fc; text-transform: uppercase; letter-spacing: 0.06em; }.admin-sidebar-scope .nav { flex: 1; display: flex; flex-direction: column; gap: 2px; padding: 0 var(--space-3); }.admin-sidebar-scope .navItem { display: flex; align-items: center; gap: var(--space-3); padding: 10px var(--space-3); border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: all var(--transition-fast); position: relative; text-decoration: none; }.admin-sidebar-scope .navItem:hover { color: white; background: rgba(255,255,255,0.08); }.admin-sidebar-scope .icon { font-size: 1.05rem; width: 20px; text-align: center; }.admin-sidebar-scope .active { color: white !important; background: rgba(79,70,229,0.35) !important; }.admin-sidebar-scope .activeIndicator { position: absolute; left: -12px; top: 50%; transform: translateY(-50%); width: 3px; height: 20px; background: var(--color-accent); border-radius: 0 2px 2px 0; }.admin-sidebar-scope .footer { padding: var(--space-4) var(--space-4) 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: var(--space-3); }.admin-sidebar-scope .userInfo { display: flex; align-items: center; gap: var(--space-3); flex: 1; min-width: 0; }.admin-sidebar-scope .avatar { width: 34px; height: 34px; border-radius: 50%; background: #7c3aed; color: white; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }.admin-sidebar-scope .userText { min-width: 0; }.admin-sidebar-scope .userName { font-size: 0.82rem; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.admin-sidebar-scope .userRole { font-size: 0.72rem; color: rgba(79,70,229,0.7); font-weight: 600; }.admin-sidebar-scope .signOutBtn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.5); cursor: pointer; flex-shrink: 0; transition: all var(--transition-fast); }.admin-sidebar-scope .signOutBtn:hover { background: rgba(239,68,68,0.2); color: #fca5a5; }

/* Scoped styles for RechargeModal */
/* ── Backdrop ── */.recharge-modal-scope .backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}/* ── Modal ── */.recharge-modal-scope .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  background: #ffffff;
  border-radius: 20px;
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  animation: slideUp 0.25s ease;
}@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 20px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}/* ── Header ── */.recharge-modal-scope .header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #f0f0f0;
}.recharge-modal-scope .title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d0d1a;
  font-family: var(--font-display);
}.recharge-modal-scope .sub {
  font-size: 0.82rem;
  color: #8a8aaa;
  margin-top: 3px;
}.recharge-modal-scope .closeBtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #8a8aaa;
  background: #f5f5f8;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}.recharge-modal-scope .closeBtn:hover { background: #e8e8f0; color: #0d0d1a; }/* ── Body ── */.recharge-modal-scope .body {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}/* ── Step 1 Fields ── */.recharge-modal-scope .field { display: flex; flex-direction: column; gap: 4px; }.recharge-modal-scope .label { font-size: 0.8rem; font-weight: 600; color: #4a4a6a; }.recharge-modal-scope .mobileRow { display: flex; align-items: center; }.recharge-modal-scope .prefix {
  padding: 0 12px;
  height: 44px;
  display: flex;
  align-items: center;
  background: #f7f7fb;
  border: 1.5px solid #e8e8f0;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 0.9rem;
  color: #4a4a6a;
  font-weight: 500;
}.recharge-modal-scope .input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid #e8e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #0d0d1a;
  background: white;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}.recharge-modal-scope .input:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }.recharge-modal-scope .input.inputError { border-color: #dc2626; }.recharge-modal-scope .mobileInput { border-radius: 0 10px 10px 0; }.recharge-modal-scope .fieldError { font-size: 0.78rem; color: #dc2626; }.recharge-modal-scope .select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid #e8e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #0d0d1a;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a8aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
}.recharge-modal-scope .select:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }.recharge-modal-scope .selectRow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }/* Preset chips */.recharge-modal-scope .presets { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }.recharge-modal-scope .presetChip {
  padding: 6px 14px;
  border: 1.5px solid #e8e8f0;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a4a6a;
  background: white;
  cursor: pointer;
  transition: all 0.15s;
}.recharge-modal-scope .presetChip:hover { border-color: #4f46e5; color: #4f46e5; background: #eef2ff; }.recharge-modal-scope .presetChipActive { border-color: #4f46e5 !important; color: #4f46e5 !important; background: #eef2ff !important; }

/* Operator Plans */
.recharge-modal-scope .plansContainer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 120px;
  overflow-y: auto;
  padding-right: 4px;
  margin-top: 2px;
  border: 1px solid #e8e8f0;
  border-radius: 10px;
  padding: 8px;
  background: #fdfdfd;
}

.recharge-modal-scope .planItem {
  padding: 8px 10px;
  border: 1.5px solid #e8e8f0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.recharge-modal-scope .planItem:hover {
  border-color: #4f46e5;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
}

.recharge-modal-scope .planItemActive {
  border-color: #4f46e5 !important;
  background: #f5f3ff !important;
}

.recharge-modal-scope .planItemHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recharge-modal-scope .planItemPrice {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d0d1a;
  font-family: var(--font-display);
}

.recharge-modal-scope .planItemBadge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.recharge-modal-scope .planItemMeta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: #8a8aaa;
  font-weight: 500;
}

.recharge-modal-scope .planItemDetails {
  font-size: 0.75rem;
  color: #4a4a6a;
  line-height: 1.4;
  margin: 0;
}

.recharge-modal-scope .formError {
  font-size: 0.82rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 14px;
}.recharge-modal-scope .continueBtn {
  width: 100%;
  height: 48px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s;
  box-shadow: 0 8px 20px -4px rgba(79,70,229,0.35);
}.recharge-modal-scope .continueBtn:hover:not(:disabled) { background: #4338ca; transform: translateY(-1px); }.recharge-modal-scope .continueBtn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }/* ── Step 2: Review Cards ── */.recharge-modal-scope .reviewCard {
  background: #f7f7fb;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}.recharge-modal-scope .reviewCardLabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8a8aaa;
  text-transform: uppercase;
  margin-bottom: 6px;
}.recharge-modal-scope .reviewName {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d0d1a;
}.recharge-modal-scope .reviewEmail {
  font-size: 0.82rem;
  color: #8a8aaa;
}.recharge-modal-scope .reviewRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}.recharge-modal-scope .reviewKey { font-size: 0.88rem; color: #4a4a6a; }.recharge-modal-scope .reviewVal { font-size: 0.88rem; font-weight: 600; color: #0d0d1a; }.recharge-modal-scope .reviewAmountRow {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e8e8f0;
}.recharge-modal-scope .reviewBigAmount {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d0d1a;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}/* ── UPI section ── */.recharge-modal-scope .upiLayout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 4px;
}.recharge-modal-scope .qrImage {
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #e8e8f0;
}.recharge-modal-scope .upiRight {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.recharge-modal-scope .upiHint {
  font-size: 0.82rem;
  color: #4a4a6a;
  line-height: 1.5;
}.recharge-modal-scope .upiIdBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid #e8e8f0;
  border-radius: 10px;
  padding: 10px 12px;
}.recharge-modal-scope .upiIdLabel {
  font-size: 0.68rem;
  font-weight: 700;
  color: #8a8aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}.recharge-modal-scope .upiIdValue {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0d0d1a;
  margin-top: 2px;
  font-family: monospace;
}.recharge-modal-scope .copyBtn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f0f0f8;
  border: none;
  font-size: 1rem;
  color: #4a4a6a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}.recharge-modal-scope .copyBtn:hover { background: #e0e0f0; color: #4f46e5; }/* ── Step 2 Actions ── */.recharge-modal-scope .note {
  font-size: 0.78rem;
  color: #8a8aaa;
  text-align: center;
}.recharge-modal-scope .step2Actions {
  display: flex;
  gap: 12px;
  align-items: center;
}.recharge-modal-scope .backBtn {
  height: 48px;
  padding: 0 20px;
  border: 1.5px solid #e8e8f0;
  border-radius: 999px;
  background: white;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a4a6a;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  flex-shrink: 0;
}.recharge-modal-scope .backBtn:hover { border-color: #c0c0d8; color: #0d0d1a; }.recharge-modal-scope .paidBtn {
  flex: 1;
  height: 48px;
  background: #f43f6b;
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 8px 20px -4px rgba(244, 63, 107, 0.4);
}.recharge-modal-scope .paidBtn:hover:not(:disabled) { background: #e11d54; transform: translateY(-1px); }.recharge-modal-scope .paidBtn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }/* Spinner */.recharge-modal-scope .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}@keyframes spin { to { transform: rotate(360deg); } }

/* Scoped styles for DashSidebar */
.dash-sidebar-scope .sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--color-text-primary);
  display: flex;
  flex-direction: column;
  padding: var(--space-6) 0;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 50;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
@media (max-width: 900px) {
  .dash-sidebar-scope .sidebar {
    transform: translateX(-100%);
    z-index: 110;
  }
  .dash-sidebar-scope .sidebar.open {
    transform: translateX(0);
  }
}.dash-sidebar-scope .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-4);
}.dash-sidebar-scope .logo span:first-child { font-size: 1.3rem; }.dash-sidebar-scope .nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 var(--space-3);
}.dash-sidebar-scope .navItem {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  position: relative;
  text-decoration: none;
}.dash-sidebar-scope .navItem:hover { color: white; background: rgba(255,255,255,0.08); }.dash-sidebar-scope .icon { font-size: 1.05rem; width: 20px; text-align: center; }.dash-sidebar-scope .active {
  color: white !important;
  background: rgba(79, 70, 229, 0.35) !important;
}.dash-sidebar-scope .activeIndicator {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
}/* Footer */.dash-sidebar-scope .footer {
  padding: var(--space-4) var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}.dash-sidebar-scope .userInfo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 0;
}.dash-sidebar-scope .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}.dash-sidebar-scope .userText { min-width: 0; }.dash-sidebar-scope .userName {
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}.dash-sidebar-scope .userEmail {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}.dash-sidebar-scope .signOutBtn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}.dash-sidebar-scope .signOutBtn:hover { background: rgba(239,68,68,0.2); color: #fca5a5; border-color: rgba(239,68,68,0.3); }

/* ═══════════════════════════════════════════
   FLOW PREVIEW SECTION
   ═══════════════════════════════════════════ */
.flow-section {
  padding: 80px 0;
  background-color: var(--color-bg-subtle);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.flow-title-row {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.flow-tagline {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.flow-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.flow-gradient-text {
  background: linear-gradient(135deg, var(--color-accent) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.flow-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

/* Selector Tabs */
.flow-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-tab {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.flow-tab:hover {
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.flow-tab.active {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.flow-tab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-muted);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.flow-tab.active .flow-tab-num {
  background: var(--color-accent);
  color: white;
}

.flow-tab-content {
  flex: 1;
}

.flow-tab-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.flow-tab-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Preview Panel */
.flow-preview-container {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xxl);
  padding: 32px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.flow-preview-inner {
  animation: flowFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
}

@keyframes flowFadeIn {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mockups Layouts */
.flow-mock-app {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.flow-mock-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

.flow-mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.flow-mock-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.flow-mock-card.active {
  border-color: var(--color-accent);
  background: var(--color-accent-lighter);
}

.flow-mock-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-mock-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.flow-mock-input {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
  outline: none;
  color: var(--color-text-primary);
  width: 100%;
}

.flow-mock-plan-card {
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.flow-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.flow-plan-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.flow-plan-badge {
  background: var(--color-green-light);
  color: var(--color-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.flow-plan-details {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.flow-mock-button {
  width: 100%;
  padding: 12px;
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
  border: none;
  cursor: pointer;
}

.flow-mock-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow-mock-qr-wrap {
  padding: 12px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.flow-mock-upi-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 0.85rem;
}

.flow-mock-upi-val {
  font-family: monospace;
  font-weight: 600;
  color: var(--color-text-primary);
}

.flow-mock-copy {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 700;
  cursor: pointer;
}

.flow-mock-success-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.flow-success-icon {
  font-size: 2.5rem;
}

.flow-success-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #15803d;
}

.flow-success-desc {
  font-size: 0.82rem;
  color: #16a34a;
  line-height: 1.4;
}

.flow-screenshot-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-screenshot {
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 960px) {
  .flow-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
