/* ============================================
   Vibe Code Rescue - Page Specific Styles
   ============================================ */

/* ============================================
   Hero Section
   ============================================ */
.vr-hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.vr-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(132, 75, 222, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 75, 222, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.vr-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orb-float 20s ease-in-out infinite;
}

.vr-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132, 75, 222, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.vr-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 204, 183, 0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: -10s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.vr-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
}

.vr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(132, 75, 222, 0.08);
  border: 1px solid rgba(132, 75, 222, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 2rem;
}

.vr-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.vr-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 2rem;
}

.vr-title-line {
  display: block;
}

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

.vr-underline-accent {
  position: relative;
  display: inline-block;
}

.vr-underline-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: var(--brand-gradient);
  border-radius: 2px;
  opacity: 0.6;
}

.vr-hero-subtitle {
  font-size: 1.35rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.desktop-only {
  display: inline;
}

.vr-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

.vr-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--brand-gradient);
  border-radius: 999px;
  box-shadow: 0 10px 30px -5px rgba(132, 75, 222, 0.4);
}

.vr-btn-primary:hover {
  box-shadow: 0 15px 40px -5px rgba(132, 75, 222, 0.5);
  transform: translateY(-2px);
}

.vr-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: white;
  color: var(--color-purple);
  border: 1px solid rgba(132, 75, 222, 0.2);
  border-radius: 999px;
}

.vr-btn-secondary:hover {
  background: rgba(132, 75, 222, 0.05);
  border-color: rgba(132, 75, 222, 0.4);
  transform: translateY(-2px);
}

.vr-cta-note {
  font-size: 0.9375rem;
  color: var(--muted);
  font-style: italic;
}

/* Code Transformation Visual */
.vr-visual-container {
  max-width: 100%;
  overflow-x: auto;
  padding: 1rem 0;
}

.vr-transform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-width: fit-content;
}

.vr-code-panel {
  background: #1E1B4B;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 320px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vr-code-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.vr-code-before {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.vr-code-after {
  border: 1px solid rgba(34, 204, 183, 0.3);
}

.vr-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vr-panel-dots {
  display: flex;
  gap: 6px;
}

