:root {
    --red: #c41300;
    --red-lt: #fa7465;
    --red-dk: #970f00;

    --ocean: #0097A7;
    --teal: #00BCD4;
    --aqua: #00E5FF;
    --seafoam: #1DE9B6;
    --coral: #FF6B4A;
    --deep: #003D47;
    --midnight: #001E26;
    --card: #012830;
    --card-hover: #023540;
    --white: #FFFFFF;
    --muted: #7FB3BB;
    --muted-dim: #4A7B82;
    --border: rgba(0, 188, 212, 0.18);
    --border-strong: rgba(0, 188, 212, 0.35);
    --gold: #F0A500;
    --gold-lt: #FBB724;
    --max: 1240px;
    --nav-height: 84px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

      --gray-100:    #EEF0F4;
      --gray-300:    #C4C9D4;
      --gray-500:    #8892A2;
      --gray-700:    #4A5568;
      --gray-900:    #2D3748;

            --navy:        #0D1B2A;
      --navy-mid:    #1A2E45;
      --navy-soft:   #243B55;
      --gold:        #C9A96E;
      --gold-light:  #E8D5B0;
      --white:       #FFFFFF;
      --off-white:   #F7F8FA;
      --gray-100:    #EEF0F4;
      --gray-300:    #C4C9D4;
      --gray-500:    #8892A2;
      --gray-700:    #4A5568;
      --text:        #1A2333;
      --radius-sm:   6px;
      --radius-md:   12px;
      --radius-lg:   20px;
      --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
      --shadow-md:   0 4px 16px rgba(13,27,42,0.10);
      --shadow-lg:   0 16px 48px rgba(13,27,42,0.16);

      --transition:  0.22s cubic-bezier(0.4,0,0.2,1);



}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 300vh;
    scroll-behavior: smooth
}


/* .no-scroll {
    margin: 0; height: 100%; 
    overflow: hidden;
} */


.loader {
  --color-1: #fff;
  --color-2: #ff3d00;
  --size: 1px;

  width: calc(48 * var(--size));
  height: calc(48 * var(--size));
  display: inline-block;
  position: relative;
}
.loader::after,
.loader::before {
  content: '';
  width: calc(48 * var(--size));
  height: calc(48 * var(--size));
  border: calc(2 * var(--size)) solid var(--color-1);
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  animation: rotation 2s ease-in-out infinite;
}
.loader::after {
  border-color: var(--color-2);
  animation-delay: 1s;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-lt);
    margin-bottom: 16px;
}

.heading-display {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    color: var(--navy);
}

.heading-xl {

    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    color: var(--navy);
}

.heading-lg {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
    color: var(--navy);
}

.body-lg {
    font-size: 18px;
    line-height: 1.65;
    color: var(--gray-700);
    font-weight: 400;
}

.body-md {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
}

.hidden {
    display: none !important;
}


/* FIXED BACKGROUND */

/* .background-container {
    position: fixed;
    inset: 0;
    z-index: -1;
} */


.background-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    height: 100lvh;
}

.bg-old {
    background-image: url("./img/house_good.png");
}

.bg-new {
    background-image: url("./img/house_bad.png");
    clip-path: inset(100% 0 0 0);
}






/* =====================
   SCROLL INDICATOR
===================== */

.scroll-indicator{
    position:absolute;
    bottom:5%;
    left:50%;
    transform:translateX(-50%);
    color:white;
    letter-spacing:3px;
    font-size:10px;
    z-index:5;
}

.scroll-indicator span{
    display:block;
    width:1px;
    height:25px;
    margin:5px auto 0;
    background:white;
    animation:scroll 2s infinite;}

@keyframes scroll{
    0%{
        transform:translateY(0);
        opacity:0;
    }
    50%{
        opacity:1;
    }

    100%{
        transform:translateY(12px);
        opacity:0;
    }
}



.navbar {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 0px);
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

/* .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
} */

    .login_img {
      width: 24px; height: 24px;
      
    }


.nav-links {
    display: flex;
    /* align-items: center; */
    gap: 30px;
    list-style: none;
     vertical-align: middle;
   
}



