* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM sans", sans-serif;
}

html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure they span full width */
    height: 100%; /* Ensure they span full height for 100vh to work correctly */
}
a button{
  transition: transform 0.3s ease;
}
a button{
  text-decoration: none;
  color: rgb(9, 0, 28);
}
a button:hover{
  transform: scale(1.1);
}

.timeline-container {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e, #3a2e7e);
  min-height: 400px;
  padding: 4rem;
  overflow: hidden;
}

.step {
  position: relative;
  color: #e0e0e0;
  padding: 20px;
  width: 45%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.step-01 {
  float: left;
  clear: both;
}

.step-02 {
  float: right;
  clear: both;
}

.icon {
  position: absolute;
  width: 3rem;
  height: 3rem;
  /* background: #ff007a; */
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: -1.5rem;
}

.step-02 .icon {
  left: auto;
  right: -10px;
  background: #ff007a;
}

.step::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 50%;
  height: 2px;
  background: #ff007a;
  z-index: -1;
}

.step-01::before {
  left: 10px;
  transform: translateY(-50%);
}

.step-02::before {
  right: 10px;
  transform: translateY(-50%);
}



#hero {
    /* Position relative to create a stacking layer for its children */
    position: relative;
    z-index: 1; /* Puts hero content above the background */
    background-color: rgba(255, 255, 255, 0.3);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 0px 2rem;
    gap: 2rem;
    overflow: hidden;
}
#hero-image{
  position: absolute;
  top: 0;
  left: 50%;
  height: auto;
  transform: translate(-50%);
  z-index: -10;
  filter: brightness(60%);
  min-width: 1920px;
}
nav {
    width: auto;
    position: fixed;
    flex: none;
    top: 2rem;
    left: 50%;
    transform: translate(-50%);
    z-index: 100;
    border-radius: 3rem;
    height: auto;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);

    display: flex;
    border-radius: 3rem;
    padding: 0.75rem 3rem;
    align-items: center;
    height: auto;
    gap: 3rem;
}

nav a button{
  white-space: nowrap;
}
nav ul{
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav li{
  list-style: none;
  /* font-size: 18px; */
  color: white;
  font-weight: 300;
  position: relative;
}
nav li:hover{
  cursor: pointer;
}
nav li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjusts position of underline */
  width: 0; /* Initially no width */
  height: 2px; /* Thickness of underline */
  background-color: white; /* Desired color */
  transition: width 0.3s ease; /* Animate width */
}
nav li:hover::after {
  width: 100%; /* Expands to full width on hover */
}

nav img{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3rem;
  transition: transform 0.3s ease;
}
nav img:hover{
  transform: scale(1.2);
}


#hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 55%;
}

#hero-content div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    text-align: start;
    letter-spacing: -1px;
    color: #f8f9ff;
}

#hero h3 {
    font-size: 1.125rem;
    font-weight: 300;
    color: #E6E6E6;
    text-align: start;
}

#hero-content button, nav button {
    padding: 0.75rem 1.125rem;
    border-radius: 24px;
    width: fit-content;
    border: none;
    font-weight: 500;
    cursor: pointer;
    background-color: #f8f9ff;
}


#the-problem {
  display: flex;
  align-items:center;
  
  background-blend-mode: darken;
  padding: 5rem 0;
  padding-right: 4rem;
  padding-top: 3rem;
}
#tp-header{
  padding: 4rem;
  padding-bottom: 0rem;


  font-size: 4rem;
  color: #262626;
  font-weight: 700;
            
}
#tp-header h2{
font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
}
#tp-header h4{
font-size: 1.5rem;
            color: #dcdcdc;
            font-weight: 300;
}

#tp-design {
  /* background-image: url('components/mesh-679.png');  */
  background-image: url('components/download.png');
  background: linear-gradient(to bottom, red, #809FFF, #6B38BE);
  /* background-color: rgba(0, 0, 0, 0.1); */
  background-blend-mode: darken;
  background-size: cover;
  width: 800px;
  min-height: 120vh; 
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  position: relative;
  overflow: hidden; /* Ensure the pseudo-element stays within bounds */
}

