:root {
  --font-sans: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --teal: #10c6b6;
  --teal-dark: #00a495;
  --teal-soft: #e2f8f4;
  --green-dark: #5a6a62;
  --cream: #f7f3ea;
  --cream-light: #faf6ee;
  --text: #444444;
  --text-dark: #333333;
  --muted: #777777;
  --card-border: #ded6c7;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --danger: #f25555;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
p {
	margin-bottom: 2.8rem;
}
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
}
.h2, h2 {
	margin-bottom: 1.4rem;
    font-size: 1.4rem;
    font-weight: 800;
}
.h3, h3 {
    font-size: calc(.7rem + .6vw);
}
.h4, h4 {
    font-size: calc(.675rem + .3vw);
}
/* Override Bootstrap container width */
.container {
  max-width: 960px !important;
}
/* ===================== */
/* HERO                  */
/* ===================== */

.hero {
  margin-top: 0;
  padding: 0;
  background-color: #000;
  color: #ffffff;
}

/* container for bg + overlay + logo + text */
.hero-inner {
  position: relative;
  width: 100%;
  min-height: 520px;       /* desktop height */
  overflow: hidden;
  display: flex;           /* make this the flex container */
  align-items: center;     /* vertically center .hero-content */
}


/* hero background image – COVER the entire hero-inner */
.hero-bg {
  position: absolute;
  inset: 0;                /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;       /* always fill, crop as needed */
  display: block;
  z-index: 1;
}

/* dark gradient overlay on top of the image */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.20) 0%,     /* lighter start */
      rgba(0,0,0,0.55) 100%    /* MUCH lighter end */
    );
}

/* logo in top-right corner */
.hero-logo {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 180px;
  height: auto;
  z-index: 3;
}

/* text wrapper over the image */
.hero-content {
  position: relative;
  z-index: 4;
  padding: 2.8rem 1.5rem;
}

.hero-content,
.hero-content p {
  color: #ffffff;
}
.hero-text-wrap {
  max-width: 520px;
}

/* main H1 */
.hero-title {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem); /* bumped max from 3.1rem → 3.8rem */
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  color: #ffffff !important;
}

/* bottom band under hero */
.hero-bottom-band {
  background-color: #364137;     /* deep green/grey band */
  color: #ffffff;
  padding: 3.5rem 0;
}

.hero-bottom-inner {
  max-width: 960px;
}

.hero-bottom-title {
  color: #ffffff;
}

.hero-bottom-text {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* CTA buttons in the hero bottom band */
.btn-teal {
  background-color: var(--teal);
  color: var(--cream-light);
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
}

.button-group {margin-top: 40px !important;}

.btn-teal:hover {
  filter: brightness(1.05);
}

/* ===================== */
/* GENERIC SECTION       */
/* ===================== */

section {
  padding: 3.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
}

.section-heading p {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--text-dark);
}

/* ===================== */
/* SECTION – PROBLEM     */
/* (“If your marketing…”)*/
/* ===================== */

.section-problem {
}

.section-problem-inner {
  max-width: 960px;        /* keeps heading + body from stretching too wide */
}

.section-problem-heading {
  margin-bottom: 1.8rem;
}

.problem-icon {
  width: 200px;            /* larger scrambled graphic */
  height: auto;
  margin: 0 auto 1rem;
}

.problem-title {
}

/* body area under the heading */
.problem-body {
  max-width: 40rem;        /* keeps list/paragraph readable */
  margin: 0 auto;
}

.problem-body h3 {
}