.nav-links a {
    text-decoration: none;
    color: #111;
    /* color: var(--gray-900); */
    font-weight:500;
    transition: 0.3s;
     vertical-align: middle;
}

.nav-links a:hover {
    color: #C41300;
}


.nav__actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav__lang {
      display: flex;
      background: rgba(255,255,255,0.08);
      border-radius: 6px;
      overflow: hidden;
    }
    .nav__lang-btn {
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gray-700);
      cursor: pointer;
      transition: all var(--transition);
      border: none;
      background: none;
      letter-spacing: 0.04em;
    }
    .nav__lang-btn.active {
      background: var(--gray-500);
      color: var(--white);
      border-radius: 4px;
    }



/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #222;
    transition: 0.3s;
}





.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.logo-svg {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    fill: #C41300;

}

.logo-text {
    font-size: 1.2rem;
    font-weight: 750;
    color: #222;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    letter-spacing: -1.5px
}




/* ─── Mobile sticky bottom bar ──────────────────────────────── */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 210;
    /* background:rgba(0,20,28,.0);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid var(--border-strong); */
    padding: .7rem;
    gap: .7rem;
}

.mobile-sticky a {
    flex: 1;
    padding: .85rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

/* .mobile-sticky .ms-call{
  background:rgba(0,188,212,.15);
  color:var(--aqua);
  border:1px solid var(--border-strong);
} */
.mobile-sticky .ms-report {
    background: linear-gradient(135deg, var(--red-dk), var(--red-lt));
    color: #fff;
    /* box-shadow:0 4px 14px rgba(255,107,74,.4); */
}




.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}


.panel {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}


/* =============================================
       HERO
       ============================================= */




    .hero {
      min-height: 100vh;
      /* background: var(--navy); */
      display: flex;
      align-items: center;
      padding-top: 2px;
      position: relative;
      overflow: hidden;   

    }
    /* .hero__bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero__bg-glow {
      position: absolute;
      top: -200px; right: -200px;
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    } */
    .hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 80px;
      align-items: center;
     
      padding: 10px 0;
      text-align: center;   
    }
     /* .hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(250,116,101,0.5);
      border: 1px solid rgba(250,116,101,0.9);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--gold-light);
      margin-bottom: 24px;
      letter-spacing: 0.03em;
      font-size: 18px;
      text-align: center;
      
    }
    .hero__tag-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }  */

    .hero__heading {
      /* font-family: 'DM Serif Display', Georgia, serif; */
      font-size: clamp(36px, 5.1vw, 72px);
      line-height: 1.05;
      color: var(--white);
      margin-top: 10%;
      margin-bottom: 10%;
      font-weight: 750;
    }
    .hero__heading em {
      color: var(--red-lt);
      font-style: italic;
      font-weight: 750;
    }
    .hero__sub {
      font-size: 17px;
      line-height: 1.65;
      color: rgba(255,255,255);
      margin-bottom: 40px;
      /* max-width: 480px; */
      font-weight: bold;
    }

    .hero__sub em{
      font-size: 17px;
      line-height: 1.65;
      /* color: var(--red-lt); */
      margin-bottom: 40px;
      /* max-width: 480px; */
      font-weight: normal;
    }


    .hero__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 56px;
    }
    .hero__stats {
      display: flex;
      gap: 40px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
    }
    .hero__stat-value {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--white);
      display: block;
    }
    .hero__stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.04em;
    }



    /* =============================================
       PROBLEMS
       ============================================= */
.problems {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: top;
    padding-top: 2px;
    position: relative;
    overflow: hidden;
}



.problems__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: center;

    padding: 10px 0;
    text-align: center;
}


.problems__heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(36px, 5.1vw, 72px);
    line-height: 1.05;
    color: var(--white);
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 750;
}


    .problems__sub {
      font-size: 17px;
      line-height: 1.65;
      color: rgba(255,255,255);
      margin-bottom: 40px;
      /* max-width: 480px; */
      font-weight: normal;
    }


    
    /* =============================================
       EXTRA SPACE
       ============================================= */
       .extra_space {
    min-height: 10vh;
    /* background: var(--navy); */
    display: flex;
    align-items: top;
}




