:root{
  --dl-green: #198959;
  --dl-lime: #8DE52E;
  --dl-soft: #e8f4ea;
  --dl-text: #121212;
  --dl-muted: #5a5a5a;
  --dl-border: rgba(0,0,0,0.10);
  --dl-shadow: 0 14px 22px rgba(0,0,0,0.14);
  --dl-radius: 18px;
  --dl-container: 1180px;
}

/* Base */
.dl-container{
  width: min(100% - 42px, var(--dl-container));
  margin-inline: auto;
}

.dl-h1{
  margin: 0 0 12px;
  font-size: 56px;
  line-height: 1.07;
  letter-spacing: -0.6px;
  font-weight: 900;
  color: var(--dl-text);
}

.dl-h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dl-text);
}

.dl-sub{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dl-muted);
  max-width: 640px;
}

.dl-muted{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--dl-muted);
}

.dl-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(25,137,89,0.10);
  color: var(--dl-green);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 22px;
}

/* Buttons */
.dl-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 900;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1;
  white-space: nowrap;
}

.dl-btn--fill{
  background: var(--dl-green);
  color: #fff;
  box-shadow: 0 10px 18px rgba(25,137,89,0.18);
}

.dl-btn--fill:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(25,137,89,0.22);
}

.dl-btn--lime{
  background: var(--dl-lime);
  color: #101010;
  box-shadow: 0 10px 18px rgba(141,229,46,0.18);
}

.dl-btn--lime:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(141,229,46,0.22);
}

.dl-btn--outline{
  background: transparent;
  color: var(--dl-green);
  border-color: rgba(25,137,89,0.35);
}

.dl-btn--outline:hover{
  transform: translateY(-1px);
  border-color: rgba(25,137,89,0.55);
}

.dl-btn--full{
  width: 100%;
}

.dl-btn--big{
  padding: 16px 18px;
  font-size: 16px;
  border-radius: 16px;
}

/* Section Head */
.dl-head{
  margin-bottom: 18px;
}

.dl-head--center{
  text-align: center;
}

.dl-section-title{
  margin: 0 0 6px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--dl-text);
}

.dl-section-sub{
  margin: 0;
  color: var(--dl-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Hero */
.dl-hero{
  background: #fff;
  padding: 68px 0 46px;
}

.dl-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}

.dl-cta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.dl-hero__media{
  position: relative;
}

.dl-hero__image{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--dl-shadow);
  background: #f6f6f6;
}

.dl-hero__image img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.dl-hero__mini{
  margin-top: 14px;
  border-radius: 16px;
  background: var(--dl-soft);
  padding: 16px 16px;
  border: 1px solid rgba(25,137,89,0.14);
}

.dl-mini__title{
  font-weight: 900;
  color: var(--dl-green);
  margin-bottom: 4px;
}

.dl-mini__text{
  font-size: 14px;
  color: var(--dl-muted);
}

/* Quick clarity */
.dl-quick{
  margin-top: 22px;
}

.dl-quick__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dl-card{
  border: 1px solid var(--dl-border);
  border-radius: var(--dl-radius);
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.dl-card__title{
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--dl-text);
}

/* Lists */
.dl-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.dl-list li{
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  color: var(--dl-text);
  font-size: 15px;
}

.dl-list--ok li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--dl-green);
  border-radius: 7px;
  clip-path: polygon(50% 0%, 92% 18%, 92% 55%, 50% 100%, 8% 55%, 8% 18%);
}

.dl-list--ok li::after{
  content: "✓";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 20px;
  height: 20px;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  line-height: 20px;
}

/* Plans */
.dl-plans{
  background: #fff;
  padding: 60px 0 66px;
}

.dl-plans__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
  align-items: stretch;
}

.dl-plan{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--dl-shadow);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.dl-plan--light{
  background: #fff;
}

.dl-plan--green{
  background: var(--dl-green);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
}

.dl-plan__badge{
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--dl-lime);
  color: #101010;
  font-weight: 900;
  font-size: 12px;
  border-radius: 999px;
  padding: 8px 12px;
}

.dl-plan__top{
  margin-bottom: 14px;
}

.dl-plan__name{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.dl-plan--green .dl-plan__name{
  color: var(--dl-lime);
}

.dl-plan__price{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.dl-plan__price span{
  font-size: 14px;
  font-weight: 700;
  opacity: 0.8;
  margin-left: 6px;
}

.dl-plan__list{
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  display: grid;
  gap: 12px;
}

.dl-plan__list li{
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.98;
}

.dl-plan__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  font-size: 16px;
}

.dl-plan--green .dl-plan__list li::before{
  color: #fff;
}

.dl-plan--light .dl-plan__list li::before{
  color: var(--dl-green);
}

.dl-plan .dl-btn{
  margin-top: auto;
}

/* How it works */
.dl-how{
  background: var(--dl-soft);
  padding: 60px 0;
}

.dl-how__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.dl-step{
  background: #fff;
  border: 1px solid rgba(25,137,89,0.14);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.dl-step__num{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--dl-green);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.dl-step__text{
  font-weight: 800;
  color: var(--dl-text);
  line-height: 1.35;
}

/* Why */
.dl-why{
  background: #fff;
  padding: 62px 0;
}

.dl-why__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}

.dl-why__card{
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--dl-border);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  background: #fff;
}

.dl-why__card--soft{
  background: var(--dl-soft);
  border-color: rgba(25,137,89,0.14);
}

.dl-why__title{
  font-weight: 900;
  color: var(--dl-green);
  margin-bottom: 10px;
}

