@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Poppins:wght@500;700&display=swap');

/* =========================================================
   BASE
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  scroll-behavior: smooth;
}

:root {
  --aux-teal: #00b7b3;
  --aux-teal-light: #00d084;
  --aux-blue: #0098ff;
  --aux-purple: #9490ff;
  --aux-bg-light: #eef2f3;

  --aux-grad-1: rgba(0,183,179,0.72);
  --aux-grad-2: rgba(0,208,132,0.70);
  --aux-grad-3: rgba(0,152,255,0.74);
  --aux-band-a: rgba(148,144,255,0.62);
  --aux-band-b: rgba(148,144,255,0.45);
}

/* simple i-wrapper for the special dot */
.idot {
  position: relative;
  display: inline-block;
  line-height: 1;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 2rem;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
}

/* flex wrapper so logo + login icon sit on the right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* small wordmark in header (FAQ / Services) */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* Remove underline from the logo link */
.site-logo {
  text-decoration: none !important;
}

.logo-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.logo-tagline {
  margin-top: 0.12rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  opacity: 0.55;
  transition: opacity .25s ease, background .25s ease, transform .25s ease;
  border: none;
}

.login-icon:hover {
  opacity: 1;
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}

.login-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

/* back link on inner pages (if you ever want it again) */
.back-home {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--aux-teal);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity .25s ease;
}

.back-home:hover {
  opacity: 1;
}

/* =========================================================
   SHARED WORDMARK WIDTH
   ========================================================= */
.wordmark-block {
  display: inline-block;
  width: 24ch;
  text-align: center;
}

/* =========================================================
   HERO (INDEX)
   ========================================================= */
.hero {
  height: 100vh;
  background: linear-gradient(
    135deg,
    #00b7b3 0%,
    #00c4ab 24%,
    #00d084 52%,
    #00b5f0 78%,
    #0098ff 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  transform: translateY(8vh);
  transition: transform .25s ease;
  animation: fadeIn .9s ease-out;
}

.title {
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 4.2rem;
  line-height: 1.05;
  letter-spacing: 2px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* purple i-dot */
.idot::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.50em;
  width: 0.44em;
  height: 0.44em;
  background: var(--aux-purple);
  border-radius: 50%;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.25),
    0 0 0 1px rgba(148,144,255,0.12);
  z-index: 1;
}

.hero .idot::after {
  animation: idotBreathHero 3.3s ease-in-out infinite;
}

@keyframes idotBreathHero {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -4px); }
}

.tagline {
  margin-top: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

/* scroll arrow */
.scroll-zone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  padding-bottom: 0.4rem;
}

.scroll-indicator {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.55;
  transition: opacity .25s ease, transform .25s ease;
  cursor: pointer;
}

.scroll-zone:hover .scroll-indicator {
  opacity: 1;
  transform: translateY(-2px);
}

/* =========================================================
   ABOUT SECTION (INDEX)
   ========================================================= */
.about {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  padding: 6rem 10%;
  background: var(--aux-bg-light);
}

.about .text {
  width: 50%;
}

.about h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--aux-teal);
  margin-bottom: 1rem;
}

/* MOBILE TWEAKS FOR ABOUT HEADING */
@media (max-width: 768px) {
  .about h2 {
    font-size: 1.6rem;
    line-height: 1.2;
    white-space: normal;   /* allow 2–3 lines instead of squeezing */
    text-align: center;
  }

  .about .text {
    text-align: center;
  }
}

.about p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* core promise */
.core-promise {
  margin-top: 1.6rem;
  color: var(--aux-purple);
  font-weight: 700;
  font-size: 1.08rem;
}

/* globe */
.about-art {
  position: relative;
  width: clamp(180px, 24vw, 230px);
  height: clamp(180px, 24vw, 230px);
  flex: 0 0 auto;
}

