/* --- 1. DESIGN TOKENS --- */
:root {
  --orange:        #FA7B22;
  --orange-hover:  #E06A10;
  --orange-soft:   rgba(250, 123, 34, 0.08);
  --orange-border: rgba(250, 123, 34, 0.35);

  --dark:          #1C1C1C;
  --dark-btn:      #2A2A2A;
  --body-bg:       #FFF;
  --text-primary:  #111111;
  --text-muted:    #6B6B6B;
  --nav-bg:        rgba(255, 245, 237, 0.88);

  --font:          'Inter', system-ui, sans-serif;
  --radius-pill:   999px;
  --radius-btn:    10px;

  --shadow-nav:    0 2px 24px rgba(0,0,0,0.06);
  --transition:    0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--body-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; }
ul { list-style: none; }

/* --- 3. LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 4. HERO BACKGROUND BLOBS --- */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.hero-blob--left {
  width: 400px; height: 500px;
  background: radial-gradient(circle, rgba(227, 112, 30, 0.28) 0%, transparent 70%);
  bottom: -80px; left: -180px;
}
.hero-blob--right {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,123,34,0.22) 0%, transparent 70%);
  bottom: -80px; right: -180px;
}

/* --- 5. NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  background: transparent;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  border: 1px solid rgba(250, 123, 34, 0.15);
}

.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

/* Enquiry button */
.btn-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-enquiry:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255, 249, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(250, 123, 34, 0.1);
    z-index: 99;
  }

  .nav-links.nav-open a {
    color: var(--text-primary); 
    font-size: 1rem;
    font-weight: 500;
    padding: 4px 0;
  }
}

/* Mobile hamburger — hidden on desktop */
.nav-toggle { display: none; }

/* --- 6. HERO SECTION --- */
.hero {
  position: relative;
  padding: 90px 24px 80px;
  text-align: center;
  overflow: hidden;
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-pill);
  padding: 5px 18px 5px 5px;
  margin-bottom: 28px;
}

.avatars {
  display: flex;
}
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.avatar:first-child { margin-left: 0; }

.trust-text {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .trust-badge{
        gap: 4px
    }
  .trust-text {
    font-size: 0.6rem; 
    font-weight: 400;
  }
}

/* Headline */
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  max-width: 20ch;
  margin-left: auto; 
  margin-right: auto;
}

/* Subtext */
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

