/* ==================================================
   RHIVON PREMIUM LANDING & VISUAL DESK - css/landing.css
   ================================================== */

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 140px 0 110px 0;
  overflow: hidden;
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(22, 212, 134, 0.05);
  border: 1px solid rgba(22, 212, 134, 0.15);
  color: var(--accent-green);
  border-radius: var(--border-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-family-display);
}

.hero-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--cool-grey);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* ==================================================
   CENTRAL SECTION & CONTAINER LAYOUTS
   ================================================== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-family-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(22, 212, 134, 0.05);
  border: 1px solid rgba(22, 212, 134, 0.15);
  border-radius: var(--border-radius-pill);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--cool-grey);
  line-height: 1.6;
}

/* ==================================================
   HOW IT WORKS STEP CARDS LAYOUT
   ================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 30px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.step-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.05);
}

.step-number {
  font-family: var(--font-family-display);
  font-size: 44px;
  font-weight: 800;
  color: rgba(22, 212, 134, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  color: var(--cool-grey);
  line-height: 1.6;
}

/* ==================================================
   SUPPORTED PLATFORMS GRID
   ================================================== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.platform-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition-smooth);
}
.platform-card:hover {
  border-color: rgba(22, 212, 134, 0.25);
  transform: scale(1.03);
}

.platform-logo {
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.platform-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.status-core {
  background: rgba(22, 212, 134, 0.12);
  color: var(--accent-green);
}

.status-assisted {
  background: rgba(0, 163, 255, 0.12);
  color: var(--accent-blue);
}

/* Finds grid from original finds section if any */
.finds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.find-card {
  padding: 24px;
  transition: var(--transition-smooth);
}
.find-card:hover {
  border-color: rgba(22, 212, 134, 0.2);
}

.find-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(22, 212, 134, 0.15);
  background: rgba(22, 212, 134, 0.05);
  color: var(--accent-green);
}

.find-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.find-desc {
  font-size: 13px;
  color: var(--cool-grey);
  line-height: 1.6;
}

/* ==================================================
   INTERACTIVE SEGMENTATION SWITCHER TABS
   ================================================== */
.target-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
}