#tp-design::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Full width of parent */
  height: 100%; /* Full height of parent */
  background-color: rgba(0, 0, 0, 0.2); /* Slightly lighter for glass effect */
  backdrop-filter: blur(30px); /* Frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* For Safari compatibility */
  border: 1px solid rgba(0, 0, 0, 0.4); /* Subtle glass-like border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

.tp-main-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Full width of parent */
  height: 100%; /* Full height of parent */
  background-color: rgba(0, 0, 0, 0.2); /* Slightly lighter for glass effect */
  backdrop-filter: blur(30px); /* Frosted glass blur */
  -webkit-backdrop-filter: blur(50px); /* For Safari compatibility */
  border: 1px solid rgba(0, 0, 0, 0.4); /* Subtle glass-like border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}
#tp-section{
  padding: 4rem 0rem;
  background-color: black;
}
#tp-content {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10rem;
  position: relative;
}

.tp-c-c {
  display: flex;
  align-items: center;
}

.tp-side {
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
  gap: 2.5rem;
}

.tp-side div {
  display: flex;
  align-items: center;
  /* position: relative;  */
}

.tp-side h4 {
  position: absolute;
  left: 4rem;
  font-size: 3rem;
  color: #3a3a3a;
}
.tp-side h4 span{
  color: #dcdcdc;
}

.tp-main-img {
  position: absolute;
  left: -2.5rem;
  width: 5rem;
}
.tp-main-img-first{
  width: 6rem;
  left: -3rem;
}

.tp-side-p-1 {
  position: absolute;
  left: -10rem;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.6);
}
.tp-side-p{
  font-size: 1.25rem;
  color: #dcdcdc;
}

.ray {
  position: absolute;
  /* top: 6rem; */
  overflow: hidden;
  left: -5px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) 
          drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); /* Layered glow for depth */
}



#what-to-expect{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 5rem;
}
#what-to-expect h2{
    margin-left: 4rem;
    margin-bottom: 3rem;
    font-size: 4rem;
    color: #262626;
}

#w-t-e-contents{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

#w-t-e-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}
/* Corner circles using pseudo-elements */
    #w-t-e-container::before,
    #w-t-e-container::after {
      content: '';
      position: absolute;
      width: 1rem; /* Circle diameter */
      height: 1rem; /* Circle diameter */
      background: #AEAFBC; /* Circle color */
      border-radius: 50%; /* Make it a circle */
    }

    /* Top-left and bottom-right corners */
   #w-t-e-container::before {
      top: -0.5rem; /* Offset to center on border */
      left: -0.5rem;
    }

    /* Bottom-left and top-right corners */
    #w-t-e-container::after {
      bottom: -0.5rem;
      left: -0.5rem;
    }

    /* Additional pseudo-elements for remaining corners */
    #w-t-e-container > :first-child::before,
    #w-t-e-container > :first-child::after {
      content: '';
      position: absolute;
      width: 1rem;
      height: 1rem;
      background: #AEAFBC;
      border-radius: 50%;
    }

    /* Top-right corner */
    #w-t-e-container > :first-child::before {
      top: -0.5rem;
      right: -0.5rem;
    }

    /* Bottom-right corner */
    #w-t-e-container > :first-child::after {
      bottom: -0.5rem;
      right: -0.5rem;
    }
.w-t-e-boxes{
    display: flex;
    align-items:stretch;
    flex-wrap: wrap;
    height: auto;
}

.w-t-e-box{
    flex: 1 0 300px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;

    height: auto;
    border: 1px solid #e4e4e4;
}
.w-t-e-box div{
    height: 100%;
}
.w-t-e-box img{
    width: 3rem;
    height: 3rem;
}

.w-t-e-box h5{
    font-size: 1.25rem;
    color: #262626;

    font-weight: 600;
    line-height: 1.2;
}

.w-t-e-box p{
    /* font-size: 1.25rem; */
    color: #4D4D4D;
    font-weight: 400;
    line-height: 1.6;
}

.w-t-e-box div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: auto;
}

