.voffice-body {
  background: #ffffff;
  color: #0f172a;
  padding-top: 60px;
}

.voffice-navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.voffice-navbar.scrolled {
  border-bottom-color: rgba(148, 163, 184, 0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.voffice-logo {
  height: 18px;
  width: auto;
}

/* ── Hero Section ── */
.voffice-hero {
  height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 50%, #f1f0ff 100%);
  position: relative;
  overflow: hidden;
}

.voffice-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.12) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.voffice-hero h1 {
  background: linear-gradient(135deg, #FF4000 0%, #FF6B35 50%, #e63600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.voffice-hero .lead {
  font-size: 1.1rem;
  max-width: 480px;
}

/* Hero CTA buttons */
.voffice-btn-primary {
  background: linear-gradient(135deg, #FF4000, #FF6B35);
  color: #fff;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 64, 0, 0.25);
  text-decoration: none;
  display: inline-block;
}

.voffice-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 64, 0, 0.35);
  color: #fff;
}

.voffice-btn-secondary {
  background: transparent;
  color: #0f172a;
  border: 1.5px solid rgba(15, 23, 42, 0.2);
  padding: 0.65rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.voffice-btn-secondary:hover {
  border-color: #FF4000;
  color: #FF4000;
  transform: translateY(-2px);
}

/* ── 3D Document Cards ── */
.voffice-docs-stack {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 620px;
  height: 510px;
  transform-style: preserve-3d;
  perspective: 1200px;
  pointer-events: none;
  z-index: 1;
}

.voffice-doc-card {
  position: absolute;
  width: 343px;
  border-radius: 20px;
  padding: 1.79rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  pointer-events: auto;
}

.voffice-doc-card:hover {
  box-shadow: 0 36px 72px rgba(15, 23, 42, 0.18);
}

/* PDF card (replaces Word position) */
.voffice-doc-card--pdf {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  bottom: 90px;
  left: 0;
  transform: rotate(-8deg) translateZ(0px);
  z-index: 1;
  animation: voffice-float-1 6s ease-in-out infinite;
}

.voffice-doc-card--pdf:hover {
  transform: rotate(-4deg) translateZ(20px) scale(1.04);
}

/* Excel card */
.voffice-doc-card--excel {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(22, 163, 74, 0.15);
  bottom: 130px;
  left: 190px;
  transform: rotate(3deg) translateZ(30px);
  z-index: 2;
  animation: voffice-float-2 7s ease-in-out infinite;
}

.voffice-doc-card--excel:hover {
  transform: rotate(1deg) translateZ(50px) scale(1.04);
}

/* PPT card */
.voffice-doc-card--ppt {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid rgba(255, 64, 0, 0.15);
  bottom: 0;
  left: 95px;
  transform: rotate(7deg) translateZ(60px);
  z-index: 3;
  animation: voffice-float-3 5.5s ease-in-out infinite;
}

.voffice-doc-card--ppt:hover {
  transform: rotate(4deg) translateZ(80px) scale(1.04);
}

/* Card inner elements */
.voffice-doc-card__header {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1.19rem;
}

.voffice-doc-card__icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.19rem;
  color: #fff;
  flex-shrink: 0;
}

.voffice-doc-card--pdf .voffice-doc-card__icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.voffice-doc-card--excel .voffice-doc-card__icon {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.voffice-doc-card--ppt .voffice-doc-card__icon {
  background: linear-gradient(135deg, #FF4000, #FF6B35);
}

.voffice-doc-card--pdf .voffice-doc-card__icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.voffice-doc-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voffice-doc-card__subtitle {
  font-size: 0.83rem;
  color: #94a3b8;
}

/* Simulated document content lines */
.voffice-doc-card__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.voffice-doc-card__line {
  height: 9px;
  border-radius: 4px;
  background: #e2e8f0;
}

.voffice-doc-card--pdf .voffice-doc-card__line {
  background: rgba(220, 38, 38, 0.1);
}

.voffice-doc-card--excel .voffice-doc-card__line {
  background: rgba(22, 163, 74, 0.1);
}

.voffice-doc-card--ppt .voffice-doc-card__line {
  background: rgba(255, 64, 0, 0.1);
}

.voffice-doc-card--pdf .voffice-doc-card__line {
  background: rgba(220, 38, 38, 0.1);
}

/* Excel grid simulation */
.voffice-doc-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.voffice-doc-card__cell {
  height: 26px;
  border-radius: 5px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.1);
}

/* PPT slide simulation */
.voffice-doc-card__slide {
  background: rgba(255, 64, 0, 0.05);
  border: 1px solid rgba(255, 64, 0, 0.1);
  border-radius: 12px;
  padding: 1.02rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.voffice-doc-card__slide-title {
  width: 60%;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 64, 0, 0.15);
}

.voffice-doc-card__slide-body {
  width: 80%;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 64, 0, 0.08);
}

/* Floating animations */
@keyframes voffice-float-1 {
  0%, 100% { transform: rotate(-8deg) translateZ(0px) translateY(0px); }
  50% { transform: rotate(-8deg) translateZ(0px) translateY(-12px); }
}

@keyframes voffice-float-2 {
  0%, 100% { transform: rotate(3deg) translateZ(30px) translateY(0px); }
  50% { transform: rotate(3deg) translateZ(30px) translateY(-10px); }
}

@keyframes voffice-float-3 {
  0%, 100% { transform: rotate(7deg) translateZ(60px) translateY(0px); }
  50% { transform: rotate(7deg) translateZ(60px) translateY(-14px); }
}

/* ── Responsive ── */
@media (min-width: 769px) {
  .voffice-hero {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1px;
  }
}

/* Tablet-landscape / small desktop: shrink cards to avoid overlapping title */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .voffice-docs-stack {
    width: 440px;
    height: 420px;
    right: 2%;
  }

  .voffice-doc-card {
    width: 270px;
    padding: 1.4rem;
    border-radius: 18px;
  }

  .voffice-doc-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 1.1rem;
  }

  .voffice-doc-card__header {
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .voffice-doc-card__title {
    font-size: 0.95rem;
  }

  .voffice-doc-card__subtitle {
    font-size: 0.78rem;
  }

  .voffice-doc-card--pdf {
    bottom: 50px;
    left: 0;
  }

  .voffice-doc-card--excel {
    bottom: 85px;
    left: 110px;
  }

  .voffice-doc-card--ppt {
    bottom: 0;
    left: 55px;
  }
}