.target-tabs {
  background: rgba(3, 9, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px;
  border-radius: var(--border-radius-pill);
  display: flex;
  gap: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.target-tab-btn {
  padding: 12px 26px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-family-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65) !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.target-tab-btn:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.target-tab-btn.active-seller {
  background: linear-gradient(135deg, #16D486 0%, #0D8C57 100%);
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(22, 212, 134, 0.25);
  border: 1px solid rgba(22, 212, 134, 0.3);
}

.target-tab-btn.active-retailer {
  background: linear-gradient(135deg, #00A3FF 0%, #0066B3 100%);
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.25);
  border: 1px solid rgba(0, 163, 255, 0.3);
}

/* ==================================================
   INFINITE BRAND LOGO MARQUEE
   ================================================== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  background: rgba(3, 8, 18, 0.55);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  padding: 26px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-family-display);
  font-size: 22px;
  font-weight: 800;
  margin: 0 45px;
  white-space: nowrap;
  letter-spacing: -0.02em;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.marquee-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==================================================
   RECONCILIATION BRIDGE & VAULT DESK (ELITE VISUAL)
   ================================================== */
.hero-visual {
  background: rgba(11, 28, 56, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 512px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 163, 255, 0.12) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.visual-desk {
  width: 100%;
  max-width: 480px;
  height: 350px;
  position: relative;
  background: rgba(3, 9, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--border-radius-lg) - 8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px;
  overflow: hidden;
}

.desk-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.desk-card {
  width: 76px;
  height: 76px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool-grey);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.desk-node.active .desk-card {
  border-color: var(--accent-green);
  box-shadow: 0 0 30px rgba(22, 212, 134, 0.15);
  color: var(--accent-green);
}

.desk-node.retailer-active .desk-card {
  border-color: var(--accent-blue);
  box-shadow: 0 0 30px rgba(0, 163, 255, 0.15);
  color: var(--accent-blue);
}

.desk-label {
  font-family: var(--font-family-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--cool-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Glowing Bridge Line */
.bridge-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-40px);
  pointer-events: none;
  z-index: 5;
}

.bridge-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 2.5;
  stroke-dasharray: 5, 5;
}

.bridge-path-active {
  fill: none;
  stroke: var(--accent-green);
  stroke-width: 2;
  stroke-dasharray: 6, 6;
  animation: pathDash 15s linear infinite;
}

.bridge-path-retailer {
  stroke: var(--accent-blue);
}

/* Vault glows green / blue on entrance */
.vault-glow {
  position: absolute;
  top: -24px;
  background: rgba(22, 212, 134, 0.12);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  padding: 4px 12px;
  font-family: var(--font-family-display);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(22, 212, 134, 0.2);
  animation: badgeFloating 3s ease-in-out infinite;
}

.vault-glow.retailer {
  background: rgba(0, 163, 255, 0.12);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: 0 4px 15px rgba(0, 163, 255, 0.2);
}

#visualTokensContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

/* Premium Gold/Silver Tokens */
.token {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE082 0%, #FFB300 50%, #FFA000 100%);
  border: 1px solid #FFE082;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-display);
  font-size: 11px;
  font-weight: 800;
  color: #5D4037;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  animation: tokenTraversal 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.token-blue {
  background: linear-gradient(135deg, #E0F2FE 0%, #38BDF8 50%, #0284C7 100%);
  border-color: #E0F2FE;
  color: #0369A1;
}

.token-1 { animation-delay: 0s; }
.token-2 { animation-delay: 1.2s; }
.token-3 { animation-delay: 2.4s; }
.token-4 { animation-delay: 3.6s; }
.token-5 { animation-delay: 4.8s; }

@keyframes tokenTraversal {
  0% {
    opacity: 0;
    transform: translate(65px, 150px) scale(0.7);
  }
  8% {
    opacity: 1;
    transform: translate(65px, 150px) scale(1);
  }
  /* Elegant curved slide representing recovery */
  25% {
    transform: translate(130px, 115px) scale(1);
  }
  50% {
    transform: translate(210px, 160px) scale(0.9);
  }
  75% {
    transform: translate(290px, 130px) scale(1);
  }
  92% {
    opacity: 1;
    transform: translate(355px, 150px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(355px, 150px) scale(0.6);
  }
}

/* ==================================================
   INTERACTIVE PLATFORM AUDITS EXPLORER
   ================================================== */
.platform-explorer-wrap {
  width: 100%;
  margin-top: 40px;
}

.explorer-navbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding: 4px;
}

.explorer-tab-btn {
  background: rgba(7, 16, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 24px;
  font-family: var(--font-family-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--cool-grey);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.explorer-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.explorer-tab-btn.active {
  background: var(--active-pill-bg);
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 0 18px rgba(22, 212, 134, 0.12);
}

.explorer-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.explorer-issues-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explorer-issue-card {
  padding: 24px;
  background: rgba(10, 24, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}
.explorer-issue-card:hover {
  border-color: rgba(22, 212, 134, 0.2);
}

.issue-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.issue-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.severity-high { background: rgba(239, 83, 80, 0.12); color: #EF5350; }
.severity-medium { background: rgba(255, 179, 0, 0.12); color: #FFB300; }

.loss-tag {
  font-family: var(--font-family-display);
  font-size: 13px;
  font-weight: 700;
  color: #EF5350;
}

.explorer-subservices-card {
  padding: 32px;
}

.subservice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  list-style: none;
}

.subservice-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.subservice-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 212, 134, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.subservice-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.subservice-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.subservice-desc {
  font-size: 13px;
  color: var(--cool-grey);
  line-height: 1.5;
}

/* ==================================================
   LAUNCH ROADMAP SYSTEM
   ================================================== */
.roadmap-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.roadmap-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.roadmap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-green);
}

.roadmap-card.phase-2::before { background: var(--accent-blue); }
.roadmap-card.phase-3::before { background: var(--cool-grey); }

.roadmap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.roadmap-phase {
  font-family: var(--font-family-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.roadmap-card.phase-2 .roadmap-phase { color: var(--accent-blue); }
.roadmap-card.phase-3 .roadmap-phase { color: var(--cool-grey); }

.roadmap-status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.status-active { background: rgba(22, 212, 134, 0.12); color: var(--accent-green); }
.status-coming { background: rgba(255,255,255,0.04); color: var(--cool-grey); }

.roadmap-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
}

.roadmap-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cool-grey);
}

.roadmap-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}
.roadmap-card.phase-2 .roadmap-feature-item svg { color: var(--accent-blue); }
.roadmap-card.phase-3 .roadmap-feature-item svg { color: var(--cool-grey); }

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 44px;
  }
  .roadmap-features-grid {
    grid-template-columns: 1fr;
  }
  .visual-desk {
    margin: 0 auto;
  }
  .explorer-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 36px;
  }
  .explorer-navbar {
    justify-content: flex-start;
  }
}

/* ==================================================
   PRICING & CALCULATOR PAGE LAYOUTS
   ================================================== */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 60px 0;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--cool-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}
