@font-face {
  font-family: 'TimeFont';
  src: url('fonts/SevenSegment.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
 /* Hero */
 .quick_hero_blk {
     margin-bottom: 50px;
 }

 .quick_hero_vid_blk {
     position: relative;
     overflow: hidden;
     margin-bottom: 28px;
 }

 .quick_hero_vid_blk img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 24px;
     object-fit: cover;
     max-height: 420px;
 }


 .quick_hero_vid_blk::after {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(14, 24, 33, 0.12);
     border-radius: 24px;
     pointer-events: none;
 }

 /* Floating control panel badge */
 .hero_panel_badge {
     position: absolute;
     top: 24px;
     left: 24px;
     z-index: 2;
     background: #fff;
     border-radius: 14px;
     padding: 12px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
 }

 .hero_panel_badge .panel {
     width: 70px;
     height: 70px;
     background: #d1113f;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 32px;
 }

 .quick_hero_content .sub_heading {
     color: #d1113f;
     font-weight: 500;
     font-size: 16px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     display: inline-block;
     margin-bottom: 6px;
 }

 .quick_hero_blk h1 {
     font-family: "Poppins", sans-serif;
     font-size: 48px;
     color: #0e1821;
     line-height: 1.1;
     margin: 0 0 12px 0;
     font-weight: 700;
 }

 .quick_hero_blk h1 span {
     color: #d1113f;
     display: block;
 }

 .quick_hero_blk p {
     font-size: 20px;
     color: #555;
     max-width: 560px;
     margin-bottom: 0;
     font-weight: 300;
 }

 .hero_checks {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin: 18px 0 8px;
 }

 .hero_checks span {
     background: #f4f4f9;
     padding: 7px 16px;
     border-radius: 100px;
     font-size: 14px;
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     color: #0e1821;
 }

 .hero_checks i {
     color: #00B67A;
     font-size: 15px;
 }

 .hero_btns {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 22px;
 }

 /* ===== Responsive ===== */
 @media (max-width: 991px) {
     .quick_hero_blk h1 {
         font-size: 36px;
     }

     .quick_hero_blk p {
         font-size: 18px;
     }
 }

 @media (max-width: 767px) {
     .quick_hero_vid_blk {
         border-radius: 16px;
         margin-bottom: 20px;
     }

     .quick_hero_vid_blk img {
         max-height: 280px;
         border-radius: 16px;
     }

     .hero_panel_badge {
         top: 16px;
         left: 16px;
         padding: 8px;
     }

     .hero_panel_badge .panel {
         width: 52px;
         height: 52px;
         font-size: 24px;
     }

     .quick_hero_blk h1 {
         font-size: 28px;
     }

     .quick_hero_blk p {
         font-size: 16px;
     }

     .hero_btns {
         flex-direction: column;
     }

     .hero_btns a {
         width: 100%;
         text-align: center;
     }
 }

 /* ===== Hero Slider ===== */
.hero_slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.hero_slides {
    display: flex;
    transition: transform 0.5s ease;
}

.hero_slide {
    min-width: 100%;
    position: relative;
}

.hero_slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    max-height: 420px;
}

/* Dots */
.hero_dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero_dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero_dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Arrows */
.hero_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
    color: #0e1821;
    font-size: 18px;
}

.hero_arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.hero_arrow.prev {
    left: 16px;
}

.hero_arrow.next {
    right: 16px;
}

/* Keep your existing badge on top */
.hero_panel_badge {
    z-index: 4;
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .hero_slide img {
        max-height: 280px;
        border-radius: 16px;
    }

    .hero_arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hero_arrow.prev { left: 10px; }
    .hero_arrow.next { right: 10px; }

    .hero_dots {
        bottom: 12px;
    }
}

 /* ===== Meet your security squad ===== */

.squad_section {
    margin-top: 30px;
    margin-bottom: 60px;
}

.squad_section .sec_heading {
    margin-bottom: 28px;
}

.squad_section .sec_heading h2 {
    font-size: 48px;
    font-weight: 500;
    color: #0e1821;
    margin: 0 0 8px 0;
}

.squad_section .sec_heading p {
    font-size: 17px;
    color: #6b7280;
    max-width: 640px;
    margin: 0;
    font-weight: 300;
    line-height: 1.5;
}

/* Grid - 3 cards per row */
.squad_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card */
.squad_card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.squad_card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    border-color: #d1d9e2;
}

/* Highlighted card */
.squad_card.highlight {
   /* border-color: #00B67A;
    box-shadow: 0 0 0 1px #00B67A;*/
}

/* Image area */
.squad_img {
    min-height: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 16px;
}

.squad_img img {
    max-height: 100%;
    
    max-width: 100%;
    object-fit: contain;
}

/* Body */
.squad_body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.squad_label {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-family: "Instrument Sans", sans-serif;
    color: #fff;
    background: #000;
    padding: 4px 9px;
    margin-bottom: 8px;
    border: 1px solid #D9DDE1;
    border-radius: 50px;
    line-height: 1.2;
    white-space: nowrap;
}



.squad_body h5 {
    font-size: 16px;
    font-weight: 600;
     font-family: "Poppins";
    color: #1C2024;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.squad_body p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
    margin: 0 0 14px 0;
    flex: 1;
}

.squad_price {
    font-size: 14px;
    font-weight: 600;
    color: #007228;

}

.squad_price.free {
    color: #00B67A;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 991px) {
    .squad_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .squad_section .sec_heading h2 {
        font-size: 28px;
    }

    .squad_body {
        padding: 14px;
    }

    .squad_body h5 {
        font-size: 15px;
    }

    .squad_body p {
        font-size: 12px;
    }
}