@media (max-width: 768px) {
  .voffice-navbar {
    border-bottom-color: rgba(148, 163, 184, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
  }
}

@media (max-width: 991.98px) {
  .voffice-hero {
    height: auto;
    padding: 2.5rem 1rem 0;
    text-align: center;
    flex-direction: column;
  }

  .voffice-hero .lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .voffice-hero .d-flex.flex-wrap {
    justify-content: center;
  }

  .voffice-docs-stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: 420px;
    height: 340px;
    margin: 2rem auto 0;
    flex-shrink: 0;
  }

  .voffice-doc-card {
    width: 240px;
    padding: 1.2rem;
    border-radius: 16px;
  }

  .voffice-doc-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .voffice-doc-card__header {
    gap: 0.6rem;
    margin-bottom: 0.9rem;
  }

  .voffice-doc-card__title {
    font-size: 0.88rem;
  }

  .voffice-doc-card__subtitle {
    font-size: 0.72rem;
  }

  .voffice-doc-card--pdf {
    bottom: 50px;
    left: 0;
  }

  .voffice-doc-card--excel {
    bottom: 90px;
    left: 120px;
  }

  .voffice-doc-card--ppt {
    bottom: 0;
    left: 60px;
  }
}

@media (max-width: 575.98px) {
  .voffice-hero {
    padding: 2rem 1rem 0;
  }

  .voffice-docs-stack {
    width: 320px;
    height: 220px;
    margin: 1.5rem auto 0;
  }

  .voffice-doc-card {
    width: 190px;
    padding: 0.9rem;
    border-radius: 12px;
  }

  .voffice-doc-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  .voffice-doc-card__header {
    gap: 0.5rem;
    margin-bottom: 0.7rem;
  }

  .voffice-doc-card__title {
    font-size: 0.78rem;
  }

  .voffice-doc-card__subtitle {
    font-size: 0.65rem;
  }

  .voffice-doc-card__lines {
    gap: 6px;
  }

  .voffice-doc-card__line {
    height: 5px;
  }

  .voffice-doc-card__grid {
    gap: 4px;
  }

  .voffice-doc-card__cell {
    height: 18px;
  }

  .voffice-doc-card__slide {
    padding: 0.6rem;
    gap: 6px;
    border-radius: 8px;
  }

  .voffice-doc-card__slide-title {
    height: 8px;
  }

  .voffice-doc-card__slide-body {
    height: 5px;
  }

  .voffice-doc-card--pdf {
    bottom: 40px;
    left: 0;
  }

  .voffice-doc-card--excel {
    bottom: 75px;
    left: 90px;
  }

  .voffice-doc-card--ppt {
    bottom: 0;
    left: 45px;
  }
}