.mark {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--aux-grad-1) 8%,
    var(--aux-grad-2) 52%,
    var(--aux-grad-3) 100%
  );
  background-size: 180% 180%;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    inset 0 0 24px rgba(255,255,255,0.12);
  overflow: hidden;
  transition: filter .25s ease, transform .25s ease;
}

/* hover rotation */
.about-art:hover .mark {
  animation: tiltSpin 12s linear infinite;
  filter: brightness(1.06) saturate(1.06);
}

@keyframes tiltSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mark::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(
    100% 60% at 30% 20%,
    rgba(255,255,255,0.16),
    transparent 60%
  );
}

.band {
  position: absolute;
  height: 120%;
  top: -10%;
  border-radius: 12px;
  filter: blur(0.2px);
}

.band-a {
  width: 22%;
  left: 17%;
  transform: rotate(-31deg);
  background: linear-gradient(180deg, var(--aux-band-a), transparent);
}

.band-b {
  width: 16%;
  left: 28%;
  transform: rotate(-22deg);
  background: linear-gradient(180deg, var(--aux-band-b), transparent);
}

.mark-wordblock {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  width: 14ch;
  text-align: center;
}

.mark-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.about-art .mark-word .idot::after {
  top: -0.25em;
  animation: idotBreathGlobe 5.2s ease-in-out infinite;
}

@keyframes idotBreathGlobe {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -4px); }
}

/* globe tagline */
.about-art .mark-tagline {
  margin-top: 0.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

/* =========================================================
   "WHAT WE OFFER" SECTION ON INDEX
   ========================================================= */
.services {
  padding: 6rem 10%;
  text-align: center;
  background: #fff;
}

.services h2 {
  color: var(--aux-teal);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.services > p {
  margin-bottom: 2.2rem;
  font-size: 0.98rem;
  color: #555;
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.card {
  background: var(--aux-bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 260px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--aux-teal);
  margin-bottom: 1rem;
}

/* pills under "What we offer" live in your HTML as anchors
   and inherit base link styles – no extra CSS needed */

/* Explore Services button */
.services a.explore-services {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--aux-teal);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services a.explore-services:hover {
  background: #fff;
  color: var(--aux-teal);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}



/* =========================================================
   CONTACT / FOOTER BLOCK (INDEX)
   ========================================================= */
.contact {
  text-align: center;
  padding: 5rem 10%;
  background: linear-gradient(135deg, #00b7b3, #00d084, #0098ff);
  color: #fff;
}

.contact h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact p {
  margin-bottom: 2rem;
}

.contact-button {
  background: #fff;
  color: var(--aux-teal);
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-button:hover {
  background: var(--aux-teal);
  color: #fff;
}

/* bottom footer (home) */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* =========================================================
   SIMPLE FOOTER FOR INNER PAGES
   ========================================================= */
.simple-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.2rem 1rem 1.4rem;
  font-size: 0.9rem;
}

.simple-footer nav {
  margin-bottom: 0.4rem;
}

.simple-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.75rem;
  opacity: 0.85;
}

.simple-footer a:hover {
  opacity: 1;
}

/* =========================================================
   HEADER INNER + MINI WORDMARK (SHARED)
   ========================================================= */
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.header-wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* the purple dot effect is already handled by .idot::after */

/* =========================================================
   HEADER INNER + MINI WORDMARK (SHARED)
   ========================================================= */
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.header-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.header-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-top: 0.15rem;
}

/* purple dot is still handled by .idot::after from earlier */


/* =========================================================
   ABOUT PAGE LAYOUT
   ========================================================= */

.about-page {
  background: linear-gradient(
    135deg,
    rgba(0,183,179,0.90) 0%,
    rgba(0,196,171,0.90) 24%,
    rgba(0,208,132,0.90) 52%,
    rgba(0,181,240,0.90) 78%,
    rgba(0,152,255,0.90) 100%
  );
  color: #111;
}

.about-page main {
  position: relative;
  z-index: 1;
}

.about-hero {
  padding: 6rem 10% 2rem;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about-hero p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
}

/* card stack */
.about-main {
  padding: 2rem 10% 4.5rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about-card {
  background: #ffffff;
  border-radius: 14px;
  width: 100%;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.about-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--aux-teal);
  margin-bottom: 0.6rem;
}

.about-card p {
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.9rem;
}

/* main card area */
.about-main {
  padding: 2rem 10% 4.5rem;
  display: flex;
  justify-content: center;
}

.about-card {
  background: #ffffff;
  border-radius: 14px;
  max-width: 900px;
  width: 100%;
  padding: 2.5rem 2.2rem 2.7rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.about-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--aux-teal);
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}

.about-card h2:first-of-type {
  margin-top: 0;
}

.about-card p {
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.9rem;
}

/* ABOUT PAGE BUTTON ROW */
.about-page .about-buttons {
  margin-top: 1.6rem;
  justify-content: center;
}

.about-pill {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--aux-teal);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.about-pill {
  align-self: center;
}

/* tweak simple-footer for this gradient context if needed */
/* you already have .simple-footer defined; it will sit over the gradient */

/* =========================================================
   SERVICES PAGE (standalone)
   ========================================================= */
.services-page {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0,183,179,0.90) 0%,
    rgba(0,196,171,0.90) 24%,
    rgba(0,208,132,0.90) 52%,
    rgba(0,181,240,0.90) 78%,
    rgba(0,152,255,0.90) 100%
  );
}

