@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
}

/* Header */
header {
  background: #3a004d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  font-family: 'Lora', serif;
  font-size: 1.3em;
}
header .logo img {
  height: 5em;
}
header nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
header nav a {
  color: #fff;
  font-weight: 600;
}


/* Hero */
.hero {
  background: url('assets/bg.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 1.5em;
  font-family: 'Lora', serif;
}
.hero-overlay {
  background: #1d0453a0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  padding-top: 7em;
  border-radius: 10px;
}
.btn-outline {
  border: 2px solid #fff;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
}

/* Our Story */
.our-story {
  padding: 3rem 5%;
  text-align: center;
}

.our-story h2 {
  font-size: 2em;
  font-family: 'Lora', serif;
}
.story-content {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}
.story-video img,
.story-video video,
.story-video iframe {
  width: 100%;
  max-width: 30em;   /* limit width */
  max-height: 25em;  /* limit height */
  border-radius: 10px;
  display: block;
  margin: 0 auto;     /* center inside flex */
}
.story-video,
.story-text {
  flex: 1;
}
.story-text {
  font-size: 1.2em;
  text-align: left;
  margin-right: 4em;
  font-family: 'Poppins', sans-serif;
}
.btn-solid {
  background: #6c2a8c;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

/* Podcast */
.podcast {
  padding: 3rem 5%;
  text-align: center;
}

.podcast h2 {
  font-size: 2em;
  font-family: 'Lora', serif;
}
.podcast p {
  font-size: 1.2em;
  font-family: 'Poppins', sans-serif;
}
.podcast-cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.podcast-cards p {
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
}
.card {
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 10px;
  flex: 1;
  text-align: left;
}
.card img {
  width: 100%;
  border-radius: 10px;
}
.card strong {
  color: #6c2a8c; /* your theme purple */
  font-family: 'Lora', serif;
  font-size: 1.15em;
}
.btn-dark {
  background: #3a004d;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  align-items: center;
}

/* Stats */
.stats {
  background: #3a004d;
  color: #fff;
  padding: 2rem 5%;
}
.stats-content {
  display: flex;
  justify-content: flex-start; /* items start from left */
  align-items: center;         /* vertically center items */
  gap: 2rem;                   /* space between icon and links */
  text-align: left;            /* better alignment for links */
}

.stats .podcast-icon img {
  width: 5em;       /* fix width */
  max-width: 100%;  /* responsive */
  border-radius: 3em;
}

.stats .links {
  display: flex;
  flex-direction: column; /* keep h3 on top and icons below */
}

.stats-total {
  flex: 1; /* take remaining space */
  text-align: center; /* center text */
  color: white;
}

.stats-total h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.stats-total p {
  font-size: 1.5rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.stats-episodes h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.stats-episodes p {
  font-size: 1.5rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.stats .icons img {
  height: 2em;
  margin-right: 0.5rem;
  margin-top: 5px;
  gap: 1.2em;
}
.stats .podcast-icon img {
  width: 200%;
  max-width: 5em;
  border-radius: 3em;
}

/* FAQ */
.faq {
  padding: 3rem 5%;
}

.faq h2 {
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
  font-weight: 600;
}

.faq-item {
  margin-bottom: 0.5rem;
  border-radius: 5px;
  overflow: hidden;
  background: #f4f4f4;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-weight: bold;
  font-size: 1.3rem;
}

.faq-answer {
  display: none;
  padding: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background: #fff;
  border-top: 1px solid #ddd;
}

/* Footer */
footer {
  background: #3a004d;
  color: #fff;
  padding: 2rem 5%;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 2fr); /* three equal columns */
  gap: 10rem;
  align-items: start;
}
.footer-info img {
  height: 7em;
  margin-bottom: 1rem;
}
.footer-links ul {
  list-style: none;
  margin-top: 0.5rem;
}
.footer-links a {
  color: #fff;
}
.footer-links h4 {
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
  font-size: 2em;
  font-weight: 600;
  color:  #a12ac8;
}
.footer-contact .socials img {
  height: 2em;
  margin-top: 1em;
  margin-right: 0.5rem;
}
.footer-contact h4 {
  font-family: 'Lora', serif;
  font-size: 2em;
  font-weight: 600;
  color: #a12ac8;
}
.footer-contact p a{
  margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  color: #fff;
}

strong {
  font-weight: 700;
  color: #3a004d; /* your theme purple */
}

/* About us */
/* Hero Video */

.hero-video {
  position: relative;
  width: 100%;
  height: 120vh; /* full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-poster,
.video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-poster img,
.video-embed iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.video-poster img {
  object-position: bottom;
  
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  background: rgba(58, 0, 77, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
.play-btn:hover {
  background: #3a004d;
}


/* About Section */
.about-section {
  padding: 3em 10em;
  text-align: center;
  font-size: 1em;
}
.about-section h2 {
  font-size: 2em;
  margin-bottom: 1em;
  font-family: 'Lora', serif;
}

.about-section p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 2em;
  font-family: 'Poppins', sans-serif;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  padding: 3em 10em;
}

.mission-vision img {
  width: 100%;
  border-radius: 12px;
  align-items: center;
}

.mission-vision .text {
  margin-top: 1em;
  font-size: 1.2em;
  font-family: 'Poppins', sans-serif;
}

.mission-vision h3 {
  font-size: 2em;
  color: #3a004d;
  margin-bottom: 0.5em;
  font-family: 'Lora', serif;
}

/* Vision: img left, text right */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2em;
}

/* Mission: text left, img right */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5em;
}

/* Team */
.team {
  text-align: center;
  padding: 3em 1.5em;
}
.team h2 {
  font-size: 2em;
  margin-bottom: 1em;
  font-family: 'Lora', serif;
}
.team-members {
  display: flex;
  justify-content: center;
  gap: 4em;
  flex-wrap: wrap;
}
.team .member-mark img {
  width: 20em;
  height: 20em;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.team .member img {
  width: 20em;
  height: 20em;
  border-radius: 50%;
  object-fit: cover;
}
.team .member h4 {
  margin-top: 1em;
  font-size: 1.2rem;
  font-family: 'Lora', serif;
}

.team .member-mark h4 {
  margin-top: 1em;
  font-size: 1.2rem;
  font-family: 'Lora', serif;
}
.team .member p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5em;
  font-family: 'Poppins', sans-serif;
}

.team .member-mark p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5em;
  font-family: 'Poppins', sans-serif;
}