.vr-panel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.vr-panel-dots .dot.red { background: #EF4444; }
.vr-panel-dots .dot.yellow { background: #F59E0B; }
.vr-panel-dots .dot.green { background: #10B981; }

.vr-panel-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.vr-code-lines {
  padding: 1rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.75rem;
  min-height: 140px;
}

.vr-code-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  transition: background 0.2s ease;
}

.vr-code-line:hover {
  background: rgba(255, 255, 255, 0.05);
}

.vr-code-line .line-num {
  color: rgba(255, 255, 255, 0.25);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.vr-code-line .code {
  color: rgba(255, 255, 255, 0.8);
}

.vr-code-line.warn .code { color: #FBBF24; }
.vr-code-line.error .code { color: #EF4444; }
.vr-code-line.ok .code { color: #22CCB7; }

.vr-panel-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vr-issue-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #EF4444;
}

.vr-issue-count.success {
  color: #22CCB7;
}

.vr-transform-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vr-transform-arrow svg {
  width: 60px;
  height: 24px;
  animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

.vr-arrow-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Reality Section
   ============================================ */
.vr-reality {
  padding: 8rem 0;
}

.vr-reality-header {
  text-align: center;
  margin-bottom: 5rem;
}

.vr-story-timeline {
  max-width: 56rem;
  margin: 0 auto;
}

.vr-story-track {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.vr-story-step {
  flex: 1;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
}

.vr-story-step:hover {
  border-color: rgba(132, 75, 222, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vr-story-step.highlight {
  background: linear-gradient(135deg, rgba(132, 75, 222, 0.05) 0%, rgba(34, 204, 183, 0.05) 100%);
  border-color: rgba(132, 75, 222, 0.3);
}

.vr-step-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.vr-step-marker.pulse {
  animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(132, 75, 222, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(132, 75, 222, 0); }
}

.vr-step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.vr-step-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.vr-story-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vr-story-connector::before {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-teal));
  opacity: 0.3;
}

/* ============================================
   Problems Section
   ============================================ */
.vr-problems {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
}

.vr-problems-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vr-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.vr-problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.vr-problem-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vr-problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.vr-problem-icon svg {
  width: 24px;
  height: 24px;
}

.vr-problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.vr-problem-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Approach Section
   ============================================ */
.vr-approach {
  padding: 8rem 0;
}

.vr-approach-header {
  text-align: center;
  margin-bottom: 5rem;
}

.vr-approach-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(34, 204, 183, 0.1);
  border: 1px solid rgba(34, 204, 183, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vr-approach-content {
  max-width: 64rem;
  margin: 0 auto;
}

.vr-philosophy-card {
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.vr-philosophy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(132, 75, 222, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 204, 183, 0.2) 0%, transparent 50%);
  opacity: 0.5;
}

.vr-philosophy-quote {
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.vr-philosophy-text {
  font-size: 1.5rem;
  color: white;
  line-height: 1.6;
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.vr-philosophy-author {
  position: relative;
  z-index: 1;
}

.vr-author-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vr-approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vr-pillar {
  padding: 2rem;
  border-left: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              var(--brand-gradient) border-box;
  transition: all 0.3s ease;
}

.vr-pillar:hover {
  transform: translateX(8px);
}

.vr-pillar-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 1rem;
  font-family: monospace;
}

.vr-pillar h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.vr-pillar p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Services Section
   ============================================ */
.vr-services {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #FFFFFF, #F8FAFC);
}

.vr-services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vr-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.vr-service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.vr-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vr-service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vr-service-icon svg {
  width: 28px;
  height: 28px;
}

.vr-service-icon.purple { background: rgba(132, 75, 222, 0.1); color: var(--color-purple); }
.vr-service-icon.teal { background: rgba(34, 204, 183, 0.1); color: var(--color-teal); }
.vr-service-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.vr-service-icon.orange { background: rgba(249, 115, 22, 0.1); color: #F97316; }

.vr-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.vr-service-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.vr-service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vr-service-details li:last-child {
  border-bottom: none;
}

.vr-service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

.vr-service-outcome {
  padding: 1rem;
  background: rgba(34, 204, 183, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text);
}

.vr-outcome-label {
  font-weight: 700;
  color: var(--color-teal);
  margin-right: 0.5rem;
}

/* ============================================
   Clinic Section
   ============================================ */
.vr-clinic {
  padding: 8rem 0;
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}

.vr-clinic-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(132, 75, 222, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 75, 222, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.vr-clinic-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.vr-clinic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #EF4444;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.vr-clinic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vr-clinic-chart {
  background: white;
  border-radius: 2px;
  box-shadow: 
    0 1px 3px rgba(0,0,0,0.1),
    0 8px 24px -4px rgba(0,0,0,0.1);
  padding: 2rem;
  position: relative;
  border: 1px solid #E2E8F0;
  font-family: 'JetBrains Mono', monospace;
  transition: transform 0.3s ease;
}

.vr-clinic-chart:hover {
  transform: rotate(0deg) scale(1.02) !important;
  z-index: 10;
}

.vr-clinic-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    45deg,
    #EF4444,
    #EF4444 10px,
    #FEE2E2 10px,
    #FEE2E2 20px
  );
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed #E2E8F0;
}

.patient-id {
  font-weight: 700;
  color: #64748B;
}

.stamp {
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border: 2px solid;
  border-radius: 4px;
  transform: rotate(-10deg);
  font-size: 0.875rem;
}

.stamp.urgent {
  color: #EF4444;
  border-color: #EF4444;
}

.stamp.warning {
  color: #F59E0B;
  border-color: #F59E0B;
}

.chart-body {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.symptom, .diagnosis, .treatment {
  margin-bottom: 1rem;
}

.symptom strong, .diagnosis strong, .treatment strong {
  display: block;
  color: #475569;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.chart-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #E2E8F0;
  text-align: right;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25rem;
  color: #1E1B4B;
}

.vr-clinic-interactive {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.vr-clinic-interactive h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.symptom-checker {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.symptom-btn {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--text-heading);
}

.symptom-btn:hover {
  background: white;
  border-color: var(--color-purple);
  transform: translateX(4px);
}

.symptom-btn .checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #CBD5E1;
  border-radius: 4px;
  flex-shrink: 0;
}

.diagnosis-reveal {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(132, 75, 222, 0.05);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -0.5rem;
}

.diagnosis-reveal.active {
  padding: 1rem;
  max-height: 200px;
  margin-bottom: 1rem;
}

/* ============================================
   Process Section
   ============================================ */
.vr-process {
  padding: 8rem 0;
}

.vr-process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.vr-pricing-tagline {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--muted);
}

.vr-pricing-tagline strong {
  color: var(--color-teal);
  font-weight: 700;
}

.vr-process-steps {
  max-width: 48rem;
  margin: 0 auto;
}

.vr-process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.vr-process-step:last-child {
  margin-bottom: 0;
}

.vr-process-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.vr-process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 10px 20px -5px rgba(132, 75, 222, 0.3);
}

.vr-process-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--color-purple), rgba(132, 75, 222, 0.1));
  margin-top: 1rem;
  min-height: 60px;
}

.vr-process-line.last {
  opacity: 0;
}

.vr-process-content {
  flex: 1;
  padding-top: 0.5rem;
}

.vr-process-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.vr-process-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vr-process-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(132, 75, 222, 0.08);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text);
}

.vr-process-deliverable span {
  font-weight: 700;
  color: var(--color-purple);
}

/* ============================================
   Trust Section
   ============================================ */
.vr-trust {
  padding: 8rem 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.vr-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(132, 75, 222, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(34, 204, 183, 0.15) 0%, transparent 50%);
}

.vr-trust-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.vr-trust-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vr-trust .section-title {
  color: white;
}

.vr-trust-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vr-trust-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vr-stat {
  text-align: center;
}

.vr-stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vr-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FAQ Section
   ============================================ */
.vr-faq {
  padding: 8rem 0;
}

.vr-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vr-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.vr-faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.vr-faq-item:hover {
  border-color: rgba(132, 75, 222, 0.2);
  box-shadow: var(--shadow-card);
}

.vr-faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.vr-faq-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.vr-cta {
  padding: 4rem 0 8rem;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
  .vr-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vr-services-grid {
    grid-template-columns: 1fr;
  }
  
  .vr-approach-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vr-hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }
  
  .desktop-only {
    display: none;
  }
  
  .vr-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .vr-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .vr-visual-container {
    margin: 0 -1rem;
    padding: 1rem;
  }
  
  .vr-transform-visual {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .vr-code-panel {
    width: 100%;
    max-width: 320px;
  }
  
  .vr-transform-arrow {
    transform: rotate(90deg);
  }
  
  .vr-story-track {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .vr-story-connector {
    width: auto;
    height: 30px;
  }
  
  .vr-story-connector::before {
    width: 2px;
    height: 100%;
  }
  
  .vr-problems-grid,
  .vr-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .vr-philosophy-card {
    padding: 2.5rem;
  }
  
  .vr-philosophy-text {
    font-size: 1.25rem;
  }
  
  .vr-trust-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .vr-process-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .vr-process-step-header {
    flex-direction: row;
    gap: 1rem;
  }
  
  .vr-process-line {
    display: none;
  }
  
  .vr-pillar {
    padding: 1.5rem;
  }
  
  section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .vr-hero {
    padding: 6rem 0 3rem;
  }
  
  .vr-hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }
  
  .vr-btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .vr-code-lines {
    font-size: 0.6875rem;
  }
  
  .vr-step-content h3,
  .vr-problem-card h3,
  .vr-faq-item h3 {
    font-size: 1rem;
  }
  
  .vr-step-content p,
  .vr-problem-card p,
  .vr-faq-item p {
    font-size: 0.875rem;
  }
  
  .vr-service-card {
    padding: 1.5rem;
  }
  
  .vr-service-card h3 {
    font-size: 1.25rem;
  }
  
  .vr-stat-value {
    font-size: 2.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

/* ============================================
   Animation Enhancements
   ============================================ */

/* Stagger reveal animations */
.vr-problems-grid .vr-problem-card:nth-child(1) { transition-delay: 0ms; }
.vr-problems-grid .vr-problem-card:nth-child(2) { transition-delay: 100ms; }
.vr-problems-grid .vr-problem-card:nth-child(3) { transition-delay: 200ms; }
.vr-problems-grid .vr-problem-card:nth-child(4) { transition-delay: 300ms; }
.vr-problems-grid .vr-problem-card:nth-child(5) { transition-delay: 400ms; }
.vr-problems-grid .vr-problem-card:nth-child(6) { transition-delay: 500ms; }

.vr-services-grid .vr-service-card:nth-child(1) { transition-delay: 0ms; }
.vr-services-grid .vr-service-card:nth-child(2) { transition-delay: 100ms; }
.vr-services-grid .vr-service-card:nth-child(3) { transition-delay: 200ms; }
.vr-services-grid .vr-service-card:nth-child(4) { transition-delay: 300ms; }

/* Code panel typing animation */
@keyframes code-type {
  from { width: 0; }
  to { width: 100%; }
}

.vr-code-after .vr-code-line .code {
  overflow: hidden;
  white-space: nowrap;
  animation: code-type 0.5s ease-out forwards;
  animation-delay: calc(var(--line-index, 0) * 0.2s);
}

.vr-code-after .vr-code-line:nth-child(1) { --line-index: 0; }
.vr-code-after .vr-code-line:nth-child(2) { --line-index: 1; }
.vr-code-after .vr-code-line:nth-child(3) { --line-index: 2; }
.vr-code-after .vr-code-line:nth-child(4) { --line-index: 3; }

/* Subtle hover effects */
.vr-service-card:hover .vr-service-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vr-problem-card:hover .vr-problem-icon {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
