@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
body{font-family:'Inter',sans-serif;font-size:17px;color:#222;background:#fff;line-height:1.6;}

/* TOP BAR */
.topbar{
  background:#e63222;
  color:#fff;
  text-align:center;
  padding:10px 12px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.05em;
  line-height:1.5;
  text-transform:uppercase;
  width: 100%;
  display: block;
  text-decoration: none;
}

/* HERO */
.hero-wrap{
  width: 100%;
  max-width: none;
  margin:0 auto;
  padding:50px 5% 20px;
  display:flex;
  gap:40px;
  align-items:center;
}
.hero-left{flex:1.2;}
.hero-left h1{
  font-size:42px;
  font-weight:900;
  line-height:1.15;
  color:#111;
  margin-bottom:12px;
}
.hero-subtitle{
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}
.hero-subtitle .red{color:#e63222;}
.hero-subtitle .amber{color:#f5a800;}
.bullets{list-style:none;margin-bottom:28px;}
.bullets li{
  font-size:17px;
  color:#444;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:12px;
  line-height:1.5;
}
.bullets li:last-child{margin-bottom:0;}
.bullets li::before{content:'•';color:#555;font-size:22px;line-height:1;}
.bullets strong{font-weight:700;color:#111;}

.red-bar{
  background:#e63222;
  color:#fff;
  text-align:center;
  padding:14px 16px;
  font-size:15px;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  margin:20px 0 16px;
  line-height:1.5;
}

.phone-pill{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:#e63222;
  color:#fff;
  text-decoration:none;
  padding:14px 30px;
  border-radius:40px;
  margin-top:14px;
  transition: transform 0.2s;
}
.phone-pill:hover{ transform: scale(1.02); }
.phone-pill .ph-num{font-size:24px;font-weight:800;line-height:1.2;}
.phone-pill .ph-sub{font-size:12px;font-weight:600;letter-spacing:0.06em;opacity:0.9;}
.phone-icon{font-size:26px;}

/* HERO RIGHT */
.hero-right{
  flex: 0.8;
  max-width: 450px;
  margin-top: 10px;
  position:relative;
}
.orange-bg{
  position:absolute;
  top:20px;
  left:-10px;
  right:-10px;
  height:240px;
  background:#f5a800;
  border-radius:4px;
  z-index:0;
}
.hero-photo{
  position:relative;
  z-index:1;
  width:100%;
  height:260px;
  border-radius:4px;
  object-fit:cover;
  display:block;
}
.hero-badge-pill{
  position:absolute;
  top:10px;
  right:0;
  background:#e63222;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:6px 10px;
  border-radius:2px;
  z-index:2;
  letter-spacing:0.04em;
}

/* STEPS */
.steps-wrap{
  background:#f5f5f5;
  padding:60px 5%;
  margin-top:40px;
  width: 100%;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  width: 100%;
  max-width: none;
  margin:0 auto;
}
.step-card{
  background:#fff;
  border-radius:5px;
  padding:35px 30px;
  box-shadow:0 1px 5px rgba(0,0,0,0.07);
}
.step-icon-circle{
  width:60px;height:60px;
  background:#f5c800;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
  margin-bottom:18px;
}
.step-card h3{font-size:20px;font-weight:700;color:#111;margin-bottom:12px;}
.step-card p{font-size:16px;color:#555;line-height:1.65;margin-bottom:20px;}
.btn-red-block{
  display:flex;
  align-items:center;
  gap:10px;
  background:#e63222;
  color:#fff;
  text-decoration:none;
  padding:12px 16px;
  border-radius:4px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  line-height:1.4;
  transition: transform 0.2s;
}
.btn-red-block:hover { transform: translateY(-2px); }
.btn-red-block .btn-sub{font-size:10px;font-weight:600;letter-spacing:0.06em;opacity:0.9;}

/* YELLOW SECTION */
.yellow-section{
  background:#f5c800;
  padding:65px 5% 50px;
  width: 100%;
}
.yellow-inner{
  width: 100%;
  max-width: none;
  margin:0 auto;
}

.imgs-row{
  display:flex;
  gap:20px;
  justify-content:center;
  align-items:flex-end;
  margin-bottom:40px;
}
.img-box{
  border-radius:5px;
  overflow:hidden;
  background:#1a4a80;
}
.img-box img{display:block;width:100%;height:100%;object-fit:cover;}
.img-box-main{width:400px;height:260px;}
.img-box-side{width:200px;height:260px;}

/* FORM CARD */
.form-card{
  background:#fff;
  border-radius:8px;
  padding:45px 55px;
  max-width:800px;
  margin:0 auto;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
}
.form-tag{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.12em;
  color:#f5a800;
  text-transform:uppercase;
  text-align:center;
  margin-bottom:12px;
}
.form-card h2{
  font-size:32px;
  font-weight:800;
  text-align:center;
  color:#111;
  margin-bottom:28px;
  line-height:1.25;
}
.fg{display:flex;flex-direction:column;margin-bottom:16px;}
.fg label{font-size:14px;font-weight:600;color:#333;margin-bottom:6px;}
.fg label span{color:#e63222;}
.fg input,.fg textarea{
  border:1px solid #ddd;
  border-radius:4px;
  padding:12px 14px;
  font-size:16px;
  font-family:'Inter',sans-serif;
  color:#333;
  outline:none;
}
.fg input:focus,.fg textarea:focus{border-color:#2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1);}
.fg textarea{height:90px;resize:none;}
.fg-row{display:flex;gap:16px;margin-bottom:16px;}
.fg-row .fg{flex:1;margin-bottom:0;}
.btn-submit{
  width:100%;
  background:#2563eb;
  color:#fff;
  border:none;
  padding:16px;
  font-size:16px;
  font-weight:700;
  font-family:'Inter',sans-serif;
  cursor:pointer;
  border-radius:4px;
  margin-top:8px;
  transition: background 0.2s;
}
.btn-submit:hover{background:#1d4ed8;}

/* ABOUT */
.about-section{
  width: 100%;
  max-width: none;
  margin:0 auto;
  padding:80px 5%;
  text-align:center;
}
.about-section h2{font-size:36px;font-weight:800;color:#111;margin-bottom:24px;}
.about-section p{font-size:18px;color:#555;line-height:1.8;}
.about-section p strong{color:#111;}

/* TESTIMONIALS */
.testi-section{
  width: 100%;
  max-width: none;
  margin:0 auto;
  padding:40px 5% 80px;
}
.testi-section h2{
  font-size:36px;font-weight:800;
  text-align:center;color:#111;
  margin-bottom:50px;
}
@media (min-width: 769px) {
  .testi-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  .testi-section h2 {
    width: 100%;
  }
  .testi-left, .testi-right {
    flex: 1;
    max-width: 48%;
    margin-bottom: 0;
  }
}
.testi-left{margin-bottom:40px;}
.testi-left h4{font-size:18px;font-weight:700;color:#111;margin-bottom:6px;}
.testi-underline{width:40px;height:3px;background:#111;margin-bottom:14px;}
.testi-left p{font-size:17px;color:#444;font-style:italic;line-height:1.65;margin-bottom:14px;}
.dot-yellow{width:18px;height:18px;border-radius:50%;background:#f5c800;display:inline-block;}

.testi-right{
  text-align:right;
  margin-bottom:20px;
}
.testi-right h4{font-size:18px;font-weight:700;color:#111;margin-bottom:6px;}
.testi-underline-right{width:40px;height:3px;background:#111;margin:0 0 14px auto;}
.testi-right p{font-size:17px;color:#444;font-style:italic;line-height:1.65;margin-bottom:14px;}
.dot-right{display:flex;justify-content:flex-end;}

/* STATS + TEXT */
.stats-text-section{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  width: 100%;
  max-width: none;
  margin:0 auto;
  padding:40px 5% 80px;
  gap:40px;
  align-items:start;
}
.stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.stat-card{
  background:#f5f5f5;
  border-radius:6px;
  padding:30px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.stat-icon-sq{
  width:50px;height:50px;
  background:#f5c800;
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  margin-bottom:10px;
}
.stat-card .snum{font-size:28px;font-weight:800;color:#111;line-height:1;margin-bottom:4px;}
.stat-card .slabel{font-size:12px;font-weight:700;color:#888;letter-spacing:0.07em;text-transform:uppercase;}

.text-col{padding-left:0;}
.text-col h2{font-size:36px;font-weight:800;color:#111;line-height:1.2;margin-bottom:20px;}
.text-col p{font-size:17px;color:#555;line-height:1.8;margin-bottom:16px;}
.text-col p strong{color:#111;}

/* BIG CTA */
.big-cta-section{
  background:#fdf9e6;
  padding:90px 5% 60px;
  position:relative;
  overflow:hidden;
  width: 100%;
}
.big-cta-section h2{
  font-size:72px;
  font-weight:900;
  color:#111;
  line-height:1.05;
  margin-bottom:10px;
  max-width:none;
}
.big-cta-section h3{
  font-size:24px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:#111;
  margin-bottom:28px;
}

/* FOOTER NAV */
.footer-nav{
  border-top:1px solid #eee;
  padding:25px 5%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  background:#fff;
  flex-wrap: wrap;
  width: 100%;
}
.footer-nav a{
  font-size:15px;
  font-weight:700;
  color:#333;
  text-decoration:none;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.footer-nav a:hover{color:#e63222;}
.fnav-sep{color:#ccc;font-size:16px;}

.scroll-top{
  text-align:right;
  padding:10px 5% 20px;
  font-size:14px;
  color:#999;
  cursor:pointer;
  background:#fff;
}
.scroll-top:hover{color:#333;}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  .imgs-row { display: none; } /* Hide large image group on tablets/phones to save space */
  .hero-right { display: none; } /* Hide hero image on tablets/phones to focus purely on CTA */
}

@media (max-width: 768px) {
  .hero-wrap, .stats-text-section { flex-direction: column; grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .text-col { padding-top: 30px; }
  .big-cta-section h2 { font-size: 38px; }
  
  /* Adjusted paddings for mobile */
  .hero-wrap { padding: 30px 20px 20px; }
  .steps-wrap { padding: 40px 20px; }
  .yellow-section { padding: 40px 20px 40px; }
  .about-section { padding: 50px 20px; }
  .testi-section { padding: 20px 20px 50px; }
  .stats-text-section { padding: 20px 20px 50px; }
  .big-cta-section { padding: 60px 20px 40px; }
  .footer-nav { padding: 20px; gap: 15px; }

  /* Typography scale down for mobile */
  .hero-left h1 { font-size: 32px; }
  .hero-subtitle { font-size: 18px; }
  .form-card h2 { font-size: 24px; }
  .about-section h2 { font-size: 26px; }
  .testi-section h2 { font-size: 26px; }
  .text-col h2 { font-size: 28px; }

  /* Layout tweaks */
  .form-card { padding: 30px 20px; border-radius: 6px; }
  .fg-row { flex-direction: column; gap: 0; }
  .fg-row .fg { margin-bottom: 16px; }
  
  .testi-left, .testi-right { text-align: left; margin: 0 0 30px 0; max-width: none; }
  .testi-underline-right { margin: 0 0 14px 0; }
  .dot-right { justify-content: flex-start; }
}

.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #e63222;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 800;
  font-size: 1.3rem;
  z-index: 1000;
  display: none;
  text-decoration: none;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}
.is-landing .sticky-call {
  display: block;
}
.is-landing .scroll-top {
  padding-bottom: 80px;
}
