/* ═══════════════════════════════════════
   ProxiRent — Landing Page Styles
═══════════════════════════════════════ */

:root {
  --cream: #F7F3ED;
  --sand: #EDE6D8;
  --gold: #C8A97A;
  --gold-dark: #A8844A;
  --gold-light: #F0E6D0;
  --ink: #1C1A17;
  --ink2: #5C5650;
  --ink3: #9C968E;
  --white: #FFFFFF;
  --dark: #141210;
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
p { font-size: 16px; color: var(--ink2); line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,169,122,0.4);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 8px 30px rgba(200,169,122,0.5); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.15);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #2C2820; transform: translateY(-1px); }

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(200,169,122,0.3);
}

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-logo-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; stroke: white; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  background: linear-gradient(160deg, #FDFAF6 0%, #F4EDE0 60%, #EDE2CC 100%);
  padding: 160px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,122,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag { margin-bottom: 20px; }

.hero-title {
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-sub {
  font-size: 18px;
  color: var(--ink2);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
}
.av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--sand);
  margin-right: -8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-text { font-size: 13px; color: var(--ink2); }
.proof-text strong { color: var(--ink); }

/* Hero phone visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 560px;
}

.phone-hero {
  width: 260px;
  height: 520px;
  background: #F5F2EE;
  border-radius: 40px;
  border: 8px solid #1C1A17;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.phone-nub {
  width: 80px; height: 24px;
  background: #1C1A17;
  border-radius: 12px;
  margin: 8px auto 0;
}

.phone-hero-screen {
  padding: 12px;
  height: calc(100% - 32px);
  overflow: hidden;
}

.ph-welcome {
  text-align: center;
  padding: 12px 0 10px;
}
.ph-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.ph-sub { font-size: 10px; color: var(--ink2); margin-top: 3px; line-height: 1.4; }

.ph-photo {
  width: 100%;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4C5A9, #9E8F74);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-photo-label {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
}

.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.ph-card {
  background: white;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.ph-card-icon { font-size: 18px; margin-bottom: 4px; }
.ph-card-label { font-size: 9px; color: var(--ink); font-weight: 500; }

.ph-review-btn {
  background: var(--gold-light);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 10px;
  color: var(--ink);
  font-weight: 500;
}

/* floating cards around phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 3;
  white-space: nowrap;
}

.fc-1 { left: -30px; top: 100px; }
.fc-2 { right: -20px; top: 180px; }
.fc-3 { left: -10px; bottom: 100px; }

.fc-label { font-size: 11px; color: var(--ink2); margin-bottom: 2px; }
.fc-value { font-size: 18px; font-weight: 700; color: var(--ink); }
.fc-trend { font-size: 11px; color: #22C55E; font-weight: 500; }

.fc-scan {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.fc-scan-text { font-size: 12px; color: var(--ink); font-weight: 600; }

/* stand visual */
.stand-card {
  position: absolute;
  right: -60px;
  bottom: 60px;
  width: 100px;
  height: 130px;
  background: linear-gradient(160deg, #E8DFD0, #C8B89A);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1;
}
.stand-label { font-size: 9px; color: rgba(255,255,255,0.8); font-weight: 600; letter-spacing: 0.5px; }
.stand-nfc { font-size: 8px; color: rgba(255,255,255,0.6); }

/* ═══════════════ LOGOS BAND ═══════════════ */
.logos-band {
  background: var(--cream);
  padding: 28px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logos-label { font-size: 13px; color: var(--ink3); font-weight: 500; }

.logo-pill {
  background: white;
  border: 1px solid var(--sand);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════ STATS ═══════════════ */
.stats-section {
  background: var(--dark);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ═══════════════ HOW IT WORKS ═══════════════ */
.hiw-section { background: var(--cream); }

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--ink2); max-width: 560px; }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.hiw-step {
  text-align: center;
  position: relative;
}

.hiw-step::after {
  content: '→';
  position: absolute;
  right: -24px;
  top: 28px;
  font-size: 20px;
  color: var(--gold);
  opacity: 0.5;
}
.hiw-step:last-child::after { display: none; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(200,169,122,0.4);
}

.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-title { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--ink2); line-height: 1.6; }

/* ═══════════════ FEATURES ═══════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feat-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--sand);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.feat-card.featured {
  background: var(--dark);
  border-color: transparent;
  grid-column: span 2;
}
.feat-card.featured .feat-title { color: white; }
.feat-card.featured .feat-desc { color: rgba(255,255,255,0.5); }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.feat-card.featured .feat-icon { background: rgba(200,169,122,0.2); }

.feat-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.feat-desc { font-size: 14px; color: var(--ink2); line-height: 1.6; }

.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.feat-tag {
  background: rgba(200,169,122,0.15);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ═══════════════ PRICING ═══════════════ */
.pricing-section { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.price-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1.5px solid var(--sand);
  position: relative;
}

.price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(200,169,122,0.2);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-name { font-size: 13px; font-weight: 600; color: var(--ink2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.price-amount { font-size: 42px; font-weight: 800; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.price-period { font-size: 14px; color: var(--ink3); font-weight: 400; }
.price-desc { font-size: 14px; color: var(--ink2); margin: 12px 0 24px; line-height: 1.5; }

.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--ink2);
}
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-features li.disabled { color: var(--ink3); }
.price-features li.disabled::before { content: '–'; color: var(--ink3); }

.price-btn { width: 100%; text-align: center; justify-content: center; }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testi-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--sand);
}

.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }

.testi-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-loc { font-size: 12px; color: var(--ink3); }

/* ═══════════════ FAQ ═══════════════ */
.faq-section { background: var(--cream); }

.faq-list {
  max-width: 680px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border-radius: var(--r);
  border: 1px solid var(--sand);
  overflow: hidden;
}

.faq-q {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--cream); }

.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold-light); color: var(--gold-dark); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  border-top: 1px solid var(--sand);
}
.faq-item.open .faq-a { display: block; }

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section {
  background: linear-gradient(135deg, #1C1A17 0%, #2C2416 100%);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 17px; max-width: 500px; margin: 0 auto 40px; }

.waitlist-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 10px;
}

.waitlist-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 15px;
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-input:focus { border-color: var(--gold); }

.waitlist-submit {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.waitlist-submit:hover { background: var(--gold-dark); }

.waitlist-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 14px; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { color: white; display: block; margin-bottom: 14px; text-decoration: none; font-size: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; }

.footer-col-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

/* ── SUCCESS TOAST ── */
.success-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #22C55E;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
  pointer-events: none;
}
.success-toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hiw-steps, .features-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
  .feat-card.featured { grid-column: span 1; }
  .pricing-grid { gap: 16px; }
  .price-card.popular { transform: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .waitlist-form { flex-direction: column; }
}