/* =============================================
       WHY SECTION
       ============================================= */
    .why {
      padding: 120px 0;
    }
    .why__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      border-bottom: 1px solid var(--gray-100); 
    }
    .why__reasons { margin-top: 40px; }
    .why__reason {
      display: flex;
      gap: 20px;
      padding: 12px 0;
       /* border-bottom: 1px solid var(--gray-100);  */
    }
    /* .why__reason:first-child { border-top: 1px solid var(--gray-100); } */

    .why__num {
      font-family: 'DM Serif Display', serif;
      font-size: 13px;
      color: var(--red);
      font-weight: 400;
      width: 20px;
      flex-shrink: 0;
      padding-top: 3px;
    }
    .why__reason-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .why__reason-text { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
    .why__visual {
       position: relative; 
    }
    .why__image-box {
      /* background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
      border-radius: var(--radius-lg);
      aspect-ratio: 4/3; */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .why__savings-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      /* width: 260px; */
      box-shadow: var(--shadow-lg);
    }
    .why__savings-label { 
        font-size: 11px; 
        color: var(--red); 
        font-weight: 500; 
        letter-spacing: 0.06em; 
        text-transform: uppercase; 
        margin-bottom: 6px; }

    .why__savings-value {
      font-family: 'DM Serif Display', serif;
      font-size: 44px;
      font-weight: 900; 
      color: var(--red);
      line-height: 1;
      margin-bottom: 4px;
    }
    .why__savings-sub { 
        font-size: 13px; 
        color: var(--gray-300); }
    .why__tag-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #D1FAE5;
      color: #065F46;
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      margin-top: 12px;
    }


/* =============================================
       DIFFERENTIATORS
       ============================================= */
    .diff {
      background: var(--gray-900);
      padding: 120px 0;
    }
    .diff__header { text-align: center; margin-bottom: 72px; }
    .diff__header .heading-xl { color: var(--white); }
    .diff__header p { color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 17px; }
    .diff__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      background: var(--gray-900);
      border-radius: var(--radius-lg);
      overflow: hidden;
  
    }
    .diff__card {
      background: var(--gray-900);
      padding: 40px 32px;
      transition: background var(--transition);
      border-bottom: 1px solid rgba(250,116,101,0.5); 
    }
    .diff__card:hover { background: var(--gray-700); }
    .diff__card-icon {
      width: 48px; height: 48px;
      background: rgba(250,116,101,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }
    .diff__card-icon-img {
      width: 32px; height: 32px;
      /* fill: #fa7465; */
/* filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); */
    }

    .diff__card-title { font-size: 17px; font-weight: 600; color: rgba(250,116,101,1); ; margin-bottom: 10px; }
    .diff__card-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.65; }
    .diff__card-button {
      display: inline-block;
      margin-top: 40px;
      padding: 10px 18px;
      background: rgba(250,116,101, 0.5);;
     /* background: linear-gradient(135deg, var(--red-dk), var(--red-lt)); */
      border: 0px solid rgba(250,116,101,1);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      border-radius: 16px;
      text-decoration: none;
      transition: background var(--transition);
      width: 100%;
      text-align: center;
          cursor: pointer;
           transition: 0.5s;
    }

        .diff__card-button:hover {
            transform: translateY(-3px);
            background: rgba(250, 116, 101, 0.75);
            transition: 0.5s;
            
        }

                .diff__card-button:active {
            transform: translateY(3px);
            background: rgba(250, 116, 101, 1);
            transition: 0.1s;
            
        }



/* =============================================
       PRICING CALCULATOR
       ============================================= */
    .pricing {
      background: var(--off-white);
      padding: 120px 0;
    }
    .pricing__header { text-align: center; margin-bottom: 64px; }
    .calc-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 48px;
      max-width: 760px;
      margin: 0 auto;
    }
    .calc__row {
      margin-bottom: 28px;
    }
    /* .calc__label {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
      display: block;
    } */
    .calc__radio-group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }


    .calc__house-radio-btn {
      flex: 1;
      /* min-width: 100px; */
      padding: 6px 6px;
      border: 1.5px solid var(--gray-300);
      border-radius: var(--radius-sm);
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-700);
      cursor: pointer;   
      background: var(--white);
       transition: 0.5s;
    }
    .calc__house-radio-btn:hover { 
        border-color: var(--red); 
        background: rgba(250, 116, 101, 0.25); 
        color: var(--red-dk);
            transition: 0.5s;
    }
    .calc__house-radio-btn.selected {
      border-color: var(--red);
      background: rgba(196, 19, 0, 1); ;
      color: var(--white);
    }


