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

/* 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;
  max-width: clamp(500px, 70vw, 700px);
  margin: 0 auto;
}

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

.main-title {
  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,.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; 
}

/* layout-only */
@media screen and (min-width: 1024px) {
  .hero-glow-bg {
    bottom: -50%;
    width: 500px;
    height: 500px;
    filter: blur(60px);
  }
  .hero-glow-bg-2 {
    top: -9rem;
    right: -30rem;
    width: 500px;
    height: 500px;
    filter: blur(60px);
  }
  .main-title { 
    font-weight: 800; 
  }
}
/* ==== Hero End ==== */


/* ==== Unlimited Edits Styles ==== */
#unlimited-edits {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.unlimited-edits-title-sec {
  max-width: 850px;
  margin: 0 auto;
}

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

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

strong {
  font-weight: 800;
}


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

.save-time-and-money-title-sec {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: var(--space-md);
}

.save-time-and-money-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.save-time-and-money-title-sec p {
  padding-bottom: var(--space-md);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.button-sec {
  max-width: 850px;
  margin: 0 auto;
  margin-top: var(--space-sm);
}

.results-list {
  list-style: none;  
  margin: 0 0 var(--space-smmd) 0;
  padding: 0;
}

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

.results-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0; 
  font-weight: 600;
}

.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;
}

.save-time-and-money-box {
  background-color: var(--bg-colour-1);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.save-time-and-money-box p { 
  padding-bottom: 0; 
}
/* ==== save-time-and-money Section Styles end ==== */


/* ==== My Approach Section Styles Start ==== */
#my-approach {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

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

.my-approach-heading {
  margin-top: 2rem;
  text-align: center;
  padding-bottom: var(--space-md);
}

.my-approach-title-sec p {
  opacity: 0.9;
  text-align: center;
}

/* Steps wrapper */
.my-approach-steps {
  max-width: 850px;
  margin: 0 auto var(--space-md) auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Step card */
.approach-step-card {
  background: var(--bg-colour-1);
  padding: clamp(0.9rem, 2vw, 1.1rem);
  border-radius: 6px;
  position: relative;
}

.approach-step-badge {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 191, 255, 0.14);
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.approach-step-badge span {
  color: var(--main-brand-blue);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.approach-step-card h3 {
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--main-brand-blue);
  text-align: center;
}

.approach-step-card p {
  font-size: 0.95rem;
  color: var(--text-colour-1);
  opacity: 0.9;
  line-height: 150%;
  margin: 0;
  text-align: center;
}

#my-approach .button-sec {
  text-align: center;
}

/* Statement box */
.my-approach-statement {
  max-width: clamp(650px, 92vw, 750px);
  margin: var(--space-smmd) auto var(--space-md) auto;
  border: 1px solid var(--main-brand-blue);
  background: var(--bg-colour-2);
  border-radius: 6px;
  padding: clamp(0.9rem, 2vw, 1.1rem);
  box-shadow: 0 0 6px 2px rgba(0, 195, 255, 0.35);
}

.my-approach-statement p {
  text-align: center;
  line-height: 150%;
  margin: 0;
  margin-bottom: var(--space-sm);
}

@media screen and (min-width: 768px) {
  .my-approach-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Layout @ desktop */
@media screen and (min-width: 1024px) {
  .my-approach-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==== My Approach Section Styles End ==== */


/* ==== Whats included Section ==== */
#unlimited-edits-support {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.unlimited-title-sec {
  max-width: 850px;
  margin: 0 auto var(--space-sm) auto;
}

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

/* Grid layout */
.unlimited-grid {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
}

@media (min-width: 980px) {
  .unlimited-grid {
    grid-template-columns: 1.2fr .9fr;
    align-items: start;
  }
}

/* Included list  */
.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: var(--space-md);
}

.included-list li {
  position: relative;
  padding-left: 0; 
  margin-bottom: var(--space-sm);
  color: var(--text-colour-1);
  opacity: .9;
}

.included-list li::before {
  content: "✓";
  color: var(--main-brand-blue);
  margin-right: 0.4rem;
}

.excluded-heading {
  margin: 0 0 .25rem 0;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
}

.excluded-note {
  margin: 0 0 var(--space-xs) 0;
  color: var(--text-colour-1);
  opacity: .7;
  font-size: clamp(0.92rem, 1.1vw, .98rem);
}

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

.excluded-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: var(--space-sm);
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
  color: var(--text-colour-1);
  opacity: .92;
}

.excluded-list li::before {
  content: "\2716\FE0E";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #ff3131;
}


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

.example-requests-title-sec {
  max-width: 850px;
  margin: 0 auto;
}

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

.example-requests-title-sec p {
  margin-bottom: var(--space-sm);
  color: var(--text-colour-1);
  padding: 20px 15px;
  opacity: 0.9;
  border-left: 4px var(--main-brand-blue) solid;
  border-radius: 10px;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  background-color: var(--bg-colour-2);
}

/* ==== example-requests Styles End ==== */

/* ==== this-is-different Styles ==== */
#this-is-different {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

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

.this-is-different-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.this-is-different-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);
}

.this-is-different-title-sec h3 {
  margin-bottom: 15px;
}

.this-is-different-features-sec-outer {
  margin: 0 auto;
  background: var(--bg-colour-1);
  max-width: 850px;
}

.this-is-different-features-sec-outer > h3 {
  padding: 1rem 0 1rem 1rem;
}

/* Cards container */
.this-is-different-features-sec {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: var(--space-smmd)
}

/* Card */
.this-is-different-feature-card {
  padding: clamp(0.9rem, 2.5vw, 1rem);
  border-radius: 5px;
  max-width: 200px;
  margin: 0 auto;
}

.this-is-different-card-text { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

/* Icon Circle */
.this-is-different-icon-circle {
  width: 45px;
  height: 45px;
  background: transparent;
  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;
  margin: 0 auto;
  margin-bottom: 5px;
}

.this-is-different-icon-circle .icon {
  width: 35px;
  height: 35px;
}

/* Card heading/text */
.this-is-different-feature-card h3 {
  font-weight: 600;
  margin: 5px 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.this-is-different-feature-card p {
  opacity: 0.9;
  font-size: 0.95rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .this-is-different-features-sec {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .this-is-different-feature-card {
    flex: 1 1;
  }
}