.toggle-label.active {
  color: var(--white);
}

.toggle-switch {
  width: 56px;
  height: 30px;
  border-radius: var(--border-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}
.toggle-switch.annual {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.toggle-knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: absolute;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.toggle-switch.annual .toggle-knob {
  transform: translateX(26px);
  background: var(--bg-dark);
}

.toggle-badge {
  font-family: var(--font-family-display);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-green);
  background: rgba(22, 212, 134, 0.1);
  border: 1px solid rgba(22, 212, 134, 0.2);
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.price-card {
  padding: 40px 32px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border-color: var(--accent-green);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(22, 212, 134, 0.08);
}
.price-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-green);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: var(--bg-dark);
  font-family: var(--font-family-display);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(22, 212, 134, 0.2);
}

.price-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.price-cost-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0;
}

.price-cost {
  font-family: var(--font-family-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--cool-grey);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--cool-grey);
}
.price-feature-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-feature-item.available {
  color: var(--mist-white);
}
.price-feature-item.available svg {
  color: var(--accent-green);
}

.feature-quota {
  display: block;
  font-size: 11px;
  color: var(--cool-grey);
  margin-top: 2px;
}

/* ==================================================
   CALCULATOR AND FAQS LAYOUT
   ================================================= */
.calculator-container {
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(22, 212, 134, 0.15);
}

/* ==================================================
   INDIA'S FIRST MSME TRUST BADGE & FLOATING KEYFRAME
   ================================================== */
.first-in-india-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 179, 0, 0.1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-family-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: badgeFloating 3s ease-in-out infinite;
}

.gold-star {
  filter: drop-shadow(0 0 4px #FFD700);
  animation: starSpin 6s linear infinite;
}

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

@keyframes starSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================================================
   ADVANCED SANDBOX SIMULATOR & DIGITAL INVOICE STYLES
   ================================================== */
.chat-bubble-ai {
  background: rgba(0, 163, 255, 0.12);
  border: 1px solid rgba(0, 163, 255, 0.25);
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  color: var(--mist-white);
  line-height: 1.6;
  font-family: var(--font-family-sans);
  font-size: 13px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.receipt-card {
  background: rgba(3, 8, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 18px;
  font-family: var(--font-family-sans);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.receipt-logo {
  font-family: var(--font-family-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent-blue);
}

.receipt-status {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-unpaid {
  background: rgba(239, 83, 80, 0.15);
  color: #EF5350;
  border: 1px solid rgba(239, 83, 80, 0.25);
}

.status-paid {
  background: rgba(22, 212, 134, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(22, 212, 134, 0.25);
}

.receipt-divider {
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin: 10px 0;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.receipt-label {
  color: var(--cool-grey);
}

.receipt-value {
  color: var(--white);
  font-weight: 600;
}

.receipt-total {
  font-weight: 800;
  color: var(--white);
}

.receipt-paid {
  color: var(--accent-green);
  font-weight: 700;
}

.receipt-due {
  font-weight: 800;
}