.w-t-e-10px-dark{
  border: 1px solid #C6C7D5;
  opacity: 0.4;
  height: 100%;
  object-fit: cover;
}


/* gem */
 #what-to-expect {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
            padding-top: 4rem;
            padding-bottom: 5rem;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        #what-to-expect h2 {
            margin-left: 4rem;
            margin-bottom: 3rem;
            font-size: 4rem;
            color: #262626;
        }

        /* * Use CSS Grid for the main content layout.
         * This gives us precise control over the columns.
         * grid-template-columns defines three columns:
         * - 'auto' for the left image (takes its content's width).
         * - '1fr' for the main container (takes the remaining flexible space).
         * - 'auto' for the right image.
        */
        #w-t-e-contents {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: stretch; /* This is default, ensures items fill the row height */
            width: 100%;
        }
        
        /* * Set the image height to 100% to make it fill the height of its grid cell.
         * The grid row's height is determined by the content in #w-t-e-container.
         * Add 'object-fit: cover' to ensure the image covers the area without distortion.
         * An explicit width is set for consistency.
        */
        .w-t-e-10px-dark {
            border: 1px solid #C6C7D5;
            opacity: 0.4;
            height: 100%;
            width: 2rem; /* Explicitly set width */
            object-fit: cover; /* Prevents image distortion */
        }

        /*
         * The container for the content boxes.
         * Removed 'width: 100%' and 'height: 100%' as the grid layout now handles sizing.
        */
        #w-t-e-container {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .w-t-e-boxes {
            display: flex;
            align-items: stretch; /* Ensures boxes in a row have same height */
            flex-wrap: wrap;
            height: auto;
        }

        .w-t-e-box {
            flex: 1 0 300px; /* Allows boxes to wrap and grow */
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            padding: 1.5rem;
            height: auto;
            border: 1px solid #e4e4e4;
        }

        .w-t-e-box div {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            height: auto; /* This overrides the 'height: 100%' from your original CSS */
        }

        .w-t-e-box svg {
            width: 3rem;
            height: 3rem;
        }

        .w-t-e-box h5 {
            font-size: 1.25rem;
            color: #262626;
            font-weight: 600;
            line-height: 1.2;
        }

        .w-t-e-box p {
            color: #4D4D4D;
            font-weight: 400;
            line-height: 1.6;
        }





#pricing{
    color: #D0D4FC;
    padding: 4rem;
    background-color: rgb(1, 1, 1);
}
#section-title{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
#section-title div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#section-title h2{
    font-size: 4rem;
    line-height: 100%;
    color: #F2F2F2;
}
#section-title h4{
    font-size: 1.25rem;
    color: #c6c6c6;
    font-weight: 400;
    line-height: 1.6;
}

#pricing-main-content{
    display: flex;
    align-items: center;
}

.p-m-c-container{
    flex: 1;
    padding: 2rem;
}

#p-m-c-features-container{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
}
.p-m-c-features{
    display: flex;
    align-items: start;
    gap: 1.5rem;
}
.p-m-c-features div{
    gap: 0.75rem;
}
.p-m-c-features img{
    object-fit: contain;
}
.p-m-c-features h5{
    font-size: 1.25rem;
    color: #F2F2F2;
    font-weight: 600;
    line-height: 1.2;
}
.p-m-c-features p{
    font-size: 1.125rem;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.6;
}


#p-m-c-plans{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid white;
    border-radius: 2.5rem;
}

#p-m-c-plans-top{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#p-m-c-plans-top h6{
    color: #F2F2F2;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
}

#p-m-c-plans-top div p{
    font-size: 1.125rem;
    color: #c6c6c6;
    font-weight: 400;
}

#p-m-c-plans-top div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: auto;
}
#cost{
    color: #F2F2F2;
    font-weight: 700;
    font-size: 3.5rem;
}

#includes-section{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#includes-section p{
    color: #F2F2F2;
    font-size: 1.125rem;
    font-weight: 600;
}
#p-m-c-includes{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0rem;
}

#p-m-c-includes ul{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    list-style-position: inside;
    /* justify-content: space-between; */
}