.calc__size-radio-btn, .calc__package-radio-btn{
    flex: 1;
    /* min-width: 100px; */
    padding: 6px 6px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
    cursor: pointer;

    background: var(--white);
    transition: 0.5s;
}

.calc__size-radio-btn:hover, .calc__package-radio-btn:hover{
    border-color: var(--red);
    background: rgba(250, 116, 101, 0.25);
    color: var(--red-dk);

    transition: 0.5s;
}

.calc__size-radio-btn.selected, .calc__package-radio-btn.selected{
    border-color: var(--red);
    background: rgba(196, 19, 0, 1);
    ;
    color: var(--white);
}





    .calc__slider-container { position: relative; }
    .calc__slider {
      width: 100%;
      -webkit-appearance: none;
      height: 4px;
      background: var(--gray-100);
      border-radius: 2px;
      outline: none;
    }
    .calc__slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(201,169,110,0.4);
    }
    .calc__slider-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
      font-size: 11px;
      color: var(--gray-500);
    }
    .calc__size-display {
      text-align: center;
      /* font-family: 'DM Serif Display', serif; */
      font-size: 32px;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .calc__size-unit { font-size: 13px; color: var(--gray-500); text-align: center; margin-bottom: 16px; }
    .calc__extras { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }





    
    .calc__extra:hover { border-color: var(--red-lt); }
    /* .calc__extra.selected { border-color: var(--gold); background: rgba(201,169,110,0.06); } */

    /* .calc__extra input { 
        accent-color: 
        var(--gold); 
        width: 16px; 
        height: 16px; 
        cursor: pointer; 
    } */

    .calc__extra-name { font-size: 13px; font-weight: 500; color: var(--navy); }
    .calc__extra-price { 
        font-size: 14px; 
        color: var(--red    ); 
        font-weight: 600; 
        margin-left: auto; }
    .calc__divider {
      border: none;
      border-top: 1px solid var(--gray-100);
      margin: 28px 0;
    }
    .calc__result {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .calc__result-label { font-size: 14px; color: var(--gray-500); }
    .calc__result-price {
      font-family: 'DM Serif Display', serif;
      font-size: 42px;
      color: var(--navy);
      display: flex;
      align-items: flex-start;
      gap: 4px;
    }
    .calc__result-currency { font-size: 22px; padding-top: 8px; }
    .calc__result-note { font-size: 12px; color: var(--gray-500); margin-top: 6px; }
    .calc__cta { margin-top: 24px; text-align: center; }


     .calc__extra {
    display: flex;
     flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      padding: 8px 8px; 
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius-sm);
      cursor: pointer;
      /* transition:  0.5s; */
    } 


.calc__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex: 24px;
    border-radius: 50%;
    background: rgba(250, 116, 101, 0.05);
    /* flex-shrink: 0; */
    font-size: 10px;
    color: var(--red);
    /* transition: transform var(--transition); */
    order: 2;
    text-align: center;
    transition: transform var(--transition);
}


.calc__icon.calc_open .calc__icon { transform: rotate(45deg); }


.calc__label {
    display: flex;
    flex: 100;
    align-items: center;
    gap: 10px;
    padding: 6px 6px;
    cursor: pointer;
    /* transition: all var(--transition); */
    margin: 0px;
    order: 1;
    font-weight: 700;
}



.calc__submenu {
    width: 100%;
    list-style-type: none;
    list-style: none;
    padding-left: 20px;
    order: 9999;
    font-size: 10px;
    /* transition: 0.5s; */
}

.calc__submenu li{margin-bottom:8px;}

.calc__child-menu-item input[disabled] + label {
    color: var(--gray-300);
}

.calc__label input[disabled] + label {
    color: var(--gray-300);
}

.calc__parent-menu-item input[disabled] + label {
    color: var(--gray-300);
}

.calc__parent-checkbox {
  width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--red);   
    cursor: pointer;
}