/* Mobile - still 3 per row */
@media (max-width: 575px) {
    .squad_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .squad_img {
        height: 90px;
        padding: 8px;
    }

    .squad_body {
        padding: 10px;
    }

    .squad_label {
        font-size: 9px;
    }

    .squad_body h5 {
        font-size: 13px;
    }

    .squad_body p {
        font-size: 11px;
    }

    .squad_price {
        font-size: 12px;
    }
}



 /* ===== One app runs all of it ===== */
 .app_section {
     margin-bottom: 60px;
    
 }

 .app_inner {
    /* background:url('../images/app-bg.png'); */
     background:#F1F1F1;
     border-radius: 24px;
     padding: 40px 48px;
 }

 .app_content .sub_heading {

      display: inline-block;
    align-self: flex-start;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: "Instrument Sans", sans-serif;
    color: #ffffff;
    background: #1C2024;
    padding: 4px 9px;
    margin-bottom: 8px;
    border: 1px solid #D9DDE1;
    border-radius: 50px;
    line-height: 1.2;
    white-space: nowrap;
 }

 .app_content h2 {
     font-size: 48px;
     font-weight: 500;
     color: #1C2024;
     margin: 0 0 10px 0;
     line-height: 100%;
      font-family: "Instrument Sans", sans-serif;
 }



 .app_desc {
     font-size: 16px;
     color: #1C2024;
     margin-bottom: 28px;
     font-weight: 300;
 }

 /* ===== Doorbell Section ===== */
 .doorbell_section {
     margin-bottom: 60px;
 }

 .doorbell_card {
     background: #fff;
     overflow: hidden;
     /* important so image stays inside rounded corners */
     box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
 }

 /* Top text has padding */
 .doorbell_top {
     padding: 32px 36px 24px;
 }

 .doorbell_title {
     font-size: 32px;
     font-family: "Poppins";
     font-weight: 500;
     color: #0e1821;
     margin: 0 0 12px 0;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .doorbell_title .title_x {
     color: #d1113f;
     font-size: 18px;
 }

 .doorbell_intro {
     font-size: 15px;
     color: #000;
     font-family: "Instrumental Sans";
     line-height: 1.6;
     margin: 0;
     font-weight: 300;
 }

 /* Bottom area - NO padding, flush to edges */
 .doorbell_body {
     display: flex;
     align-items: stretch;
   
 }

 /* Left list - light gray background */
 .doorbell_list_wrap {
     flex: 0 0 60%;
    
     /* light gray like the screenshot */
     padding: 24px 28px;
 }

 .list_heading {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.5px;
     color: #000;
     margin: 30px 0 16px 0;
 }

 .doorbell_list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .doorbell_list li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 14px;
     font-size: 14px;
     color: #000;
     line-height: 1.4;
 }

 .doorbell_list li:last-child {
     margin-bottom: 0;
 }

 .doorbell_list li i {
     color: #000;
     font-size: 15px;
     margin-top: 1px;
     flex-shrink: 0;
 }

 /* Right image - fills remaining space, edge to edge */
 .doorbell_img_wrap {
     flex: 1;
     min-height: 260px;
    
 }

 .doorbell_img_wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius:20px;
 }

 /* ===== Responsive ===== */
 @media (max-width: 991px) {
     .doorbell_top {
         padding: 24px 24px 20px;
     }

     .doorbell_body {
         flex-direction: column;
     }

     .doorbell_list_wrap {
         flex: none;
         padding: 20px 24px;
     }

     .doorbell_img_wrap {
         min-height: 220px;
     }
 }

 @media (max-width: 575px) {
     .doorbell_card {
         border-radius: 16px;
     }

     .doorbell_top {
         padding: 20px 18px 16px;
     }

     .doorbell_title {
         font-size: 18px;
     }

     .doorbell_intro {
         font-size: 14px;
     }

     .doorbell_list_wrap {
         padding: 18px 18px;
     }

     .doorbell_list li {
         font-size: 13px;
     }
 }

 /* Feature list */
.app_features {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;   /* THIS pushes the list to the bottom */
}

.app_features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 0;
    margin: 0 0 32px 0;
}

.app_features li:last-child {
    margin-bottom: 0;
}

.app_features .feature_icon {
    flex: 0 0 49px;
    width: 49px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);


    margin-top: 0;
}

/* If using Bootstrap check icon */
.app_features .feature_icon i {
    font-size: 11px;
    line-height: 1;
    color: #000000;
}

 .feature_text {
     display: flex;
     flex-direction: column;
 }

 .feature_text strong {
     font-size: 15px;
     font-weight: 600;
     color: #000000;
     margin-bottom: 2px;
 }

 .feature_text span {
     font-size: 13px;
     color: #000000;
     line-height: 1.4;
 }

 /* ===== Phone mockup ===== */
 .phone_mockup_wrap {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .phone_frame {
     width: 260px;
     background: linear-gradient(180deg, #1a2332 0%, #0e1821 100%);
     border-radius: 36px;
     padding: 14px 12px 24px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
     color: #fff;
     position: relative;
 }

 /* thin phone bezel effect */
 .phone_frame::before {
     content: '';
     position: absolute;
     inset: 0;
     border-radius: 36px;
     border: 3px solid #2a3544;
     pointer-events: none;
 }

 .phone_status {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
     padding: 4px 10px 12px;
     opacity: 0.9;
 }

 .status_icons {
     display: flex;
     gap: 4px;
     font-size: 12px;
 }

 .app_header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 10px 16px;
     font-size: 15px;
     font-weight: 500;
 }

 .mode_tabs {
     display: flex;
     justify-content: center;
     gap: 18px;
     margin-bottom: 28px;
     font-size: 13px;
     opacity: 0.7;
 }

 .mode_tabs .active {
     opacity: 1;
     font-weight: 600;
     position: relative;
 }

 .mode_tabs .active::after {
     content: '';
     position: absolute;
     bottom: -6px;
     left: 50%;
     transform: translateX(-50%);
     width: 20px;
     height: 2px;
     background: #00B67A;
     border-radius: 2px;
 }

 /* Big status circle */
 .status_circle {
     text-align: center;
     margin-bottom: 32px;
 }

 .circle_ring {
     width: 110px;
     height: 110px;
     border-radius: 50%;
     border: 4px solid #00B67A;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 14px;
     background: rgba(0, 182, 122, 0.08);
 }

 .circle_ring i {
     font-size: 42px;
     color: #00B67A;
 }

 .status_label {
     font-size: 16px;
     font-weight: 600;
     margin: 0 0 2px;
 }

 .status_sub {
     font-size: 12px;
     opacity: 0.6;
     margin: 0;
 }

 /* Bottom buttons */
 .app_bottom {
     display: flex;
     justify-content: space-around;
     padding: 0 10px;
 }

 .bottom_btn {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 4px;
     font-size: 11px;
     opacity: 0.8;
 }

 .bottom_btn i {
     font-size: 18px;
 }

 /* ===== Responsive ===== */
 @media (max-width: 991px) {
     .app_inner {
         padding: 32px 28px;
     }

     .app_content h2 {
         font-size: 26px;
     }

     .phone_mockup_wrap {
         margin-top: 32px;
     }
 }

 @media (max-width: 575px) {
     .app_inner {
         padding: 24px 18px;
         border-radius: 18px;
     }

     .app_content h2 {
         font-size: 24px;
     }

     .app_content h2 .price_tag {
         font-size: 18px;
         display: block;
         margin-top: 4px;
     }

     .phone_frame {
         width: 230px;
     }
 }


 /* =====================  ORDER ONLINE – irregular card shape  ===================== */
.order-online-section {
  padding: 60px 0 80px;
  background: #fff;
}

.order-online-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.order-header {
  max-width: 620px;
  margin-bottom: 48px;
}

.order-header h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  font-family: "Poppins";
  margin: 0 0 14px;
}