#p-m-c-includes li{
    font-size: 1.125rem;
    color: #c6c6c6;
    font-weight: 400;
    line-height: 1.6;

    display: flex;
    align-items: flex-start;
}

#p-m-c-includes li::before {
  content: "•"; /* Your custom bullet (or an image, emoji, etc.) */
  margin-right: 8px; /* Space between bullet and text */
  /* You can style your custom bullet here */
  color: white;
  font-weight: bold;
  flex-shrink: 0; /* Prevent the bullet from shrinking */
}

#p-m-c-plans a button{
    border-radius: 1.25rem;
    width: 100%;
    background-color: #ECEDF8;
    padding: 0.75rem 1.125rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
}





#design-showcase {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 4rem;
            padding-top: 10rem;
            padding-bottom: 6rem;
            overflow: hidden;
            max-width: 95%;
            margin: 0 auto;
        }

        #design-showcase h2 {
            font-size: 4rem;
            color: #262626;
            font-weight: 700;
        }

        #design-showcase h4 {
            font-size: 1.5rem;
            color: #4D4D4D;
            font-weight: 300;
        }

        #dsc-content h5 {
            font-size: 2.5rem;
            font-weight: 100;
        }

        #dsc-top {
            display: flex;
            gap: 0.2rem;
            flex-direction: column;
        }

        #dsc-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        #dsc-images {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 2rem;
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        #dsc-images img {
            object-fit: cover;
            height: 100%;
            width: 60%;
            border-radius: 10px;
            transition: all 0.5s ease;
            position: absolute;
            top: 0;
        }

        #dsc-images img.main-image {
            left: 0;
            z-index: 2;
        }

        #dsc-images img.side-image {
            width: 30%;
            left: 65%;
            z-index: 1;
            opacity: 0.7;
        }

        #dsc-images img.hidden {
            opacity: 0;
            left: 100%;
        }

        #slider-dots {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        #slider-dots div {
            width: 0.75rem;
            height: 0.75rem;
            background-color: rgb(222, 222, 222);
            border-radius: 100%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #slider-dots div.active {
            background-color: black;
            width: 0.9rem;
            height: 0.9rem;
        }

        #dsc-helpers {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-top: 1rem;
        }

        #dsc-helpers button {
            width: 3rem;
            height: 3rem;
            border-radius: 100%;
            background-color: #f5f5f5;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        #dsc-helpers button:hover {
            background-color: #e0e0e0;
        }

        #dsc-helpers svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        #dsc-helpers button.prev svg {
            transform: rotate(180deg);
        }



#faq {
            display: flex;
            padding: 4rem;
            gap: 5rem;
            margin: 0 auto;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        #faq-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        #faq-content h2 {
            font-size: 4rem;
            color: #262626;
            font-weight: 700;
            line-height: 1.1;
        }

        #faq-content p {
            font-size: 1.25rem;
            color: #4D4D4D;
            font-weight: 400;
            line-height: 1.6;
        }

        #section-title {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        #faq-accordion {
            flex: 1;
        }

        #section-title button{
            padding: 0.75rem 1.125rem;
            width: fit-content;
            background-color: #262626;
            color: white;
            border: none;
            border-radius: 1.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        #section-title button:hover {
            background-color: #1a1a1a;
            transform: translateY(-1px);
        }

        .accordion-item {
            border-bottom: 1px solid #e5e7eb;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-item h6 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #262626;
            margin: 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .faq-question:hover {
            color: #4f46e5;
        }

        .faq-question svg {
            width: 1.5rem;
            height: 1.5rem;
            fill: #4D4D4D;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-question.active svg {
            transform: rotate(90deg);
            fill: #4f46e5;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 0 0 0;
        }

        .faq-answer.active {
            max-height: 300px;
            padding: 0 0 1.5rem 0;
        }

        .faq-answer p {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            #faq {
                flex-direction: column;
                gap: 3rem;
                padding: 2rem;
            }

            #faq-content h2 {
                font-size: 2.5rem;
            }
        }



