/* ============================================================
   WebTelos Digital — stylesheet
   Table of contents:
   1. Custom properties / reset
   2. Base typography
   3. Layout helpers
   4. Buttons
   5. Header / Nav
   6. Hero
   7. Trust strip
   8. Problem section
   9. Services
   10. Process
   11. Founder / About
   12. Guarantees
   13. Pricing
   14. FAQ
   15. Contact
   16. Footer
   17. Utility pages (thank-you / privacy / 404)
   18. Breakpoints (tablet, desktop)
   ============================================================ */

/* 1. Custom properties / reset ------------------------------ */
:root {
  --navy: #14213D;
  --navy-dark: #0B1526;
  --accent: #E8871E;
  --accent-dark: #C7591A;
  --teal: #2E8B8B;
  --bg: #FAF9F6;
  --bg-alt: #F1EDE4;
  --text: #2B2B2B;
  --text-muted: #6B7280;
  --border: #E5E1D8;
  --success: #3F8F5F;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 16px rgba(11, 21, 38, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 21, 38, 0.14);
  --max-width: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); margin: 0 0 0.5em; line-height: 1.2; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
button { font-family: inherit; }

/* 2. Base typography ----------------------------------------- */
h1 { font-size: 2.1rem; font-weight: 700; }
h2 { font-size: 1.7rem; font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6em;
}
.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* 3. Layout helpers -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-header .section-lead { margin-left: auto; margin-right: auto; }

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

/* 4. Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); }

/* 5. Header / Nav ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta { display: none; align-items: center; gap: 1rem; }
.nav-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25em;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.25rem 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.6em 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}
.mobile-menu .btn { margin-top: 0.75rem; }

/* 6. Hero --------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.hero h1 { color: #fff; font-size: 2.3rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.hero .subhead {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* 7. Trust strip ---------------------------------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.trust-badge svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent); }

/* 8. Problem section -------------------------------------------------- */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  gap: 1rem;
}
.problem-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 0.8em;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.problem-list svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }

/* 9. Services ------------------------------------------------------------ */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
}
.icon-badge svg { width: 24px; height: 24px; }

/* 10. Process --------------------------------------------------------------- */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 11. Founder / About -------------------------------------------------------- */
.founder-wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 3px solid var(--accent);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  overflow: hidden;
}
.founder-quote {
  font-size: 1.1rem;
  color: var(--text);
  text-align: center;
}
.founder-name { text-align: center; margin-top: 1rem; font-weight: 600; color: var(--navy); }
.founder-role { text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* 12. Guarantees -------------------------------------------------------------- */
.guarantee-grid { grid-template-columns: 1fr; }
.guarantee-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.guarantee-card .icon-badge { margin: 0 auto 1rem; background: var(--bg); color: var(--success); }

/* 13. Pricing ------------------------------------------------------------------ */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3em 0.9em;
  border-radius: 999px;
}
.price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0;
}
.price span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.pricing-card ul { list-style: none; padding: 0; margin: 1.25rem 0; text-align: left; flex-grow: 1; }
.pricing-card li { padding: 0.4em 0; display: flex; gap: 0.5em; align-items: flex-start; font-size: 0.95rem; }
.pricing-card svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--success); margin-top: 3px; }
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* 14. FAQ ------------------------------------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { padding: 0 1.25rem 1.1rem; color: var(--text-muted); }

/* 15. Contact ---------------------------------------------------------------------- */
.contact-wrap {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info { display: grid; gap: 1rem; align-content: start; }
.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-card h3 { color: #fff; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.75em 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: #fff;
}
.contact-method:last-child { border-bottom: none; }
.contact-method svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4em; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-two-col { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

/* 16. Footer -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top .logo { margin-bottom: 0.75rem; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* 17. Utility pages (thank-you / privacy / 404) ------------------------------------------- */
.utility-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}
.utility-page .icon-badge { margin: 0 auto 1.25rem; width: 64px; height: 64px; }
.utility-page .icon-badge svg { width: 32px; height: 32px; }
.legal-page { max-width: 780px; margin: 0 auto; padding: 3rem 1.25rem; }
.legal-page h2 { margin-top: 2rem; }

/* 18. Breakpoints ------------------------------------------------------------------------- */
@media (min-width: 768px) {
  h1 { font-size: 2.9rem; }
  .hero h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .guarantee-grid { grid-template-columns: repeat(4, 1fr); }
  .founder-wrap { grid-template-columns: 220px 1fr; text-align: left; }
  .founder-quote { text-align: left; }
  .founder-name, .founder-role { text-align: left; }
  .contact-wrap { grid-template-columns: 1fr 1.4fr; }
  .form-two-col { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  section { padding: 5.5rem 0; }
  .hero { padding: 6rem 0 4.5rem; }
}
