/* ============================================================
   VROOL STATIC PAGES — Shared Styles
   ============================================================ */

/* Reset body */
body.vr-static-page { background: #f8fafc; }

/* Hero Banner */
.vr-hero {
  padding: 52px 20px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.vr-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.vr-hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.vr-hero-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 500;
}

/* Page Wrapper */
.vr-page-wrap {
  max-width: 860px;
  margin: -28px auto 40px;
  padding: 0 16px;
}

/* Sections */
.vr-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  padding: 36px 40px;
  margin-bottom: 20px;
}
.vr-section-highlight {
  background: linear-gradient(135deg, #f0fdfa 0%, #f0fdfa 100%);
  border: 1px solid #ccfbf1;
}
/* Card Grid */
.vr-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 4px;
}
.vr-section-subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #64748b;
  margin: 0 0 20px;
  font-weight: 500;
}
.vr-section p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 12px;
}
.vr-section a {
  color: #ad6dee;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vr-section a:hover {
  color: #ad6dee;
}
.vr-section ul, .vr-section ol {
  margin: 8px 0 16px;
  padding-left: 24px;
}
.vr-section li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 4px;
}
.vr-section ul li::marker {
  color: #ad6dee;
}
.vr-section strong {
  font-weight: 700;
  color: #0f172a;
}

/* Story Block */
.vr-story-block {
  border-left: 3px solid #ad6dee;
  padding-left: 20px;
  margin-top: 16px;
}

/* Card Grid */
.vr-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.vr-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vr-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.vr-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}
.vr-card p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Feature List */
.vr-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.vr-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}
.vr-feature:hover {
  background: #f0fdfa;
  border-color: #ccfbf1;
}
.vr-feature h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}
.vr-feature p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* CTA Section */
.vr-section-cta {
  text-align: center;
  background: linear-gradient(135deg, #ad6dee 0%, #ad6dee 100%);
  color: #fff;
}
.vr-section-cta h2 {
  color: #fff;
}
.vr-section-cta p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.vr-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.vr-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.2s;
  cursor: pointer;
}
.vr-btn-white {
  background: #fff;
  color: #ad6dee;
}
.vr-btn-white:hover {
  background: #f0fdfa;
  color: #ad6dee;
}
.vr-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none !important;
}
.vr-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  text-decoration: none !important;
}
.vr-btn-green {
  background: #ad6dee;
  color: #fff;
}
.vr-btn-green:hover {
  background: #ad6dee;
}

/* Contact Footer */
.vr-page-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}
.vr-page-contact span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.vr-page-contact a {
  display: inline-block;
  padding: 10px 22px;
  background: #ad6dee;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.vr-page-contact a:hover {
  background: #ad6dee;
}

/* Info Boxes */
.vr-info-box {
  padding: 16px 20px;
  border-radius: 10px;
  margin: 16px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.vr-info-box-green {
  background: #f0fdfa;
  border-left: 4px solid #ad6dee;
  color: #1e293b;
}
.vr-info-box-blue {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  color: #1e293b;
}
.vr-info-box-amber {
  background: #fffbeb;
  border-left: 4px solid #d97706;
  color: #1e293b;
}
.vr-info-box-red {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  color: #1e293b;
}

/* Numbered Steps */
.vr-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.vr-steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}
.vr-steps li:last-child {
  border-bottom: none;
}
.vr-steps li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #ad6dee;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

/* Accordion */
.vr-accordion {
  margin: 16px 0;
}
.vr-accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.vr-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f8fafc;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  user-select: none;
  transition: background 0.2s;
}
.vr-accordion-header:hover {
  background: #f1f5f9;
}
.vr-accordion-header::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: #94a3b8;
  transition: transform 0.2s;
}
.vr-accordion-item.open .vr-accordion-header::after {
  content: '−';
}
.vr-accordion-body {
  display: none;
  padding: 16px 18px;
}
.vr-accordion-item.open .vr-accordion-body {
  display: block;
}

/* Table */
.vr-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.vr-table th {
  background: #f1f5f9;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid #e2e8f0;
  color: #0f172a;
}
.vr-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}
.vr-table tr:hover td {
  background: #fafafa;
}

/* Responsive */
@media (max-width: 768px) {
  .vr-hero { padding: 28px 16px 24px; }
  .vr-hero h1 { font-size: 24px; }
  .vr-hero-sub { font-size: 14px; }
  .vr-page-wrap { margin-top: -16px; padding: 0 10px; }
  .vr-section { padding: 20px 16px; border-radius: 12px; }
  .vr-card-grid { grid-template-columns: 1fr; }
  .vr-feature { padding: 12px 14px; }
  .vr-page-contact { flex-direction: column; text-align: center; padding: 16px; }
  .vr-cta-buttons { flex-direction: column; align-items: center; }
  .vr-section h2 { font-size: 20px; }
  .vr-section p { font-size: 14px; }
  .vr-card p { font-size: 13px; }
  .vr-feature h3 { font-size: 14px; }
  .vr-feature p { font-size: 12px; }
  .vr-story-block { padding-left: 14px; }
  .vr-section-cta { padding: 24px 16px; }
  .vr-accordion-header { font-size: 14px; padding: 12px 14px; }
  .vr-accordion-body { padding: 12px 14px; }
}

/* Legal Content (Terms, Privacy) */
.vr-legal-content {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.vr-legal-content h1 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ad6dee;
}
.vr-legal-content h2 {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}
.vr-legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 8px;
}
.vr-legal-content p {
  margin: 0 0 12px;
}
.vr-legal-content a {
  color: #ad6dee;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vr-legal-content ul, .vr-legal-content ol {
  margin: 8px 0 16px;
  padding-left: 24px;
}
.vr-legal-content li {
  margin-bottom: 4px;
}
.vr-legal-content ul li::marker {
  color: #ad6dee;
}
.vr-legal-content strong {
  font-weight: 700;
  color: #0f172a;
}
.vr-legal-content hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 24px 0;
}