.voffice-section {
  padding: 3rem 0;
  margin: 0;
}

.voffice-section + .voffice-section {
  margin-top: 0;
}

.voffice-section-alt {
  background: #f8fafc;
}

.voffice-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.voffice-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.voffice-download-card {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.5rem;
  background: #ffffff;
}

.voffice-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.voffice-support-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.5rem;
  background: #fff;
}

/* ── AI Section ── */
.voffice-ai-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.voffice-ai-badge {
  background: linear-gradient(135deg, #FF4000, #FF6B35) !important;
  color: #fff;
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  letter-spacing: 0.02em;
}

/* AI Demo Card */
.voffice-ai-demo-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.voffice-ai-demo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.voffice-ai-demo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF4000, #FF6B35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.voffice-ai-demo-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
}

.voffice-ai-demo-status {
  font-size: 0.78rem;
  color: #22c55e;
}

/* Animated AI Chat Demo Container */
.voffice-ai-demo-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  min-height: 280px;
  max-height: 280px;
  overflow-y: auto;
  padding: 0.5rem 0;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.voffice-ai-demo-messages::-webkit-scrollbar {
  width: 5px;
}

.voffice-ai-demo-messages::-webkit-scrollbar-track {
  background: transparent;
}

.voffice-ai-demo-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

/* Message row */
.voffice-ai-demo-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 92%;
  animation: voffice-fadeInUp 0.35s ease-out;
}

.voffice-ai-demo-msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.voffice-ai-demo-msg--ai {
  align-self: flex-start;
}

/* Avatar circles */
.voffice-ai-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF4000, #FF6B35);
  color: #fff;
}

.voffice-ai-msg-avatar--user {
  background: #e2e8f0;
  color: #64748b;
}

/* Message bubble */
.voffice-msg-bubble {
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  word-wrap: break-word;
  max-width: 100%;
}

.voffice-ai-demo-msg--user .voffice-msg-bubble {
  background: #f1f5f9;
  color: #0f172a;
  border-bottom-right-radius: 4px;
}

.voffice-ai-demo-msg--ai .voffice-msg-bubble {
  background: linear-gradient(135deg, rgba(255, 64, 0, 0.06), rgba(255, 107, 53, 0.06));
  border: 1px solid rgba(255, 64, 0, 0.1);
  color: #0f172a;
  border-bottom-left-radius: 4px;
}

/* Message text container */
.voffice-msg-text {
  min-height: 1.2em;
}

/* Typing indicator (bouncing dots) */
.voffice-typing-indicator {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 0.2rem 0;
}

.voffice-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FF6B35;
  animation: thinking-bounce 1.4s infinite ease-in-out both;
}

.voffice-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.voffice-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.voffice-typing-dot:nth-child(3) {
  animation-delay: 0s;
}

/* Anti-copy overlay */
.voffice-ai-chat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 10;
  border-radius: 20px;
}

