/* =============================================
   Resale Rise — Design System
   Mindset. Method. Mastery.
   ============================================= */

:root {
  --rr-accent:   #F04F78;
  --rr-accent2:  #C93560;
  --rr-dark:     #111111;
  --rr-bg:       #FDFAF9;
  --rr-soft:     #FCE8EF;
  --rr-muted:    #F7F0F2;
  --rr-text:     #3A3A3A;
  --rr-subtle:   #8A7A80;
  --rr-white:    #FFFFFF;
  --rr-border:   rgba(240,79,120,0.15);
  --rr-shadow:   0 4px 24px rgba(240,79,120,0.10);
  --rr-radius:   20px;
  --rr-radius-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--rr-bg);
  color: var(--rr-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-heading { font-family: 'Playfair Display', serif; }

/* ---- NAV ---- */
.rr-nav {
  background: rgba(253,250,249,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rr-border);
}

/* ---- BUTTONS ---- */
.rr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.rr-btn-primary {
  background: var(--rr-accent);
  color: #fff;
}
.rr-btn-primary:hover {
  background: var(--rr-accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,79,120,0.35);
}
.rr-btn-outline {
  background: transparent;
  color: var(--rr-dark);
  border: 2px solid var(--rr-dark);
}
.rr-btn-outline:hover {
  background: var(--rr-dark);
  color: #fff;
  transform: translateY(-1px);
}
.rr-btn-ghost {
  background: var(--rr-soft);
  color: var(--rr-accent);
  border: 1px solid var(--rr-border);
}
.rr-btn-ghost:hover {
  background: var(--rr-accent);
  color: #fff;
}

/* ---- PILL BADGE ---- */
.rr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--rr-soft);
  color: var(--rr-accent);
  border: 1px solid var(--rr-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---- CARDS ---- */
.rr-card {
  background: var(--rr-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--rr-radius-lg);
  padding: 40px;
  transition: all 0.25s ease;
}
.rr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rr-shadow);
  border-color: var(--rr-border);
}

/* ---- SECTION UTILITY ---- */
.rr-section { padding: 96px 0; }
.rr-section-sm { padding: 64px 0; }
.rr-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.rr-container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTION HEADER ---- */
.rr-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.rr-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.2;
}
.rr-section-header p {
  margin-top: 16px;
  color: var(--rr-subtle);
  font-size: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- HERO ---- */
.rr-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.rr-hero-sub {
  font-size: 20px;
  color: var(--rr-subtle);
  line-height: 1.6;
}

/* ---- PATTERN BG ---- */
.rr-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(240,79,120,0.10) 1px, transparent 0);
  background-size: 36px 36px;
}

/* ---- DIVIDER ---- */
.rr-divider {
  width: 56px;
  height: 3px;
  background: var(--rr-accent);
  border-radius: 2px;
  margin: 20px 0;
}
.rr-divider-center { margin: 20px auto; }

/* ---- STAT BUBBLE ---- */
.rr-stat {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--rr-radius);
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.rr-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rr-accent);
}
.rr-stat-label { font-size: 12px; color: var(--rr-subtle); margin-top: 2px; }

/* ---- QUOTE / TESTIMONIAL ---- */
.rr-quote {
  background: var(--rr-white);
  border-left: 4px solid var(--rr-accent);
  border-radius: 0 var(--rr-radius) var(--rr-radius) 0;
  padding: 32px 36px;
  position: relative;
}
.rr-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--rr-soft);
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 24px;
}
.rr-quote-text {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.rr-quote-author {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--rr-subtle);
  padding-left: 20px;
}

/* ---- STEP / PROCESS ---- */
.rr-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rr-soft);
  color: var(--rr-accent);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- FEATURE LIST ---- */
.rr-check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.rr-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--rr-text);
}
.rr-check-list li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--rr-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ---- ICON BOX ---- */
.rr-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--rr-soft);
  color: var(--rr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ---- CTA BAND ---- */
.rr-cta-band {
  background: var(--rr-dark);
  color: #fff;
  border-radius: var(--rr-radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rr-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(240,79,120,0.25) 0%, transparent 70%);
}

/* ---- PAGE HERO ---- */
.rr-page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ---- FOOTER ---- */
.rr-footer {
  background: var(--rr-dark);
  color: rgba(255,255,255,0.7);
}
.rr-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.rr-footer a:hover { color: var(--rr-accent); }

/* ---- FORM ---- */
.rr-input {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--rr-dark);
  transition: border-color 0.2s;
  outline: none;
}
.rr-input:focus { border-color: var(--rr-accent); }
.rr-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.rr-field { margin-bottom: 24px; }
.rr-textarea { min-height: 120px; resize: vertical; }

/* ---- EXPLORE PILLS ---- */
.rr-explore-pill {
  text-decoration: none;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  transition: all 0.2s;
  display: inline-block;
}
.rr-explore-pill:hover {
  border-color: #F04F78;
  color: #F04F78;
  background: #fff;
}
.rr-explore-cta {
  background: #F04F78 !important;
  border-color: #F04F78 !important;
  color: #fff !important;
}
.rr-explore-cta:hover {
  background: #C93560 !important;
  border-color: #C93560 !important;
  color: #fff !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .rr-section { padding: 64px 0; }
  .rr-card { padding: 28px 24px; }
  .rr-cta-band { padding: 48px 28px; }
  .rr-page-hero { padding: 56px 0 48px; }
}



/* ===== Light premium pass ===== */
.rr-btn {
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.rr-btn-primary {
  box-shadow: 0 10px 24px rgba(240,79,120,0.22);
}

.rr-btn-primary:hover,
.rr-btn-outline:hover,
.rr-btn-ghost:hover {
  transform: translateY(-2px);
}

.rr-quote {
  box-shadow: 0 10px 28px rgba(17,17,17,0.04);
}

.rr-quote-text {
  font-size: 17px;
}

.rr-proof-strip {
  background: linear-gradient(135deg, rgba(240,79,120,0.08), rgba(255,255,255,0.98));
  border: 1px solid rgba(240,79,120,0.16);
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.rr-proof-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rr-accent);
  margin-bottom: 8px;
}

.rr-proof-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.rr-proof-copy {
  margin: 0;
  color: var(--rr-subtle);
  line-height: 1.7;
  font-size: 15px;
  max-width: 680px;
}

.rr-open-card {
  margin-top: 20px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(240,79,120,0.15);
  box-shadow: 0 12px 36px rgba(17,17,17,0.07);
}

.rr-open-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.rr-open-caption {
  padding: 14px 18px 18px;
  text-align: center;
  font-size: 14px;
  color: var(--rr-subtle);
}

.rr-stat-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.rr-stat-grid-premium .rr-stat-box {
  background: #fff;
  border: 1px solid rgba(240,79,120,0.15);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(17,17,17,0.05);
}

.rr-stat-grid-premium .rr-stat-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rr-accent);
  line-height: 1;
  margin: 0;
}

.rr-stat-grid-premium .rr-stat-box p {
  font-size: 12px;
  color: var(--rr-subtle);
  margin-top: 6px;
}

.rr-results-cta-top {
  margin-top: 22px;
}

@media (max-width: 768px) {
  .rr-proof-strip {
    padding: 22px 20px;
  }

  .rr-quote-text {
    font-size: 16px;
  }
}