/* soft mask */
.services-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}

.services-hero {
  text-align: center;
  padding: 6rem 10% 4rem;
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.services-intro-top {
  font-weight: 600;
  color: #e5e3ff;
  margin-bottom: 0.0rem;
  font-size: 1.1rem;
}

.services-intro-bottom {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

@media (max-width: 768px) {
  /* tighten hero spacing on mobile */
  .services-hero {
    padding: 4.2rem 8% 1.6rem;
  }

  /* bring the first card closer + center cards */
  .services-tiers {
    padding: 0 8% 2.4rem;
    margin-top: 0;
    align-items: center;
  }

  .service-card {
    margin: 1.6rem auto 0;   /* centers each card in the column */
  }
}

/* tier cards (services page) */
.services-tiers {
  padding: 2rem 10% 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--aux-bg-light);
  padding: 2rem;
  border-radius: 14px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--aux-teal);
  margin-bottom: 0.75rem;
}

.tier-price {
  margin-top: 1.2rem;
  font-weight: 600;
  color: #555;
}

.tier-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #777;
}

.tier-refund {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--aux-teal);
  font-weight: 600;
}

/* retainer section */
.retainer-section {
  padding: 1rem 10% 4rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.retainer-card {
  background: var(--aux-bg-light);
  padding: 1.4rem 2rem;
  border-radius: 16px;
  text-align: center;
  width: min(460px, 100%);
  max-width: 840px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.7);
}

.retainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.retainer-card h3 {
  color: var(--aux-teal);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.retainer-text {
  line-height: 1.6;
  color: #333;
}

/* =========================================================
   FAQ PAGE
   ========================================================= */
.faq-page {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(0,183,179,0.90) 0%,
    rgba(0,196,171,0.90) 24%,
    rgba(0,208,132,0.90) 52%,
    rgba(0,181,240,0.90) 78%,
    rgba(0,152,255,0.90) 100%
  );
}

.faq-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}

.faq-hero {
  text-align: center;
  padding: 6rem 10% 3rem;
  position: relative;
  z-index: 1;
  background: transparent;
}

.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  opacity: 0.95;
}

.faq-content {
  padding: 2rem 10% 4rem;
  max-width: 860px;
  margin: 0 auto;
  background: transparent;
  position: relative;
  z-index: 1;
}

