/* Proper Strides — Shared landing page styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal-50: #f0fdfa; --teal-100: #ccfbf1; --teal-600: #2D6B5A; --teal-700: #245A4B; --teal-800: #1B4438;
  --cream: #FAF7F2; --cream-dark: #F3EDE4; --amber: #C4944A; --amber-dark: #B07F3A; --copper: #CB895F;
  --text: #3D3229; --text-muted: #7A7067; --border: #E8E2D9; --white: #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,247,242,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--teal-600); }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal-600); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--teal-600); color: var(--white); box-shadow: 0 2px 8px rgba(45,107,90,0.25); }
.btn-primary:hover { background: var(--teal-700); }
.btn-secondary { background: transparent; color: var(--teal-600); border: 1.5px solid var(--teal-600); }
.btn-secondary:hover { background: var(--teal-50); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }

/* Page header (hero) */
.page-header { padding: 140px 24px 80px; text-align: center; position: relative; overflow: visible; }
.page-header::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 700px; background: radial-gradient(circle, rgba(45,107,90,0.06) 0%, transparent 70%); pointer-events: none; }
.page-header-inner { max-width: 820px; margin: 0 auto; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-600); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px; color: var(--text); }
.page-header h1 .accent { color: var(--teal-600); }
.page-header .lead { font-size: 1.15rem; color: var(--text-muted); max-width: 620px; margin: 0 auto 28px; line-height: 1.7; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-app-badges { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 24px; flex-wrap: wrap; }
.hero-app-badges a { display: inline-block; line-height: 0; transition: opacity 0.2s; }
.hero-app-badges a:hover { opacity: 0.85; }
.hero-app-badges img { height: 48px; width: auto; display: block; }

/* Sections */
.section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.section-tight { padding: 60px 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Problem callout */
.problem { max-width: 760px; margin: 0 auto; padding: 32px 36px; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--amber); border-radius: 14px; }
.problem h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.problem p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: var(--teal-600); box-shadow: 0 4px 20px rgba(45,107,90,0.08); }
.feature-icon { width: 44px; height: 44px; background: var(--teal-50); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--teal-600); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* Screenshot showcase (text + phone) */
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.shot-grid h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.shot-grid p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 14px; }
.shot-frame { background: linear-gradient(135deg, var(--teal-50), #d0f0e8); border-radius: 22px; padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.shot-frame.amber-bg { background: linear-gradient(135deg, #faedd6, #f5dcb3); }
.shot-frame.cream-bg { background: linear-gradient(135deg, var(--cream-dark), var(--cream)); border: 1px solid var(--border); }
.shot-frame.pink-bg { background: linear-gradient(135deg, #fce7e7, #fad5d5); }
.phone-frame { width: 260px; background: #1a1a1a; border-radius: 30px; padding: 6px; box-shadow: 0 25px 50px rgba(0,0,0,0.18); }
.phone-inner { background: var(--white); border-radius: 24px; overflow: hidden; }
.phone-inner img { display: block; width: 100%; height: auto; }
.desktop-frame { width: 100%; max-width: 480px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.desktop-frame img { display: block; width: 100%; height: auto; }

/* What-you-get checklist */
.checklist-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 40px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; list-style: none; }
.checklist li { font-size: 0.97rem; color: var(--text); padding: 8px 0 8px 30px; position: relative; line-height: 1.5; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 11px; width: 18px; height: 18px; background: var(--teal-50); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D6B5A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* Pricing snapshot */
.pricing-snapshot { max-width: 760px; margin: 0 auto; text-align: center; padding: 40px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; }
.pricing-snapshot .plans { display: flex; justify-content: center; gap: 24px; margin: 24px 0 28px; flex-wrap: wrap; }
.plan-mini { padding: 18px 24px; border: 1px solid var(--border); border-radius: 12px; min-width: 180px; }
.plan-mini.recommended { border-color: var(--teal-600); }
.plan-mini .plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.plan-mini .plan-price { font-size: 1.75rem; font-weight: 800; color: var(--teal-600); margin: 4px 0; letter-spacing: -0.02em; }
.plan-mini .plan-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.plan-mini .plan-tag { font-size: 0.78rem; color: var(--text-muted); }

/* Final CTA */
.cta-section { text-align: center; padding: 80px 24px; max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 56px 18px 24px; font-size: 1rem; font-weight: 700; color: var(--text); cursor: pointer; list-style: none; position: relative; line-height: 1.4; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--teal-600); transition: transform 0.2s; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.faq-a p { margin: 0; }

/* Related links */
.related { max-width: 1100px; margin: 0 auto; padding: 40px 24px; text-align: center; border-top: 1px solid var(--border); }
.related-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.related-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.related-links a { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 0.88rem; color: var(--text); text-decoration: none; transition: all 0.2s; background: var(--white); }
.related-links a:hover { border-color: var(--teal-600); color: var(--teal-600); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 48px 24px 16px; background: var(--cream); }
.footer-solutions { max-width: 1200px; margin: 0 auto 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.footer-sol-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-bottom: 14px; }
.footer-sol-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; padding: 0; }
.footer-sol-col ul li a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-sol-col ul li a:hover { color: var(--teal-600); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo img { height: 32px; width: auto; }
.footer-text { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-600); }
.footer-legal { max-width: 1200px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid var(--border); text-align: center; }
.footer-legal p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.footer-legal p + p { margin-top: 4px; }

/* Responsive */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .shot-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .checklist { grid-template-columns: 1fr; }
  .footer-solutions { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 20px 60px; }
  .page-header .cta-row { flex-direction: column; align-items: center; }
  .page-header .cta-row .btn { width: 100%; max-width: 280px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .pricing-snapshot { padding: 28px 20px; }
  .checklist-wrap { padding: 28px 22px; }
  .problem { padding: 24px 22px; }
}