/* CTA row */
.cta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-cta-text {
  background: var(--dark-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 28px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-cta-text:hover { background: #111; }

.btn-cta-arrow {
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  padding: 15px 20px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.btn-cta-arrow:hover { background: var(--orange-hover); }

/* Guarantees */
/* .guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 1;
} */
/* .guarantee-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.88rem;
} */
/* .guarantee-item svg {
  flex-shrink: 0;
  color: var(--text-muted);
} */

/* --- 7. LOGO BAR --- */
.logo-bar {
  position: relative;
  border-top:    1.5px solid rgba(250, 123, 34, 0.25);
  border-bottom: 1.5px solid rgba(250, 123, 34, 0.25);
  background: var(--body-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo-bar__label {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 18px 20px 18px 28px;
  white-space: nowrap;
  opacity: 0.55;
  border-right: 1.5px solid rgba(250, 123, 34, 0.18);
}

.logo-track-wrapper {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 18px 28px;
  animation: marquee 28s linear infinite;
}

.logo-track-wrapper:hover .logo-track,
.logo-track-wrapper:focus-within .logo-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-item img:hover { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* --- 8. SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.reveal.fade-only {
  transform: none;
  transition: opacity 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }

@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
  }

  /* Mobile nav open state */
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 16px; right: 16px;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(250,123,34,0.1);
    z-index: 99;
  }

  .hero { padding: 60px 20px 60px; }
  .hero-title {
  font-size: 2.5rem;
  font-weight: 500;
  }
  .cta-row { width: 100%; justify-content: center; }
  .guarantees { flex-direction: column; gap: 12px; }
  .btn-cta-text{ background: var(--orange); }
  .btn-cta-arrow { display: none; }
}

/* Scrolled header */
.site-header.scrolled .navbar {
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

/* PROBLEM AGITATION SECTION  */

/* --- SHARED LABEL --- */
/* .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
} */

/* PROOF CARDS */
.proof-cards {
  padding: 48px 24px;
  background: #FFE3D1;
  margin: 50px 24px;
  border-radius: 20px;
}

.proof-cards__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.proof-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  justify-content: space-between;
  margin: 0;
}

.proof-card__avatars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.proof-avatar--overlap { margin-left: -14px; }

.proof-brand-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.proof-card__result {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 500;
  flex: 1;
}

.proof-card__name {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .proof-cards {
    margin: 40px 16px;
  }
  .proof-cards__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .proof-cards {
    margin: 24px 12px;
    padding: 32px 16px;
    border-radius: 16px;
  }
  .proof-cards__inner {
    grid-template-columns: 1fr;
  }
}

/* PROBLEM INTRO */
.problem-intro {
  padding: 100px 24px 60px;
  text-align: center;
}

.problem-intro__inner {
  max-width: 680px;
  margin: 0 auto;
}

.problem-intro__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.problem-intro__line {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.problem-intro__line--bold {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.problem-intro__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* PAIN POINTS — Two column */
.pain-points {
  padding: 80px 24px;
}

.pain-points__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.pain-points__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.pain-points__heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.pain-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pain-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--text-muted);
  opacity: 0.7;
}

.pain-points__closing {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* CONSEQUENCE */
.consequence {
  padding: 80px 24px 100px;
  text-align: center;
}

.consequence__inner {
  max-width: 720px;
  margin: 0 auto;
}

.consequence__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.consequence__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consequence__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* RESPONSIVE ─*/
@media (max-width: 900px) {
  .proof-cards__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .proof-cards__inner {
    grid-template-columns: 1fr;
  }

  .pain-points__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- 9. SOLUTION / TRUTH SECTION --- */
.solution {
  padding: 100px 0;
  background-color: var(--body-bg);
}

/* Section Tag with Horizontal Lines */
.section-header {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

/* Left Column */
.solution-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.solution-statements {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Scaled down heading size */
.solution-statements h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.solution-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto; 
}

.solution-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Right Column (Card) */
.solution-right {
  background-color: #FCF7F3;
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #4A4A4A;
  font-size: 1.1rem;
  line-height: 1.6;
}

.solution-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 0;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.list-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition);
  margin-top: 12px;
  border: none;
  cursor: pointer;
}

.btn-solid:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .solution-right { padding: 40px 32px; }
  .solution-image-wrapper {
    /* margin-top: 20px; */
    display: none;
  }
}

@media (max-width: 768px) {
  .solution { padding: 60px 0; }
  .solution-right { padding: 32px 24px; font-size: 1rem; }
}

/* STATS SECTION */

.stats {
  padding: 0 24px 100px;
}

.stats__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

.stats__label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.stats__grid {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Vertical divider between stats */
.stats__divider {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 40px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }

.stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #FEF0E6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 4px;
}

.stat-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
}

.stat-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 200px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats__card {
    padding: 32px 24px;
  }

  .stats__grid {
    flex-direction: column;
    gap: 32px;
  }

  .stats__divider {
    width: 100%;
    height: 1px;
  }

  .stat-item {
    padding: 0;
    width: 100%;
  }
}

/* PROCESS SECTION — How It Works */

.process {
  background: #1C1C1C;
  padding: 100px 24px;
}

.process .section-label,
.process__label {
  color: #888888;
  letter-spacing: 0.2em;
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 12px;
}

/* STEPS */
.process__steps {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process__step {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
  padding-top: 4px;
}

.step-info {
  padding-top: 6px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 12px;
}

.step-subtitle {
  font-size: 0.9rem;
  color: #888888;
  font-style: italic;
  line-height: 1.4;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
}

.step-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #fff;
}

/* OUTCOME */
.process__outcome {
  max-width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}

.outcome__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.outcome__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  list-style: none;
}

.outcome__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #AAAAAA;
}

