/* site.css — ProRunner Services LLC marketing website */
:root {
  --navy: #1B2A41;
  --orange: #E8622C;
  --orange-dark: #C94E1E;
  --cream: #F7F3ED;
  --white: #FFFFFF;
  --ink: #1E2530;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --border: #DDD7C9;
}

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

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

/* ── Navigation ─────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo { width: 40px; height: 40px; }

.nav-brand-name {
  color: white;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
}

.nav-brand-sub {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-family: 'Inter', Arial, sans-serif;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 14px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  font-weight: 600;
  padding: 8px 18px !important;
  border-radius: 7px !important;
  margin-left: 6px;
}

.nav-cta:hover { background: var(--orange-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.2s;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  font-family: 'Inter', Arial, sans-serif;
}

.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-white { background: white; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: #253a57; transform: translateY(-1px); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: white;
  padding: 88px 24px;
  text-align: center;
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-label {
  display: inline-block;
  background: rgba(232,98,44,0.2);
  color: var(--orange);
  border: 1px solid rgba(232,98,44,0.4);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Sections ────────────────────────────────────────── */
.section { padding: 76px 24px; }
.section.white { background: white; }
.section.dark { background: var(--navy); }
.section.orange { background: var(--orange); }

.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 800px; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 8px;
}

.section.dark .section-label { color: rgba(232,98,44,0.9); }

.section-title {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section.dark .section-title,
.section.orange .section-title { color: white; }

.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.section.dark .section-sub { color: rgba(255,255,255,0.65); }
.section.orange .section-sub { color: rgba(255,255,255,0.88); margin-bottom: 32px; }

/* ── Cards (home overview) ───────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card-icon {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

.card .learn-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.card .learn-more:hover { text-decoration: underline; }

/* ── County tags ─────────────────────────────────────── */
.county-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.county-tag {
  background: rgba(232,98,44,0.1);
  color: var(--orange);
  border: 1px solid rgba(232,98,44,0.3);
  padding: 9px 22px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 15px;
}

/* ── Why grid ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
}

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(232,98,44,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.why-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ── Page header ─────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Service cards ───────────────────────────────────── */
.service-group { margin-bottom: 56px; }

.service-group-header { margin-bottom: 28px; }

.service-group-title {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.service-group-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  display: block;
}

.service-group-sub { font-size: 14px; color: var(--gray); }

.service-card {
  background: white;
  border-radius: 12px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }

.service-card-info h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-card-info p { font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 580px; }

.service-card-info .tag {
  display: inline-block;
  margin-top: 10px;
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card-price { text-align: right; flex-shrink: 0; }

.service-card-price .amount {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.service-card-price .label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-text p { font-size: 15px; color: var(--gray); margin-bottom: 14px; line-height: 1.72; }

.stat-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
  color: white;
}

.stat-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item:first-child { padding-top: 0; }
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }

.stat-value {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); }

.values-list { margin-top: 28px; }

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.value-dot {
  width: 24px;
  height: 24px;
  background: rgba(232,98,44,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
}

.value-item p { font-size: 14px; color: var(--gray); }
.value-item strong { color: var(--ink); }

/* ── Contact ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #FEF3EC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 14px;
}

.contact-item span { font-size: 14px; color: var(--gray); }

.contact-form-box {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 32px;
}

.contact-form-box h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 22px;
}

/* ── Forms ───────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,44,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: #065F46;
  margin-top: 14px;
}

.form-error {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: #991B1B;
  margin-top: 14px;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 11px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--navy);
  transition: background 0.15s;
}

.faq-question:hover { background: #FAFAFA; }

.faq-chevron {
  font-size: 20px;
  color: var(--orange);
  font-weight: 300;
  transition: transform 0.22s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.72;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: #111923;
  color: rgba(255,255,255,0.55);
  padding: 52px 24px 28px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo { width: 36px; height: 36px; }

.footer-brand-name {
  color: white;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.footer-desc { font-size: 13px; line-height: 1.7; max-width: 270px; }

.footer-col h4 {
  color: white;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; margin-top: 6px; }

  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }

  .section { padding: 52px 20px; }
  .section-title { font-size: 30px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .service-card { flex-direction: column; }
  .service-card-price { text-align: left; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .page-header h1 { font-size: 32px; }
  .cards { grid-template-columns: 1fr; }
}