/* #faq{
    display: flex;
    padding: 4rem;
    gap: 5rem;
}
#faq-content{
    gap: 1.5rem;
}
#faq-content h2{
    font-size: 4rem;
    color: #262626;
}
#faq-content p{
    font-size: 1.25rem;
    color: #4D4D4D;
    font-weight: 400;
}
#section-title{
    flex: 1;
    gap: 1.5rem;
}
#faq-accordion{
    flex: 1;
}
#section-title button{
    padding: 0.75rem 1.125rem;
    width: fit-content;
    background-color: transparent;
    border-radius: 1.5rem;
}

#accordion-item h6{
    font-size: 1.5rem;
}
#faq-question{
    display: flex;
    justify-content: space-between;
    padding: 1.125rem 0rem;
}
#faq-question svg{
    width: 2rem;
    height: 2rem;
} */







/* gemini */

/* --- Media Queries for Responsiveness --- */

/* --- Tablet Devices --- */
@media (max-width: 1024px) {
  /* --- Hero Section --- */
  #hero {
    padding: 48px 1.5rem;
  }

  #hero nav {
    width: 90%;
  }

  #hero h1 {
    font-size: 3.5rem;
  }

  #hero h3 {
    font-size: 1.25rem;
  }


  /* --- Walk-Through Section --- */
  

  /* --- What to Expect Section --- */
  #what-to-expect h2 {
    margin-left: 2rem;
    font-size: 3rem;
  }

  /* --- Pricing Section --- */
  #pricing {
    padding: 3rem;
  }
  .tp-side h4{
    margin-bottom: 3rem;
  }

  #pricing-main-content {
    flex-direction: column;
    gap: 3rem;
  }

  #section-title h2 {
    font-size: 3rem;
  }
  #section-title{
    margin-bottom: 1rem;
  }
  #p-m-c-includes div{
    height: auto;
  }
  #p-m-c-includes ul{
    height: 100%;
    justify-content: space-between;
  }
  #p-m-c-includes li{
    font-size: 1.15rem;
  }

  .p-m-c-container h5{
    font-size: 1.15rem;
  }
  .p-m-c-container p{
    font-size: 1rem;
  }
  /* --- Design Showcase Section --- */
  #design-showcase {
    padding: 8rem 3rem 4rem;
  }

  #design-showcase h2 {
    font-size: 3rem;
  }

  #dsc-images {
    height: 300px;
  }

  /* --- FAQ Section --- */
  #faq {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem;
  }

  #faq-content h2 {
    font-size: 3rem;
  }
}

/* --- Mobile Devices --- */
@media (max-width: 768px) {
  /* --- Hero Section --- */
  #hero {
    padding: 24px 1rem;
    height: auto;
    min-height: 90vh;
  }
  #hero-content{
    width: 90%;
  }
  #hero nav {
    width: 100%;
    border-radius: 2rem;
    padding: 1.5rem 0;
  }
  nav ul{
    display: none;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  #hero h3 {
    font-size: 1rem;
  }

  #hero-content button {
    font-size: 1rem;
  }

  #landing-page-mock {
    max-width: 100%;
  }

  /* --- Walk-Through Section --- */
  #walk-through {
    padding: 4rem 1.5rem;
  }