/* Message entrance animation */
@keyframes voffice-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voffice-ai-demo-input {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.85rem;
  color: #94a3b8;
}

/* AI Grid Layout (matches vWork style) */
.voffice-ai-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin: 0 auto 2.5rem;
}

.voffice-ai-main-card {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.voffice-ai-main-card .voffice-ai-demo-card {
  height: 100%;
}

/* Small feature cards - hover & tilt */
.voffice-ai-small-card .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voffice-ai-small-card:hover .card {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.voffice-ai-main-card:hover .voffice-ai-demo-card {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

/* AI Grid Responsive */
@media (max-width: 991.98px) {
  .voffice-ai-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .voffice-ai-main-card {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .voffice-ai-small-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .voffice-ai-small-card .card {
    transform: none !important;
  }

  .voffice-ai-small-card .card-body {
    padding: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .voffice-ai-grid {
    grid-template-columns: 1fr;
  }

  .voffice-ai-small-card {
    grid-column: 1 / -1 !important;
  }
}

/* AI Pricing Note */
.voffice-ai-pricing-note {
  background: rgba(255, 64, 0, 0.04);
  border: 1px solid rgba(255, 64, 0, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: #64748b;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.voffice-ai-pricing-note i {
  color: #FF4000;
}

.voffice-ai-pricing-link {
  color: #FF4000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.voffice-ai-pricing-link:hover {
  color: #e63600;
  text-decoration: underline;
}

/* AI Section Responsive */
@media (max-width: 767.98px) {
  .voffice-ai-demo-messages {
    max-height: none;
    min-height: 200px;
  }
}

@media (max-width: 575.98px) {
  .voffice-ai-demo-msg {
    max-width: 98%;
  }

  .voffice-msg-bubble {
    font-size: 0.83rem;
    padding: 0.6rem 0.85rem;
  }

  .voffice-ai-msg-avatar {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  .voffice-ai-pricing-note {
    font-size: 0.82rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .voffice-ai-pricing-link {
    margin-left: 0 !important;
  }
}

/* ── vOffice Pricing Section ── */
.voffice-pricing-section {
  background: #f8f9fa;
}

.voffice-pricing-section .pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 100px;
  padding: 4px;
  gap: 0;
  position: relative;
}

.voffice-pricing-section .pricing-toggle-opt {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #64748b;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.voffice-pricing-section .pricing-toggle-opt.active {
  color: #fff;
}

.voffice-pricing-section .pricing-toggle-slider {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  border-radius: 100px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.voffice-pricing-section .pricing-toggle-save {
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.voffice-pricing-section .card {
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.voffice-pricing-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.voffice-pricing-section .display-4 {
  font-size: 2.5rem;
}

.voffice-pricing-section .vcoin-icon {
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .voffice-pricing-section .display-4 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .voffice-pricing-section .display-4 {
    font-size: 1.75rem;
  }
}

/* ── vCoin Modal ── */
.vcoin-modal-content {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}

.vcoin-modal-header {
  border-bottom: 1px solid #f1f5f9;
  padding: 1.25rem 1.5rem;
}

.vcoin-modal-header .modal-title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.vcoin-modal-body {
  padding: 1.5rem;
}

.vcoin-modal-footer {
  border-top: 1px solid #f1f5f9;
  padding: 1rem 1.5rem;
}

.vcoin-intro p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.vcoin-usage-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s;
}

.vcoin-usage-card:hover {
  border-color: #cbd5e1;
}

.vcoin-usage-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.vcoin-usage-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.vcoin-usage-cost {
  margin-bottom: 0.375rem;
}

.vcoin-plan-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.vcoin-plan-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vcoin-plan-card--popular {
  border: 2px solid #3b82f6;
  background: #eff6ff;
}

.vcoin-plan-card--popular:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.vcoin-plan-amount {
  font-size: 1.125rem;
  color: #92400e;
  margin-bottom: 0.125rem;
}

.vcoin-plan-price {
  font-size: 1.125rem;
  color: #0f172a;
}
