:root{
  --dsp-green: #198959;
  --dsp-lime: #8DE52E;
  --dsp-soft: #e8f4ea;
  --dsp-text: #222;
  --dsp-muted: #5a5a5a;

  --dsp-shadow: 0 14px 22px rgba(0,0,0,0.14);
  --dsp-radius: 22px;
  --dsp-container: 1120px;
}



.dsp-plans{
  background: #fff;
  padding: 70px 0 56px;

}

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

/* Head */
.dsp-head{
  text-align: center;
  margin-bottom: 34px;
}

.dsp-title{
  margin: 0 0 6px;
  color: var(--dsp-green);
  font-weight: 700;
  font-size: 60px;
  line-height: 143%;
  letter-spacing: 0;
}

.dsp-subtitle{
  margin: 0 0 18px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
}

/* Toggle */
.dsp-toggle{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.dsp-toggle__label{
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
.dsp-toggle__label.is-active{
  color: #222;
  font-weight: 600;
}

.dsp-switch{
  width: 46px;
  height: 24px;
  border-radius: 999px;
  border: 0;
  background: rgba(141,229,46,0.25);
  position: relative;
  cursor: pointer;
  padding: 0;
}
.dsp-switch__dot{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dsp-lime);
  position: absolute;
  top: 3px;
  left: 4px;
  transition: transform .2s ease;
}
.dsp-switch.is-on .dsp-switch__dot{
  transform: translateX(20px);
}


.dsp-grid{
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
  margin-top: 12px;


}


.dsp-card{
 position: relative;
  border-radius: 28px;
  box-shadow: 0 14px 22px rgba(0,0,0,0.18);
  overflow: hidden;
  min-height: 610px;
}



/* 
.dsp-card::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  
  width: 46%;
  height: 78px;


  background: #ffffff;

  
  border-bottom-left-radius: 60px;
  z-index: 2;
}


.dsp-card::after{
  content: "";
  position: absolute;
  right: 0;
  top: 78px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 999px;
  transform: translate(50%, -50%);
  z-index: 2;
} */

.dsp-card__content{
    padding: 38px 34px 28px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* .dsp-card__cut{
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 70px;
  border-bottom-right-radius: 34px;
  z-index: 0;
} */


.dsp-card__content,
.dsp-card__top{
  position: relative;
  z-index: 1;
}






/* Residential */
.dsp-card--res{
  background: #198959;
  color: #ffffff;
}

/* Business */
.dsp-card--biz{
  background: #e8f4ea;
  color: #111111;
}



.dsp-card__name{
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
}
.dsp-card--res .dsp-card__name{ color: #fff; }
.dsp-card--biz .dsp-card__name{ color: #198959; }

.dsp-card__plan{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  opacity: 0.95;
  
}

.dsp-card__hint{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 26px;
  opacity: 0.90;
}
.dsp-card--biz .dsp-card__hint{ color: #198959; }

/* Price */
.dsp-price{
  display: flex;
  align-items: baseline;
  gap: 10px;
  /* margin-bottom: 18px; */
}

.dsp-price__value{
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.dsp-price__unit{
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
}

/* ✅ Divider line (exact look) */
.dsp-divider{
  width: 100%;
  height: 1px;
  margin: 10px 0 18px;
  opacity: 0.35;
}
.dsp-card--res .dsp-divider{ background: rgba(255,255,255,0.45); }
.dsp-card--biz .dsp-divider{ background: rgba(0,0,0,0.15); }

/* ✅ List ticks (no circles) */
.dsp-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}




/* --- Keep normal list items as they are (tick) --- */
.dsp-list__item{
  position: relative;
  padding-left: 30px;
  display: block;
}

.dsp-list__item::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

/* ✅ Excluded items: icon + text in ONE flow (no weird columns) */
.dc-plan-exclude{
  position: relative;
  padding-left: 30px;
  display: block;
}

.dc-plan-exclude::before{
  content: "✕";
  position: absolute;
  left: 0;
  top: 2px;                 /* adjust if needed */
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: #e53935;
}

/* Optional: make bold label not break weirdly */
.dc-plan-exclude strong{
  white-space: nowrap;
}

.dc-plan-exclude strong{
  white-space: nowrap;
}

.dsp-card--res .dsp-list__item::before{ color: #ffffff; }
.dsp-card--biz .dsp-list__item::before{ color: #198959; }

/* Note text */
.dsp-note{
  margin: 18px 0 0;
  font-size: 12px;
  opacity: 0.75;
}

/* ✅ Buttons at bottom (exact pill) */
.dsp-btn{
  margin-top: auto;              /* pushes button to bottom */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 800;
  font-size: 18px;
  border: 0;
}

/* Residential button */
.dsp-btn--lime{
  background: #8DE52E;
  color: #ffffff;
}

/* Business button */
.dsp-btn--green{
  background: #198959;
  color: #ffffff;
}


.dsp-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  width: fit-content;
  margin: 0 0 14px;
}

.dsp-card--res .dsp-badge{
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

.dsp-card--biz .dsp-badge{
  background: rgba(25,137,89,0.12);
  color: var(--dsp-green);
}




/* -------- RESPONSIVE (mobile screenshot) -------- */

@media (max-width: 992px){
  .dsp-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dsp-card{
    min-height: unset;
  }
}

@media (max-width: 520px){
  .dsp-card__content{
    padding: 22px 18px 18px;
  }

  .dsp-price__value{
    font-size: 38px;
  }

  .dsp-list__item{
    font-size: 13px;
  }

  .dsp-card::before{
    height: 64px;
    width: 52%;
    border-bottom-left-radius: 52px;
  }

  .dsp-card::after{
    top: 64px;
    width: 46px;
    height: 46px;
  }

  .dsp-btn{
    font-size: 16px;
    padding: 14px 16px;
  }
}




.dsp-note{
  margin: 18px 0 18px;
  font-size: 16px;
  opacity: 0.75;
}

/* Buttons */
.dsp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 16px;
  border: 0;
}

.dsp-btn--lime{
  background: var(--dsp-lime);
  color: #ffffff;
}

.dsp-btn--green{
  background: var(--dsp-green);
  color: #fff;
}

/* Footnotes */
.dsp-foot{
  margin-top: 36px;
  text-align: center;
  color: #6a6a6a;
  font-size: 16px;
  line-height: 1.55;
  max-width: 980px;
  margin-inline: auto;
}

.dsp-foot p{
  margin: 0 0 10px;
  font-size: 16px;
}

/* ---------------- Responsive like mobile screenshot ---------------- */

@media (max-width: 992px){
  .dsp-title{ font-size: 40px; }
  .dsp-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .dsp-card{
    min-height: unset;
  }
}

@media (max-width: 520px){
  .dsp-plans{ padding: 52px 0 44px; }

  .dsp-container{
    width: min(100% - 26px, var(--dsp-container));
  }

  .dsp-title{
    font-size: 30px;
    line-height: 1.25;
  }

  .dsp-subtitle{
    font-size: 16px;
  }

  .dsp-card__content{
    padding: 22px 18px 18px;
  }

  .dsp-price__value{
    font-size: 30px;
  }
  .dsp-foot p{
    font-size: 16px;
  }

  .dsp-list__item{
    font-size: 16px;
  }

  .dsp-card__cut{
    height: 56px;
    width: 74%;
  }
}



/* Basic (LEFT) */

.dsp-card--basic{
  background: #ffffff;
  border-radius: 2px solid #8de52e !important;
  
  color: #111;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 22px rgba(0,0,0,0.12);
}

.dsp-card--basic .dsp-card__name{ color: var(--dsp-green); }
.dsp-card--basic .dsp-card__hint{ color: var(--dsp-muted); }

.dsp-card--basic .dsp-divider{ background: rgba(0,0,0,0.15); }
.dsp-card--basic .dsp-list__item::before{ color: var(--dsp-green); }

.dsp-card--basic .dsp-badge{
  background: rgba(25,137,89,0.10);
  color: var(--dsp-green);
}

/* white notch for basic */
.dsp-card--basic::before,
.dsp-card--basic::after{
  background: #ffffff;
}

/* FEATURED (MIDDLE) */
.dsp-card--featured{
  transform: translateY(-12px);
  box-shadow: 0 22px 34px rgba(0,0,0,0.22);
}

.dsp-card--featured::before,
.dsp-card--featured::after{
  background: #ffffff; /* notch stays white */
}

/* optional: small top ribbon label */
.dsp-feature-tag{
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dsp-lime);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 4;
}


/* =========================
   3-CARD DISTINCT LOOK
   (same design, colors differ)
========================= */

/* 1) BASIC (Home Basic) - clean white */
.dsp-card--basic{
  background: #ffffff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 22px rgba(0,0,0,0.12);


  transform: translateY(-12px);
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.24);
    outline: 3px solid rgba(141, 229, 46, 0.55);
    outline-offset: 0;
}

.dsp-card--basic .dsp-card__name{ color: #000; }
.dsp-card--basic .dsp-card__hint{ color: var(--dsp-muted); }
.dsp-card--basic .dsp-divider{ background: rgba(0,0,0,0.14); }
.dsp-card--basic .dsp-list__item::before{ color: var(--dsp-green); }

.dsp-card--basic .dsp-badge{
  background: rgba(25,137,89,0.10);
  color: var(--dsp-green);
}

/* keep notch white */
.dsp-card--basic::before,
.dsp-card--basic::after{
  background: #ffffff;
}

/* Basic button: outline (nice contrast) */
.dsp-card--basic .dsp-btn{
  background: transparent;
  color: var(--dsp-green);
  border: 2px solid var(--dsp-green);
}


/* 2) RESIDENTIAL (middle) - FEATURED highlight */
.dsp-card--featured{
  transform: translateY(-12px);
  box-shadow: 0 26px 44px rgba(0,0,0,0.24);
  outline: 3px solid #198959;
  outline-offset: 0;
}

.dsp-card--featured .dsp-badge{
  background: var(--dsp-lime);
  color: #fff;
}

.dsp-card--featured .dsp-btn{
  box-shadow: 0 12px 22px rgba(0,0,0,0.22);
}

/* Mobile: no lift */
@media (max-width: 992px){
  .dsp-card--featured{ transform: none; }
}


/* 3) BUSINESS (right) - dark contrast */
.dsp-card--biz{
  background: #0f3f2c; 
  color: #ffffff;

    transform: translateY(-12px);
  box-shadow: 0 26px 44px rgba(0,0,0,0.24);
  outline: 3px solid #0f3f2c;
  outline-offset: 0;
}

.dsp-card--biz .dsp-card__name{ color: var(--dsp-lime); }
.dsp-card--biz .dsp-card__hint{ color: rgba(255,255,255,0.86); }
.dsp-card--biz .dsp-divider{ background: rgba(255,255,255,0.24); }
.dsp-card--biz .dsp-list__item::before{ color: #ffffff; }

/* Business badge */
.dsp-card--biz .dsp-badge{
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* Business button: lime so it pops */
.dsp-card--biz .dsp-btn{
  background: var(--dsp-lime);
  color: #ffffff;
}



.dsp-btn{
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 16px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.dsp-btn:hover{
  transform: translateY(-1px);
}

.dsp-card--basic .dsp-btn{
  background: transparent;
  color: #000;
  border: 4px solid #8de52e;
  box-shadow: none;
}

/* .dsp-card--basic .dsp-btn:hover{
  background: rgba(25,137,89,0.08);
  border-color: var(--dsp-green);
} */


.dsp-card--res .dsp-btn{
  background: var(--dsp-lime);
  color: #000;
  border: 0;
  box-shadow: 0 14px 22px rgba(0,0,0,0.22);
    border: 4px solid #8de52e;
}

.dsp-card--res .dsp-btn:hover{
  box-shadow: 0 18px 28px rgba(0,0,0,0.28);
}

.dsp-card--biz .dsp-btn{
  background: #ffffff;
  color: #000;      
  border: 0;
  box-shadow: 0 10px 18px rgba(0,0,0,0.20);
    border: 4px solid #fff;
}

.dsp-card--biz .dsp-btn:hover{
  background: rgba(255,255,255,0.92);
}

.dsp-card--biz .dsp-price__value{
  color: var(--dsp-lime);
}

.dsp-card--biz .dsp-price__unit{
  color: rgba(255,255,255,0.80);
}










:root{
  --dcb-green: #198959;
  --dcb-lime: #8DE52E;
  --dcb-yellow: #f2b300;         /* pill color close to screenshot */
  --dcb-white: #ffffff;
  --dcb-text: rgba(255,255,255,0.90);
  --dcb-container: 1180px;
}


.dcb-bulky{
  background: var(--dcb-green);
  padding: 70px 0 64px;

}

.dcb-container{
  width: min(100% - 54px, var(--dcb-container));
  margin-inline: auto;
}

/* Top row */
.dcb-top{
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 46px;
}

/* Left content */
.dcb-title{
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.2px;
}

.dcb-desc{
  margin: 0;
  color: var(--dcb-text);
  font-size: 16px;
  line-height: 1.55;
}

/* Divider (vertical thick line) */
.dcb-divider{
  width: 10px;
  height: 160px;
  background: rgba(0,0,0,0.10);
  border-radius: 10px;
  justify-self: center;
  align-self: center;
}

/* Right content */
.dcb-paytext{
  margin: 6px 0 22px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
}

.dcb-points{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.dcb-point{
  position: relative;
  padding-left: 34px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

/* bullet icon (green shield-like) */
.dcb-point::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--dcb-lime);
  border-radius: 6px;
  opacity: 0.95;
}

.dcb-point::after{
  content: "✓";
  position: absolute;
  left: 5px;
  top: 2px;
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  color: var(--dcb-green);
}

/* Cards row */
.dcb-cards{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.dcb-card{
  text-decoration: none;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 18px rgba(0,0,0,0.18);
}

.dcb-card__img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* Yellow pill label */
.dcb-card__pill{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: var(--dcb-yellow);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -------------------- Responsive -------------------- */

@media (max-width: 1200px){
  .dcb-title{ font-size: 38px; }
  .dcb-card__img{ height: 190px; }
}

@media (max-width: 992px){
  /* mobile layout like screenshot: top becomes single column */
  .dcb-top{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
  }

  .dcb-divider{
    display: none;
  }

  .dcb-title{
    font-size: 30px;
  }

  .dcb-paytext{
    margin-top: 22px;
  }

  /* Cards: 2 columns, last card centered */
  .dcb-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .dcb-card__img{
    height: 185px;
  }

  /* last card takes full width but centered like screenshot */
  .dcb-card:nth-child(5){
    grid-column: 1 / -1;
    max-width: 72%;
    justify-self: center;
  }
}

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

  .dcb-bulky{
    padding: 46px 0 46px;
  }

  .dcb-title{
    font-size: 26px;
    line-height: 1.15;
  }

  .dcb-desc{
    font-size: 16px;
  }

  .dcb-paytext{
    font-size: 16px;
  }

  .dcb-point{
    font-size: 16px;
  }

  .dcb-card__img{
    height: 175px;
  }

  .dcb-card__pill{
    font-size: 13px;
    padding: 9px 14px;
  }

  .dcb-card:nth-child(5){
    max-width: 78%;
  }
}







.bulky-section {
    /* background: linear-gradient(135deg, #2e7d32, #43a047); */
    color: #fff;
    padding: 80px 0;
}

.bulky-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
}

.bulky-section .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.bulky-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.bulky-item {
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bulky-item input {
    display: none;
}

.bulky-item:hover {
    background: rgba(255,255,255,0.25);
}

.bulky-item:has(input:checked) {
    background: #ffffff;
    color: #1f7a1f;
    font-weight: 600;
}


/* White form card */
.bulky-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    color: #333;
}

/* Labels */
.bulky-form-card .form-label {
    font-weight: 600;
    color: #222;
}

/* Inputs */
.bulky-form-card .form-control {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #ddd;
}

.bulky-form-card .form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.15rem rgba(76, 175, 80, 0.25);
}


.bulky-form-card .btn-warning {
    border-radius: 12px;
    font-weight: 600;
    padding: 14px;
    font-size: 16px;
     background: #198959;
     color: #fff;
     border: #198959;
}



.bulky-form-card .bulky-item {
    background: #f3f7f3;
    color: #2e7d32;
    border: 2px solid transparent;
}

.bulky-form-card .bulky-item:hover {
    background: #e8f5e9;
}

.bulky-form-card .bulky-item:has(input:checked) {
    background: #2e7d32;
    color: #ffffff;
    border-color: #2e7d32;
}



.dc-subtitle{
    max-width: 720px;
    margin: 8px auto 25px;
    opacity: .85;
}

.dc-preview-box{
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    margin: 15px 0 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.dc-preview-divider{
    height: 1px;
    background: #eee;
    margin: 12px 0;
}

.dc-preview-notes{
    margin: 12px 0 0;
    padding-left: 18px;
    color: #555;
    font-size: 14px;
}

.dc-check{
    display: inline-flex;
    gap: 10px;
    align-items: center;
}









.dc-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.dc-select-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.dc-select-card {
    padding: 18px;
    border-radius: 14px;
    background: #f3f7f3;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.dc-select-card small {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}

.dc-select-card:hover {
    background: #e8f5e9;
}

.dc-select-card.active {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}








/* =========================
   QUICK OVERVIEW SECTION
   ========================= */

.dqo-wrap{
  background: #ffffff;
  padding: 80px 0 70px;

}

.dqo-container{

  margin-inline: auto;
}

.dqo-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 120px;
  align-items: start;
}

/* Titles */
.dqo-title{
  margin: 0 0 22px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.12;
  color: #0b0b0b;
  letter-spacing: -0.3px;
}

/* right title is visually centered like screenshot */
.dqo-col--right .dqo-title{
  text-align: left;
  margin-top: 40px;
}

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

.dqo-item{
  position: relative;
  padding-left: 46px;
  font-size: 16px;
  line-height: 1.45;
  color: #151515;
}

/* ✅ LEFT LIST: green shield/check icon */
.dqo-list--ok .dqo-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: #198959;
  border-radius: 8px;
  clip-path: polygon(50% 0%, 92% 18%, 92% 55%, 50% 100%, 8% 55%, 8% 18%);
  box-shadow: 0 2px 8px rgba(25,137,89,0.18);
}

.dqo-list--ok .dqo-item::after{
  content: "✓";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 24px;
  height: 24px;
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
}

/* ✅ RIGHT LIST: red circle with X */
.dqo-list--no{
  margin-top: 22px;
}

.dqo-list--no .dqo-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff3b30;
}

.dqo-list--no .dqo-item::after{
  content: "×";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
}

/* Group image */
.dqo-imagebox{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.dqo-image{
  width: min(520px, 100%);
  height: auto;
  display: block;
}

/* Note + button */
.dqo-note{
  margin: 30px 0 18px;
  font-size: 14px;
  color: #2f2f2f;
  line-height: 1.4;
  text-align: left;
}

.dqo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  padding: 14px 22px;
  background: #198959;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border-radius: 10px;
}

/* =========================
   RESPONSIVE (matches mobile)
   ========================= */

@media (max-width: 992px){
  .dqo-container{
    width: min(100% - 28px, 1180px);
  }

  .dqo-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dqo-title{
    font-size: 26px;
  }

  .dqo-col--right .dqo-title{
    text-align: left;
    margin-top: 0;
  }

  .dqo-item{
    font-size: 14px;
    padding-left: 42px;
  }

  .dqo-imagebox{
    justify-content: center;
    margin-top: 22px;
  }

  .dqo-image{
    width: min(420px, 100%);
  }

  .dqo-btn{
    width: 100%;
    min-width: unset;
    max-width: 360px;
  }
}

@media (max-width: 520px){
  .dqo-wrap{
    padding: 54px 0 44px;
  }

  .dqo-title{
    font-size: 22px;
    line-height: 1.2;
  }

  .dqo-list{
    gap: 12px;
  }

  .dqo-item{
    font-size: 13px;
    padding-left: 38px;
  }

  .dqo-image{
    width: min(360px, 100%);
  }

  .dqo-note{
    font-size: 13px;
  }

  .dqo-btn{
    max-width: 320px;
    padding: 13px 18px;
    font-size: 13px;
  }
}








.dgs-wrap{
  background: #ffffff;
  padding: 70px 0 78px;
  
}

.dgs-container{
  width: min(100% - 60px, 1180px);
  margin-inline: auto;
}

/* OUTER (allows head outside) */
.dgs-card{
  position: relative;
  overflow: visible; /* allow face outside */
}

/* INNER (green rounded card, clips corners perfectly) */
.dgs-card__inner{
  background: #198959;
  border-radius: 16px;
  overflow: hidden; /* keep rounded corners */
  height: 430px;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "content mediaSpace"
    "actions mediaSpace";
}

/* Left content */
.dgs-content{
  grid-area: content;
  padding: 62px 58px 10px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.dgs-title{
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.2px;
}

.dgs-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.dgs-item{
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.98;
}

/* shield icon */
.dgs-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #8DE52E;
  border-radius: 7px;
  clip-path: polygon(50% 0%, 92% 18%, 92% 55%, 50% 100%, 8% 55%, 8% 18%);
}

.dgs-item::after{
  content: "✓";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 20px;
  height: 20px;
  color: #198959;
  font-weight: 900;
  font-size: 13px;
  line-height: 20px;
}

/* Buttons row (Desktop inside card) */
.dgs-actions{
  grid-area: actions;
  padding: 0 58px 48px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.dgs-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  height: 54px;
  padding: 0 28px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  min-width: 290px;
  white-space: nowrap;
}

.dgs-btn--lime{
  background: #8DE52E;
  color: #101010;
  border: 1px solid transparent;
}

.dgs-btn--outline{
  background: transparent;
  color: #8DE52E;
  border: 2px solid #8DE52E;
}

/* Right image (outside inner so head can go out) */
.dgs-media{
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 360px;
  pointer-events: none;
}

/* Face outside from top (exact like your reference) */
.dgs-man{
  position: absolute;
  right: 12px;
  top: -85px;     /* face outside */
  height: 515px;
  width: auto;
  max-width: none;
  display: block;
}

/* =========================
   RESPONSIVE: Text -> Image -> Buttons (Mobile exact order)
   ========================= */
@media (max-width: 992px){

  .dgs-container{
    width: min(100% - 28px, 1180px);
  }

  .dgs-card__inner{
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "content"
      "mediaSpace"
      "actions";
  }

  /* Create space for image inside the green card */
  .dgs-card__inner::after{
    content: "";
    grid-area: mediaSpace;
    height: 340px; /* image block height */
    display: block;
  }

  .dgs-content{
    padding: 36px 22px 18px;
  }

  .dgs-title{
    font-size: 30px;
  }

  .dgs-item{
    font-size: 16px;
    padding-left: 34px;
  }

  /* Image becomes centered inside card, AFTER text */
  .dgs-media{
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 150px; /* ✅ pushes image ABOVE buttons area */
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
  }

  .dgs-man{
    position: relative;
    right: auto;
    top: 0;
    height: 310px; /* match your mobile reference */
    transform: none;
  }

  /* Buttons AFTER image, stacked */
  .dgs-actions{
    padding: 22px 22px 26px;
    display: grid;
    gap: 12px;
    justify-items: center;

    /* subtle strip behind buttons like your screenshot */
    background: rgba(0, 0, 0, 0.06);
  }

  .dgs-btn{
    width: 100%;
    max-width: 320px;
    min-width: unset;
  }
}

@media (max-width: 520px){
  .dgs-wrap{
    padding: 54px 0 58px;
  }

  .dgs-title{
    font-size: 26px;
  }

  .dgs-card__inner::after{
    height: 320px;
  }

  .dgs-media{
    height: 320px;
  }

  .dgs-man{
    height: 295px;
  }
}














/* ========================================
   Form Section
   ======================================== */

.dc-form {
    background-color: var(--white);
    padding: 80px 0;
}

.dc-form h2 {
    color: var(--green-dark);
    margin-bottom: 3rem;
}

.dc-form form {
    max-width: 800px;
    margin: 0 auto;
}

.dc-form input[type="text"],
.dc-form input[type="email"],
.dc-form select,
.dc-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
}

.dc-form input[type="text"]:focus,
.dc-form input[type="email"]:focus,
.dc-form select:focus,
.dc-form textarea:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.dc-form textarea {
    resize: vertical;
    min-height: 120px;
}

.dc-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.dc-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.dc-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--green-light);
}

.dc-form button[type="submit"] {
    margin-top: 1rem;
    padding: 16px 48px;
    font-size: 1.1rem;
}

.dc-success {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-top: 2rem;
}

/* ========================================
   Bulky Items Section
   ======================================== */

.dc-bulky {
     background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.dc-bulky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.dc-bulky .container {
    position: relative;
    z-index: 1;
}

.dc-bulky h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.dc-bulky > .container > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}





.dc-bulky-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.dc-bulky-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dc-trust-list {
    margin-top: 2rem;
}

.dc-trust-list li {
    padding: 12px 0 12px 35px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    font-size: 1.05rem;
}

.dc-trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 576px) {

    .dc-bulky {
        text-align: center;
    }

    .dc-bulky h2,
    .dc-bulky p {
        text-align: center;
    }

    /* Center bulky item cards */
    .dc-bulky-list {
        justify-items: center;
    }

    .dc-bulky-item {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* Trust list center */
    .dc-trust-list {
        list-style: none;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }

    .dc-trust-list li {
        padding-left: 0;
        text-align: center;
    }

    .dc-trust-list li::before {
        position: relative;
        left: 0;
        margin: 0 auto 8px;
    }
}





.dc-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.dc-btn-green {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.dc-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #5cb85f 0%, #357a38 100%);
}

.dc-btn-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
}

.dc-btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ff7d4d 0%, #d44e1f 100%);
}

.dc-btn:active {
    transform: translateY(0);
}









.dc-plan-list li.dc-plan-exclude::before {
    content: '✕';
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}