/* ============================================
   SouthSiteFirst – Global Stylesheet
   ============================================ */

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

:root {
  --brand: #c4622d;
  --brand-dark: #a34e23;
  --brand-light: #fef3ec;
  --accent: #f0a070;
  --text: #1c1208;
  --muted: #7a6555;
  --bg: #fdf9f5;
  --surface: #f9f1e8;
  --border: #edddd0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
strong { color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline { border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #e6f4ed; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  flex: 1;
}
nav ul a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--text); }
.nav-cta { margin-left: auto; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* ── SECTION LABELS / TITLES ── */
.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 3rem;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.hero-badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--brand); }
.hero p { font-size: 1.05rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* BROWSER MOCK */
.hero-visual { display: flex; justify-content: center; }
.browser-mock {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.browser-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.browser-url {
  background: var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 0.5rem;
  flex: 1;
}
.browser-body { padding: 1.25rem; background: #fff; }
.mock-hero-block {
  height: 80px;
  background: linear-gradient(135deg, var(--brand-light), #fcd9c0);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.mock-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.mock-card {
  flex: 1;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.mock-text-line {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.mock-btn-block {
  width: 100px;
  height: 30px;
  background: var(--brand);
  border-radius: 6px;
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--brand);
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 2px var(--brand);
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }

/* ── PRICING SNAP ── */
.pricing-snap { padding: 5rem 2rem; }
.pricing-snap-inner { max-width: 800px; margin: 0 auto; }
.price-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.price-card-left { flex: 1; min-width: 200px; }
.price-card-left h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.price-card-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.price-item { text-align: center; }
.price-item-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.25rem; }
.price-item-amount { font-size: 2.5rem; font-weight: 900; color: var(--text); letter-spacing: -1px; }
.price-item-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-divider { font-size: 2rem; color: var(--border); font-weight: 300; }
.see-more-link { display: block; text-align: center; margin-top: 1.25rem; color: var(--brand); font-weight: 600; font-size: 0.9rem; }
.see-more-link:hover { text-decoration: underline; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; color: #fff; }
.cta-banner p { opacity: 0.85; margin-bottom: 2rem; max-width: 450px; margin-left: auto; margin-right: auto; color: #fff; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 0.85rem; color: var(--muted); }
.footer-nav a:hover { color: var(--text); }
.footer-copy { font-size: 0.85rem; color: var(--muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--brand-light);
  text-align: center;
  padding: 4.5rem 2rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 0.5rem; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.page-hero p { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ── ABOUT PAGE ── */
.about-mission { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 1.25rem; color: var(--text); }
.about-text p { margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.value-card p { font-size: 0.875rem; }

.who-we-help { background: var(--surface); padding: 5rem 2rem; }
.business-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.business-types span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* ── SERVICES PAGE ── */
.service-detail { padding: 5rem 2rem; }
.service-detail.alt-bg { background: var(--surface); }
.service-detail-inner { max-width: 900px; margin: 0 auto; }
.service-detail-badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.service-detail-badge.recurring { background: #fde8d8; color: #a34e23; }
.service-detail h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text); margin-bottom: 0.75rem; display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.service-price { color: var(--brand); }
.service-price small { font-size: 1rem; }
.service-desc { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 620px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.feature-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.875rem; }

.pricing-summary { padding: 5rem 2rem; text-align: center; }
.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.summary-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.summary-row em { color: var(--muted); font-style: normal; font-size: 0.85rem; }
.summary-row.total { font-weight: 800; font-size: 1.05rem; border-bottom: none; }
.summary-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; }

.faq { background: var(--surface); padding: 5rem 2rem; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; }
.faq-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.875rem; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap h2, .contact-info h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.optional { font-weight: 400; color: var(--muted); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-group textarea { resize: vertical; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.2rem; }
.contact-item a { color: var(--brand); font-weight: 600; font-size: 0.95rem; }
.contact-item a:hover { text-decoration: underline; }
.contact-item span { font-size: 0.95rem; color: var(--text); }

.what-happens-next {
  background: var(--brand-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.what-happens-next h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.what-happens-next ol { padding-left: 1.25rem; }
.what-happens-next li { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .price-card { flex-direction: column; gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-toggle { display: block; margin-left: auto; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  nav ul.open { display: flex; }
  .nav-cta { display: none; }
  nav { position: relative; }
}