/* Our Story */
.about-us-our-story {
  background: #fafafa;
  padding: 3em 1.5em;
}

.about-us-our-story h2 {
  display: flex;               /* allow icon + text */
  align-items: center;
  justify-content: center;     /* center horizontally */
  background: #3a004d;         /* full width purple bg */
  color: #fff;                 /* white text */
  padding: 1em;                /* top/bottom spacing */
  font-size: 2rem;
  margin: 0 0 2em 0;           /* remove default margin top */
  gap: 0.5em;                  /* spacing between icon and text */
  width: 100%;                 /* stretch full width */
  font-family: 'Lora', serif;
}

.about-us-our-story h2 .title-icon {
  width: 2em;   /* adjust size */
  height: 2em;
  border-radius: 1em;
}



.about-us-our-story .story-block {
  display: grid;
  grid-template-columns: 60px 1fr; /* left column fixed for icons, right column flexible */
  align-items: flex-start;
  max-width: 80em;
  margin: 0 2vh 2em 20vh;
  gap: 1.5em;
}

.about-us-our-story .icon img {
  width: 40px;
  height: 40px;
  margin-top: 5px; /* align better with text */
}

.about-us-our-story .story-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.about-us-our-story strong {
  color: #3a004d;
}

.about-us-our-story hr {
  border: none;
  border-top: 3px solid #ddd;
  margin: 2em auto;
  max-width: 900px;
}

/* Contact Form Styles */
.contact-form {
  background: #f5f5f5; /* light gray bg */
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 120em;
  margin: 1vh auto; /* centers form */
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6b21a8; /* purple */
  box-shadow: 0 0 0 2px rgba(107,33,168,0.2);
  outline: none;
}