.faq-item {
  margin-bottom: 1.6rem;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.faq-item h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--aux-teal);
  margin-bottom: 0.4rem;
}

.faq-item p {
  line-height: 1.55;
  color: #333;
}

/* little pill for the “Learn more here” link */
/* FAQ pill button - center it nicely */
.faq-pill-link {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--aux-teal);
  color: var(--aux-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;

  /* centering hack inside left-aligned paragraphs */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.faq-pill-link:hover {
  background: var(--aux-teal);
  color: #fff;
}

.about-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;   /* centers them horizontally */
  gap: 1rem;                 /* space between each pill */
  flex-wrap: wrap;           /* allows wrapping if needed */
}

/* pill styling (if not already defined): */
.about-pill {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: var(--aux-teal);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .25s ease, color .25s ease;
}

.about-pill:hover {
  background: #fff;
  color: var(--aux-teal);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* =========================================================
   RESOURCES PAGE
   ========================================================= */

.resources-page {
  background: linear-gradient(
    135deg,
    rgba(0,183,179,0.90) 0%,
    rgba(0,196,171,0.90) 24%,
    rgba(0,208,132,0.90) 52%,
    rgba(0,181,240,0.90) 78%,
    rgba(0,152,255,0.90) 100%
  );
  color: #111;
}

.resources-page main {
  position: relative;
  z-index: 1;
}

.resources-hero {
  padding: 6rem 10% 2rem;
  text-align: center;       /* ← center all hero text */
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.resources-hero p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0.8rem auto 0;    /* ← centers the paragraph nicely under the heading */
}

.resources-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.resources-hero p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
}

.resources-main {
  padding: 2rem 10% 4.5rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.resources-card {
  background: #ffffff;
  border-radius: 14px;
  width: 100%;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.resources-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--aux-teal);
  margin-bottom: 0.6rem;
}

.resources-card p {
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.9rem;
}

.resources-list {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.resources-list li {
  margin-bottom: 0.3rem;
}

/* breathing block */

.breathing-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.breathing-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.8), var(--aux-teal));
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  animation: auxliaBreath 7s ease-in-out infinite;
}

.breathing-instructions {
  flex: 1 1 200px;
  font-size: 0.95rem;
  color: #333;
}

.breathing-instructions p {
  margin-bottom: 0.4rem;
}

@keyframes auxliaBreath {
  0%   { transform: scale(0.9); opacity: 0.9; }
  25%  { transform: scale(1.05); opacity: 1;   }
  50%  { transform: scale(1.15); opacity: 1;   }
  75%  { transform: scale(1.05); opacity: 1;   }
  100% { transform: scale(0.9); opacity: 0.9; }
}

/* responsive tweak for breathing block */
@media (max-width: 600px) {
  .breathing-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BASE ALIGNMENT FOR CIRCLE */
.breathe-circle-wrap {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0 1.8rem;
}

/* MOBILE SIZE BOOST */
@media (max-width: 768px) {
  .breathe-circle {
    width: 160px;
    height: 160px;
  }
}


/* =========================================================
   ANIMATIONS / ACCESSIBILITY
   ========================================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12vh); }
  to   { opacity: 1; transform: translateY(8vh); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .scroll-indicator,
  .idot::after,
  .about-art .mark,
  .about-art .mark::before {
    animation: none !important;
    transform: none !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .title { font-size: 3.2rem; }
}

@media (max-width: 768px) {
  .title { font-size: 2.6rem; }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about .text {
    width: 100%;
  }

  .services-tiers {
    flex-direction: column;
    align-items: center;
  }

  .retainer-card {
    width: 100%;
  }

  .faq-content {
    padding: 2rem 8% 4rem;
  }

  .site-header {
    padding-inline: 1.4rem;
  }
}
/* =========================================================
   PAGE WORDMARK HEADER (ABOUT / FOUNDER / OTHERS)
   ========================================================= */
.page-header {
  padding: 5rem 10% 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-wordmark {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
}

.page-wordmark .idot {
  position: relative;
  display: inline-block;
}

.page-wordmark .idot::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.50em;
  width: 0.44em;
  height: 0.44em;
  background: var(--aux-purple);
  border-radius: 50%;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.25),
    0 0 0 1px rgba(148,144,255,0.12);
}

