/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  text-align: center;
  padding: 10px 12px 20px;  /* <- was 110px */
  background: linear-gradient(135deg,#ff6a00,#ee0979);
  color: #fff;
}

.final-cta h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.final-cta p {
  font-size: 16px;
  margin-top: 0;
}

.final-cta button {
  margin-top: 18px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  background: #fff;
  color: #ff6a00;
  cursor: pointer;
}

/* ===============================
   TOAST NOTIFICATION (CENTERED)
================================ */

#toast{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  z-index: 999999;

  background: #111;
  color: #fff;

  padding: 16px 22px;
  border-radius: 18px;

  min-width: 240px;
  max-width: 90vw;

  box-shadow: 0 25px 50px rgba(0,0,0,.35);

  opacity: 0;
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease;
}

/* Internal layout */
#toast .toast-content{
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

/* Animation */
#toast.show{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile optimization */
@media (max-width: 768px){
  #toast{
    max-width: 95vw;
    padding: 14px 18px;
    border-radius: 14px;
  }
}

/* visible state */
#toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* icon + text layout */
#toastIcon {
  font-size: 26px;
  display: block;
  margin-bottom: 4px;
}

/* mobile responsive typography */
#toastTitle {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

#toastMessage {
  font-size: 14px;
  line-height: 1.4;
}

/* small screens */
@media (max-width: 480px) {
  #toast {
    max-width: 300px;
    padding: 14px 18px;
  }
  #toastTitle { font-size: 15px; }
  #toastMessage { font-size: 13px; }
}

/* ============================================================
   TRUST FRAMEWORK — BASE COMPONENT
============================================================ */

.trust-framework {
  background: linear-gradient(180deg, #fff6ee, #ffffff);
  padding: 80px 12px;
}

.trust-framework-inner {
  max-width: var(--content-max);
  margin: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.trust-card {
  background: #fff;
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
  border-top: 4px solid var(--sun1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,.14);
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
}

/* LIST */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* ICON */
.trust-item::before {
  content: "✔";
  color: #ff6a00;
  background: rgba(255,106,0,.15);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

*{
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

/* GPU acceleration */

.pkg-track,
.success-track,
.google-reviews-track{
will-change:transform;
transform:translateZ(0);
}

/* ============================================================
PACKAGE SLIDER FINAL FIX
This overrides conflicting earlier rules safely
============================================================ */

/* make column stable */

.pkg-col{
position:relative;
overflow:hidden;
width:100%;
}

/* slider wrapper must never overflow */

.pkg-slider{
width:100%;
overflow:hidden;
position:relative;
}

/* track should follow container width */

.pkg-track{
display:flex;
gap:20px;
width:100%;
}

/* card must match column width */

.pkg-card{
flex:0 0 100%;
max-width:100%;
width:100%;
}

/* ensure image never expands */

.pkg-img{
width:100%;
height:220px;
object-fit:cover;
}

/* mobile safety */

@media(max-width:768px){

.pkg-track{
gap:14px;
}

.pkg-card{
flex:0 0 100%;
max-width:100%;
}

}
