/* start.css — /start payment page styles */
/* Navy/Amber design language matching intake.css and theme.css */

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

:root {
  --navy:   #0f1f3d;
  --amber:  #f59e0b;
  --amber-hover: #d97706;
  --white:  #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --green:  #16a34a;
  --font-body: 'DM Sans', sans-serif;
  --font-head: 'Syne', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
}

/* HEADER */
.start-header {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}

.start-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.start-logo-accent {
  color: var(--amber);
}

/* MAIN */
.start-main {
  min-height: calc(100vh - 140px);
  padding: 3rem 1.5rem 4rem;
}

.start-container {
  max-width: 540px;
  margin: 0 auto;
}

/* EYEBROW */
.start-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* HEADLINE */
.start-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* SUB */
.start-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem;
}

.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* PRICING CARD */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}

.pricing-row-secondary {
  opacity: 0.7;
}

.pricing-label {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.pricing-amount.secondary {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.pricing-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.75rem 0;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* CTA */
.cta-block {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pay-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.1s ease;
  width: 100%;
  text-align: center;
}

.pay-btn:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
}

.pay-btn:active {
  transform: translateY(0);
}

.cta-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

/* BELOW FOLD */
.below-fold {
  border-top: 1px solid var(--gray-200);
  padding-top: 2rem;
}

.below-fold-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.below-link {
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.below-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* FOOTER */
.start-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.85rem;
}

.start-footer a {
  color: var(--amber);
  text-decoration: none;
}

.start-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .start-main {
    padding: 2rem 1rem 3rem;
  }
}