.calc__child-checkbox {
  width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--red);   
    cursor: pointer;
   
}

.calc__parent-checkbox-label {
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 600;

}

.calc__child-checkbox-label {
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 500;
   
}

.calc_open{
    transform: rotate(180deg);
}



.menu-item {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
}




/* =============================================
       HOW IT WORKS
       ============================================= */
    .how {
      padding: 120px 0;
     background: var(--gray-100);
    }
    .how__header { text-align: center; margin-bottom: 72px; }
    .how__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .how__steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(16.66% + 14px);
      right: calc(16.66% + 14px);
      height: 1px;
      background: linear-gradient(90deg, var(--red), var(--red-lt), var(--red));
      z-index: 0;
    }
    .how__step {
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .how__step-num {
      width: 56px; height: 56px;
      background: var(--white);
      border: 2px solid var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 10px;
      font-family: 'DM Serif Display', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--red);
    }
    .how__step-title { font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
    .how__step-text { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 26px;}




        .how__card-button {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 18px;
      background: rgba(250,116,101, 1);;
     /* background: linear-gradient(135deg, var(--red-dk), var(--red-lt)); */
      border: 0px solid rgba(250,116,101,1);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      border-radius: 20px;
      text-decoration: none;
      transition: background var(--transition);
      width: 100%;
      height: 40px;
      text-align: center;
          cursor: pointer;
           transition: 0.5s;
    }

        .how__card-button:hover {
            transform: translateY(-3px);
            background: rgba(250, 116, 101, 0.5);
            background: var(--red);
            transition: 0.5s;            
        }

/* =============================================
       SAMPLE REPORT
       ============================================= */


.sample_report {
      padding: 70px 0;
     background: var(--white);
    }
    .sample_report__header { text-align: center; margin-bottom: 30px; color: var(--gray-900)}

.sample_report__grid {
      display: grid;
      grid-template-columns:  1fr 1fr;
      gap: 24px;
}


    .sample_report-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all var(--transition);
      box-shadow: var(--shadow-md); 



    }
    .sample_report-card:hover { 
        box-shadow: var(--shadow-lg); 
        /* transform: translateY(-2px);  */
    }
        .sample_report-card__thumb {
          background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-500) 100%);
          aspect-ratio: 16/4;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 48px;
          position: relative;
          overflow: hidden;
        }
    
    
        .sample_report-card__thumb img {
          object-fit: fill;
        }
           
    .sample_report-card__thumb--sm { aspect-ratio: 16/8; font-size: 32px; }
    .sample_report-card__body { padding: 24px; }
    .sample_report-card__tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red-lt);
      margin-bottom: 10px;
    }
    .sample_report-card__title { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
    .sample_report-card__title--sm { font-size: 14px; }
    .sample_report-card__excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
    .sample_report-card__meta { font-size: 12px; color: var(--gray-300); margin-top: 16px; }

.sample_report__case-btn {
    display: flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    margin-top: 10px;
    /* padding: 15px 18px;  */
    background: var(--red);
    ;
    /* background: linear-gradient(135deg, var(--red-dk), var(--red-lt)); */
    /* border: 0px solid rgba(250, 116, 101, 1); */
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;

  
    margin: 20px 40px 40px 40px;

    
    height: 32px;
      

    
    
    text-align: center;


    cursor: pointer;
    transition: 0.5s;
        transition: 0.5s;
}
.sample_report__case-btn:hover {
     box-shadow: 0 6px 16px rgba(196, 19, 0,0.25); 
    background: var(--red);
    transition: 0.5s;
    color:var(--white);

}







/* =============================================
       FAQ
       ============================================= */
.faq {
    background: var(--gray-900  );
    padding: 120px 0;
}

.faq__header {
    text-align: center;
    margin-bottom: 64px;
}

.faq__header .heading-xl {
    color: var(--white);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(250, 116, 101, 0.25);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    gap: 16px;
}

.faq__q:hover {
    color: var(--red-lt);
}

.faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(250, 116, 101, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--red-lt);
    transition: transform var(--transition);
}

.faq__item.open .faq__icon {
    transform: rotate(45deg);
}

