:root {
  --primary: #F28C28;
  --primary-dark: #E07B1E;
  --success: #3CB371;

  --bg-cream: #FFF6E9;
  --bg-white: #FFFFFF;

  --text-main: #3A1F0F;
  --text-body: #5A3A2A;
  --text-muted: #8B6F5A;
}

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

/* BASE */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
}

/* CONTAINER */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  height: 38px;
}

/* BUTTONS */
.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242,140,40,0.25);
}

/* HERO */
.hero {
  background: var(--bg-white);
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 24px;
}

.trust-list {
  list-style: none;
  margin-bottom: 28px;
}

.trust-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-muted);
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

/* SECTIONS */
.section {
  padding: 20px 0;
  background: var(--bg-white);
}

.section.alt {
  background: var(--bg-cream);
}

.section h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.section h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 26px 0 10px;
  color: var(--text-main);
}

.section p {
  max-width: 860px;
  margin-bottom: 16px;
}

/* LINKS */
.section a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.testimonial strong {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(180deg, #F28C28, #E07B1E);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.final-cta .cta-btn {
  background: #fff;
  color: var(--primary);
}

/* CTA MODAL */
.cta-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.cta-box {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  width: 90%;
  max-width: 340px;
  text-align: center;
}

.progress-bar {
  background: #eee;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 18px;
}

.progress {
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.35s ease;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    margin: 30px auto 0;
  }

  .hero h1 {
    font-size: 34px;

  }

  .section h2 {
    font-size: 28px;
  }
}

/* =========================
   FOOTER – MOBILE FIRST
   ========================= */

.site-footer {
  background: #1f2933;
  color: #d1d5db;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Footer columns */
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-note {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 10px;
}

/* Footer links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 30px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* =========================
   DESKTOP ENHANCEMENT
   ========================= */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
}