.page-wordmark-block {
  margin-top: 0.25rem;
}

.page-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-page-hero {
  padding: 1rem 10% 3rem;
  background: linear-gradient(
    135deg,
    rgba(0,183,179,0.10),
    rgba(0,208,132,0.10),
    rgba(0,152,255,0.12)
  );
  text-align: left;
}

.about-page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: var(--aux-teal);
  margin-bottom: 1rem;
}

.about-page-hero p {
  max-width: 720px;
  line-height: 1.6;
  color: #333;
}

.about-page-main {
  padding: 3rem 10% 4rem;
  background: #fff;
}

.about-section {
  max-width: 900px;
  margin: 0 auto 2.8rem;
}

.about-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--aux-teal);
  margin-bottom: 0.9rem;
}

.about-section p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.9rem;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 0.6rem;
}

.about-column {
  flex: 1 1 240px;
  background: var(--aux-bg-light);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.about-column h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--aux-teal);
  margin-bottom: 0.6rem;
}

.about-column p {
  margin-bottom: 0;
}

.about-list {
  margin: 0.8rem 0 1.2rem 1.4rem;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.about-note {
  font-size: 0.95rem;
  color: #555;
}

/* =========================================================
   FOUNDER PAGE
   ========================================================= */

.founder-page {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(0,183,179,0.90) 0%,
    rgba(0,196,171,0.90) 24%,
    rgba(0,208,132,0.90) 52%,
    rgba(0,181,240,0.90) 78%,
    rgba(0,152,255,0.90) 100%
  );
}

.founder-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}

.founder-main {
  position: relative;
  z-index: 1;
  padding: 6rem 10% 4rem;
  display: flex;
  justify-content: center;
}

.founder-card {
  width: 100%;
  max-width: 820px;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.4rem 2.4rem 2.6rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.founder-card h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  color: var(--aux-teal);
  margin-bottom: 0.75rem;
}

.founder-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: var(--aux-purple);
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.founder-card p {
  line-height: 1.7;
  color: #333;
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
}

.founder-card p:last-child {
  margin-bottom: 0;
}

/* founder CTA */
.founder-cta {
  margin-top: 2rem;
  text-align: center;
}

.founder-cta-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.founder-cta-button {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--aux-teal);
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.founder-cta-button:hover {
  background: #fff;
  color: var(--aux-teal);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
  .founder-main {
    padding: 5.2rem 7% 3.2rem;
  }

  .founder-card {
    padding: 2.1rem 1.6rem 2.3rem;
  }

  .founder-card h1 {
    font-size: 1.8rem;
  }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .page-header {
    padding: 4rem 8% 0.5rem;
  }

  .about-page-main,
  .founder-main {
    padding: 2.5rem 8% 3.5rem;
  }

  .about-columns {
    flex-direction: column;
  }
}