.order-header p {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

/* Grid */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* ===== THE IRREGULAR CARDS ===== */
.order-card {
  position: relative;
  padding: 20px 20px 32px;
  border-radius: 24px;
  border-top-right-radius: 48px;
  transition: transform 0.25s ease;
}

.order-card:hover {
  transform: translateY(-3px);
}

.order-card.light {
   background: #ffffff;
  color: #000;
}

.order-card.dark {
  background: #ffffff;
  color: #000;
}


.order-icon {
  position: relative;
  margin-bottom: 25px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}



/* Label */
.order-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.65;
}

.order-card.light .order-label { color: #555; }
.order-card.dark  .order-label { color: #aaa; }

/* Title – leave space for the icon */
.order-card h3 {
  font-size: 19px;
  font-weight: 650;
  margin: 0 0 10px;
  line-height: 1.3;
  padding-right: 48px; /* important so text doesn’t go under icon */
  font-family: "Instrument Sans", sans-serif;
}

/* Description */
.order-card p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
  font-family: "Instrument Sans", sans-serif;
}

.order-card.light p { color: #000;
font-family: "Instrument Sans", sans-serif; }
.order-card.dark  p { color: #000;
font-family: "Instrument Sans", sans-serif; }

/* ========== RESPONSIVE ========== */
@media (max-width: 800px) {
  .order-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .order-header h2 {
    font-size: 28px;
  }

  .order-card {
    border-top-right-radius: 40px;
  }
}

@media (max-width: 480px) {
  .order-header h2 {
    font-size: 24px;
  }

  .order-card {
    padding: 24px 22px 28px;
  }

  .order-icon {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
  }

  .order-card h3 {
    font-size: 17px;
    padding-right: 42px;
  }
}

 /* Comparison table */
 /* =====================  COMPARISON SECTION  ===================== */
.comparison-section {
  padding: 60px 0 80px;
  background: #fff;
}

.comparison-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-header {
  margin-bottom: 40px;
}

.comparison-header h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin: 0 0 10px;
  line-height: 1.2;
}

.comparison-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
  max-width: 520px;
}

