/* RosaRide Site Styles */

:root {
  --rr-bg: #0b1020;
  --rr-bg-alt: rgba(255, 255, 255, 0.04);
  --rr-card: rgba(255, 255, 255, 0.06);
  --rr-card-hover: rgba(255, 255, 255, 0.10);
  --rr-border: rgba(255, 255, 255, 0.12);
  --rr-text-main: rgba(255, 255, 255, 0.92);
  --rr-text-muted: rgba(255, 255, 255, 0.68);
  --rr-accent: #7dd3fc;
  --rr-accent-2: #a78bfa;
  --rr-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --rr-radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--rr-text-main);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(167, 139, 250, 0.25), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(125, 211, 252, 0.22), transparent 50%),
    radial-gradient(900px 700px at 50% 110%, rgba(16, 185, 129, 0.12), transparent 55%),
    var(--rr-bg);
  overflow-x: hidden;
}

a { color: var(--rr-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.rr-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.rr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.rr-logo-title { font-weight: 800; letter-spacing: 0.2px; }
.rr-logo-sub { font-size: 13px; color: var(--rr-text-muted); }

.rr-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rr-nav-link {
  font-size: 13px;
  color: var(--rr-text-muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}

.rr-nav-link:hover {
  color: var(--rr-text-main);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* Breadcrumbs */
.rr-breadcrumbs {
  font-size: 13px;
  color: var(--rr-text-muted);
  margin: 8px 0 16px;
}

.rr-breadcrumbs a {
  color: var(--rr-text-muted);
  padding: 6px 8px;
  border-radius: 10px;
}

.rr-breadcrumbs a:hover {
  color: var(--rr-text-main);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.rr-breadcrumbs .rr-bc-sep {
  opacity: 0.55;
  margin: 0 6px;
}

/* Buttons */
.rr-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
  user-select: none;
}

.rr-btn:active { transform: translateY(1px); }
.rr-btn-sm { padding: 10px 14px; border-radius: 12px; font-size: 13px; }

.rr-btn-primary {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(167, 139, 250, 0.95));
  color: #07101f;
  box-shadow: 0 10px 24px rgba(125, 211, 252, 0.18);
}

.rr-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(167, 139, 250, 0.22);
}

.rr-btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--rr-text-main);
}

.rr-btn-secondary:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }

.rr-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--rr-text-main);
}

.rr-btn-outline:hover { background: rgba(255, 255, 255, 0.06); }

/* Sections */
.rr-section { padding: 62px 0; }

.rr-section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rr-section h2 { margin: 0 0 14px 0; font-size: clamp(22px, 2.4vw, 32px); }

.rr-section-lead {
  color: var(--rr-text-muted);
  max-width: 820px;
  line-height: 1.65;
}

/* Hero */
.rr-hero { position: relative; padding: 92px 0 76px; }
.rr-hero-inner { position: relative; }

.rr-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 30% 25%, rgba(125, 211, 252, 0.18), transparent 60%),
    radial-gradient(900px 450px at 75% 10%, rgba(167, 139, 250, 0.16), transparent 55%);
  pointer-events: none;
}

.rr-hero-content h1 {
  margin: 0 0 14px 0;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.2px;
}

.rr-hero-subtitle {
  color: var(--rr-text-muted);
  max-width: 760px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.rr-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

.rr-hero-bullets {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.rr-hero-bullets li { margin: 6px 0; }

/* Grid */
.rr-grid { display: grid; gap: 16px; margin-top: 18px; }
.rr-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rr-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rr-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

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

@media (max-width: 620px) {
  .rr-grid-2, .rr-grid-3, .rr-grid-4 { grid-template-columns: 1fr; }
  .rr-header-inner { align-items: flex-start; }
}

/* Cards */
.rr-card {
  background: var(--rr-card);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--rr-radius);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.rr-card:hover {
  background: var(--rr-card-hover);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: var(--rr-shadow);
}

.rr-card h3 { margin: 0 0 8px 0; font-size: 16px; }
.rr-card p { margin: 0; color: var(--rr-text-muted); line-height: 1.6; }

/* Clickable card links */
.rr-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 40px;
}

.rr-card-link:hover { text-decoration: none; }

.rr-card-cta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.rr-card-link:hover .rr-card-cta {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

/* Reveal animation */
.rr-reveal { opacity: 0; transform: translateY(10px); }

.rr-reveal.rr-reveal-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

/* Step number */
.rr-step-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #07101f;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(167, 139, 250, 0.95));
  margin-bottom: 10px;
}

/* Compare */
.rr-card-plain { background: rgba(255, 255, 255, 0.05); }

.rr-card-accent {
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.10), rgba(167, 139, 250, 0.08));
  border-color: rgba(167, 139, 250, 0.22);
}

.rr-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.80);
}

.rr-list li { margin: 8px 0; }

/* Prices */
.rr-prices-table {
  margin-top: 16px;
  border-radius: var(--rr-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.rr-prices-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
}

.rr-prices-row:nth-child(2n) { background: rgba(255, 255, 255, 0.03); }

/* FAQ */
.rr-faq details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 10px 0;
}

.rr-faq summary { cursor: pointer; font-weight: 800; }
.rr-faq p { color: var(--rr-text-muted); line-height: 1.6; }

/* Final CTA */
.rr-section-final { padding: 72px 0; }

.rr-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.10), rgba(167, 139, 250, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--rr-radius) + 4px);
  padding: 18px;
}

.rr-final-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .rr-final-inner { flex-direction: column; align-items: flex-start; }
}

/* Footer */
.rr-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.rr-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rr-footer-meta { color: var(--rr-text-muted); font-size: 13px; margin-top: 4px; }

.rr-footer-link {
  color: var(--rr-text-muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.rr-footer-link:hover {
  color: var(--rr-text-main);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* Simple pages */
.rr-page { padding: 48px 0 70px; }
.rr-page h1 { margin: 0 0 10px 0; font-size: clamp(26px, 3vw, 38px); }
.rr-page h2 { margin: 28px 0 10px; font-size: 20px; }
.rr-page p { color: var(--rr-text-muted); line-height: 1.7; }
.rr-page ul { color: rgba(255,255,255,0.80); line-height: 1.7; }

.rr-notice {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.80);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