/* ABOUT PAGE PILL BUTTONS ON INDEX */
.about-buttons {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.about-pill {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--aux-teal);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-pill:hover {
  background: #fff;
  color: var(--aux-teal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .about-buttons {
    justify-content: center;
  }
}

/* UNIFY FOOTER BACKGROUND + TEXT */
footer,
.simple-footer,
.secondary-footer {
  background: #111;
  color: #fff;
}

/* FOOTER NAV AS FLEX, WRAP NEATLY */
.simple-footer nav,
.secondary-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

/* LINKS */
.simple-footer a,
.secondary-footer-nav .footer-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  margin: 0;
  font-size: 0.9rem;
}

.simple-footer a:hover,
.secondary-footer-nav .footer-link:hover {
  opacity: 1;
}

/* COPYRIGHT LINE SPACING */
.secondary-footer-copy {
  margin-top: 0.5rem;
}

/* SUPER SMALL SCREENS */
@media (max-width: 480px) {
  .simple-footer,
  .secondary-footer {
    font-size: 0.85rem;
  }
}

/* ---- Founder page mobile fixes ---- */

@media (max-width: 768px) {

  .founder-page {
    padding-top: 5rem;
    background: linear-gradient(
      135deg,
      rgba(0,183,179,0.92) 0%,
      rgba(0,196,171,0.92) 25%,
      rgba(0,208,132,0.92) 55%,
      rgba(0,181,240,0.92) 80%,
      rgba(0,152,255,0.92) 100%
    );
  }

  .founder-main {
    padding: 1rem 1.2rem 3.5rem;
  }

  .founder-card {
    padding: 1.6rem 1.3rem 2.1rem;
    border-radius: 16px;
  }

  /* keep logo visible and clean */
  .header-right {
    padding-right: 1rem;
  }

  .site-logo {
    text-align: right;
    text-decoration: none;
  }

  .logo-word,
  .logo-tagline {
    text-decoration: none !important;
  }
}

/* ---- Mobile fixes for resource breathing circle ---- */

@media (max-width: 768px) {

  .breathing-circle {
    width: 160px !important;
    height: 160px !important;
    margin: 1.4rem auto !important;
  }
}

footer {
  background: #1e1e1e !important;
  color: white !important;
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: white !important;
}

@media (max-width: 768px) {
  footer nav a {
    display: inline-block;
    margin: 0.3rem 0.6rem;
    white-space: nowrap;
  }
}

.service-card {
  background: var(--aux-bg-light);
  padding: 2rem;
  border-radius: 14px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

/* main description block */
.service-card p:first-of-type {
  min-height: 4.8em;  /* adjust up/down if needed */
}

/* short note under the price */
.tier-note {
  min-height: 2.6em;  /* keeps this line the same height across cards */
}

/* price sits naturally between the two blocks, so it aligns */
.tier-price {
  margin: 0.6rem 0;
}

.service-card p {
  margin-bottom: 0.6rem;
}

/* =========================================================
   SERVICES – ALIGN TIER CARDS
   ========================================================= */

/* Make the three cards the same height row */
.services-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/* Turn each card into a vertical flex column */
.service-card {
  display: flex;
  flex-direction: column;
}

/* General spacing for paragraphs in cards */
.service-card p {
  margin-bottom: 0.75rem;
}

/* Push the price line down so it aligns across cards */
.tier-price {
  margin-top: auto;        /* <- this is the key */
  font-weight: 600;
}

/* Keep note + refund sitting together just under the price */
.tier-note {
  margin-top: 0.35rem;
}

.tier-refund {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

/* ------------------------------------------------------------
   MOBILE FIXES — SERVICES PAGE + FAQ BUTTON
   ------------------------------------------------------------ */

/* Center the FAQ pill button on all pages */
.faq-pill-link {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--aux-teal);
  color: var(--aux-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.faq-pill-link:hover {
  background: var(--aux-teal);
  color: #fff;
}

/* ------------------------------------------------------------
   SERVICES PAGE — MOBILE REFINEMENTS
   ------------------------------------------------------------ */
@media (max-width: 768px) {

  /* Tighten spacing above the cards + center hero text */
  .services-hero {
    padding: 4rem 8% 1.6rem;  /* less vertical height */
    text-align: center;
  }

  /* Bring service cards higher + fully center column */
  .services-tiers {
    padding: 0 8% 2.4rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* ensures perfect centering */
  }

  /* Ensure each card stays centered */
  .service-card {
    margin: 1.6rem auto 0;
    width: 100%;
    max-width: 320px;   /* optional: keeps them tidy */
  }
}