/* Form */
.dl-signup{
  background: #fff;
  padding: 64px 0 70px;
}

.dl-alert{
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 auto 18px;
  max-width: 860px;
  border: 1px solid transparent;
  font-weight: 700;
}

.dl-alert--success{
  background: #e8f4ea;
  border-color: rgba(25,137,89,0.25);
  color: var(--dl-green);
}

.dl-alert--error{
  background: #fff1f1;
  border-color: rgba(220,53,69,0.22);
  color: #b4232a;
}

.dl-formcard{
  max-width: 860px;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  padding: 26px;
}

.dl-form__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.dl-field--full{
  grid-column: 1 / -1;
}

.dl-label{
  display: block;
  font-weight: 900;
  font-size: 13px;
  color: var(--dl-text);
  margin: 0 0 8px;
}

.dl-input,
.dl-select{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.dl-input:focus,
.dl-select:focus{
  border-color: rgba(25,137,89,0.55);
  box-shadow: 0 0 0 4px rgba(25,137,89,0.10);
}

.dl-formnote{
  margin: 12px 0 0;
  color: var(--dl-muted);
  font-size: 13px;
  text-align: center;
}
/* =========================
   LANDING FAQ (Bootstrap Accordion)
   ========================= */

.dl-faq{
  background: var(--dl-soft);
  padding: 60px 0 66px;
}

.dl-faq-accordion{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

/* Card look */
.dl-faq-item{
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(25,137,89,0.14);
}

/* Button */
.dl-faq-btn{
  background: #fff;
  border: 0;
  padding: 16px 16px;
  font-weight: 900;
  color: var(--dl-text);
  box-shadow: none;
}

/* Remove default bootstrap focus glow */
.dl-faq-btn:focus{
  box-shadow: none;
}

/* Chevron (Bootstrap uses background-image) */
.dl-faq-btn::after{
  filter: none;
  opacity: 1;
}

/* When opened */
.dl-faq-btn:not(.collapsed){
  color: var(--dl-green);
  background: rgba(25,137,89,0.06);
}

/* Body */
.dl-faq-body{
  color: var(--dl-muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 16px 16px;
}

/* subtle divider between header & body */
.dl-faq-item .accordion-collapse{
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 520px){
  .dl-faq{
    padding: 52px 0 56px;
  }

  .dl-faq-btn{
    padding: 14px 14px;
    font-size: 15px;
  }

  .dl-faq-body{
    padding: 0 14px 14px;
    font-size: 14px;
  }
}




@media (max-width: 992px){
  .dl-h1{ font-size: 40px; }
  .dl-hero__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dl-hero__image img{
    height: 360px;
  }

  .dl-quick__grid{
    grid-template-columns: 1fr;
  }

  .dl-plans__grid{
    grid-template-columns: 1fr;
  }

  .dl-how__grid{
    grid-template-columns: 1fr 1fr;
  }

  .dl-why__grid{
    grid-template-columns: 1fr;
  }

  .dl-form__grid{
    grid-template-columns: 1fr;
  }

  .dl-faq__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .dl-container{
    width: min(100% - 28px, var(--dl-container));
  }

  .dl-hero{
    padding: 52px 0 34px;
  }

  .dl-h1{
    font-size: 30px;
    line-height: 1.12;
  }

  .dl-sub{
    font-size: 16px;
  }

  .dl-cta{
    gap: 10px;
  }

  .dl-btn{
    width: 100%;
  }

  .dl-hero__image img{
    height: 280px;
  }

  .dl-section-title{
    font-size: 26px;
  }

  .dl-how__grid{
    grid-template-columns: 1fr;
  }

  .dl-close__title{
    font-size: 22px;
  }
}





/* ===== Landing Plan Preview Box ===== */
.is-hidden{ display:none !important; }

.dl-plan-preview{
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid rgba(25,137,89,0.14);
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0,0,0,0.06);
  padding: 14px;
}

.dl-preview__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}

.dl-preview__title{
  margin:0;
  font-size: 15px;
  font-weight: 900;
  color:#111;
}

.dl-preview__badge{
  background: rgba(141,229,46,0.18);
  color: #198959;
  border: 1px solid rgba(25,137,89,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.dl-preview__grid{
  display:grid;
  gap:10px;
}

.dl-preview__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(25,137,89,0.05);
}

.dl-preview__row--full{
  flex-direction: column;
}

.dl-preview__label{
  font-weight: 900;
  color:#111;
  font-size: 13px;
}

.dl-preview__value{
  font-weight: 900;
  color:#198959;
  font-size: 13px;
  text-align:right;
}

.dl-preview__list{
  margin: 8px 0 0;
  padding-left: 18px;
  display:grid;
  gap:6px;
  color:#111;
  font-size: 13px;
}

.dl-preview__muted{
  margin: 8px 0 0;
  color:#555;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width:520px){
  .dl-preview__head{
    flex-direction: column;
    align-items:flex-start;
  }
  .dl-preview__value{ text-align:left; }
}


.dl-form__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* MOBILE FIX */
@media (max-width: 768px){
  .dl-form__grid{
    grid-template-columns: 1fr;
  }
}
/* all normal fields stay in their own column */
.dl-field{
  min-width: 0;
    position: relative;
  
}

/* only fields with --full take full width */
.dl-field--full{
  grid-column: 1 / -1;
}

/* preview MUST stay inside the plan column */
.dl-field .dl-plan-preview{
  grid-column: auto !important;
  width: 100%;
  max-width: 100%;
}

.dl-select{
  width: 100%;
  display: block;
}

/* force dropdown to match input width */
select.dl-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}