/* RESET & RISE Málaga — Landing Page Styles */
:root{
  --rr-orange:#FF6A00;
  --rr-orange2:#FF8A3D;
  --rr-peach:#FFD1B3;
  --rr-bg:#FFF4EA;
  --rr-text:#1F1F1F;
  --rr-card:#ffffff;
  --rr-border: rgba(31,31,31,.10);
  --rr-shadow: 0 12px 34px rgba(31,31,31,.10);
  --rr-radius: 18px;
  --rr-max: 1120px;
}

/* Smooth scroll */
html{ scroll-behavior:smooth; }

/* Base */
body{
  color: var(--rr-text);
}
.rr-page{
  background: linear-gradient(180deg, #ffffff 0%, var(--rr-bg) 100%);
}

/* Container */
.rr-container{
  max-width: var(--rr-max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Sections */
.rr-section{
  padding: 72px 0;
}
@media (min-width: 900px){
  .rr-section{ padding: 100px 0; }
}

/* Typography */
.rr-hero h1{
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}
.rr-section h2{
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.rr-kicker{
  font-weight: 700;
  color: rgba(31,31,31,.72);
  margin-top: 0;
}
.rr-lead{
  font-size: 1.05rem;
  max-width: 62ch;
  color: rgba(31,31,31,.86);
}

/* Badge */
.rr-badge{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  background: rgba(255,106,0,.10);
  border: 1px solid rgba(255,106,0,.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

/* Cards */
.rr-card{
  background: var(--rr-card);
  border: 1px solid var(--rr-border);
  box-shadow: var(--rr-shadow);
  border-radius: var(--rr-radius);
  padding: 18px;
}
@media (min-width: 900px){
  .rr-card{ padding: 24px; }
}
.rr-card p{ margin: 0; }
.rr-grid{
  display: grid;
  gap: 16px;
}
@media (min-width: 900px){
  .rr-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
  .rr-grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
  .rr-grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.rr-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}
.rr-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
.rr-btn.primary{
  background: var(--rr-orange);
  color:#fff;
  box-shadow: 0 12px 24px rgba(255,106,0,.22);
}
.rr-btn.secondary{
  background: #fff;
  color: var(--rr-text);
  border-color: var(--rr-border);
}
.rr-btn:hover{ filter: brightness(.97); transform: translateY(-1px); }

/* Hero layout */
.rr-hero{
  padding-top: 40px;
}
.rr-hero-wrap{
  display:grid;
  gap: 22px;
}
@media (min-width: 900px){
  .rr-hero-wrap{
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
  }
}
.rr-hero-media{
  border-radius: var(--rr-radius);
  overflow: hidden;
  border: 1px solid var(--rr-border);
  box-shadow: var(--rr-shadow);
  background: linear-gradient(135deg, rgba(255,106,0,.12), rgba(255,138,61,.10));
  min-height: 240px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.rr-hero-media span{
  font-weight: 800;
  color: rgba(31,31,31,.65);
  text-align:center;
}

/* Feature list */
.rr-bullets{
  margin: 0;
  padding-left: 18px;
}
.rr-bullets li{ margin: 8px 0; }

/* Headliner */
.rr-headliner{
  display:grid;
  gap: 16px;
}
@media (min-width: 900px){
  .rr-headliner{
    grid-template-columns: 320px 1fr;
    align-items: center;
  }
}
.rr-avatar{
  border-radius: var(--rr-radius);
  overflow:hidden;
  border: 1px solid var(--rr-border);
  background: linear-gradient(135deg, rgba(255,106,0,.12), rgba(255,138,61,.10));
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(31,31,31,.65);
  font-weight: 800;
  text-align:center;
  padding: 18px;
}

/* Pricing */
.rr-price{
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}
.rr-note{
  color: rgba(31,31,31,.70);
  margin-top: 12px;
}

/* FAQ */
.rr-faq details{
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 26px rgba(31,31,31,.06);
  margin-bottom: 12px;
}
.rr-faq summary{
  cursor: pointer;
  font-weight: 800;
}
.rr-faq p{
  margin: 10px 0 0;
  color: rgba(31,31,31,.82);
}

/* Sticky CTA (mobile) */
.rr-sticky{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--rr-border);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.rr-sticky a{
  flex: 1;
  max-width: 520px;
  text-align:center;
}
@media (min-width: 900px){
  .rr-sticky{ display:none; }
}

/* Footer */
.rr-footer{
  padding: 28px 0 84px;
  color: rgba(31,31,31,.65);
  font-size: .95rem;
}
