/*
Theme Name: Natural State Networks
Theme URI: https://natstate.net
Author: Natural State Networks
Description: Single-page trust checkpoint theme for Natural State Networks — cell signal booster installation across Arkansas.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: nsn-theme
*/

/* ============================================
   Natural State Networks — Main Stylesheet
   Mobile-first | Outfit font | Brand colors
   ============================================ */

:root {
  --navy: #1a2332;
  --forest: #2B5F3A;
  --signal: #5AAF76;
  --light-green: #90ECAC;
  --gray: #888888;
  --white: #ffffff;
  --bg-light: #f8faf9;
  --bg-dark: #1a2332;
  --radius: 8px;
  --max-width: 960px;
}

/* ---- Reset & Base ---- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Container ---- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Logo (CSS text rendering) ---- */

.logo__natural-state {
  display: block;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}

.logo__networks {
  display: block;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.3;
}

/* Footer logo: white variant */
.site-footer .logo__natural-state {
  color: var(--white);
}

.site-footer .logo__networks {
  color: var(--signal);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn--phone {
  background: var(--forest);
  color: var(--white);
  min-height: 56px;
}

.btn--phone:hover {
  background: #234a2d;
}

.btn--large {
  font-size: 24px;
  padding: 20px 40px;
  min-height: 64px;
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 28px;
}

.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--submit {
  background: var(--forest);
  color: var(--white);
  width: 100%;
  font-size: 18px;
  min-height: 52px;
}

.btn--submit:hover {
  background: #234a2d;
}

.btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn--large .btn__icon {
  width: 26px;
  height: 26px;
}

/* ---- Section Titles ---- */

.section__title {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--navy);
}

/* ---- HERO ---- */

.hero {
  background: var(--bg-light);
  text-align: center;
  padding: 48px 0 56px;
}

.hero__logo {
  margin-bottom: 32px;
}

.hero__headline {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.hero__sub {
  font-size: 18px;
  color: #444;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero__cta {
  margin-bottom: 8px;
}

.hero__cta-hint {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
}

/* ---- PROBLEM ---- */

.problem {
  padding: 56px 0;
  background: var(--white);
}

.problem__list {
  margin-bottom: 24px;
}

.problem__list li {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  padding-left: 28px;
}

.problem__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #d44;
  border-radius: 50%;
}

.problem__empathy {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* ---- SOLUTION ---- */

.solution {
  padding: 56px 0;
  background: var(--bg-light);
}

.solution__grid {
  display: grid;
  gap: 24px;
}

.solution__card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.solution__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.solution__card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--navy);
}

.solution__card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* ---- PRICING ---- */

.pricing {
  padding: 56px 0;
  background: var(--white);
  text-align: center;
}

.pricing__box {
  background: var(--bg-light);
  border: 2px solid var(--signal);
  border-radius: 12px;
  padding: 40px 24px;
  max-width: 540px;
  margin: 0 auto;
}

.pricing__amount {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing__amount strong {
  font-size: 40px;
  font-weight: 800;
  color: var(--forest);
}

.pricing__includes {
  font-size: 18px;
  color: #555;
  margin-bottom: 16px;
}

.pricing__note {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  padding: 56px 0;
  background: var(--bg-dark);
  color: var(--white);
}

.testimonials .section__title {
  color: var(--white);
  text-align: center;
}

.testimonials__grid {
  display: grid;
  gap: 24px;
}

.showcase__card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin: 0;
}

.showcase__card img {
  border-radius: var(--radius);
  margin: 0 auto 16px;
  width: 100%;
  height: auto;
}

.showcase__card figcaption {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ---- SERVICE AREA ---- */

.service-area {
  padding: 56px 0;
  background: var(--white);
  text-align: center;
}

.service-area__text {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ---- CONTACT ---- */

.contact {
  padding: 56px 0;
  background: var(--bg-light);
  text-align: center;
}

.contact__intro {
  font-size: 18px;
  color: #555;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.contact__form-wrapper {
  max-width: 400px;
  margin: 40px auto 0;
  text-align: left;
}

.contact__form-label {
  font-size: 15px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 20px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--navy);
}

.form__group input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form__group input:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(90, 175, 118, 0.15);
}

.form__group input::placeholder {
  color: #bbb;
}

.contact__success {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--signal);
  border-radius: var(--radius);
  margin-top: 16px;
}

.contact__success p {
  color: var(--forest);
  font-size: 18px;
}

/* ---- FOOTER ---- */

.site-footer {
  background: var(--bg-dark);
  text-align: center;
  padding: 40px 0;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__phone {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--signal);
  margin-bottom: 8px;
}

.footer__phone:hover {
  color: var(--light-green);
}

.footer__area {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero__headline {
    font-size: 44px;
  }

  .hero__sub {
    font-size: 20px;
  }

  .logo__natural-state {
    font-size: 34px;
  }

  .logo__networks {
    font-size: 23px;
  }

  .section__title {
    font-size: 34px;
    margin-bottom: 32px;
  }

  .problem,
  .solution,
  .pricing,
  .testimonials,
  .service-area,
  .contact {
    padding: 72px 0;
  }

  .solution__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing__amount strong {
    font-size: 48px;
  }
}

/* ============================================
   Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 88px;
  }

  .hero__headline {
    font-size: 52px;
  }

  .logo__natural-state {
    font-size: 38px;
  }

  .logo__networks {
    font-size: 26px;
  }

  .section__title {
    font-size: 38px;
  }

  .solution__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .problem__list li {
    font-size: 22px;
  }
}