/* Main wrapper */
.comparison-wrapper {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

/* Features column (left) */
.comp-features {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  font-family: "Instrument Sans";
}

.comp-features .comp-row {
  height: 57px;                    /* ← fixed height */
  min-height: 57px;
  max-height: 57px;
  padding: 0 22px;                 /* ← no vertical padding */
  font-size: 16px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #e8e8ea;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  line-height: 1.3;
}

.comp-features .comp-row:last-child {
  border-bottom: none;
}

.comp-features .header-row {
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  background: transparent;
  border-bottom: 1px solid #e8e8ea;
}

/* Comparison columns */
.comp-col {
  flex: 1;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
}

.comp-col-header {
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  border-bottom: 1px solid #e8e8ea;
  background: #f0f0f2;
  box-sizing: border-box;
}

.comp-col .comp-row {
  height: 57px;                    /* ← same fixed height */
  min-height: 57px;
  max-height: 57px;
  padding: 0 12px;
  font-size: 14.5px;
  color: #333;
  border-bottom: 1px solid #e8e8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1.3;
}

.comp-col .comp-row:last-child {
  border-bottom: none;
}

/* Icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.icon.yes {
  background: #0a9f6e;
  color: #fff;
}

.icon.no {
  background: #d1113f;
  color: #ffffff;
}

/* Highlight column */
.comp-col.highlight {
  background: #F4F4F4;
  color: #000;
  border-radius: 30px;
}

.comp-col.highlight .comp-col-header {
  background: #1a1a1f;
  color: #fff;                     /* ← fixed (was black) */
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comp-col.highlight .comp-row {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #000;
}

.comp-col.highlight .price {
  font-size: 20px;
  font-weight: 700;
}

.comp-col.highlight .icon.yes {
  background: #0a9f6e;
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .comparison-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .comp-features {
    flex: 0 0 210px;
    position: sticky;
    left: 0;
    z-index: 10;
    box-shadow: 4px 0 12px rgba(0,0,0,0.06);
  }

  .comp-col {
    flex: 0 0 155px;
  }

  .comp-col.highlight {
    flex: 0 0 155px;
  }
}

@media (max-width: 600px) {
  .comparison-header h2 {
    font-size: 26px;
  }

  .comp-features {
    flex: 0 0 170px;
  }

  .comp-features .comp-row {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    font-size: 13px;
    padding: 0 14px;
  }

  .comp-features .header-row {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
  }

  .comp-col {
    flex: 0 0 135px;
  }

  .comp-col-header {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    font-size: 12px;
  }

  .comp-col .comp-row {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    font-size: 13px;
    padding: 0 8px;
  }

  .icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

 /* FAQ */
 .faq_item {
  border-radius: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #F1f1f1;
  overflow: hidden;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  user-select: none;
}

.faq_question i {
  font-size: 18px;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Open state – rotate + into × */
.faq_item.open .faq_question i {
  transform: rotate(180deg);
  color: #d1113f;
}

/* Smooth answer */
.faq_answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 0;
  font-size: 15px;
  color: #555;
  line-height: 1.55;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq_item.open .faq_answer {
  max-height: 250px;   /* enough for your longest answer */
  padding: 0 0 18px;
}

 /* Stats */
 .stat_card_wrap {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     margin-top: 24px;
 }

 .stat_card {
     background: rgba(209, 17, 63, .9);
     border-radius: 16px;
     padding: 20px;
     color: #fff;
     flex: 1;
     min-width: 140px;
 }

 .stat_card h3 {
     font-size: 28px;
     margin: 0 0 6px;
     font-weight: 700;
 }

 .stat_card p {
     margin: 0;
     font-size: 13px;
     line-height: 1.3;
 }

 /* Testimonials */
 .testimonial_item {
     background: #F0F4F9;
     border-radius: 20px;
     padding: 40px 28px 50px;
     margin: 0 10px;
     position: relative;
 }

 .testimonial_item p {
     font-size: 16px;
     color: #555;
     line-height: 1.6;
     text-align: center;
 }

 .cust_name {
     display: block;
     text-align: center;
     font-weight: 600;
     margin-top: 16px;
     font-size: 14px;
 }

 /* Mobile sticky CTA */
 .sticky_order_now_btn_mob {
     display: none;
     position: fixed;
     left: 0;
     bottom: 0;
     width: 100%;
     background: #fff;
     z-index: 1000;
     padding: 12px 16px;
     box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
 }

 /* Responsive */
 @media (max-width:1199px) {
     .quick_order_container {
         padding: 20px;
     }

     .left_panel {
         padding-right: 0;
         order: 2;
     }

     .right_panel {
         order: 1;
         margin-bottom: 30px;
     }

     .order_form_sticky {
         position: relative;
         top: 0;
         max-width: 100%;
     }

     .squad_grid {
         grid-template-columns: repeat(2, 1fr);
     }

 }

 @media (max-width:767px) {
     .quick_hero_blk h1 {
         font-size: 28px;
     }

     .quick_hero_blk p {
         font-size: 16px;
     }

     .sec_heading h2 {
         font-size: 24px;
     }

     .squad_grid {
         grid-template-columns: 1fr 1fr;
     }

     .stat_card {
         min-width: 120px;
         padding: 14px;
     }

     .stat_card h3 {
         font-size: 22px;
     }

     .cmp_wrapper {
         display: none;
     }

     .cmp_mobile {
         display: block;
     }

     .sticky_order_now_btn_mob {
         display: block;
     }

     .hero_btns {
         flex-direction: column;
     }

     .hero_btns a {
         width: 100%;
         text-align: center;
     }
 }

 @media (max-width:480px) {
     .squad_grid {
         grid-template-columns: 1fr;
     }

     .timeline_item {
         flex-direction: column;
         gap: 6px;
     }
 }

 .smart-home-section {
     font-family: "Poppins",-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 }

 .smart-home-card {
     background: #f4f4f9;
     border-radius: 20px;
     padding: 20px;
     position: relative;
 }

.house-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}

.house-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

 /* Pin button */
.pin {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  padding: 0;
  z-index: 5;
  color: #374151;
}

/* Important – keep the icon perfect */
.pin svg,
.pin i {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Hover */
.pin:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Active (red) state – matches Figma */
.pin.active {
  background: #d1113f;
  color: #ffffff;
  box-shadow: 0 0 0 5px rgba(209, 17, 63, 0.25);
}

.pin.active svg {
  color: #ffffff;
  stroke: #ffffff;
}

 /* Device info card */
 .device-info {
     background: #ffffff;
     border-radius: 16px;
     padding: 18px 20px;
     margin-top: 16px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
 }

 .device-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 8px;
 }

 .device-location {
     font-weight: 600;
     font-size: 15px;
     color: #111;
 }

 .device-name {
     font-size: 14px;
     color: #555;
     margin-top: 1px;
 }

 .device-badge {
     font-size: 13px;
     color: #6b7280;
     white-space: nowrap;
     background: #f3f4f6;
     padding: 3px 10px;
     border-radius: 20px;
 }

 .device-desc {
     margin: 0;
     font-size: 13.5px;
     line-height: 1.55;
     color: #555;
 }

 /* Responsive */
 @media (max-width: 640px) {
     .pin {
    width: 36px;
    height: 36px;
  }

  .pin svg,
  .pin i {
    width: 17px !important;
    height: 17px !important;
  }

     .house-img {
         max-height: 280px;
     }
 }


/* ===== Pin Bubble ===== */
.pin-bubble {
    position: absolute;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 12px 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    width: 140px;
    text-align: center;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -100%) scale(0.9);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.pin-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -110%) scale(1);
}

.pin-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.bubble-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 6px;
    background: #f8f8f8;
  
}

