:root{
  --bg:#0b0f16;
  --white:#ffffff;
  --light:#f4f6f8;
  --text:#111827;
  --muted:#6b7280;
  --red:#ff2b2b;
  --green:#20c65a;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --radius: 18px;
  --container: 1040px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.center{ text-align:center; }
.mt-22{ margin-top:22px; }
.mt-28{ margin-top:28px; }

.top-alert{
  background: var(--red);
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.top-alert{
  background: var(--red);
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.top-alert__inner{
  padding: 12px 0;
  text-align: center;
  font-size: 20px;
}
.top-alert strong{ font-weight: 700; }

.hero-logo{
  display: flex;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.hero-logo img{
  width: 250px;     /* control logo size here */
  max-width: 100%;
  height: auto;
}
  
.hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  background:
    url("../img/hero.webp") center/cover no-repeat,
    radial-gradient(1200px 600px at 20% 0%, rgba(0,0,0,.55), rgba(0,0,0,.75));
  background-blend-mode: overlay;
  color:#fff;
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
}
.hero__content{
  position: relative;
  padding: 64px 0;
  text-align: center;
}
.hero__title{
  margin:0 auto;
  max-width: 860px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.6px;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero__sub{
  margin: 30px auto 0;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero__cta{
  margin-top: 26px;
  display:flex;
  justify-content:center;
}

.t-red{ color: var(--red); }
.t-green{ color: var(--green); }

.section{ padding: 56px 0; }
.section--white{ background:#fff; }
.section--light{ background: var(--light); }

.h2{
  margin:0;
  text-align:center;
  font-size: 28px;
  letter-spacing: -0.3px;
  color: #e49f75;
}
.muted{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid{
  display:grid;
  gap: 18px;
}
.grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-card{
  background:#fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
}
.icon-card__icon{
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  color: #0ea5e9;
  background: rgba(14,165,233,.12);
}
.icon-card__icon svg{ width: 26px; height: 26px; }
.icon-card__title{
  font-weight: 800;
  font-size: 20px;
}
.icon-card__desc{
  margin-top: 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.quote-card{
  background:#fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
}
.quote-card__text{
  margin:0;
  color:#111827;
  font-size: 15px;
  line-height: 1.7;
}
.quote-card__meta{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(17,24,39,.08);
}
.quote-card__name{ font-weight: 800; font-size: 15px; }
.quote-card__sub{ margin-top: 4px; color: var(--muted); font-size: 15px; }

.footer{
  padding: 20px 0 28px;
  background: #fff;
}
.footer__inner{
  border-top: 1px solid rgba(17,24,39,.08);
  padding-top: 16px;
  text-align:center;
}
.footer__small{
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

.btn{
  appearance:none;
  border: none;
  cursor: pointer;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 25px 28px;
  box-shadow: 0 18px 40px rgba(255,43,43,.35);
  transition: transform .08s ease, filter .12s ease;
}
.btn:hover{ filter: brightness(1.02); }
.btn:active{ transform: translateY(1px) scale(.99); }

.btn--lg{ padding: 16px 26px; font-size: 16px; }
.btn--xl{ padding: 22px 34px; font-size: 22px; min-width: min(560px, 92vw); }
.btn--full{ width:100%; }

.btn__arrow{ margin-left: 10px; font-weight: 900; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 50;
}
.modal.is-open{ display:flex; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}
.modal__panel{
  position: relative;
  width: min(520px, calc(100% - 28px));
  background:#fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
  cursor:pointer;
}
.modal__title{ margin: 6px 0 0; font-size: 18px; font-weight: 900; }
.modal__sub{ margin: 8px 0 14px; color: var(--muted); font-size: 13px; }

.modal__form{ display:grid; gap: 12px; }

.field{ display:grid; gap: 6px; }
.field__label{ font-size: 12px; font-weight: 800; color:#111827; }
.field input{
  width:100%;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.14);
  outline:none;
  font-size: 14px;
}
.field input:focus{
  border-color: rgba(255,43,43,.55);
  box-shadow: 0 0 0 4px rgba(255,43,43,.12);
}
.field__error{
  min-height: 16px;
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
}

.fine{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.modal__success h4{ margin: 6px 0 4px; font-size: 16px; font-weight: 900; }
.modal__success p{ margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Responsive */
@media (max-width: 920px){
  .grid--3{ grid-template-columns: 1fr; }
  .hero{ min-height: 540px; }
  .btn--xl{ min-width: auto; width: 92vw; }
}