.problem-body ul {
  padding-left: 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.problem-body li {
  margin-bottom: 0.35rem;
}

.problem-body p {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin: 0;
}

/* ===================== */
/* SECTION – CLARITY     */
/* (“The problem isn’t…”)*/
/* ===================== */

.section-clarity {
}

.section-clarity-inner {
  max-width: 960px; /* matches section-problem + hero-bottom */
  margin: 0 auto;
}

.clarity-heading {
  text-align: center;
  margin-bottom: 1.8rem;
}

.clarity-icon {
  width: 200px; /* larger graphic per your request */
  height: auto;
  margin: 0 auto 1rem;
}

.clarity-title {
}

.clarity-body {
  max-width: 44rem; /* readable paragraph width */
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.clarity-body ul {
  padding-left: 1.1rem;
  margin: 1.2rem auto 1.2rem auto;
  font-size: 0.98rem;
  max-width: 28rem;
  text-align: left;
}

.clarity-body li {
  margin-bottom: 0.35rem;
}

.clarity-body p {
  margin-bottom: 0.75rem;
}


/* ===================== */
/* SECTION – COMPARE     */
/* ===================== */

.section-compare {
  background: var(--green-dark);
  color: #ffffff;
  padding-bottom:0;
}

.section-compare .section-heading h2 {
  color: #ffffff !important;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}

.section-compare-cards {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card container – stacked full-width */
.compare-card {
  background: #494338;
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  text-align: left;
  color: #ffffff;
}

/* Symbrio highlight */
.compare-card--symbrio {
  border: 8px solid var(--teal);
  box-shadow: 0 18px 46px rgba(0,0,0,0.3);
}

/* Inner layout (icon + content) */
.compare-card-inner {
  display: flex;
  align-items: center; /* vertically center icon relative to text */
  gap: 1.4rem;
}

/* icon col */
.compare-icon-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BIG BOLD icons */
.compare-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.compare-icon--negative {
  background: #a19481;
  font-size: 3.25rem;
  color: var(--text-dark);
}

.compare-icon--positive {
  background: var(--teal);
  font-weight:800;
}

/* content */
.compare-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  color: #ffffff;
}

.compare-content ul {
  padding-left: 1.05rem;
  margin: 0;
  font-size: 0.98rem;
  color: #f2f3f2;
}

.compare-content li {
  margin-bottom: 0.35rem;
}

/* Transform band under compare */
.transform-band {
  background: #efede6;              /* <-- correct warm beige tone */
  padding: 3rem 0 3.5rem;
  margin-top: 0;
  color: var(--text);               /* dark text on light background */
  text-align: center;
}

.transform-icon {
  width: 125px !important;          /* <-- your requested size */
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.transform-band h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.transform-band ul {
  list-style: disc;
  padding-left: 1.2rem;
  text-align: left;
  max-width: 32rem;
  margin: 0.2rem auto 0;
  font-size: 0.98rem;
  color: var(--text);
}

/* Optional: tweak on small screens if icon feels too dominant */
@media (max-width: 576px) {
  .compare-card-inner {
    align-items: flex-start;
  }

  .compare-icon {
    width: 55px;
    height: 55px;
    font-size: 2.6rem;
  }
  .compare-icon--positive {
  	font-size: 2rem;
  }
}

/* ===================== */
/* SECTION – SERVICES     */
/* ===================== */

.section-services {
  background: var(--cream-light);
  padding: 3.5rem 0;
}

.section-services .section-heading p {
  max-width: 40rem;
  margin: 0 auto 2.4rem;
  font-size: 0.98rem;
  color: var(--muted);
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Card styling */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.4rem 1.3rem;
  font-size: 0.96rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card ul {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
}

.service-card li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

/* Subtle teal bullets */
.service-card li::marker {
  color: var(--teal);
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* ===================== */
/* TESTIMONIALS          */
/* ===================== */

.section-testimonials {
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 2.4rem;
}

.testimonial-heading h2 {
}

.testimonial-heading p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-dark);
  font-style:italic;
}

.review-card {
  border-radius: 18px;
  border: 1px solid #dedede;
  padding: 1.1rem 1.1rem 1.2rem;
  height: 100%;
  font-size: 0.9rem;
}

.review-photo {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-bottom: 0.7rem;
}
.review-photo img {
	border-radius: 6px;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-name {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.review-placeholder {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===================== */
/* SECTION – STEPS        */
/* ===================== */

.section-steps {
  background: var(--cream);
}

.steps-icon {
  width: 140px;   /* updated size */
  height: auto;
  margin: 0 auto 1.2rem;
}

.step-card {
  background: #fdfbf7;
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.6rem;
  font-size: 0.96rem;
}

/* H3 — Step Number */
.step-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;   /* MORE space before the H4 */
  color: var(--text-dark);
}

/* H4 — Step Title */
.step-card h4 {
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;    /* LESS space before the paragraph */
  color: var(--text-dark);
}

.step-card p {
  margin-bottom: 0.8rem;
}

.step-card ul {
  padding-left: 1.1rem;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.step-card li {
  margin-bottom: 0.3rem;
}


/* ===================== */
/* SECTION — ABOUT        */
/* ===================== */

.section-about {
  background: var(--green-dark);   /* deep green background */
  color: #ffffff;                  /* ensure text shifts to white */
}

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

/* Unified wrapper for all left-aligned text */
.about-text-wrap {
  max-width: 48rem;        /* controls readable width */
  margin: 0 auto;          /* centers the block */
  text-align: left;        /* left-align all contents */
}

.section-about p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.section-about em {
  font-style: italic;
}

.section-about h5 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.section-about ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.section-about ul li {
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.section-about h2,
.section-about p,
.section-about li,
.section-about h5,
.section-about em {
  color: #ffffff;
}

.section-about ul {
  color: #ffffff;
}

.section-about ul li::marker {
  color: #f3eede; /* subtle accent bullet */
}

/* ===================== */
/* MEET SCOTT & NICK     */
/* ===================== */

.section-people {
  background: var(--cream-light);
}
.section-people .section-heading,
.section-people .section-heading h2 {
	margin-bottom: 0;
}

/* cards row */
.person-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 0.7rem 0.9rem 1.2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  height: 100%;
}

.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;       /* force perfect square */
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 0.75rem;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.person-name {
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
}

/* “Read bio” button under the name */
.person-bio-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0.15rem 0 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  cursor: pointer;
  text-decoration: none;
}

.person-bio-toggle:hover,
.person-bio-toggle:focus {
  text-decoration: underline;
}

/* full-width bio panel under both cards */
.person-bio-panel {
  position: relative;              /* needed for connector positioning */
  margin-top: 1.4rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.6rem 1.3rem;
}

/* decorative divider inside the panel */
.person-bio-panel::before {
  content: "";
  display: block;
  width: 26%;
  height: 2px;
  background: #e4ded3;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

/* connector tab – visually ties the panel to active card */
.person-bio-panel::after {
  content: "";
  position: absolute;
  top: -18px;
  left: var(--bio-pointer-x, 50%);
  transform: translateX(-50%);
  width: 180px;
  height: 18px;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
}

/* individual bios inside panel */
.person-bio-content {
  display: none;
}

.person-bio-content.is-active {
  display: block;
}

.person-bio-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.person-bio-content p {
  font-size: 0.94rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* mobile tweaks */
@media (max-width: 576px) {
  .person-bio-panel {
    padding: 1.1rem 1.1rem 1.0rem;
    margin-top: 1rem;
  }

  .person-bio-panel::before {
    width: 34%;
  }
}

/* ===================== */
/* FAQ SECTION STYLES    */
/* ===================== */

.section-faq {
  background: var(--green-dark);   /* ← updated */
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  color: #ffffff;
}

.section-faq .section-heading h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;     /* ← updated */
}

.section-faq .section-heading p {
  font-size: 0.98rem;
  max-width: 38rem;
  margin: 0.5rem auto 2rem;
  color: #e8e8e8 !important;     /* ← updated */
}

/* Accordion core reset */
.section-faq .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-border-color: rgba(0,0,0,0);
  --bs-accordion-btn-focus-box-shadow: none;
}

/* Accordion card */
.section-faq .accordion-item {
  background: #fdfbf7;                  /* light cream for contrast */
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.1rem;
  overflow: hidden;
}

/* Accordion header button */
.section-faq .accordion-button {
  background: transparent;
  padding: 1.15rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

/* No BS focus outline */
.section-faq .accordion-button:focus {
  box-shadow: none;
}

/* Chevron styling */
.section-faq .accordion-button::after {
  filter: brightness(0.35);
  transform: scale(0.8);
}

/* Expanded state */
.section-faq .accordion-button:not(.collapsed) {
  background: rgba(255,255,255,0.07);
  background: rgba(16, 198, 182, 0.10);
  color: var(--text-dark);
}

.section-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0.25);
}

/* Accordion body */
.section-faq .accordion-body {
  padding: 1.2rem 1.45rem 1.4rem;
  background: #fffefd;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

.section-faq .accordion-body p {
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .section-faq .accordion-item {
    margin-bottom: 0.85rem;
  }
}

/* ===================== */
/* FINAL CTA             */
/* ===================== */

.section-final-cta {
}

.final-icon {
  width: 160px;
  margin: 0 auto 1rem;
}
@media (max-width: 480px) {
  .final-icon {
    width: 130px;
  }
}
.section-final-cta h2 {
}

.section-final-cta p {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.section-final-cta em {
  font-size: 0.96rem;
}

/* ===================== */
/* FOOTER                */
/* ===================== */

footer {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1.2rem 0 1.6rem;
}
footer p {
    font-size: 1.0rem;
    font-weight: 500;
}
footer img {
    max-width: 200px;
}
footer a {
  color: var(--teal-dark);
}

.bio-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: #333;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

/* ???? use the real panel selector */
.person-bio-panel.show .bio-close-btn,
#bio-panel.show .bio-close-btn {
  opacity: 1;
}

.bio-close-btn:hover {
  background: rgba(0,0,0,0.15);
}



/* ===================== */
/* RESPONSIVE TWEAKS     */
/* ===================== */

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1.5rem 3rem;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-logo {
    right: 1.4rem;
  }

  .hero-bottom-band {
    padding-inline: 1.2rem;
  }
  .container {
  	padding-right: calc(var(--bs-gutter-x) * 1.2);
    padding-left: calc(var(--bs-gutter-x) * 1.2);
  }
  /* Maintain vertical centering but bias upward */
  .hero-inner {
    min-height: 380px;
    display: flex;
    align-items: center;        /* still centered vertically */
    padding-top: 2rem;          /* gently pushes the center point upward */
  }

  /* Adjust content padding so alignment feels natural */
  .hero-content {
    padding-top: 0;             /* remove extra padding */
    padding-bottom: 0;
  }

  /* KEEP headline left-aligned */
  .hero-title {
    text-align: left;
  }
  .hero-logo {
    width: 120px;
    top: 1rem;
    right: 1rem;
  }
  .problem-icon {width: 140px;}
  .bio-close-btn {
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.45rem;
  }
  .person-bio-panel::after {
    content: none;
  }
}