/* Platinum Errand — Bold long-scroll app landing */
:root {
  --bg: #0f0720;
  --surface: #1a1033;
  --surface-light: #261747;
  --ink: #ffffff;
  --ink-muted: #b8b0d1;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --cta: #f43f5e;
  --cta-hover: #e11d48;
  --success: #22c55e;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

/* Fixed bottom CTA bar */
.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,7,32,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--surface-light);
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1000;
}
.bottom-cta p {
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.bottom-cta a {
  background: var(--cta);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.bottom-cta a:hover { background: var(--cta-hover); }
@media (max-width: 640px) {
  .bottom-cta { flex-direction: column; gap: 8px; padding: 12px 5vw; }
  .bottom-cta p { font-size: 0.85rem; text-align: center; }
}

/* Floating pill nav */
.nav-float {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px 10px 22px;
  background: rgba(15,7,32,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  z-index: 999;
  max-width: 92vw;
  flex-wrap: wrap;
}
.nav-float .logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.nav-float .links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-float .links a {
  color: #d8cce6;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-float .links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-float .links .cta-link { background: var(--cta); color: #fff; font-weight: 700; }
.nav-float .links .cta-link:hover { background: var(--cta-hover); }
  font-size: 0.9rem;
  font-weight: 500;
}
.top-nav-minimal .nav-links a:hover { color: var(--ink); }

/* Sections */
.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 5vw 12vh;
  position: relative;
}
.section-full:not(:first-child) {
  border-top: 1px solid var(--surface-light);
}

/* Hero */
.hero-bold {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--surface);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
}
.hero-bold h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-bold p {
  font-size: 1.25rem;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.hero-btn:hover { background: var(--accent-light); }

/* Giant pricing table */
.pricing-section { padding: 10vh 5vw 12vh; }
.pricing-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-sub {
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin-bottom: 44px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--surface-light);
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.price-card .unit {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 22px;
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--surface-light);
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.price-card li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 700;
}
.price-btn {
  display: block;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--surface-light);
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}
.price-card.featured .price-btn {
  background: var(--accent);
  border-color: var(--accent);
}
.price-btn:hover { opacity: 0.9; }

/* Service list */
.services-list {
  max-width: 800px;
  margin: 0 auto;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--surface-light);
}
.service-row h3 { font-size: 1.3rem; font-weight: 600; }
.service-row p { color: var(--ink-muted); font-size: 1rem; }
.service-row .price-tag {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-light);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .service-row { flex-direction: column; align-items: flex-start; }
}

/* Reviews big cards */
.reviews-section { padding: 10vh 5vw 12vh; }
.reviews-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 34px;
}
.review-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.review-big {
  background: var(--surface);
  border: 1px solid var(--surface-light);
  border-radius: 14px;
  padding: 28px;
}
.review-big p {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.review-big strong { font-weight: 700; }
.review-big span { color: var(--ink-muted); font-size: 0.9rem; }

/* Contact block */
.contact-block {
  text-align: center;
  padding: 10vh 5vw 12vh;
}
.contact-block h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-block p {
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.contact-block a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 1.2rem;
}

/* Page content */
.page-content {
  padding: 14vh 5vw 12vh;
  max-width: 720px;
  margin: 0 auto;
}
.page-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-content .lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.page-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--accent-light);
}
.page-content p, .page-content li {
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.page-content ul { padding-left: 22px; margin-bottom: 10px; }
.page-content a { color: var(--accent-light); }

/* Forms */
.form-line { margin-bottom: 16px; }
.form-line label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--ink-muted);
}
.form-line input,
.form-line textarea,
.form-line select {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--surface-light);
  color: var(--ink);
  font-size: 1rem;
  border-radius: 8px;
}
.form-line input:focus,
.form-line textarea:focus,
.form-line select:focus { outline: none; border-color: var(--accent); }
.btn-cta {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-cta:hover { background: var(--cta-hover); }
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.checkbox-line input { width: auto; margin-top: 3px; }

/* Footer simple */
.footer-simple {
  padding: 6vh 5vw 10vh;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--surface-light);
}
.footer-simple a { color: var(--ink-muted); text-decoration: none; margin: 0 10px; }
.footer-simple a:hover { color: var(--ink); }

/* How it works */
.how-section {
  padding: 10vh 5vw 12vh;
  border-top: 1px solid var(--surface-light);
}
.how-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 34px;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) { .steps-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-row { grid-template-columns: 1fr; } }
.step-box {
  background: var(--surface);
  border: 1px solid var(--surface-light);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
}
.step-box .step-num {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  margin: 0 auto 12px;
}
.step-box h4 { margin-bottom: 6px; font-size: 1.05rem; }
.step-box p { font-size: 0.9rem; color: var(--ink-muted); }

/* Four-column footer */
.footer-four {
  padding: 8vh 5vw 12vh;
  border-top: 1px solid var(--surface-light);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 34px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.footer-four h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer-four a { color: var(--ink-muted); text-decoration: none; display: block; margin-bottom: 8px; }
.footer-four a:hover { color: var(--ink); }