.bubble-name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}
 .install-steps {
     max-width: 720px;
 }

 .install-step {
     display: flex;
     gap: 28px;
     padding: 22px 0;
     border-bottom: 1px solid #eee;

     /* Animation base state */
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .install-step.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .install-step:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .install-step:first-child {
     padding-top: 0;
 }

 .step-label {
     width: 120px;
     flex-shrink: 0;
     font-size: 13.5px;
     color: #9ca3af;
     padding-top: 3px;
     line-height: 1.3;

     
 }

 .step-content {
     flex: 1;
 }

 .step-title {
     font-size: 15.5px;
     font-weight: 600;
     color: #111;
     margin-bottom: 4px;
 }

 .step-title a {
     text-decoration: none;
 }

 .step-title a:hover {
     text-decoration: underline;
 }

 .step-desc {
     font-size: 14px;
     color: #6b7280;
     line-height: 1.55;
     margin: 0;
 }

 .tech-avatar {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 14px;
     flex-shrink: 0;
     margin-top: 2px;
 }

 /* Responsive */
 @media (max-width: 576px) {
     .install-step {
         flex-direction: column;
         gap: 6px;
     }

     .step-label {
         width: auto;
     }
 }

 .kevin-quote-panel {
     display: flex;
     gap: 22px;
     align-items: flex-start;
     background: #ffffff;
     border-radius: 18px;
     padding: 28px 32px;
     border: 1px solid #f0f0f0;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
     margin-bottom: 16px;
 }

 .kevin-avatar {
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: #e5e7eb;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 12px;
     color: #6b7280;
     text-align: center;
     line-height: 1.25;
     font-weight: 500;
 }

 .kevin-text {
     flex: 1;
     padding-top: 2px;
 }

 .kevin-quote {
     font-size: 18px;
     font-weight: 500;
     color: #111;
     line-height: 1.45;
     margin: 0 0 10px 0;
 }

 .kevin-meta {
     font-size: 14px;
     color: #6b7280;
     line-height: 1.5;
     margin: 0;
 }

 /* Separate video panel */
 .kevin-video-panel {
     background: #ffffff;
     border-radius: 18px;
     padding: 12px;
     border: 1px solid #f0f0f0;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
 }

 .kevin-video {
    position: relative;
    width: 100%;
    max-width: 100%;        
    overflow: hidden;
}

.kevin-video-img,
.kevin-video-player {
    display: block;
    width: 100%;
    height: auto;            
    object-fit: contain;  
    border-radius:20px;   
}


.kevin-video-player {
    max-height: none;
}

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 68px;
     height: 68px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.94);
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: #111;
     box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
     transition: all 0.2s ease;
     padding-left: 5px;
 }

 .play-btn:hover {
     background: #fff;
     transform: translate(-50%, -50%) scale(1.08);
 }

 /* Responsive */
 @media (max-width: 640px) {
     .kevin-quote-panel {
         flex-direction: column;
         align-items: center;
         text-align: center;
         padding: 24px 20px;
         gap: 16px;
     }

     .kevin-quote {
         font-size: 17px;
     }

     .kevin-video-panel {
         padding: 8px;
     }

     .play-btn {
         width: 58px;
         height: 58px;
     }
 }

 .cmp-table-wrapper {
     overflow-x: auto;
     border-radius: 16px;
     border: 1px solid #eee;
     background: #fff;
 }

 .cmp-table {
     width: 100%;
     border-collapse: collapse;
     min-width: 640px;
     font-size: 14.5px;
 }

 .cmp-table th {
     padding: 18px 16px;
     font-weight: 600;
     color: #374151;
     text-align: center;
     background: #fafafa;
     border-bottom: 1px solid #eee;
     vertical-align: bottom;
     line-height: 1.3;
 }

 .cmp-table th.highlight {
     background: #eef4ff;
     color: #1e40af;
 }

 .cmp-table td {
     padding: 16px;
     text-align: center;
     border-bottom: 1px solid #f3f4f6;
     color: #4b5563;
     vertical-align: middle;
 }

 .cmp-table td.feature {
     text-align: left;
     font-weight: 500;
     color: #111;
     padding-left: 24px;
     width: 32%;
 }

 .cmp-table td.highlight {
     background: #f0f5ff;
     font-weight: 500;
 }

 .cmp-table tr:last-child td {
     border-bottom: none;
 }

 /* Dots */
 .dot {
     display: inline-block;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     margin-right: 7px;
     vertical-align: middle;
 }

 .dot.yes {
     background: #22c55e;
 }

 .dot.no {
     background: #ef4444;
 }

 /* Legend */
 .cmp-legend {
     display: flex;
     gap: 20px;
     padding: 14px 24px;
     font-size: 13.5px;
     color: #6b7280;
     border-top: 1px solid #f3f4f6;
     background: #fafafa;
 }

 .cmp-legend .dot {
     margin-right: 6px;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .cmp-table td.feature {
         padding-left: 16px;
         font-size: 13.5px;
     }

     .cmp-table th,
     .cmp-table td {
         padding: 14px 12px;
         font-size: 13.5px;
     }
 }


 .reviews-header .rating-big {
     font-size: 42px;
     font-weight: 700;
     color: #111;
     line-height: 1;
 }

 .stars-green {
     color: #00B67A;
     font-size: 18px;
     letter-spacing: 1px;
     margin-bottom: 2px;
 }

 .reviews-count {
     font-size: 14px;
     color: #6b7280;
 }

 /* Slider */
 .reviews-slider {
     overflow: hidden;
 }

 .reviews-track {
     display: flex;
     transition: transform 0.45s ease;
 }

 .reviews-page {
     min-width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .review-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 14px;
     padding: 22px;
     display: flex;
     flex-direction: column;
 }

 .review-text {
     font-size: 15px;
     color: #111;
     line-height: 1.5;
     margin: 12px 0 16px;
     flex: 1;
 }

 .review-author {
     font-size: 13.5px;
     color: #6b7280;
 }

 .verified {
     color: #00B67A;
     font-weight: 500;
 }

 .review-avatar {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     object-fit: cover;
 }

 /* Pagination */
 .reviews-pagination {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 12px;
 }

 .showing-text {
     font-size: 13.5px;
     color: #6b7280;
 }

 .pagination-controls {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .dots {
     display: flex;
     gap: 6px;
     margin-right: 8px;
 }

 .dots .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #d1d5db;
     cursor: pointer;
     transition: background 0.2s;
 }

 .dots .dot.active {
     background: #111;
 }

 .btn-nav {
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     padding: 7px 16px;
     font-size: 13.5px;
     color: #374151;
     cursor: pointer;
     transition: all 0.15s;
 }

 .btn-nav:hover:not(:disabled) {
     background: #f9fafb;
     border-color: #d1d5db;
 }

 .btn-nav:disabled {
     opacity: 0.45;
     cursor: not-allowed;
 }

 /* Trust badges */
 .trust-badges {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .badge-item {
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     padding: 8px 14px;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.3px;
     color: #4b5563;
     background: #fff;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .reviews-page {
         grid-template-columns: 1fr;
     }

     .rating-big {
         font-size: 36px;
     }
 }

 .call-card {
     background: #eef2f7;
     border-radius: 16px;
     padding: 28px 28px 24px;
     display: flex;
     flex-direction: column;
 }

 .call-desc {
     font-size: 14.5px;
     color: #4b5563;
     line-height: 1.5;
     margin: 0;
 }


 .phone-number {
     font-size: 26px;
     font-weight: 700;
     color: #111;
     margin: 20px 0 18px;
     letter-spacing: -0.3px;
 }

 .btn-call {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     background: #d1113f;
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     padding: 12px 28px;
     border-radius: 10px;
     text-decoration: none;
     transition: background 0.2s;
     width: fit-content;
 }

 .btn-call:hover {
     background: #162d4a;
     color: #fff;
     text-decoration: none;
 }

 /* Book card */
 .book-card {
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: 16px;
     padding: 28px;
 }

 .book-card .form-control {
     height: 46px;
     border-radius: 10px;
     border: 1px solid #e5e7eb;
     font-size: 14.5px;
     padding-left: 14px;
 }

 .book-card .form-control:focus {
     border-color: #94a3b8;
     box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15);
 }



 .btn-book {
     background: #111;
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     padding: 13px;
     border-radius: 10px;
     border: none;
     transition: background 0.2s;
 }

 .btn-book:hover {
     background: #000;
     color: #fff;
 }

 /* Responsive */
 @media (max-width: 991px) {
     .phone-number {
         font-size: 24px;
     }
 }

 .section-divider {
    margin-top: 60px !important;
 }