#tp-header{
  padding: 0rem 2rem;  
}
  #tp-header h2 {
    font-size: 2.5rem;
  }

  #tp-header h4 {
    font-size: 1.25rem;
  }
  .tp-side div p{
    display: none;
  }
  #tp-design{
    display: none;
  }
  .tp-side{
    gap: 0.75rem;
    padding: 0 2rem;
  }
  .tp-side div{
    flex-direction: column;
    align-items: start;
  }
  .tp-side-p-1{
    position: relative;
    left: 0;
  }
  #tp-content{
    gap: 2rem;
    padding-top: 2rem;
  }
  #the-problem{
    padding: 0rem 0rem;
  }
  .tp-main-img{
    position: relative;
    margin-bottom: 1rem;
    left: 0;
  }
  .tp-side h4{
    position: relative;
    font-size: 1.75rem;
    left: 0;
  }
  .tp-side h4{
    margin-bottom: 0rem;
  }

  #walk-through-box {
    padding: 1.5rem;
    flex-direction: column;
  }

  #walk-through-box div {
    flex: 1 0 auto;
    max-width: 100%;
  }

  #walk-through-box img {
    max-width: 100%;
  }

  /* --- What to Expect Section --- */
  #what-to-expect {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  #what-to-expect h2 {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }

  #w-t-e-contents {
    flex-direction: column;
  }

  /* --- Pricing Section --- */
  #pricing {
    padding: 2rem 1.5rem;
  }

  #section-title h2 {
    font-size: 2.5rem;
  }

  #section-title h4 {
    font-size: 1rem;
  }

  .p-m-c-container {
    padding: 1rem 0;
  }

  #p-m-c-plans {
    padding: 1.5rem;
  }

  #cost {
    font-size: 2.5rem;
  }

  #p-m-c-includes ul {
    flex-direction: column;
  }

  /* --- Design Showcase Section --- */
  #design-showcase {
    padding: 6rem 1.5rem 3rem;
    max-width: 100%;
  }

  #design-showcase h2 {
    font-size: 2.5rem;
  }

  #design-showcase h4 {
    font-size: 1.25rem;
  }

  #dsc-content h5 {
    font-size: 2rem;
  }

  #dsc-images {
    height: 250px;
  }

  #dsc-images img.side-image {
    display: none;
  }

  #dsc-images img.main-image {
    width: 100%;
  }

  /* --- FAQ Section --- */
  #faq {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  #faq-content h2 {
    font-size: 2.5rem;
  }

  #faq-content p {
    font-size: 1rem;
  }

  .accordion-item h6 {
    font-size: 1.25rem;
  }
}





.demo-button {
            background: #333;
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .demo-button:hover {
            background: #555;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup {
            background: white;
            border-radius: 2rem;
            max-width: 400px;
            width: 90%;
            position: relative;
            transform: scale(0.95);
            transition: all 0.2s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }

        .popup-overlay.active .popup {
            transform: scale(1);
        }

        .popup-header {
            background: #f8f8f8;
            background-color: rgb(1, 1, 25);
            background-blend-mode: darken;
            padding: 24px;
            border-radius: 2rem 2rem 0 0;
            text-align: center;
            position: relative;
            border-bottom: 1px solid #e0e0e0;
        }

        .popup-header h2 {
            font-size: 20px;
            margin-bottom: 6px;
            font-weight: 600;
            color: white;
        }

        .popup-header p {
            font-size: 14px;
            color: rgb(216, 245, 242);
            font-weight: 400;
        }

        .close-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            width: 32px;
            height: 32px;
            border-radius: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .close-btn:hover {
            background: white;
            color: #e0e0e0;
        }

        .popup-content {
            padding: 24px;
        }

        .contact-section {
            margin-bottom: 24px;
        }

        .contact-section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .contact-item {
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }

        .contact-item:hover {
            background: #fafafa;
            padding-left: 8px;
            margin-left: -8px;
            margin-right: -8px;
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-info {
            width: 100%;
        }

        .contact-label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .contact-value {
            font-size: 15px;
            font-weight: 500;
            color: #333;
            font-family: 'SF Mono', Monaco, Consolas, monospace;
        }

        .contact-value a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-value a:hover {
            color: #000;
        }

        .divider {
            height: 1px;
            background: #e0e0e0;
            margin: 24px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .popup {
                width: 95%;
                margin: 20px;
            }

            .popup-header {
                padding: 20px;
            }

            .popup-header h2 {
                font-size: 18px;
            }

            .popup-header p {
                font-size: 13px;
            }

            .popup-content {
                padding: 20px;
            }

            .section-title {
                font-size: 15px;
            }

            .contact-item {
                padding: 14px 0;
            }

            .contact-value {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .popup-header {
                padding: 18px;
            }

            .popup-header h2 {
                font-size: 16px;
            }

            .popup-content {
                padding: 18px;
            }

            .contact-item {
                padding: 12px 0;
            }

            .contact-value {
                font-size: 13px;
            }
        }