.form-full {
  grid-column: span 2; /* makes textarea full width */
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.form-submit button {
  width: 100%;
  max-width: 90em;
  padding: 0.9rem 1.5rem;
  background: #6b21a8;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit button:hover {
  background: #581c87;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr; /* stack fields on small screens */
  }
  .form-full {
    grid-column: span 1;
  }
}

.how-it-works h2 {
    color: #4B0082;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 1em;
    margin-left: 1.8em;
  }

.step-container {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.step {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.step:last-child {
    border-bottom: none;
}

.step h3 {
    font-size: 1.2em;
    font-weight: normal;
    margin: 0;
    padding-left: 3em;
}

.how-it-works-text h4 {
    color: #4B0082;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    margin-left: 3em;
}

.how-it-works-text ol,
.how-it-works-text ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
    margin-left: 4em;
  }

.how-it-works-text p {
    margin: 0;
    padding: 5px 0;
}

/* Subscription Section */
.subscription {
    margin-top: 40px;
}

.subscription h2 {
    color: #4B0082;
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 2em;
}

.subscription ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-left: 3em;
}

.subscription ul li p {
    margin: 0;
    padding: 5px 0;
}

.subscription h4 {
    color: #4B0082;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 3em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .story-content,
  .podcast-cards,
  .stats-content,
  .footer-content,
  .vision,
  .mission {
    flex-direction: column;
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .story-text {
    margin-right: 0;
    text-align: center;
  }

  .footer-content {
    gap: 2rem;
  }

  .about-section,
  .mission-vision {
    padding: 2em 2em;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero {
    height: 60vh;
    padding: 0.1vh 0.1vh;
    font-size: 1.2em;
  }

  .story-video img,
  .story-video video,
  .story-video iframe {
    max-width: 100%;
    max-height: 18em;
  }

  .stats-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .team-members {
    flex-direction: column;
    gap: 1.5rem;
  }

  .subscription h2,
  .subscription h4,
  .how-it-works h2,
  .how-it-works-text h4 {
    margin-left: 0;
    text-align: center;
  }

  .subscription ul,
  .how-it-works-text ol,
  .how-it-works-text ul {
    margin-left: 1.5em;
  }
}

@media (max-width: 480px) {
  .hero {
    font-size: 1em;
    padding: 0.1vh 0.1vh;
  }

  .our-story h2 {
    font-size: 1.5em;
  }
  .story-text {
    font-size: 1.1em;
    margin-right: 0;
    text-align: center;
    justify-content: center;
  }
  
  .about-us-our-story .story-block {
    margin: 0 1em 5em 1vh;
    gap: 1em;
  }

  .about-us-our-story .story-text p {
    font-size: 1em;
  }
  .podcast h2 {
    font-size: 1.5em;
  }

  .podcast p {
    font-size: 1.1em;
  }
 
  .btn-solid,
  .btn-dark {
    width: 100%;
    text-align: center;
  }

  .btn-solid,
  .btn-outline {
    width: 40%;
  }

  .about-section,
  .mission-vision {
    padding: 1.5em;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .faq-question {
    color: #000;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-info img {
    height: 5em;
  }

  .hero-video {
    height:30vh; /* reduce height on small screens */
    width: auto;
  }
  .video-wrapper {
    object-position: top; /* reduce height on small screens */
  }
  .video-poster img,
  .video-embed iframe {
    height: 100%;
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap: nowrap; /* prevent wrapping */
    justify-content: space-between; /* keep space between logo and nav */
    font-size: 2vh;
  }

  header nav ul {
    flex-direction: row; /* horizontal links */
    gap: 1rem;           /* spacing between links */
    margin-top: 0;       /* remove extra top margin */
  }

  .menu-toggle {
    display: none; /* hide burger menu */
  }
}
 
@media (max-width: 480px) {
  header {
    flex-wrap: nowrap; /* prevent wrapping */
    justify-content: space-between; /* keep space between logo and nav */
    font-size: 1.5vh;
  }

  header nav ul {
    flex-direction: row; /* horizontal links */
    gap: 1rem;           /* spacing between links */
    margin-top: 0;       /* remove extra top margin */
  }

  .menu-toggle {
    display: none; /* hide burger menu */
  }
}

/* Services */
/* General */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

h2 {
  color: #4a0d4a;
  margin-bottom: 1rem;
}

/* Hero */

.hero-services {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-services img {
  width: 100%;
  overflow: hidden;
  max-height: 100%;
  height: auto;
  display: block;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 1.5em;
  font-family: 'Lora', serif;
  object-fit: cover;
}

/*how it works */

.how-it-works {
  padding: 4vh 2vh;
  background: #fff;
}

.how-it-works h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  margin-left: 25vh;
  font-family: 'Lora', serif;
  color: #2E0045;
}

.how-it-works .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em; /* control spacing between circle+arrow groups */
  flex-wrap: wrap;
}

.how-it-works .step {
  text-align: center;
  max-width: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-it-works .circle img {
  width: 40vh;   /* fixed size */
  height: 40vh;
  object-fit: cover;
  border-radius: 50%;
}

.how-it-works .arrow {
  font-size: 4rem;
  color: #AD1AAC;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;   /* match circle height exactly */
  margin-bottom: 1.5em;
}

.how-it-works p {
  font-size: 1.2em;
  margin-top: 1vh;
  margin-left: 0; /* remove offset so it centers under image */
}
.how-it-works strong {
  color: #4a0d4a; /* purple */
  font-weight: bold;
  font-family: 'Lora', serif;
  font-size: 1.3em;
  margin-bottom: 0.1em;
  margin-top: 1vh;
}

/* --- Three-Phase Annual Check-In --- */
.check-in {
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.check-in h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  margin-left: 20vh;
  font-family: 'Lora', serif;
  color: #2E0045;
}
.check-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 columns */
  gap: 1.5vh;
  max-width: 160vh;
  margin: 0 auto;
  width: 100%;
}
.check-step {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 3em;
  text-align: left;
  display: block;
  align-items: center;
  gap: 1rem;
}
.check-step img {
  width: 50px;
  height: auto
}

.check-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.check-header strong {
  color: #4a0d4a; /* purple */
  font-weight: bold;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
}

.check-header img {
  width: 40px;
  height: auto;
}

/* --- Pricing & Examples --- */
.pricing-examples {
  padding: 3rem 2rem;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-examples h2 {
  font-size: 1.8rem;
  color: #2E0045;
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}


.pricing-examples p {
  margin-bottom: 2h;
  color: #333;
}

.pricing-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1em;
}

/* Pricing Card */
.pricing-card {
  background: #2E0045;
  color: #fff;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}

.price-tag {
  background: #AD1AAC;
  color: #fff;
  font-weight: bold;
  font-size: 1.4em;
  padding: 0.5rem 2em;
  border-radius: 6px 6px 6px 6px;
  display: inline-block;
  position: absolute;
  top: 0em;
  left: 0em;
  font-family: 'Lora', serif;
}

.pricing-card ul {
  margin: 2rem 0;
  padding-left: 1.2rem;
  padding-top: 1.2rem;
  font-family: 'Poppins', sans-serif;
  margin-right: 1.2rem;
}

.pricing-card .btn {
  display: inline-block;
  padding: 0.8rem 6.5em;
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  
}

.pricing-card .btn:hover {
  background: #fff;
  color: #4b006e;
}

/* Examples */
.examples h3 {
  color: #4b006e;
  font-size: 1.5em;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.example {
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;;
}

.example-header {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 0.5rem;
}

.example-header img {
  width: 3em;
  height: 3em;
}

.example-header p {
  margin: 0;
}

.example ul {
  margin: 0;
  padding-left: 1.2rem;
}

.cost {
  color: #AD1AAC;
}


/* Responsive */
/* Responsive */
@media (max-width: 768px) {
  /* Reduce side paddings */
  .hero-services img {
    height: auto;        /* let it resize naturally */
    max-height: 60vh;    /* avoid covering whole screen */
  }
  
  .how-it-works,
  .check-in,
  .pricing,
  .examples {
    padding: 0 2em;
  }

  .step {
    flex-direction: row; /* still keep icon + text inline */
    padding: 1rem;
  }

  .step strong {
    font-size: 1.2em;
  }

  .step p {
    font-size: 1em;
  }

  .price-box h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .examples .example {
    padding: 1rem;
  }

  .example p,
  .example li {
    font-size: 1em;
    margin-left: 0.5em;
  }
    /* --- How it Works --- */
  .how-it-works h2 {
    margin-left: 5vh; /* less indent */
    font-size: 1.5rem;
    text-align: center;
  }

  .how-it-works .steps {
    gap: 2em; /* tighter spacing */
    flex-direction: column; /* stack vertically */
  }

  .how-it-works .circle img {
    width: 25vh;
    height: 25vh;
  }

  .how-it-works .arrow {
    font-size: 2.5rem;
    height: auto; /* shrink */
    margin: 1em 0;
    display: none; /* hide arrow on small screens */
  }

  .how-it-works p {
    font-size: 1rem;
    max-width: 250px;
  }

  /* --- Check-in --- */
  .check-in h2 {
    margin-left: 0;
    text-align: center;
    font-size: 1.5rem;
  }

  .check-steps {
    grid-template-columns: 1fr; /* single column */
  }

  .check-step {
    padding: 1.5em;
  }

  /* --- Pricing & Examples --- */
  .pricing-examples {
    padding: 2rem 1rem;
  }

  .pricing-container {
    grid-template-columns: 1fr; /* stack */
  }

  .pricing-card {
    margin-bottom: 2rem;
  }

  .pricing-card .btn {
    padding: 0.8rem 3em;
  }

  .example-header {
    gap: 1em;
  }

  .example-header img {
    width: 2.5em;
    height: 2.5em;
  }
}


@media (max-width: 468px) {
  /* Even tighter layout for phones */
   .hero-services img {
    height: auto;
    max-height: 40vh;    /* smaller hero for phones */
  }
  
  .how-it-works,
  .check-in,
  .pricing,
  .examples {
    padding: 0 1em;
  }

  .step {
    flex-direction: column; /* stack icon on top for narrow screens */
    align-items: center;
    text-align: center;
  }

  .step .icon {
    margin: 0 auto 0.5rem auto;
    padding-left: 0; /* remove desktop offset */
    width: 2.5em;
    height: 2.5em;
  }

  .step strong {
    font-size: 1.1em;
  }

  .step p {
    font-size: 0.95em;
  }

  .price-box {
    padding: 1rem;
  }

  .price-box h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .price-box ul {
    margin-left: 0;
    padding-left: 1em;
  }

  .examples .example {
    padding: 1rem;
  }

  .example p,
  .example li {
    font-size: 0.95em;
    margin-left: 0;
  }
    /* --- How it Works --- */
  .how-it-works h2 {
    margin-left: 0;
    font-size: 1.3rem;
  }

  .how-it-works .circle img {
    width: 18vh;
    height: 18vh;
  }

  .how-it-works .arrow {
    font-size: 2rem;
    margin: 0.5em 0;
  }

  .how-it-works p {
    font-size: 0.9rem;
  }

  /* --- Check-in --- */
  .check-in {
    padding: 2rem 1rem;
  }

  .check-in h2 {
    font-size: 1.3rem;
  }

  .check-step {
    padding: 1em;
  }

  .check-step img {
    width: 40px;
  }

  /* --- Pricing & Examples --- */
  .pricing-examples h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .price-tag {
    font-size: 1.1rem;
    padding: 0.4rem 1.5em;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card .btn {
    padding: 0.6rem 2.5em;
    font-size: 0.9rem;
  }

  .examples h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .example-header {
    flex-direction: row;
    gap: 0.5em;
  }

  .example-header img {
    width: 2em;
    height: 2em;
  }

  .cost {
    font-size: 0.9rem;
  }
}