/* ===================== HERO ===================== */
.hero-section {
  padding: 0 !important;
}
.security-hero {
  width: 100%;

}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  overflow: hidden;
  background: #0f1c2e;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 7s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 20, 40, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

/* ===================== TOP TIMELINE ===================== */
.timeline {
  position: absolute;
  z-index: 12;
  top: 26px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.timeline-item.active {
  color: #fff;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -2px;
  width: calc(100% - 20px);
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.timeline-bubble {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
  margin-left:10px;
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-bubble {
  background: #fff;
  color: #111;
}

.timeline-text {
  min-width: 0;
  padding-top: 2px;
}

.timeline-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline-description {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===================== BOTTOM FEATURE PILLS ===================== */
.hero-features {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 350px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  white-space: nowrap;
}

.feature-icon {
  width: 16px;
  height: 16px;
  stroke-width: 1.75;
  color: #fff;          /* white outline */
  flex-shrink: 0;
}
/* ===================== HERO CONTENT ===================== */
.hero-content {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 120px;
  width: min(1000px, 95%);
  transform: translateX(-50%);
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  font-family: "Poppins", san-serif;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.button {
  min-width: 130px;
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #111;
  background: #fff;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Arrows & dots (keep simple) */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.arrow.prev { left: 18px; }
.arrow.next { right: 18px; }

.dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active {
  background: #fff;
  width: 22px;
  border-radius: 10px;
}

/* Old mobile rules – disabled because they conflict with the final mobile hero override
@media (max-width: 768px) {
  .slider {
    min-height: 560px;
    aspect-ratio: auto;
  }

  .timeline {
    top: 14px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }

  .timeline-item:nth-child(3),
  .timeline-item:nth-child(4) {
    margin-top: 6px;
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .hero-features {
    bottom: 240px;
    gap: 8px;
  }

  .hero-feature {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-content {
    bottom: 50px;
  }
}
*/
/* =========================================================
   THE IMPORTANT SHAPE
   ========================================================= */



.feature-panel{
  position:absolute;
  z-index:15;
  left:0;
  right:0;
  bottom:0;
  height:67px;
  pointer-events:none;
}

.feature-shape{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:67px;
  display:block;
}

/* Content sits over the SVG's white area */
.features{
  position:absolute;
  z-index:2;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(670px,70%);
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.feature{
  display:flex;
  align-items:center;
  gap:5px;
  white-space:nowrap;
  color:#171717;
  font-size:7px;
  font-weight:400;
}

.check{
  width:12px;
  height:12px;
  border:1.5px solid var(--orange);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--orange);
  font-size:8px;
  font-weight:700;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.arrow{
  position:absolute;
  z-index:20;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50%;
  background:rgba(0,0,0,.18);
  color:white;
  cursor:pointer;
  opacity:0;
  backdrop-filter:blur(5px);
  transition:opacity .2s,background .2s;
}

.slider:hover .arrow{opacity:1}
.arrow:hover{background:rgba(0,0,0,.42)}
.arrow.prev{left:15px}
.arrow.next{right:15px}

.dots{
  position:absolute;
  z-index:20;
  left:50%;
  bottom:70px;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
}

.dot{
  width:6px;
  height:6px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
  transition:.25s;
}

.dot.active{
  width:19px;
  border-radius:10px;
  background:white;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:800px){
  .security-hero{
    width:100% ;

  }

  .slider{
    aspect-ratio:4 / 3;
    min-height:440px;
  }

  .timeline{
    left:5px;
    right:5px;
  }

  .timeline-item{
    padding:0 5px;
    gap:5px;
  }

  .timeline-bubble{
    flex-basis:24px;
    width:24px;
    height:24px;
    font-size:7px;
  }

  .timeline-title{font-size:7px}
  .timeline-description{font-size:5.5px}

  .hero-content{
    top:54%;
  }

  .hero-content h1{
    font-size:clamp(27px,5.5vw,38px);
  }

  .feature-panel{
    height:65px;
  }

  .feature-shape{
    height:65px;
  }

  .features{
    width:86%;
    height:36px;
  }

  .feature{
    font-size:6.5px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:560px){
  .security-hero{
    width:100%;
  }

  .slider{
    aspect-ratio:4 / 5;
    min-height:0;
    border-radius:0 0 11px 11px;
  }

  /*
    On phones the four timeline columns remain, but are compact.
  */
  .timeline{
    top:9px;
    left:3px;
    right:3px;
  }

  .timeline-item{
    padding:0 3px;
    gap:3px;
  }

  .timeline-item:not(:last-child)::after{
    top:15px;
    height:31px;
  }

  .timeline-bubble{
    flex-basis:21px;
    width:21px;
    height:21px;
    font-size:6px;
  }

  .timeline-title{
    font-size:6px;
  }

  .timeline-description{
    display:none;
  }

  .hero-content{
    top:52%;
    width:91%;
  }

  .hero-content h1{
    font-size:clamp(25px,8vw,32px);
    letter-spacing:-.8px;
  }

  .hero-content p{
    margin:8px auto 14px;
    font-size:8px;
    max-width:340px;
  }

  .button{
    height:34px;
    min-width:72px;
    padding:0 13px;
    font-size:9px;
  }

  .feature-panel{
    height:73px;
  }

  .feature-shape{
    height:73px;
  }

  .features{
    width:94%;
    height:42px;
    gap:7px;
  }

  .feature{
    font-size:5.5px;
    gap:3px;
  }

  .check{
    width:10px;
    height:10px;
    font-size:6px;
  }

  .arrow{
    width:32px;
    height:32px;
  }

  .slider:hover .arrow{opacity:.8}

  .dots{
    bottom:78px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width:380px){
  .timeline-title{font-size:5.5px}

  .timeline-bubble{
    width:18px;
    height:18px;
    flex-basis:18px;
  }

  .hero-content h1{
    font-size:24px;
  }

  .hero-content p{
    font-size:7px;
  }

  .features{
    width:97%;
  }

  .feature{
    font-size:5px;
  }
}

@media (prefers-reduced-motion:reduce){
  .slide,.button,.arrow,.dot{
    transition:none;
  }
}

/* ===================== CUSTOMER REVIEWS SLIDER ===================== */
.customer-reviews {
  padding: 70px 0 80px;
  background: #fff;
}

.customer-reviews .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.cr-header {
  margin-bottom: 36px;
}

.cr-header h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
}

.cr-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Slider */
.cr-slider {
  overflow: hidden;
}

.cr-track {
  display: flex;
  transition: transform 0.45s ease;
}

.cr-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 4px 2px;
}

/* Card */
.cr-card {
  background: #f6f6f7;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.cr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cr-stars {
  color: #ffffff;
  background: #22c55e;
  font-size: 18px;
  letter-spacing: 1px;
  margin-left:3px;
}

.cr-time {
  font-size: 13px;
  color: #999;
}

.cr-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 18px;
  flex-grow: 1;
}

.cr-author {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* Dots */
.cr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.cr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.cr-dot.active {
  background: #222;
  width: 22px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .cr-slide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cr-header h2 {
    font-size: 26px;
  }

  .cr-slide {
    grid-template-columns: 1fr;
  }
}

/* ===== Pricing Section ===== */
.pricing_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.price_card {
    text-align: left;
}

/* Price pill – matches the design */
.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f3f3;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 16px;
}

.price-pill .current {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.price-pill .original {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.price_card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #111;
}

.price_card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666;
    margin: 0;
    max-width: 280px;
}

/* Optional soft entrance animation */
.price_card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.55s ease forwards;
}

.price_card:nth-child(1) { animation-delay: 0.1s; }
.price_card:nth-child(2) { animation-delay: 0.2s; }
.price_card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .pricing_cards {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .pricing_cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .price_card p {
        max-width: 100%;
    }
}
/* ===================== DIGITAL CLOCK / WATCH ===================== */
.hero-clock {
  position: absolute;
  z-index: 14;
  left: 28px;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(15, 28, 46, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 22px 16px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 220px;
  pointer-events: none;
}



.clock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.clock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e; /* green */
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15); }
}

.clock-status-text {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.2px;
}

.clock-time {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.clock-digits {
  font-family: 'TimeFont', monospace; /* fallback is good practice */
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.clock-ampm {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 4px;
}

/* Make timeline description wrap a bit better on desktop */
.timeline-description {
  white-space: normal;
  max-width: 180px;
  line-height: 1.3;
}

/* Responsive adjustments for the clock */
@media (max-width: 900px) {
  .hero-clock {
    left: 16px;
    padding: 10px 16px 12px;
    min-width: 180px;
  }
  .clock-digits {
    font-size: 32px;
  }
  .clock-status-text {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .hero-clock {
    left: 12px;
    top: auto;
    bottom: 180px;
    transform: none;
    padding: 8px 14px 10px;
    min-width: 160px;
  }
  .clock-digits {
    font-size: 26px;
    font-family: "TimeFont";
  }
  .clock-ampm {
    font-size: 13px;
  }
  .clock-status-text {
    font-size: 10px;
  }
}

/* ===== Alarm Response Slider ===== */
.alarm-response {
    padding: 80px 0;
    background: #fff;
}

.alarm-response .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.alarm-response .sec_heading {
    margin-bottom: 40px;
}

.alarm-response .sec_heading h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 12px;
}

.alarm-response .sec_heading .text-muted {
    font-size: 1.05rem;
    color: #666;
    max-width: 520px;
}

/* Slider container */
.ar-slider {
    position: relative;
}

/* Image area */
.ar-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    margin-bottom: 32px;
}

.ar-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.8s ease;
}

.ar-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Timeline */
.ar-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Progress line behind steps */
.ar-timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.ar-step {
    position: relative;
    padding: 0 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

/* Red active bar */
.ar-step::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 12px;
    right: 12px;
    height: 3px;
    background: transparent;
    border-radius: 2px;
    transition: background 0.3s ease;
    z-index: 1;
}

.ar-step.active::after {
    background: #d1113f; /* same red as pricing highlight */
}

.ar-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.ar-step-time {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 6px;
}

.ar-step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ar-step-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.45;
    max-width: 220px;
}

/* Inactive steps slightly muted */
.ar-step:not(.active) .ar-step-title,
.ar-step:not(.active) .ar-step-desc {
    opacity: 0.55;
}

.ar-step:hover:not(.active) .ar-step-title,
.ar-step:hover:not(.active) .ar-step-desc {
    opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .alarm-response .sec_heading h2 {
        font-size: 2rem;
    }

    .ar-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }

    .ar-timeline::before {
        display: none;
    }

    .ar-step::after {
        top: auto;
        bottom: -12px;
        height: 3px;
    }

    .ar-step-label {
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .alarm-response {
        padding: 60px 0;
    }

    .alarm-response .sec_heading h2 {
        font-size: 1.7rem;
    }

    .ar-image-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        margin-bottom: 28px;
    }

    .ar-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ar-step {
        padding: 0;
        border-left: 3px solid #e5e5e5;
        padding-left: 16px;
    }

    .ar-step.active {
        border-left-color: #d1113f;
    }

    .ar-step::after {
        display: none;
    }

    .ar-step-desc {
        max-width: 100%;
    }
}

/* ===== Consult Section ===== */
.consult-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f4f4f5;
    border-radius: 16px;
    overflow: hidden;
    min-height: 340px;
}