.faq__a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    padding-bottom: 22px;
    display: none;
}

.faq__item.open .faq__a {
    display: block;
}

.faq__sub{

    font-size: 14px;
    color: var(--gray-300);
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;

}




/* =============================================
       BLOG PREVIEW
       ============================================= */
    .blog {
      background: var(--off-white);
      padding: 120px 0;
    }
    .blog__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
    }
    .blog__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 24px;
    }
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all var(--transition);
    }
    .blog-card:hover { 
        box-shadow: var(--shadow-md); 
        /* transform: translateY(-2px);  */
    }
    .blog-card__thumb {
      background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-500) 100%);
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      position: relative;
      overflow: hidden;

      
    }


           .blog-card__thumb img {
/*         
                   width:100%;
                   height: auto; */
                   object-fit: fill ;
           }
           
    .blog-card__thumb--sm { aspect-ratio: 16/8; font-size: 32px; }
    .blog-card__body { padding: 24px; }
    .blog-card__tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red-lt);
      margin-bottom: 10px;
    }
    .blog-card__title { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
    .blog-card__title--sm { font-size: 14px; }
    .blog-card__excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
    .blog-card__meta { font-size: 12px; color: var(--gray-300); margin-top: 16px; }

.blog__case-btn {
    display: flex;
    align-items:center;
    justify-content:center;
    overflow: hidden;
    margin-top: 10px;
    /* padding: 15px 18px;  */
    background: rgba(250, 116, 101, 0.25);
    ;
    /* background: linear-gradient(135deg, var(--red-dk), var(--red-lt)); */
    border: 0px solid rgba(250, 116, 101, 1);
    color: var(--red);
    font-size: 12px;
    font-weight: 500;
    border-radius: 16px;
    text-decoration: none;

    width: 100%;
    height: 32px;
    text-align: center;

    cursor: pointer;
    transition: 0.5s;
        transition: background var(--transition);
}
.blog__case-btn:hover {
    background: rgba(250, 116, 101, 0.5);
    background: var(--red);
    transition: 0.5s;
    color:var(--white);
}


    /* =============================================
       FINAL CTA
       ============================================= */
    .cta-final {
      padding: 120px 0;
      text-align: center;
    }
    .cta-final__heading {
      /* font-family: 'DM Serif Display', Georgia, serif; */
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .cta-final__heading em { color: var(--red); font-style: italic; }
    .cta-final__sub {
      font-size: 17px;
      color: var(--gray-500);
      margin-bottom: 40px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-final__btns {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

.cta-final__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    height: 32px;
    text-decoration: none; 
}

.cta-final__btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.cta-final__btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.cta-final__btn-lg {
    padding: 6px 12px;
    font-size: 15px;
    border-radius: 16px;
}


/* =============================================
       FOOTER
       ============================================= */
    .footer {
      background: var(--gray-900);
      padding: 64px 0 32px;
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer__logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer__desc {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer__col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 16px;
    }
    .footer__links li { margin-bottom: 10px; list-style: none;}
    .footer__links a {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }
    .footer__links a:hover { color: var(--red-lt); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }
    .footer__legal { display: flex; gap: 24px; }
    .footer__legal a { color: rgba(255,255,255,0.3); }
    .footer__legal a:hover { color: var(--gold); }


/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .scroll-indicator {
        bottom: 20%;
    }

    .nav-links {
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        /* border-radius: 0 0 16px 16px; */
        transition: max-height 0.4s ease;
    }

    .nav-links li {
        border-top: 1px solid rgba(196, 19, 0, 0.25);
    }

    .nav-links a {
        display: block;
        padding: 18px 24px;
    }

    .nav-links.active {
        max-height: 400px;
    }


    

    .mobile-sticky {
        display: flex;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* .why__visual {
            order: -1;
        } */

    .why__image-box {
        aspect-ratio: 16/9;
    }

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

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

    .calc-card {
        padding: 28px 20px;
    }

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

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


    .how__steps::before {
        display: none;
    }


          .blog__grid { grid-template-columns: 1fr; }
      .blog__header { flex-direction: column; align-items: flex-start; gap: 16px; }


            .footer__inner { grid-template-columns: 1fr 1fr; }
      .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }


}