.process .pain-icon,
.outcome__item .pain-icon {
  color: #666666;
  opacity: 1;
}

.process__outcome .btn-orange {
    color: #fff;
    background-color: var(--orange);
    padding: 10px 20px;
    border-radius: var(--radius-btn);
  align-self: unset;
  display: inline-flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process__step {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 24px;
  }

  .step-number {
    font-size: 3.5rem;
    grid-row: 1;
  }

  .step-info {
    grid-row: 1;
  }

  .step-body {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

/* --- 10. WHY CLARIFY SECTION --- */
.why-clarify {
  padding: 120px 0;
  background-color: #fff1e8;
}

/* Header Text & Alignment */
.why-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

/* Custom Pill Tag */
.why-pill {
  background-color: rgba(250, 123, 34, 0.1);
  color: #B5500A; 
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.why-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.why-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* The 3-Column Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Individual Card Styling */
.why-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.02);
}

/* Large Background Watermark Positioned in Top Right */
.why-watermark {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  transform: translate(20%, -20%);
  pointer-events: none;
  z-index: 0;
}

/* Small Logo Icon */
.why-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: auto; 
  padding-bottom: 60px;
}

.why-card-title {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.why-card-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stagger delay for 6th element */
.reveal.d6 { transition-delay: 0.58s; }

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

@media (max-width: 768px) {
  .why-clarify {
    padding: 80px 0;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-title {
    margin-bottom: 20px;
  }
  
  .why-card {
    padding: 32px 24px;
  }
  
  .why-icon-wrapper {
    padding-bottom: 40px;
  }
}

/* SERVICES SECTION */

.services {
  background-color: var(--body-bg);
  padding: 100px 0;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

/* Orange pill label */
.services-pill {
  display: inline-block;
  background-color: transparent;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 123, 34, 0.3);
  background: rgba(250, 123, 34, 0.06);
  margin-bottom: 20px;
}

.services-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

/* GRAPHIC IMAGE */
.service-graphic {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px 14px 0 0;        
  margin-bottom: 24px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.service-graphic img {
  height: 100%;
  width: 55%;
  right: 0;
  top: 0;
  object-fit: cover;
  object-position: left center;
  position: absolute;
}

/* Fallback colors */
.graphic-orange { background-color: #FF6738; }
.graphic-purple { background-color: #6C42E5; }
.graphic-green  { background-color: #4ADE50; }

/* CARD CONTENT ─*/
.service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Big card title */
.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-best-for {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1; 
}

.service-best-for em {
  font-style: italic;
}

/* OUTLINE BUTTON */
.btn-outline {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 11px 22px;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
  margin-top: 28px;
}

.btn-outline:hover {
  background: var(--orange);
  color: #ffffff;
}

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

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

/* --- 12. TESTIMONIAL SECTION --- */

.testimonials {
  background-color: rgba(224, 248, 242, 0.4);
  padding: 100px 0;
  color: #000000;
}

.test-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.test-pill {
  background: #ffffff;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: inline-block;
}

.test-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* GRID */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.test-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.media-card, .image-card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #ccc;
}

.media-card img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-card {
  background: #FCEFD8;
  color: #000;
  padding: 28px;
  border-radius: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.author {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* STATS */
.test-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 48px;
  margin-bottom: 0;
}

.test-stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.test-stats p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.test-stats small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CTA */
.test-cta {
  text-align: center;
  margin-top: 52px;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-solid:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* RESPONSIVE */

/* Tablet — 2 columns, last col goes full width */
@media (max-width: 900px) {
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 3rd column spans full width on tablet */
  .test-col:last-child {
    grid-column: 1 / -1;
    flex-direction: row; 
    align-items: stretch;
  }

  .test-col:last-child .image-card {
    flex: 1;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .test-col:last-child .quote-card {
    flex: 1;
  }

  /* Stats — 2 columns on tablet */
  .test-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Mobile — single column stack */
@media (max-width: 580px) {
  .test-col {
    display: flex;
    flex-direction: column-reverse;
  }

  .test-grid .test-col:nth-child(1) {
    flex-direction: column;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .test-col:last-child {
    grid-column: auto;
    flex-direction: column;
  }

  .test-col:last-child .image-card {
    aspect-ratio: 1 / 1;
  }

  /* Stats — single column on mobile */
  .test-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .test-stats div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 20px;
  }

  .test-stats div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* --- 13. FOUNDER SECTION --- */
.founder {
  padding: 120px 0;
  background-color: transparent; 
}

.founder-header {
  text-align: center;
  margin-bottom: 80px;
}

.founder-pill {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.founder-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 16px 0; 
}

.founder-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

/* Image Column */
.founder-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.founder-image-wrapper img {
  width: 100%;
  display: block;
}

.founder-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Text Column */
.founder-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.founder-text-col em {
  font-style: italic;
  color: var(--text-muted);
}

.founder-highlight {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* TRUSTED BY — Logo Grid */

.trusted {
  padding: 80px 24px 100px;
  background: radial-gradient(ellipse at 60% 40%, rgba(250,123,34,0.18) 0%, rgba(250,180,120,0.12) 40%, rgba(255,245,237,0.0) 75%),
              radial-gradient(ellipse at 20% 70%, rgba(250,123,34,0.12) 0%, transparent 60%),
              #FEF3EA;
}

.trusted__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trusted__label {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

/* 4-column grid; last 2 items center via margin trick */
.trusted__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* White logo card */
.logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.logo-card img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

/* Last 2 cards — center them in the 4-col grid */
.logo-card--offset:nth-child(9)  { grid-column: 2; }
.logo-card--offset:nth-child(10) { grid-column: 3; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .trusted__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reset offsets on mobile — just flow naturally */
  .logo-card--offset:nth-child(9),
  .logo-card--offset:nth-child(10) {
    grid-column: auto;
  }
}

/* --- 14. RESOURCES SECTION --- */
.resources-section {
  padding: 100px 0;
  background-color: transparent; 
}

.resources-header {
  text-align: center;
  margin-bottom: 60px;
}
.pill-label {
  display: inline-block;
  background-color: #FDF7F2; 
  color: var(--orange); 
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.res-cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.resources-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.res-card {
  display: flex;
  flex-direction: column;
}

.res-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}

.res-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 16px; 
  margin-bottom: 12px;
}

.res-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.res-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.res-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.res-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .res-title {
    margin-top: 12px;
  }

  .res-img-box {
    aspect-ratio: auto; 
    margin-bottom: 8px; 
  }
  
  .res-img-box img {
    height: auto; 
  }

}

/* --- 15. FAQ SECTION --- */
.faq-section {
  padding: 40px 0;
  background-color: rgba(224, 248, 242, 0.4);;
}

.faq-header { text-align: center; margin-bottom: 60px; }

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-primary);
}
.faq-pill {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 20px;
  display: block;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 24px 0;
}

.faq-item summary {
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

/* Custom Collapse Icon */

.faq-item .icon {
  display: inline-block;
  width: 20px; 
  height: 20px;
  flex-shrink: 0; 
  min-width: 20px;
  min-height: 20px;
  background-image: url('assets/icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  vertical-align: middle;
  margin-left: auto; 
}

.faq-item[open] summary .icon {
  transform: rotate(180deg);
}

.faq-item p {
  padding-top: 20px;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* FINAL CTA SECTION */

.final-cta {
  position: relative;
  background: #1C1C1C;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

/* Soft left-center spotlight glow */
.final-cta__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__title {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.final-cta__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: #999999;
  margin-bottom: 12px;
}

.final-cta__sub--spaced {
  margin-top: 20px;
  margin-bottom: 48px;
}

.final-cta__btn {
  /* align-self: unset; */
  color: #fff;
  background-color: var(--orange);
  border-radius: var(--radius-btn);
  display: inline-flex;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  margin-bottom: 52px;
}

/* Checkmarks */
.final-cta__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-cta__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #777777;
}

.final-cta__checks li svg {
  flex-shrink: 0;
  color: #777777;
}

/* RESPONSIVE ─*/
@media (max-width: 640px) {
  .final-cta__title br { display: none; }
  .final-cta__sub  br  { display: none; }
}

/* FOOTER */

.footer {
  background: #ffffff;
  padding-top: 72px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Brand column */
.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 18px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 240px;
}

/* Link columns */
.footer__heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.4;
}

.footer__links a:hover {
  color: var(--orange);
}

/* LinkedIn icon */
.footer__linkedin {
  display: inline-flex;
  margin-top: 20px;
  border-radius: 6px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer__linkedin:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--orange);
}

/* RESPONSIVE ─*/
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .footer__brand {
    grid-column: auto;
  }
}


/* =====================================
    THOUGHT LEADERSHIP PAGE 
    ===================================== */

/*  HERO  */
.tl-hero {
  position: relative;
  min-height: 380px;
  padding: 100px 50px 80px;
  display: flow-root;
  margin-top: 0;
  align-items: center;
  overflow: hidden;
  /* background: #FFF9F5; */
}

/* Peach radial blob — right side */
.tl-hero__blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,123,34,0.33) 0%, rgba(183, 144, 111, 0.1) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  /* 250,123,34,0.55 */
  /* 250,123,34,0.22 */
}

/* Abstract SVG pattern — bottom right */
.tl-hero__pattern {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.tl-hero__pattern img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Content — left aligned */
.tl-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

/* Small orange breadcrumb label */
.tl-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  border: 1px solid rgba(250,123,34,0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(250,123,34,0.06);
}

.tl-hero__title {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.tl-hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tl-hero__glow {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,123,34,0.22) 0%, rgba(243, 165, 109, 0.2) 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  /* 250,123,34,0.2 */
}

.tl-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.po-btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.po-btn-filled:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
 
/* .po-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--orange);
  transition: all var(--transition);
} */
/* .po-btn-outline:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-1px);
} */

/*  RESPONSIVE  */
@media (max-width: 768px) {
  .tl-hero {
    padding: 24px;
    min-height: auto;
  }

  .tl-hero__pattern {
    width: 60%;
    opacity: 0.35;  
  }

  .tl-hero__title {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 480px) {
  .tl-hero__pattern { display: none; }
  .tl-hero__blob { opacity: 0.4; }

  .tl-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

   .tl-hero__glow {
    width: 50px;
    height: 30px;
    bottom: -60px;
    left: -60px;
  }
}

/* THOUGHT LEADERSHIP — PRICING CARDS */

.tl-pricing {
  padding: 40px 0 100px;
  background: var(--body-bg);
}

.tl-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/*  CARD SHELL  */
.pricing-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: #ffffff;
}

/*  CARD HEADER (coloured top area)  */
.pricing-card__header {
  position: relative;
  padding: 24px 24px 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Basic — light grey/white */
.pricing-card__header--basic {
  background: #F2F2F2;
}

/* Standard — orange gradient */
.pricing-card__header--standard {
  background: linear-gradient(135deg, #FF6B35 0%, #FA7B22 50%, #F5A623 100%);
}

/* Premium — dark charcoal */
.pricing-card__header--premium {
  background: #2A2A2A;
}

/* Abstract pattern — top right of header */
.pricing-card__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.pricing-card__pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Tier label — top left */
.pricing-card__tier {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.04em;
}

.pricing-card__header--standard .pricing-card__tier,
.pricing-card__header--premium .pricing-card__tier {
  color: rgba(255,255,255,0.75);
}

/* Package name — bottom of header */
.pricing-card__name {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: auto;
}

.pricing-card__header--standard .pricing-card__name,
.pricing-card__header--premium .pricing-card__name {
  color: #ffffff;
}

/*  CARD BODY ─ */
.pricing-card__body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Price row */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.pricing-card__price--orange .price-amount {
  color: var(--orange);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Description */
.pricing-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* "Everything in Standard PLUS:" */
.pricing-card__plus {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

/* Feature checklist */
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.pricing-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 8l3.5 3.5L13.5 4' stroke='%23FA7B22' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Buttons */
.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  transition: all var(--transition);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-card__btn--dark {
  background: var(--dark-btn);
  color: #ffffff;
}
.pricing-card__btn--dark:hover {
  background: #111111;
  transform: translateY(-1px);
}

.pricing-card__btn--orange {
  background: var(--orange);
  color: #ffffff;
}
.pricing-card__btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/*  RESPONSIVE  */
@media (max-width: 900px) {
  .tl-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   LINKEDIN ACADEMY — 90 Day Journey Section
   Add to bottom of style.css
   ============================================================ */

.academy-journey {
  background: #1C1C1C;
  padding: 100px 24px;
}

.academy-journey__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.academy-journey__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 72px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/*  3 PHASE COLUMNS ─ */
.academy-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 80px;
  gap: 40px;
}

.academy-phase {
  padding: 40px 0;
  /* border-right: 1px solid rgba(255,255,255,0.1); */
}

.academy-phase:last-child {
  /* border-right: none; */
  padding-left: 0;
}

.academy-phase:nth-child(2) {
  padding-left: 0;
}

.phase-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.phase-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.phase-sub {
  font-size: 0.88rem;
  color: #888888;
  font-style: italic;
  margin-bottom: 20px;
}

.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #CCCCCC;
  line-height: 1.5;
}

/* Orange checkmark via pseudo-element */
.phase-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 8l3.5 3.5L13.5 4' stroke='%23FA7B22' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/*  EXTRAS  */
.academy-extras {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.academy-extras__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.academy-extras__list {
  list-style: disc;
  display: block;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
  padding-left: 20px;
  max-width: fit-content;
}

.academy-extras__list li {
  display: list-item;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #AAAAAA;
}

.academy-extras__list li:last-child {
  margin-bottom: 0;
}



.academy-extras__reassurance {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
  margin-top: 8px;
}

.price-highlight {
  color: var(--orange);
  font-weight: 700;
}

/* reuses .btn-orange from style.css */
.academy-journey .btn-orange {
  align-self: unset;
  display: inline-flex;
  margin-top: 8px;
  background: var(--orange);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    font-size: 1rem;
}

/*  RESPONSIVE  */
@media (max-width: 768px) {
  .academy-phases {
    grid-template-columns: 1fr;
  }

  .academy-phase {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
  }

  .academy-phase:last-child {
    padding-left: 0;
    border-bottom: none;
  }

  .academy-phase:nth-child(2) {
    padding-left: 0;
  }
}

/* ACADEMY TESTIMONIALS */
.academy-label{
  display: inline-block;
  font-size: 0.72rem; 
  font-weight: 600;
  color: var(--orange); 
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  
  /* The Pill Styling */
  background: rgba(253, 126, 34, 0.08); 
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(253, 126, 34, 0.15);

}
.academy-testimonials {
  padding: 100px 0;
  background: var(--body-bg);
}

.academy-testimonials__header {
  margin-bottom: 56px;
}

.academy-testimonials__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  width: 55%;
}

.academy-testimonials__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/*  GRID  */
.academy-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/*  CARD  */
.at-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}

.at-card__image {
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  background: #e0e0e0;
}

.at-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.at-card__body {
  background: #FAF5EF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.at-card__quote {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-primary);
}

.at-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: auto;
}

/* Name-only card — body is minimal */
.at-card--name-only .at-card__body {
  padding: 16px 24px;
}

/*  RESPONSIVE  */
@media (max-width: 768px) {
  .academy-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .academy-testimonials__title {
    width: 100%;
  }
}

/* FINAL CTA SECTION */

.final-cta {
  position: relative;
  background-color: #191919; 
  
  background-image: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.final-cta__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400; 
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.final-cta__btn {
  display: inline-block;
  background-color: var(--orange);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 14px rgba(253, 126, 34, 0.2);
}

.final-cta__btn:hover {
  transform: translateY(-3px);
  background-color: #e0631b;
  box-shadow: 0 6px 20px rgba(253, 126, 34, 0.3);
}

/*  RESPONSIVE  */
@media (max-width: 768px) {
  .final-cta {
    padding: 70px 24px;
    background-image: radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  }
}

/* ============================================================
   PROFILE OPTIMIZATION 
   ============================================================ */

   /* ============================================================
   STAGES (TABS) SECTION
   ============================================================ */

.po-stages {
  padding: 120px 0;
  background-color: #FAFAFA;
}

.po-stages__header {
  margin-bottom: 48px;
  max-width: 600px;
}

.po-stages__title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 16px;
  margin-bottom: 16px;
}

.po-stages__sub {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/*  TABS NAVIGATION  */
.po-tabs__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.po-tab {
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  color: #555555;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.po-tab:hover {
  border-color: #CCCCCC;
  color: #111;
}

.po-tab.active {
  background-color: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

/*  CONTENT PANES & GRID  */
.po-tabs__content {
  position: relative;
}

.po-pane {
  display: none; /* Hidden by default */
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  animation: fadeIn 0.4s ease forwards;
}

.po-pane.active {
  display: grid; /* Shown when active */
}

.po-hero__ctas{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*  CARDS & LISTS  */
.stage-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.stage-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888888; /* Greyed out subtitle look */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.stage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
}

/* Base Star Icon for standard lists */
.icon-star {
  display: inline-block;
  min-width: 16px;
  height: 16px;
  margin-top: 3px;
  background-color: #B0B0B0; /* Light grey */
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2l2.4 7.6H22l-6.2 4.5 2.4 7.6-6.2-4.5-6.2 4.5 2.4-7.6L2 9.6h7.6z"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2l2.4 7.6H22l-6.2 4.5 2.4 7.6-6.2-4.5-6.2 4.5 2.4-7.6L2 9.6h7.6z"/></svg>') center/contain no-repeat;
}

/*  HIGHLIGHT CARD (Bottom Right) ─ */
.stage-card--highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF3D00 0%, #FF8A00 100%);
  color: #FFFFFF;
}

/* Faint swoosh background graphic */
.stage-card--highlight::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.stage-card--highlight .stage-card__title {
  color: #FFFFFF;
  opacity: 0.9;
}

.stage-card--highlight .stage-list li {
  color: #FFFFFF;
}

/* Profile ID icon for the highlighted list */
.icon-profile {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: #FFFFFF;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="16" rx="2" ry="2"/><circle cx="12" cy="10" r="3"/><path d="M7 18c0-2.8 2.2-5 5-5s5 2.2 5 5"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="16" rx="2" ry="2"/><circle cx="12" cy="10" r="3"/><path d="M7 18c0-2.8 2.2-5 5-5s5 2.2 5 5"/></svg>') center/contain no-repeat;
}

/*  RESPONSIVE ─ */
@media (max-width: 900px) {
  .po-pane {
    grid-template-columns: 1fr;
  }
  
  .stage-card {
    padding: 32px 24px;
  }
}



   /* ============================================================
   THE PROBLEM SECTION
   ============================================================ */

.po-problem {
  padding: 120px 0;
  background-color: #191919; 
  overflow: hidden; 
}

.po-problem__title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 600px;
}

/*  GRID  */
.po-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; /* Tight gap to enhance the stacked look */
}

/*  SCATTERED CARDS  */
.problem-card {
  background-color: #FFFFFF;
  min-height: 280px;
  padding: 40px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Pushes text to the bottom */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}

/* Alternating Tilts to create the desk-scattered effect */
.po-problem__grid > :nth-child(1) { transform: rotate(-1.5deg); }
.po-problem__grid > :nth-child(2) { transform: rotate(0.8deg); }
.po-problem__grid > :nth-child(3) { transform: rotate(-0.5deg); }
.po-problem__grid > :nth-child(4) { transform: rotate(1.2deg); }
.po-problem__grid > :nth-child(5) { transform: rotate(-1deg); }
.po-problem__grid > :nth-child(6) { transform: rotate(1.5deg); }

/* Hover effect to make them interactive */
.problem-card:hover {
  transform: rotate(0deg) scale(1.02) !important;
  z-index: 10;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/*  RESPONSIVE ─ */
@media (max-width: 900px) {
  .po-problem__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .po-problem__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .problem-card {
    min-height: 220px;
    /* Reduce the tilt on mobile so it doesn't break boundaries */
    transform: rotate(0deg) !important; 
  }
}

   /* ============================================================
   WHAT'S INCLUDED & BONUSES SECTION
   ============================================================ */

.po-included {
  padding: 100px 0;
  background-color: #FAF5EF; /* Warm off-white */
}

.po-included__header {
  margin-bottom: 48px;
  max-width: 680px;
}

.po-included__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text-primary, #111);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0;
}

.po-included__sub {
  font-size: 1.05rem;
  color: var(--text-muted, #555);
  line-height: 1.6;
}

/* Modifier for the solid orange label */
.section-label.section-label--solid {
  background-color: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  margin-bottom: 16px;

}

/*  GRIDS ─ */
.po-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 100px; /* Spacing between the two sections */
}

.po-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/*  CARDS ─ */
.po-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  /* Large top padding gives it that spacious, airy feel from the design */
  padding: 80px 32px 40px 32px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Anchors content to the bottom */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.po-card__title {
  font-size: 1.rem;
  font-weight: 500;
  color: var(--text-primary, #111);
  margin-bottom: 16px;
  line-height: 1.3;
}

.po-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, #555);
  margin: 0;
}

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  .po-included__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .po-included__grid,
  .po-bonuses__grid {
    grid-template-columns: 1fr;
  }
  
  .po-card {
    padding: 48px 24px 32px 24px;
  }
}

   /* ============================================================
   PROFILE OPTIMIZATION TESTIMONIALS
   ============================================================ */

.po-testimonials {
  padding: 100px 0;
  background-color: var(--body-bg, #FFFDFB);
}

.po-testimonials__header {
  margin-bottom: 48px;
}

.po-testimonials__title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary, #111);
  margin-top: 16px;
}

/*  GRID LAYOUT  */
.po-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/*  VIDEO CARDS (Cols 1 & 2)  */
.po-vid-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.po-vid-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* Matches the portrait photography style */
  border-radius: 8px;
  overflow: hidden;
  background-color: #222;
  cursor: pointer;
}

.po-vid-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform 0.4s ease;
}

.po-vid-card__thumb:hover video {
  transform: scale(1.03);
}



.po-vid-card__name {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary, #111);
}

/*  TEXT CARD (Col 3)  */
.po-text-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.po-text-card__img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Square crop for the top image */
  border-radius: 8px;
  overflow: hidden;
}

.po-text-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Keeps faces in frame */
}

.po-text-card__body {
  flex-grow: 1; /* Pushes the box to fill the remaining height */
  background-color: #FFF7F2; /* Soft peach brand color */
  padding: 32px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.po-text-card__quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary, #111);
  margin-bottom: 32px;
}

.po-text-card__name {
  margin-top: auto; /* Pushes the name to the very bottom */
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted, #555);
}

/*  RESPONSIVE ─ */
@media (max-width: 900px) {
  .po-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Make the text card span full width on tablet */
  .po-text-card {
    grid-column: 1 / -1;
    flex-direction: row; /* Side-by-side on tablet */
  }
  
  .po-text-card__img {
    width: 40%;
    aspect-ratio: auto;
  }
}

@media (max-width: 600px) {
  .po-testimonials__grid {
    grid-template-columns: 1fr; /* Stack everything on mobile */
  }
  
  .po-text-card {
    flex-direction: column; /* Back to stacked on mobile */
  }
  
  .po-text-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}

   /* CTA SECTION */
.po-cta {
  position: relative;
  background-color: #1A1A1A; 
  background-image: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.po-cta__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.po-cta__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 650px;
}

.po-cta__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 720px;
}

.po-cta__btn {
  display: inline-block;
  background-color: var(--orange);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-btn); 
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 48px;
}

.po-cta__btn:hover {
  transform: translateY(-3px);
  background-color: #e0631b;
}



/*  RESPONSIVE  */
@media (max-width: 768px) {
  .po-cta {
    padding: 80px 24px;
    background-image: radial-gradient(ellipse 100% 60% at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  }
  
  .po-cta__btn {
    width: 100%;
    max-width: 350px;
  }
}

/* 