/* ==== Hero Component Styles (with clamp) ==== */
.get-started {
  padding-top: var(--space-md);
  display: flex;
  justify-content: center;
}

#hero {
  padding: clamp(0.9rem, 2.5vw, 1.2rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--bg-colour-1);
}

/* untouched glow styles */
.hero-glow-bg {
  content: '';
  position: absolute;
  bottom: -6rem;                                      
  transform: translateX(-50%);  
  width: 300px;
  height: 300px;                
  background: radial-gradient(
    circle,
    #00bfff80,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;  
  animation: floatGlow 7s ease-in-out infinite;       
}

.hero-glow-bg-2 {
  content: '';
  position: absolute;
  top: -9rem;  
  right: -20rem;                                    
  transform: translateX(-50%);  
  width: 300px;
  height: 300px;                
  background: radial-gradient(
    circle,
    #00bfff80,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;   
  animation: floatGlow2 8s ease-in-out infinite reverse;      
}

.hero-content {
  position: relative;
  z-index: 2;
  /* replaces 500px @768 and 700px @1024 */
  max-width: clamp(500px, 70vw, 700px);
  margin: 0 auto;
}

#hero div {
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.main-title {
  /* replaces 3.4vw mobile and 2.2rem desktop */
  padding-bottom: var(--space-smmd);
  padding-top: clamp(5.5rem, 6vw, 7rem);
  text-align: left;
}

.hero-content p {
  text-align: left;
  margin-bottom: var(--space-smmd);
  opacity: 0.9;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.hero-content .about-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.9;
}

.pulse-glow {
  color: #00bfff;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.158);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.location-tag {
  display: flex;
  align-items: flex-start;
}

.location-tag p {
  margin: auto 0;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

.location-tag .icon {
  margin-right: 0.3rem;
}

/* keep layout/media only */
@media screen and (min-width: 1024px) {
  /* untouched glow adjustments */
  .hero-glow-bg {
    bottom: -50%;
    width: 500px;
    height: 500px;
    filter: blur(60px)
  }

  .hero-glow-bg-2 {
    content: '';
    position: absolute;
    top: -9rem;  
    right: -30rem;                                    
    transform: translateX(-50%);  
    width: 500px;
    height: 500px;                
    background: radial-gradient(
      circle,
      #00bfff80,
      transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;         
  }

  /* font-weight bump kept here to match your original behavior */
  .main-title {
    font-weight: 800;
  }

  .hero-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==== Hero Component End ==== */

/* ==== What does custom Styles Start ==== */
#what-does-custom {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

#what-does-custom .sub-heading {
  text-align: left;
}

.what-does-custom-title-sec {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: var(--space-md);
}

.what-does-custom-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.what-does-custom-title-sec p {
  padding-bottom: var(--space-smmd);
  opacity: 0.9;
  text-align: left;
}

.what-does-custom-title-sec .that-means {
  padding-bottom: 0;
  color: var(--main-brand-blue);
  font-weight: 600;
}

.what-does-custom-features-sec {
  display: grid;
  grid-template-columns: 1fr;          
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 850px;
  margin: 0 auto;
}

#what-does-custom .purpose-built {
  padding-bottom: 0;
  padding-top: var(--space-sm);
}

.what-does-custom-feature-card {
  background: var(--bg-colour-2);
  padding: clamp(0.9rem, 2vw, 1.1rem);
  margin: 0;                                  
  border-radius: 5px;
  width: 100%;                              
}

.what-does-custom-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Icon Circle */
.what-does-custom-icon-circle {
  width: clamp(28px, 3.2vw, 35px);
  height: clamp(28px, 3.2vw, 35px);
  background: #00c3ff00;
  color: var(--main-brand-blue);
  border-radius: 50%;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Heading */
.what-does-custom-feature-card h3 {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Text */
.what-does-custom-feature-card p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.icon-and-title {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
  gap: 5px;
}

.icon-and-title h3 {
  color: var(--main-brand-blue);
}

#what-does-custom .button-sec {
  max-width: clamp(650px, 92vw, 850px);
  margin: 0 auto;
  margin-top: var(--space-smmd);
}

/* Layout breakpoint (kept) */
@media screen and (min-width: 768px) {
  .what-does-custom-features-sec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .what-does-custom-cta-box {
    max-width: clamp(520px, 60vw, 600px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .what-does-custom-features-sec {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* ====What does custom Section Styles End ==== */


/* ==== the-problem-with Section Styles start ==== */
#the-problem-with {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.the-problem-with-title-sec {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: var(--space-md);
}

.the-problem-with-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.the-problem-with-title-sec p {
  padding-bottom: var(--space-smmd);
  opacity: 0.9;
  text-align: left;
}

.button-sec {
  max-width: clamp(650px, 92vw, 850px);
  margin: 0 auto;
}

/* --- Lists  --- */
.problem-with-list,
.results-list {
  list-style: none;  
  margin: 0 0 var(--space-smmd) 0;
  padding: 0;
}

.problem-with-list li,
.results-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

/* Faux markers  */
.problem-with-list li::before,
.results-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0; 
  font-weight: 600;
}

/* Cross (red) for "problem" items */
.problem-with-list li::before {
  content: "\2716\FE0E";
  color: #ff3131;
}

/* Tick (brand blue) for "results" items */
.results-list li::before {
  content: "✓";
  color: var(--main-brand-blue);
}

.results-list {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.results-list li {
  margin-bottom: var(--space-xs);
  padding-left: 1rem;
}

/* Supporting box in the section */
.bus-switch-box {
  background-color: var(--bg-colour-2);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.bus-switch-box p { 
  padding-bottom: 0; 
}
/* ==== the-problem-with Section Styles end ==== */


/* ==== Faster load times Styles Start ==== */
#faster-load-times {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.faster-load-times-title-sec {
  max-width: clamp(650px, 92vw, 850px);
  margin: 0 auto;
  padding-bottom: var(--space-sm);
}

.faster-load-times-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.faster-load-times-title-sec p {
  padding-bottom: var(--space-smmd);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.faster-load-times-title-sec .that-means {
  padding-bottom: 0;
  color: var(--main-brand-blue);
  font-weight: 600;
}

.faster-load-times-features-sec {
  margin: 0 auto;
  background: var(--bg-colour-2);
  color: #222;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: clamp(650px, 92vw, 850px);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faster-load-times-feature-card {
  background: var(--bg-colour-1);
  padding: clamp(0.9rem, 2vw, 1.1rem);
  border-radius: 5px;
  flex: 1 1 calc(50% - 1rem); /* still good for >=768 layout */
  box-sizing: border-box;
}

.faster-load-times-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Icon Circle */
.faster-load-times-icon-circle {
  width: clamp(28px, 3.2vw, 35px);
  height: clamp(28px, 3.2vw, 35px);
  background: #00c3ff00;
  color: var(--main-brand-blue);
  border-radius: 50%;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Heading */
.faster-load-times-feature-card h3 {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Text */
.faster-load-times-feature-card p {
  color: var(--text-colour-1);
  opacity: 0.9;
  font-size: 0.95rem;
}

.faster-load-times-cta-box {
  border: 1px solid var(--main-brand-blue);
  border-radius: 5px;
  padding: clamp(0.9rem, 2vw, 1.1rem);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  background: var(--bg-colour-2);
  box-shadow: 0 0 6px 2px #00c3ff7c;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* layout-only breakpoint kept */
@media screen and (min-width: 768px) {
  .faster-load-times-features-sec {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #faster-load-times .button-sec {
    max-width: clamp(650px, 92vw, 850px);
  }
}
/* ==== Faster load times Section Styles End ==== */


/* ==== seo-ben-custom-code Styles Start ==== */
#seo-ben-custom-code {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
}

.seo-ben-custom-code-title-sec {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: var(--space-md);
}

.seo-ben-custom-code-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.seo-ben-custom-code-title-sec p {
  padding-bottom: var(--space-smmd);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.seo-feature-box {
  width: 100%;
  max-width: clamp(650px, 92vw, 850px);
  margin: var(--space-smmd) auto 0 auto;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--bg-colour-2);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-md);
}

.seo-feature-box > h3 {
  margin: 1rem 0 2rem 0;
}

.seo-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.seo-feature-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  align-items: start;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.seo-feature-item .icon {
  flex: 0 0 22px;
  color: var(--brand);
  margin-top: .1rem;
}

.seo-feature-text h4 {
  margin: 0 0 .15rem 0;
  font-size: 1.05rem;
  color: var(--main-brand-blue);
  font-weight: 500;
}

.seo-feature-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}
/* ==== seo-ben-custom-code Styles end ==== */


/* ===== FAQ Section ===== */
.faq-sec {
  margin: 0 auto;
  padding: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: white;
  background: var(--bg-colour-1);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: var(--space-lg);
}

/* Heading */
.faq-heading {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: var(--space-md);
}

/* FAQ List */
.faq-item {
  border-radius: 5px;
  margin-bottom: 1rem;
  background: var(--bg-colour-2);
  border: 1px solid #00c3ff46;
  overflow: hidden;
  transition: border 0.3s;
}

/* Toggle Button */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  color: var(--text-colour-1);
  font-weight: 500;
  cursor: pointer;
}

.faq-question-text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.faq-toggle-icon {
  font-size: 1rem;
  transition: transform 0.3s;
  color: var(--main-brand-blue);
  padding-left: 4px;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
}

/* Answer box */
.faq-answer {
  height: 0;
  padding: 0 1rem;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s, padding 0.3s;
}
.faq-item.open .faq-answer {
  height: auto;
  opacity: 0.9;
  padding: 0 1rem 1rem 1rem;
}

.faq-list {
  position: relative;
  z-index: 3;
  list-style: none;
}

/* CTA Box */
.faq-cta-box {
  border: 1px solid #1a1a1a;
  border-radius: 5px;
  padding: 1.5rem;
  margin-top: 3rem;
  background: #111;
  text-align: center;
}

.faq-cta-heading {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.faq-cta-text {
  color: #ccc;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .faq-list {
    width: 500px;
    margin: 0 auto;
  }

  .faq-cta-box {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1024px) {
  .faq-cta-box {
    width: 350px;
    height: 250px;
    margin-top: 0;
  }

  .faq-con-inner {
    display: flex;
    justify-content: space-evenly;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-list {
    width: 600px;
    order: 2;
  }
}
