/* ============================================================
   REPQUEST.CSS  —  Shared styles for landing & capture pages
   ============================================================ */

/* Fonts loaded in each HTML file head */

:root {
  --orange:      #f68e15;
  --orange-dark: #c8780a;
  --orange-pale: #fff4e6;
  --blue:        #1a6fd4;
  --blue-light:  #4a90e2;
  --dark:        #0e0b07;
  --dark-2:      #1a1408;
  --cream:       #fdf6ed;
  --cream-2:     #f5ede0;
  --text:        #2a1f0a;
  --muted:       #7a6040;
  --border:      #e8d8c0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Exo 2', sans-serif; background: var(--cream); color: var(--text); min-height: 100vh; overflow-x: hidden; }

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── NAV ── */
.rq-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(14,11,7,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(246,142,21,0.12);
  min-height: 62px;
}
.rq-nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.rq-nav-logo svg { height: 30px; width: auto; display: block; }
.rq-nav-right { display: flex; align-items: center; gap: 1rem; }
.rq-nav-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--orange);
  background: rgba(246,142,21,0.1);
  border: 1px solid rgba(246,142,21,0.28);
  padding: 0.28rem 0.75rem; border-radius: 50px; text-transform: uppercase;
}
.rq-nav-link {
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.18s;
}
.rq-nav-link:hover { color: white; }
/* Sign In — matches btn-secondary style but for dark nav */
.rq-nav-signin {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  color: var(--dark);
  background: white;
  border: 1.5px solid #d0c0a8;
  padding: 0.45rem 1.1rem; border-radius: 8px;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: border-color 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
}
.rq-nav-signin:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.rq-nav-signin:active { transform: translateY(0); }
/* Sign Up — solid orange button */
.rq-nav-cta {
  background: var(--orange); color: white; border: 1.5px solid var(--orange); cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  padding: 0.45rem 1.1rem; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(246,142,21,0.38);
  text-decoration: none; display: inline-flex; align-items: center;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.rq-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246,142,21,0.55);
  background: #e07d0a;
  border-color: #e07d0a;
}
.rq-nav-cta:active { transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--orange); color: white;
  font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 12px; border: none; cursor: pointer;
  box-shadow: 0 6px 22px rgba(246,142,21,0.4);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(246,142,21,0.52); }
.btn-primary:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: white; color: var(--dark);
  font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 12px;
  border: 1.5px solid var(--border); cursor: pointer;
  text-decoration: none; transition: border-color 0.18s, color 0.18s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-full { width: 100%; }

/* ── CARDS ── */
.rq-card {
  background: white; border-radius: 18px;
  border: 1.5px solid var(--border); padding: 1.4rem;
}
.rq-card-title {
  font-size: 0.88rem; font-weight: 800; color: var(--dark);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}

/* ── FORM ── */
.rq-field { margin-bottom: 1rem; }
.rq-label {
  display: block; font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.9px;
  color: var(--muted); margin-bottom: 0.4rem;
}
.rq-input {
  width: 100%; padding: 0.82rem 1rem;
  background: #fdf9f5; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'Exo 2', sans-serif;
  font-size: 0.88rem; font-weight: 500; color: var(--dark);
  outline: none; transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
}
.rq-input::placeholder { color: #c0a888; }
.rq-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(246,142,21,0.12); }
textarea.rq-input { resize: vertical; min-height: 80px; }
.rq-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ── PROOF / STATS BAR ── */
.rq-proof-bar {
  background: var(--dark); padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(246,142,21,0.1);
  border-bottom: 1px solid rgba(246,142,21,0.1);
  position: relative; z-index: 1;
}
.rq-proof-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.45);
}
.rq-proof-item b { color: var(--orange); font-weight: 800; }

/* ── SECTION ── */
.rq-section { position: relative; z-index: 1; padding: 5rem 1.5rem; }
.rq-section-inner { max-width: 1000px; margin: 0 auto; }
.rq-section-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 0.65rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.rq-section-label::before {
  content: ''; width: 18px; height: 2px; background: var(--orange); border-radius: 1px;
}
.rq-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1; letter-spacing: 0.5px;
  color: var(--dark); margin-bottom: 0.85rem;
}
.rq-section-sub {
  font-size: 1rem; color: var(--muted); font-weight: 500;
  max-width: 520px; line-height: 1.7; margin-bottom: 3rem;
}

/* ── GRID LAYOUTS ── */
.rq-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.rq-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.rq-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }

