/* ===========================
   Base + Variables
=========================== */

:root {
  --bg: #f3f5f7;
  --accent: #ffbd59;
  --text: #313131;
  --text-light: #7d7c78;
  --border: #ffbd59;
  --checkbox-bg: #ffbd59;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.04);

  --max-width: 1100px;
}

/* Reset-ish */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* Layout */

.page {
  min-height: 100vh;
  padding-bottom: 4.5rem; /* space for mobile CTA bar */
}

/* Sections */

.section {
  padding: 2.5rem 1.25rem;
}

.section-card {
  padding: 2.5rem 1.25rem;
}

.section:nth-of-type(1) {
  padding-top: 1.75rem;
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 1.75rem auto;
  text-align: left;
}

.section-header h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

/* Typography */

p {
  margin: 0 0 0.85rem 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text);
}

strong {
  font-weight: 800;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffb243;
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-hero {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Mobile sticky CTA bar */

.mobile-cta-bar {
  position: fixed;
  /* inset-inline: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0.9rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 50;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.06);
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex: 1;
  min-width: 0;
}

.mobile-cta-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.mobile-cta-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

.btn-mobile-cta {
  padding-inline: 1.1rem;
  font-size: 0.9rem;
}

/* Hero */

.hero {
  padding-top: 1.75rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-copy {
  order: 1;
}

.hero-media {
  order: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.65rem;
}

.hero-title {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
}
.hero-title-main {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.main-hero-subtitle {
  font-size: 1rem;
  color: var(--text);
  margin: 1rem auto;
}

.hero-meta {
  font-size: 1rem;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.hero-meta .dot {
  opacity: 0.6;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-note {
  padding-left: 0.75rem;
  border-left: 2px solid var(--accent);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 350px; /* tweak if you want it narrower/wider */
}

.hero-content {
  max-width: var(--max-width);
  margin: 1rem auto;
}

.hero-year-line {
  display: inline-block;
  margin: 0.25rem 0 1rem 0;
  padding: 0.85rem 0.85rem;
  /* background: var(--accent); */
  background: white;
  border: 2px solid var(--accent);
  color: #1f1f1f;
  font-weight: 650;
  font-size: 1rem;
  border-radius: 14px;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  
}

.hero-micro-trust {
  
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-light);
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.06); */
  text-align: center;
  margin-top: -0.8rem;
}


/* Hero image placeholder */

.hero-image-placeholder {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-img-caption {
  text-align: center;
  margin: 0.5rem auto;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 800;
  /* background-color: #ffbd5970; */
  background-color: rgba(255, 189, 89, 0.35);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  padding: 0.5rem;
}
/* What is Focus Together */
.what-content {
  max-width: var(--max-width);
  margin: 0 auto;
}



/* Benefits */

.benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-subtle);
}

.benefit h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.benefit p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 189, 89, 0.25); /* very soft accent */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}


.section-highlight {
  margin: 1.8rem auto 0 auto;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: var(--max-width);
}

/* Session structure */

.session-flow {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.session-step {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-subtle);
  border-left: 4px solid var(--accent);
}

.session-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 189, 89, 0.25); /* very soft accent */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.session-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.session-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.section-note {
  margin: 1.8rem auto 0 auto;
  max-width: var(--max-width);
  padding-left: 0.75rem;
  border-left: 2px solid rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Features */

.features-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.feature {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem 1rem;
  box-shadow: var(--shadow-subtle);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 189, 89, 0.25); /* very soft accent */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.feature h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 800;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Checklist style */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.4rem;
  background: var(--checkbox-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text);
}

.checklist-tight li {
  margin-bottom: 0.25rem;
}

/* Lists variations */

.plain-list,
.dash-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.plain-list li,
.dash-list li {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.dash-list li::before {
  content: "";
}

/* Who section */

.who-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.quote-block-1 {
  font-size: 0.9rem;
  margin-top: 1.8rem;
}
.quote-block-2 {
  font-size: 0.9rem;
  margin-top: 0.7rem;
}

.pull-quote {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.info-card {
  margin-top: 2.1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-subtle);
  border: 1px dashed rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
}

/* Testimonials */

#testimonials {
  padding-top: 2.5rem;
}

.testimonial-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-carousel {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.testimonial-slide {
  display: none;
  background: #ffffff;
  border-radius: 26px;
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-body {
  position: relative;
  margin-bottom: 1.1rem;
}

.testimonial-body::before {
  content: "“";
  position: absolute;
  left: -0.15rem;
  top: -0.2rem;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.testimonial-body p {
  margin: 0;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 189, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.testimonial-role {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Dots */

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: width 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
}

.testimonial-dot.active {
  width: 18px;
  background: var(--accent);
}


/* Schedule */

.schedule-summary {
  max-width: var(--max-width);
  margin: 0 auto 1.1rem;
  font-size: 0.93rem;
}

.schedule-subheading {
  max-width: var(--max-width);
  margin: 0 auto 0.7rem;
  font-size: 1rem;
  font-weight: 800;
}

.time-slots {
  max-width: var(--max-width);
  margin: 1.7rem auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.slot-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0.8rem 1rem 0.9rem;
  box-shadow: var(--shadow-subtle);
  border-left: 4px solid var(--accent);
}

.slot-card h4 {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
  font-weight: 800;
}

.slot-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-light);
}

/* .schedule-note {
  max-width: var(--max-width);
  margin: 1.1rem auto 0;
  font-size: 0.9rem;
  color: var(--text-light);
} */
.schedule-note p {
  margin: 1.8rem auto 0 auto;
  max-width: var(--max-width);
  padding-left: 0.75rem;
  border-left: 2px solid rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Pricing */

.pricing-card {
  max-width: 480px;
  margin: 1.5rem auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 1.4rem 1.4rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-intro {
  font-size: 0.93rem;
  margin-bottom: 0.8rem;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(0, 0, 0, 0.25);
  margin: 1.8rem auto 0 auto;
  max-width: var(--max-width);
}

.pricing-amount {
  margin: 0.2rem 0 0.2rem;
  font-size: 1.8rem;
  font-weight: 900;
}

.pricing-currency {
  font-size: 3rem;
}

.pricing-meta {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.pricing-list li {
  margin-bottom: 0.25rem;
}

.pricing-seat-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: grid;
  place-items: center;

}

.pricing-bottom-quote {
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

/* Coach */

.coach-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.coach-image-wrapper {
  flex: 0 0 auto;
}

.coach-image {
  border-radius: 3.5%;
}

/* .coach-image-placeholder {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  aspect-ratio: 4 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-image-placeholder span {
  font-size: 0.9rem;
  color: var(--text-light);
} */

.coach-content {
  flex: 1 1 auto;
}

.coach-content h3 {
  margin: 0.4rem 0 0.9rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.coach-note {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 0.7rem;
  border-left: 3px solid var(--accent);
}

/* FAQ */

.faq-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 0.93rem;
  cursor: pointer;
}

.faq-question span:first-child {
  padding-right: 0.65rem;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Final CTA */

.final-cta {
  padding-bottom: 3rem;
}

.final-cta-inner {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 1.8rem 1.4rem 2rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.final-cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 900;
}

.final-cta-inner p {
  font-size: 0.95rem;
}

.final-cta-price {
  margin: 0.8rem 0 0.2rem;
  font-size: 1.7rem;
  font-weight: 900;
}

/* Footer */

.footer {
  text-align: center;
  padding: 1.2rem 1rem 1.8rem;
  font-size: 0.8rem;
  color: var(--text-light);
  display: grid;
  place-items: center;
  opacity: 0.8;
}

/* AOS adjustments (optional) */

[data-aos] {
  transition-property: transform, opacity;
}

/* ===========================
   Responsive
=========================== */

@media (min-width: 768px) {
  .section,
  .section-card {
    padding-inline: 1.5rem;
    padding-block: 3.2rem;
  }

  .section-header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  /* Hide mobile CTA bar on larger screens */
  .mobile-cta-bar {
    display: none;
  }

  .page {
    padding-bottom: 0;
  }

  /* Hero layout desktop */

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-copy {
    flex: 1.2;
  }

  .hero-media {
    flex: 1;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-image-placeholder {
    aspect-ratio: 4 / 3;
  }

  /* Grids */

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coach-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .coach-image-wrapper {
    max-width: 280px;
  }

  .coach-image-placeholder {
    aspect-ratio: 3 / 4;
  }

  .final-cta-inner {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  .section,
  .section-card {
    padding-inline: 2rem;
  }

  .hero-inner {
    gap: 3.5rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .benefits-grid,
  .features-grid,
  .session-flow,
  .time-slots {
    gap: 1.1rem;
  }
}

.newyear-banner {
  text-align: center;
  line-height: 2rem;
  background-color: white;
  padding: 2rem;
  
}

.newyear-banner-heading {
  font-size: 1.5rem;
  font-weight: 600;
}

/* WhatsApp Floating Widget */

.whatsapp-widget {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;

  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.55rem 1rem;
  border-radius: 10px;

  background: #ffffff;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;

  border: 1.5px solid #25d366;
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.12);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* WhatsApp icon image */
.whatsapp-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}


.whatsapp-text {
  white-space: nowrap;
}