/* Left column */
.consult-left {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #e0e0e0;
}

.consult-left h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.consult-left p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

.consult-phone {
    font-size: 1.35rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-top: 32px;
    display: inline-block;
    transition: color 0.2s ease;
}

.consult-phone:hover {
    color: #d1113f;
}

/* Right column */
.consult-right {
    padding: 40px 36px;
    background: #f4f4f5;
}

.consult-right h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 20px 0;
}

/* Form */
.consult-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consult-form input,
.consult-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d4d8;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fff;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease;
}

.consult-form input:focus,
.consult-form select:focus {
    border-color: #111;
}

.consult-form input::placeholder {
    color: #999;
}

/* Date + Time row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.date-field {
    position: relative;
}

.date-field .date-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.date-field input[type="date"] {
    padding-left: 40px;
}

/* Button */
.consult-btn {
    margin-top: 8px;
    width: 100%;
    padding: 14px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.consult-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 800px) {
    .consult-box {
        grid-template-columns: 1fr;
    }

    .consult-left {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 28px;
    }

    .consult-phone {
        margin-top: 24px;
    }

    .consult-left,
    .consult-right {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .consult-left h2 {
        font-size: 1.45rem;
    }
}

/* ===== Configurator (matches Figma) ===== */
.configurator {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    font-family: inherit;
}

.config-header {
    padding: 20px 20px 12px;
    border-bottom: 1px solid #eee;
}

.config-rating {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}
.config-rating .stars { color: #22c55e; letter-spacing: 1px; }

.config-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #111;
}
.config-sub {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Steps */
.config-step {
    display: none;
    padding: 0;
}
.config-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 0.95rem;
}
.step-header.completed {
    background: #f0fdf4;
    color: #166534;
}
.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
}
.step-header.completed .step-num {
    background: #16a34a;
}
.step-edit {
    margin-left: auto;
    background: none;
    border: none;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.step-body {
    padding: 20px;
}

/* Counters */
.counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.counter-row label {
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}
.counter {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.counter-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    font-size: 1.2rem;
    cursor: pointer;
}
.counter input {
    width: 48px;
    height: 36px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

/* Options (checkboxes) */
.option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}
.option-row:last-of-type { border-bottom: none; }
.option-label { flex: 1; font-size: 0.95rem; }
.option-price { font-weight: 600; color: #111; }

/* Buttons */
.btn-next,
.btn-primary {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-next:hover,
.btn-primary:hover { background: #333; }

.btn-outline {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Summary */
.system-summary {
    font-size: 0.9rem;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f3f3f3;
}
.summary-line.total {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    border-top: 2px solid #eee;
    padding-top: 12px;
}
.due-today {
    margin: 20px 0;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 10px;
}
.due-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.due-price {
    font-size: 1.6rem;
    font-weight: 700;
}
.free-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Tablet / small desktop – keep 3 columns or drop to 2 if you prefer */
@media (max-width: 991px) {
  .squad_grid {
    grid-template-columns: repeat(2, 1fr);   /* was still 3 */
    gap: 14px;
  }
}

/* Phones – 2 columns is readable, 1 column is even safer */
@media (max-width: 575px) {
  .squad_grid {
    grid-template-columns: repeat(2, 1fr);   /* was still 3 */
    gap: 12px;
  }

  .squad_img {
    height: 110px;          /* a bit taller than 90px */
    padding: 10px;
  }

  .squad_body {
    padding: 12px;
  }

  .squad_label {
    font-size: 10px;
  }

  .squad_body h5 {
    font-size: 14px;
  }

  .squad_body p {
    font-size: 12px;
  }

  .squad_price {
    font-size: 13px;
  }
}

/* Very small phones – single column */
@media (max-width: 420px) {
  .squad_grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   MOBILE HERO – MATCH THE MOCKUP
   Paste at the very bottom of your CSS
   ===================================================== */
@media (max-width: 640px) {

  .slider {
    min-height: 720px !important;
    aspect-ratio: auto !important;
  }

  /* Timeline – horizontal + swipeable */
  .timeline {
    top: 12px !important;
    left: 20px ;
    right: 0 !important;
    display: flex !important;
    flex-direction: row !important;          /* ← horizontal */
    flex-wrap: nowrap !important;
    gap: 16px !important;
    overflow-x: auto !important;             /* ← allows sliding */
    overflow-y: hidden !important;
    padding: 0 16px 10px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    grid-template-columns: none !important;
  }

  .timeline-item {
    flex: 0 0 320px !important;              /* fixed width so it can slide */
    scroll-snap-align: start !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 10px;
    margin: 0 !important;
  }

  .timeline-item:not(:last-child)::after {
    display: none !important;                /* hide connecting lines on mobile */
  }

  .timeline-bubble {
    display: none;
  }

  .timeline-title {
    font-size: 14px !important;
    white-space: normal !important;
  }

  .timeline-description {
    display: block !important;
    font-size: 13px !important;
    white-space: normal !important;
   width: 100%;
    line-height: 1.4 !important;
    max-width: 90%;
  }

  /* Show only the active step message at the top */
  .hero-content {
    top: auto !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    text-align: center !important;
    z-index: 20 !important;
  }

  .hero-content h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .hero-content p {
    font-size: 14px !important;
    margin-bottom: 18px !important;
    opacity: 0.95 !important;
  }

  .buttons {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .button {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }

  /* Clock – large and centered like the mockup */
  .hero-clock {
    left: 50% !important;
    right: auto !important;
    top: 140px !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    min-width: 260px !important;
    padding: 14px 20px 16px !important;
    z-index: 25 !important;
    text-align: center !important;
  }

  .clock-status {
    justify-content: center !important;
  }

  .clock-digits {
    font-size: 42px !important;
    letter-spacing: 2px !important;
  }

  .clock-ampm {
    font-size: 14px !important;
  }

  .clock-status-text {
    font-size: 12px !important;
  }

  /* Feature pills – under the clock */
  .hero-features {
    bottom: 320px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    justify-content: center !important;
    gap: 8px !important;
    z-index: 15 !important;
  }

  .hero-feature {
    font-size: 12px !important;
    padding: 7px 12px !important;
  }

  /* Hide the old bottom feature panel */
  .feature-panel,
  .feature-shape,
  .features {
    display: none !important;
  }

  
}
/* Desktop sticky order panel */
@media (min-width: 1200px) {
  .right_panel {
    position: relative; /* needed for sticky child in some browsers */
  }

  .order_wrapper {
    height: 100%;
  }

  .order_form_sticky {
    position: sticky;
    top: 24px;                 
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: thin;
  }

  /* prevent the sticky panel from stretching the whole page */
  .left_panel {
    min-height: 100%;
  }
}