/* ── STEP CARD ── */
.rq-step {
  background: white; border: 1.5px solid var(--border);
  border-radius: 18px; padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.rq-step:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 12px 32px rgba(246,142,21,0.1); }
.rq-step::before {
  content: attr(data-num); position: absolute;
  right: -6px; top: -10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem;
  color: rgba(246,142,21,0.055); line-height: 1; pointer-events: none;
}
.rq-step-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(246,142,21,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.rq-step h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 0.35rem; }
.rq-step p  { font-size: 0.8rem; color: var(--muted); font-weight: 500; line-height: 1.6; }

/* ── FEATURE CARD ── */
.rq-feature {
  background: white; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color 0.2s;
}
.rq-feature:hover { border-color: var(--orange); }
.rq-feature-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rq-feature h4 { font-size: 0.9rem; font-weight: 800; color: var(--dark); margin-bottom: 0.3rem; }
.rq-feature p  { font-size: 0.78rem; color: var(--muted); font-weight: 500; line-height: 1.6; }

/* ── DARK PANEL ── */
.rq-dark-panel {
  background: var(--dark); border-radius: 22px;
  padding: 2.5rem; position: relative; overflow: hidden;
}
.rq-dark-panel::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(246,142,21,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PERK ROW ── */
.rq-perk { display: flex; align-items: flex-start; gap: 0.75rem; }
.rq-perk-tick {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: rgba(246,142,21,0.15); border: 1px solid rgba(246,142,21,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.rq-perk h5 { font-size: 0.88rem; font-weight: 800; color: white; margin-bottom: 0.12rem; }
.rq-perk p  { font-size: 0.74rem; color: rgba(255,255,255,0.42); font-weight: 500; line-height: 1.5; }

/* ── FORM CARD ── */
.rq-form-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: 22px; padding: 2.2rem;
  box-shadow: 0 16px 50px rgba(246,142,21,0.07);
  position: relative; overflow: hidden;
}
.rq-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffd060, var(--orange));
  background-size: 200% 100%; animation: rqShimmer 3s linear infinite;
}

/* ── FOOTER ── */
.rq-footer {
  position: relative; z-index: 1;
  background: var(--dark); padding: 1.75rem 2rem;
  border-top: 1px solid rgba(246,142,21,0.1);
}
.rq-footer-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.rq-footer-logo svg { height: 26px; width: auto; opacity: 0.7; }
.rq-footer-links { display: flex; gap: 1.5rem; }
.rq-footer-links a { font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.18s; }
.rq-footer-links a:hover { color: var(--orange); }
.rq-footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.2); font-weight: 500; }

/* ── SUCCESS STATE ── */
.rq-success { display: none; text-align: center; padding: 1.5rem 0; }
.rq-success.show { display: block; }
.rq-success-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffa940);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 28px rgba(246,142,21,0.45);
  animation: rqPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.rq-success h3 { font-size: 1.5rem; font-weight: 900; color: var(--dark); margin-bottom: 0.5rem; }
.rq-success p  { font-size: 0.87rem; color: var(--muted); font-weight: 500; line-height: 1.6; max-width: 300px; margin: 0 auto; }

/* ── ERROR BOX ── */
.rq-error {
  display: none; background: #fef2f2; border: 1.5px solid #fca5a5;
  color: #dc2626; font-size: 0.82rem; font-weight: 600;
  padding: 0.75rem 1rem; border-radius: 10px; margin-bottom: 1rem;
}

/* ── EYEBROW / BADGE ── */
.rq-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--orange); background: rgba(246,142,21,0.1);
  border: 1px solid rgba(246,142,21,0.25); padding: 0.38rem 1rem;
  border-radius: 50px; margin-bottom: 1.2rem;
}
.rq-pulse {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; animation: rqPulse 1.5s ease infinite;
}

/* ── ANIMATIONS ── */
@keyframes rqFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rqShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes rqPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
@keyframes rqPopIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes rqSpin { to { transform: rotate(360deg); } }
@keyframes rqUnderline { to { transform: scaleX(1); } }

.rq-animate { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.rq-animate.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .rq-nav { padding: 0.75rem 1.1rem; }
  .rq-nav-link { display: none; }
  .rq-section { padding: 3.5rem 1.1rem; }
  .rq-dark-panel { padding: 1.75rem 1.25rem; }
  .rq-form-card { padding: 1.6rem 1.1rem; }
  .rq-field-row { grid-template-columns: 1fr; }
  .rq-proof-bar { gap: 1rem; padding: 0.9rem 1rem; }
  .rq-footer { padding: 1.5rem 1rem; }
}
