/* PitDesk — mobile-first, no frameworks */

:root {
  --navy: #0A1B2E;
  --navy-2: #10263D;
  --navy-3: #1A3450;
  --white: #FFFFFF;
  --off-white: #F6F8FA;
  --ink: #22303F;
  --muted: #5A6B7B;
  --muted-light: #9FB2C4;
  --accent: #F2790F;
  --accent-dark: #D96A0A;
  --radius: 12px;
  --container: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; font-weight: 700; }

h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }

section { padding: 56px 0; }

.section-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--muted-light);
}
.btn-secondary:hover { border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.logo-mark { width: 32px; height: 32px; border-radius: 7px; }

.header-cta {
  color: var(--muted-light);
  text-decoration: none;
  font-weight: 600;
}
.header-cta:hover { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 64px 0 72px;
  text-align: center;
}

.hero-kicker {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.hero-sub {
  color: var(--muted-light);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  max-width: 540px;
  margin: 0 auto 2rem;
  padding: 12px 16px;
  background: rgba(242, 121, 15, 0.12);
  border: 1px solid rgba(242, 121, 15, 0.45);
  border-radius: var(--radius);
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-badge svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-badge strong { color: var(--white); }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.hero-note {
  margin-top: 1.25rem;
  color: var(--muted-light);
  font-size: 0.9rem;
}

/* ---------- Video ---------- */
.video-section { text-align: center; background: var(--white); }

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 16 / 9;
  max-width: 720px;
  margin: 0 auto;
  background: var(--off-white);
  border: 2px dashed var(--muted-light);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
}

.video-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--accent);
}

/* ---------- How it works ---------- */
.how { background: var(--off-white); text-align: center; }

.steps {
  display: grid;
  gap: 24px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(10, 27, 46, 0.08);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-icon svg { width: 26px; height: 26px; }

.step-num {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.step h3 { margin: 4px 0 8px; font-size: 1.15rem; }

.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Why it pays ---------- */
.pays {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.pays-inner { max-width: 720px; }

.pays h2 { margin-bottom: 1rem; }

.pays p { color: var(--muted-light); font-size: 1.1rem; }

/* ---------- Features ---------- */
.features { text-align: center; }

.feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}

.feature-card {
  border: 1px solid #E3E9EF;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
}

.feature-card svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }

.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--off-white); text-align: center; }

.pricing-grid {
  display: grid;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(10, 27, 46, 0.08);
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border: 2px solid var(--accent);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.2rem; }

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 16px;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-card li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: var(--ink);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4 10-10' stroke='%23F2790F' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.price-card-custom {
  border: 2px solid var(--navy-3);
}

.price-custom-intro {
  color: var(--muted);
  margin: 8px 0 12px;
}

.price-small-print {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
}

/* ---------- About ---------- */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 760px;
}

.about-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 2px dashed var(--muted-light);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.about p { color: var(--muted); font-size: 1.05rem; margin-top: 0.75rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--off-white); }

.faq .container { max-width: 720px; }

.faq h2 { text-align: center; margin-bottom: 1.5rem; }

.faq details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(10, 27, 46, 0.06);
}

.faq summary {
  padding: 16px 44px 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  padding: 0 20px 16px;
  color: var(--muted);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta p { color: var(--muted-light); margin: 0.5rem 0 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-2);
  color: var(--muted-light);
  text-align: center;
  padding: 40px 0;
  font-size: 0.95rem;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
}

.footer-tagline {
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.site-footer a { color: var(--muted-light); }
.site-footer a:hover { color: var(--white); }

.footer-note { margin-top: 0.5rem; font-size: 0.85rem; }

/* ---------- Tablet & desktop ---------- */
@media (min-width: 640px) {
  .hero h1 { font-size: 2.8rem; }
  .hero { padding: 88px 0 96px; }
  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
  h2 { font-size: 2.1rem; }
  section { padding: 72px 0; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card-custom { grid-column: 1 / -1; }
  .about-inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}

@media (min-width: 960px) {
  .hero h1 { font-size: 3.2rem; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card-custom { grid-column: auto; }
}
