@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ==========================================================================
   HOMEPAGE SECTIONS & LAYOUTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 20px 0 60px;
  position: relative;
  width: 100%;
}

.hero-inner-panel {
  background-color: #f0f0f0;
  border-radius: 40px;
  padding: 76px 40px 48px;
  position: relative;
  width: calc(100% - 32px);
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-header-content {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  text-align: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-lead-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #0b0b0c;
  background: #ffffff;
  border: 1px solid rgba(11, 11, 12, 0.08);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-lead-kicker-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #0b0b0c;
  display: inline-block;
  will-change: transform;
  animation: kicker-dot-coil-jump 2.7s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.hero-lead-kicker-star {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 1;
  font-size: 0.85rem;
  color: #0b0b0c;
  will-change: transform;
  transform-origin: center center;
  animation: kicker-star-burst 2.7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes kicker-dot-coil-jump {
  0% {
    transform: translateY(0);
  }

  3.6% {
    transform: translateY(2px);
    animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
  }

  18.7% {
    transform: translateY(-8px);
    animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }

  44.4% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes kicker-star-burst {
  0% {
    transform: rotate(0deg);
  }

  23.1% {
    transform: rotate(360deg);
  }

  32% {
    transform: rotate(374deg);
  }

  44.4% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-title {
  font-family: 'Switzer', var(--font-display);
  font-size: 82px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 auto 24px;
  color: #0b0b0c;
  max-width: 1240px;
  width: 100%;
}

/* Keep the headline fragments as one deliberate wrapping row. The kicker
   above it owns the 20px stack separation; wrapped title lines stay tight. */
.hero-title-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 0;
  align-items: center;
}

.hero-title-piece {
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 799px) {
  .hero-title {
    font-size: 52px;
    line-height: 1.12;
  }
}

.hero-subtitle {
  font-family: "Stack Sans Headline", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #6a6e6e;
  max-width: 820px;
  margin: 0 auto 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 1199px) {
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.55;
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-group .btn-primary {
  min-height: 58px;
  padding: 7px 8px 7px 26px;
  gap: 20px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.24),
    0 14px 30px -12px rgba(0, 0, 0, 0.5);
}

.hero-cta-group .btn-primary .btn-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #101113;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.hero-cta-group .btn-primary:hover .btn-arrow {
  color: #101113;
  background: #ffffff;
  transform: rotate(4deg) translate(1px, -1px);
}

.hero-cta-group .btn-outline {
  color: #101113;
  border: 1px solid #101113;
  background: transparent;
  padding: 13px 26px;
}

.hero-cta-group .btn-outline:hover {
  background: #ffffff;
  border-color: #101113;
  transform: translateY(-2px);
}

.hero-bento-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  margin: 48px auto 0;
  align-items: stretch;
}

.hero-image-card {
  width: 100%;
  height: 673px;
  min-height: 673px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background-color: #e0e0e0;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease-smooth);
}

@media (max-width: 1199px) {
  .hero-bento-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .hero-image-card {
    width: 100%;
    height: auto;
    aspect-ratio: 590 / 693;
    min-height: unset;
  }
}

.hero-image-card:hover img {
  transform: scale(1.07);
}

/* --------------------------------------------------------------------------
   2. POINT OF VIEW SECTION (DARK PANEL)
   -------------------------------------------------------------------------- */
.pov-section {
  padding: 40px 0 80px;
}

.dark-panel {
  background: radial-gradient(circle at 50% 0%, #1e2022 0%, #0b0b0c 70%);
  border-radius: var(--radius-2xl);
  padding: 88px 64px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pov-content {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pov-headline {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #ffffff;
  margin: 36px 0 52px;
}

.highlight-lime {
  color: var(--color-accent-lime);
  position: relative;
  text-shadow: 0 0 24px rgba(158, 252, 101, 0.4);
}

.pov-footer-row {
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.team-avatar-grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

.team-avatar:hover {
  transform: translateY(-3px) scale(1.05);
}

.pov-footer-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-inverse-secondary);
  max-width: 520px;
}

/* --------------------------------------------------------------------------
   5. FUNCTION WALKTHROUGH ACCORDION SHOWCASE (SENTIRA STYLE)
   -------------------------------------------------------------------------- */
.sentira-showcase-panel {
  background: radial-gradient(circle at 50% 0%, #15171e 0%, #07080a 75%);
  border-radius: var(--radius-2xl);
  padding: 80px 64px 88px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 64px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sentira-showcase-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}

.sentira-showcase-title {
  font-family: 'Switzer', var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #ffffff;
  margin: 24px 0 16px;
}

.sentira-showcase-subtitle {
  font-family: "Stack Sans Headline", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-inverse-secondary);
  max-width: 660px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* Accordion list */
.sentira-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sentira-tab-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.sentira-tab-item:hover {
  background-color: rgba(255, 255, 255, 0.015);
}

/* Header row */
.sentira-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 12px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.25s ease;
}

.sentira-tab-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sentira-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.sentira-tab-item.active .sentira-tab-icon {
  background: rgba(158, 252, 101, 0.12);
  border-color: rgba(158, 252, 101, 0.3);
  color: var(--color-accent-lime);
  box-shadow: 0 0 16px rgba(158, 252, 101, 0.2);
}

.sentira-tab-heading {
  font-family: 'Switzer', var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: -0.025em;
  margin: 0;
  transition: color 0.25s ease;
}

.sentira-tab-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-accent-lime);
  opacity: 0.75;
  font-weight: 600;
  letter-spacing: 0.05em;
  vertical-align: super;
}

.sentira-tab-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sentira-tab-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sentira-pill {
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sentira-tab-item:hover .sentira-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.sentira-tab-item.active .sentira-pill {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.sentira-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.sentira-toggle-btn svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sentira-tab-item:hover .sentira-toggle-btn {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.sentira-tab-item.active .sentira-toggle-btn {
  background: #ffffff;
  border-color: #ffffff;
  color: #060608;
  transform: scale(1.02);
}

.sentira-tab-item.active .sentira-toggle-btn svg {
  transform: rotate(45deg);
}

/* Accordion body - buttery smooth grid transition */
.sentira-tab-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  visibility: hidden;
}

.sentira-tab-item.active .sentira-tab-body {
  grid-template-rows: 1fr;
  visibility: visible;
}

.sentira-tab-body-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}

.sentira-tab-item.active .sentira-tab-body-inner {
  padding: 8px 12px 48px;
  opacity: 1;
  transform: translateY(0);
}

.sentira-content-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.82fr;
  gap: 48px;
  align-items: center;
}

.sentira-content-grid.is-reversed {
  grid-template-columns: 0.82fr 1.28fr;
}

/* Preview Frame (Clean Dashboard View) - Stable, no hover/touch zoom */
.sentira-preview-frame {
  background: #0f1118;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  touch-action: pan-y;
}

.sentira-preview-frame:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 68px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.sentira-mockup-bar {
  display: none !important;
}

.sentira-preview-img-box {
  width: 100%;
  overflow: hidden;
  background: #0c0d12;
  touch-action: pan-y;
}

.sentira-preview-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transform: none !important;
  transition: none !important;
  touch-action: pan-y;
  -webkit-touch-callout: none;
}

.sentira-preview-frame:hover .sentira-preview-img {
  transform: none !important;
}

/* Right Meta Info Column */
.sentira-meta-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sentira-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3.5px 9px 3.5px 8px;
  border-radius: 9999px;
  background: rgba(158, 252, 101, 0.08);
  border: 1px solid rgba(158, 252, 101, 0.22);
  color: #9efc65;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
  line-height: 1.25;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sentira-meta-badge::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9efc65;
  box-shadow: 0 0 5px rgba(158, 252, 101, 0.7);
  display: inline-block;
  flex-shrink: 0;
}

.sentira-meta-heading {
  font-family: 'Switzer', var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.sentira-meta-desc {
  font-family: "Stack Sans Headline", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-inverse-secondary);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.sentira-feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sentira-feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Stack Sans Headline", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.sentira-feature-checklist .check-icon {
  flex-shrink: 0;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sentira-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sentira-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  background: #ffffff;
  color: #07080a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sentira-cta-btn:hover {
  background: #f0f2f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
  color: #000000;
}

.sentira-cta-btn svg {
  transition: transform 0.2s ease;
}

.sentira-cta-btn:hover svg {
  transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   3.5 GROWTH YOU CAN POINT AT (PROOF BENTO GRID)
   -------------------------------------------------------------------------- */
.growth-proof-section {
  padding: 80px 0;
}

.growth-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.growth-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: var(--color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 380px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.growth-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.growth-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.6s var(--ease-smooth), opacity 0.6s var(--ease-smooth);
}

.growth-card:hover .growth-card-bg-img {
  transform: scale(1.05);
  opacity: 0.55;
}

.growth-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.growth-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.growth-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.growth-metric-huge {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 20px 0 12px;
  color: #ffffff;
}

.growth-metric-lime {
  color: var(--color-accent-lime);
  text-shadow: 0 0 20px rgba(158, 252, 101, 0.35);
}

.growth-metric-pink {
  color: var(--color-accent-pink);
  text-shadow: 0 0 20px rgba(255, 188, 252, 0.35);
}

.growth-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-inverse-secondary);
}

/* --------------------------------------------------------------------------
   4. SELECTED WORK / CASE STUDIES SHOWCASE
   -------------------------------------------------------------------------- */
.selected-work-section {
  padding: 80px 0;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.case-study-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-study-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: #f5f5f5;
  border: 1px solid var(--color-border-lighter);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
  color: inherit;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-study-media {
  min-height: 440px;
  overflow: hidden;
  background-color: #e5e5e5;
  position: relative;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.case-study-card:hover .case-study-media img {
  transform: scale(1.04);
}

.case-study-info {
  background-color: var(--color-dark-bg);
  color: #ffffff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-study-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cs-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse-secondary);
}

.case-study-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.case-study-desc {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-inverse-secondary);
  margin-bottom: 32px;
}

.case-study-metric-box {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-dark-border-subtle);
}

.cs-metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-lime);
  line-height: 1;
}

.cs-metric-label {
  font-size: 0.9rem;
  color: var(--text-inverse-secondary);
}

/* --------------------------------------------------------------------------
   5. THE NUMBERS BEHIND THE NOISE (STATS METRICS SHOWCASE)
   -------------------------------------------------------------------------- */
.stats-metrics-section {
  padding: 80px 0;
  background: #ffffff;
}

.stats-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1060px;
  margin: 40px auto 0;
  text-align: center;
}

.stat-clean-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.stat-clean-num {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.stat-clean-pink {
  color: #FFBCFC;
  font-weight: 500;
  margin-left: 2px;
}

.stat-clean-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666666;
  margin-top: 14px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-metrics-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

font-size: 1.05rem;
font-weight: 500;
color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   6. OPERATING RHYTHM & 3-STEP COMPOUND DIAL
   -------------------------------------------------------------------------- */
.rhythm-section {
  padding: 40px 0 80px;
}

.stat-item-plus {
  color: var(--color-accent-pink);
  margin-left: 2px;
}

.stat-item-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.rhythm-section {
  padding: 80px 0;
  background: #ffffff;
}

.rhythm-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Left Card */
.rhythm-left-card {
  background: #FAFAFA;
  border: 1px solid #EBEBEB;
  border-radius: 36px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.rhythm-card-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.rhythm-main-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0A0A0A;
  margin: 0;
}

.rhythm-top-tagline {
  font-size: 0.95rem;
  color: #666666;
  max-width: 190px;
  text-align: right;
  line-height: 1.4;
  margin: 4px 0 0;
}

.rhythm-media-split {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.rhythm-thumb {
  width: 170px;
  height: 170px;
  border-radius: 24px;
  overflow: hidden;
}

.rhythm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rhythm-experience-badge {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #0A0A0A;
}

/* Right Circular Stage */
.rhythm-right-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stepper-stage-circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: #0B0B0C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.stepper-top-label {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.stepper-cards-stack {
  position: relative;
  width: 320px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  z-index: 2;
}

/* Card 1: Diagnose (Lime) */
.stepper-card.card-lime {
  background: #94EC36;
  color: #000000;
  box-shadow: 0 12px 32px rgba(148, 236, 54, 0.35);
}

/* Card 2: Uncover (Pink) */
.stepper-card.card-pink {
  background: #FFB3F7;
  color: #000000;
  box-shadow: 0 12px 32px rgba(255, 179, 247, 0.35);
}

/* Card 3: Compound (Black) */
.stepper-card.card-black {
  background: #111213;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.stepper-card-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stepper-card-badge.badge-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #94EC36;
  border: 1px solid rgba(148, 236, 54, 0.3);
}

.stepper-card-heading {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.stepper-card.card-lime .stepper-card-heading,
.stepper-card.card-pink .stepper-card-heading {
  color: #000000;
}

.stepper-card.card-black .stepper-card-heading {
  color: #ffffff;
}

.stepper-card-paragraph {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

.stepper-card.card-lime .stepper-card-paragraph,
.stepper-card.card-pink .stepper-card-paragraph {
  color: rgba(0, 0, 0, 0.85);
}

.stepper-card.card-black .stepper-card-paragraph {
  color: rgba(255, 255, 255, 0.8);
}

/* Dash Nav */
.stepper-dash-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  z-index: 3;
}

.step-dash-btn {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.step-dash-btn.active {
  background: #ffffff;
  width: 44px;
}

height: 10px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
transition: all var(--transition-fast);
cursor: pointer;
}

.step-dot-btn.active {
  width: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent-lime-bright) 0%, var(--color-accent-lime) 100%);
  box-shadow: 0 0 10px rgba(158, 252, 101, 0.5);
}

/* --------------------------------------------------------------------------
   6. COMPARISON MATRIX ("The typical agency" vs "Overtake®")
   -------------------------------------------------------------------------- */
.comparison-section {
  padding: 80px 0;
}

.comparison-table-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-dark-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-lg);
}

.comp-col-bad {
  background: radial-gradient(circle at 50% 0%, #151618 0%, #0b0b0c 100%);
  padding: 52px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-col-good {
  background: radial-gradient(circle at 50% 0%, #14241b 0%, #0c1511 100%);
  padding: 52px;
  color: #ffffff;
  position: relative;
}

.comp-header {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-header-badge {
  background: linear-gradient(135deg, var(--color-accent-lime-bright) 0%, var(--color-accent-lime) 100%);
  color: #0b0b0c;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(158, 252, 101, 0.4);
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.comp-item.bad {
  color: var(--text-inverse-secondary);
}

.comp-item.bad .icon-cross {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 1.15rem;
}

.comp-item.good {
  color: #ffffff;
  font-weight: 500;
}

.comp-item.good .icon-check {
  color: var(--color-accent-lime);
  font-weight: 700;
  font-size: 1.15rem;
  text-shadow: 0 0 10px rgba(158, 252, 101, 0.4);
}

.founder-quote-banner {
  background: radial-gradient(circle at 50% 0%, #1c1e20 0%, #0c0d0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-lg);
  overflow: hidden;
}

.founder-illustration-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 340px;
  background: #141517;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.founder-illustration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease-smooth);
}

.founder-quote-banner:hover .founder-illustration-img {
  transform: scale(1.04);
}

.founder-quote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.founder-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.founder-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.founder-role {
  font-size: 0.9rem;
  color: var(--color-accent-lime);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-bento-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--color-surface-light);
  border-radius: var(--radius-2xl);
  padding: 48px;
  border: 1px solid var(--color-border-lighter);
  box-shadow: var(--shadow-md);
}

.testimonial-avatar-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.avatar-select-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: left;
}

.workflow-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.workflow-icon svg {
  width: 23px;
  height: 23px;
}

.avatar-select-btn.active {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.avatar-select-btn.active .workflow-icon {
  background: #f7f7f7;
}

.avatar-select-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.avatar-select-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.testimonial-display-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-lighter);
}

.testimonial-quote-huge {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 32px;
}


/* --------------------------------------------------------------------------
   8. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 48px auto 0;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--color-surface-light);
  border: 1px solid var(--color-border-lighter);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.14);
}

.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.faq-item.is-active .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--color-accent-lime);
}

.faq-answer-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   9. FOOTER & GLOBAL CTA
   -------------------------------------------------------------------------- */
.footer-cta-container {
  background: radial-gradient(circle at 50% 0%, #152219 0%, #0b0b0c 80%);
  border-radius: var(--radius-2xl);
  padding: 100px 60px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-lg);
}

.footer-hero-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.footer-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 32px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-dark-border-subtle);
}

.footer-newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 20px;
  max-width: 360px;
}

.newsletter-input {
  flex: 1;
  color: #ffffff;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: var(--text-inverse-muted);
}

.newsletter-submit {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b0b0c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.newsletter-submit:hover {
  transform: scale(1.08);
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-inverse-muted);
  margin-bottom: 20px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  color: var(--text-inverse-secondary);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-link-list a:hover {
  color: var(--color-accent-lime);
}

.footer-watermark-logo {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 0.8;
  letter-spacing: -0.05em;
  text-align: center;
  margin-top: 40px;
  pointer-events: none;
  user-select: none;
}

/* ==========================================================================
   PRICING SECTION (SIMPLE, HONEST PRICING)
   ========================================================================== */
.pricing-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0A0A0A;
  margin: 0;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  transition: color 0.15s ease;
  user-select: none;
}

.pricing-toggle-label.active {
  color: #0A0A0A;
}

.pricing-switch {
  position: relative;
  height: 28px;
  width: 52px;
  border-radius: 9999px;
  background: #D4D4D4;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: background 0.2s ease;
}

.pricing-switch:focus-visible {
  box-shadow: 0 0 0 2px #0A0A0A, 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.pricing-switch-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: left 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-discount-pill {
  border-radius: 9999px;
  background: #0A0A0A;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
  padding: 0 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FAFAFA;
  border: 1px solid #EBEBEB;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: #D6D6D6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.pricing-card-highlighted {
  background: #0A0A0A;
  color: #ffffff;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  margin-top: -14px;
  margin-bottom: 14px;
}

.pricing-card-highlighted:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.pricing-badge-recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: #ffffff;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0A0A0A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.pricing-badge-limited {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: #FF5101;
  color: #ffffff;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(255, 81, 1, 0.35);
  white-space: nowrap;
  z-index: 10;
}

.pricing-plan-name {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 2px 0;
  color: #0A0A0A;
}

.pricing-card-highlighted .pricing-plan-name {
  color: #ffffff;
}

.pricing-plan-tagline {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px 0;
}

.pricing-card-highlighted .pricing-plan-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-strike-price {
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through;
  color: #999;
  margin-right: 4px;
}

.pricing-num {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0A0A0A;
}

.pricing-card-highlighted .pricing-num {
  color: #ffffff;
}

.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.pricing-card-highlighted .pricing-period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-billing-note {
  font-size: 12px;
  color: #777;
  min-height: 20px;
  margin: 0 0 16px 0;
}

.pricing-card-highlighted .pricing-billing-note {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-description {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  min-height: 44px;
  margin: 0 0 24px 0;
}

.pricing-card-highlighted .pricing-description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 24px;
}

.pricing-cta-btn.btn-dark {
  background: #0A0A0A;
  color: #ffffff;
}

.pricing-cta-btn.btn-dark:hover {
  background: #1C1C1E;
}

.pricing-cta-btn.btn-white {
  background: #ffffff;
  color: #0A0A0A;
}

.pricing-cta-btn.btn-white:hover {
  background: rgba(255, 255, 255, 0.92);
}

.pricing-divider {
  height: 1px;
  width: 100%;
  background: #EBEBEB;
  margin-bottom: 20px;
}

.pricing-card-highlighted .pricing-divider {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-features-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 16px;
}

.pricing-card-highlighted .pricing-features-heading {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.pricing-card-highlighted .pricing-feature-item {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-check-icon {
  display: flex;
  height: 18px;
  width: 18px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0A0A0A;
  margin-top: 1px;
}

.pricing-check-highlight {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-disclaimer {
  margin: 32px auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: #777;
}

/* ==========================================================================
   3D FANNED PLATFORM CARDS SECTION (REDDIT, X, BLUESKY)
   ========================================================================== */
.fanned-channels-section {
  padding: 100px 0 120px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.fanned-header {
  text-align: center;
  margin-bottom: 60px;
}

.fanned-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #0A0A0A;
  margin: 0 0 14px;
}

.fanned-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

.fanned-cards-wrapper {
  position: relative;
  height: 590px;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.fanned-card {
  position: absolute;
  width: 340px;
  height: 530px;
  border-radius: 24px;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
  user-select: none;
  will-change: transform;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fanned-card.is-active {
  background: #1E293B;
  color: #ffffff;
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.38), 0 10px 25px rgba(15, 23, 42, 0.2);
  filter: blur(0px);
}

.fanned-card.is-side {
  background: #475569;
  color: #F1F5F9;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  filter: blur(0.4px);
}

.fanned-card.is-side:hover {
  filter: blur(0px);
  opacity: 0.92 !important;
}

.fanned-card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fanned-card:hover .fanned-card-icon-box {
  transform: scale(1.05);
}

.icon-box-reddit {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.reddit-squircle-icon-img {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.45);
}

.icon-box-x {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.icon-box-bluesky {
  background: #0085FF;
  box-shadow: 0 8px 20px rgba(0, 133, 255, 0.35);
}

.fanned-card-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25em;
  margin: 0 0 10px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.fanned-card-desc {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: #ffffff;
  margin: 0 0 20px;
  flex-grow: 1;
  -webkit-font-smoothing: antialiased;
}

.fanned-card.is-side .fanned-card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.fanned-card-preview {
  width: 100%;
  height: 215px;
  border-radius: 16px;
  background: rgba(10, 15, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.fanned-card-preview-media {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0F1A;
}

.fanned-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fanned-preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}

.pill-reddit {
  background: rgba(255, 69, 0, 0.2);
  color: #FF7A45;
  border: 1px solid rgba(255, 69, 0, 0.4);
}

.pill-x {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill-bluesky {
  background: rgba(0, 133, 255, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(0, 133, 255, 0.4);
}

.fanned-preview-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.fanned-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.fanned-preview-score {
  font-weight: 700;
  color: #9EFC65;
}

.fanned-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.fanned-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  padding: 0;
}

.fanned-indicator-dot.active {
  background: #0F172A;
  width: 28px;
  border-radius: 10px;
}

/* ==========================================================================
   ORIGINAL BUYERWATCH SECTIONS (1:1 PIXEL PARITY)
   ========================================================================== */

/* ─── 1. Your partner in organic growth ─── */
.organic-partner-section {
  padding: 100px 0 90px;
  background: #ffffff;
  position: relative;
}

.organic-partner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.organic-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.organic-partner-title {
  font-family: var(--font-jakarta), var(--font-inter), sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.organic-accordion-divider {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 4px;
}

.organic-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.organic-accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
}

.organic-accordion-title {
  font-family: var(--font-jakarta), var(--font-inter), sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #ADADAD;
  transition: color 0.2s;
}

.organic-accordion-item.active .organic-accordion-title {
  color: #0A0A0A;
}

.organic-accordion-icon-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.organic-accordion-item.active .organic-accordion-icon-badge {
  transform: rotate(180deg);
}

.organic-accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.organic-accordion-item.active .organic-accordion-body {
  max-height: 140px;
  opacity: 1;
}

.organic-accordion-desc {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.65;
  padding-bottom: 24px;
  padding-right: 40px;
}

/* Original Lead Discovery Card */
.lead-discovery-card {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  background: #ffffff;
  padding: 28px;
  height: 400px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.lead-discovery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-discovery-title {
  font-family: var(--font-jakarta), var(--font-inter), sans-serif;
  font-weight: 750;
  font-size: 16px;
  color: #15191D;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.lead-discovery-sub {
  margin-top: 4px;
  font-family: var(--font-inter), sans-serif;
  font-size: 11px;
  color: #7D8790;
  line-height: 1.45;
}

.lead-discovery-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-inter), sans-serif;
  font-size: 10.5px;
  color: #66717B;
  font-weight: 550;
}

.lead-discovery-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 6px;
}

.organic-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.organic-feature-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.organic-feature-item:hover {
  transform: translateY(-4px);
}

.organic-feature-icon {
  margin-bottom: 20px;
  color: #FF5101;
}

.organic-feature-h4 {
  font-family: var(--font-jakarta), var(--font-inter), sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0A0A0A;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.organic-feature-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 1.5;
  max-width: 220px;
}

/* ─── 2. Measure what happens after the reply ─── */
.measure-reply-section {
  padding: 100px 0 90px;
  background: #ffffff;
  position: relative;
}

.measure-reply-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

.section-badge-blue {
  background: rgba(10, 132, 255, 0.08);
  color: #0A84FF;
  border: 1px solid rgba(10, 132, 255, 0.15);
}

.section-badge-orange {
  background: rgba(255, 81, 1, 0.08);
  color: #FF5101;
  border: 1px solid rgba(255, 81, 1, 0.15);
}

.measure-reply-h2 {
  font-family: var(--font-jakarta), var(--font-inter), sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0A0A0A;
  max-width: 560px;
  margin: 0 auto 52px;
}

.measure-bento-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.measure-bento-row-top {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
}

.measure-bento-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.buyerwatch-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.buyerwatch-card:hover {
  transform: translateY(-3px);
}

.buyerwatch-card-h4 {
  font-family: var(--font-jakarta), var(--font-inter), sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  margin-bottom: 5px;
}

.buyerwatch-card-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.6;
}

/* Traffic Widget in Bento */
.traffic-widget-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 280px;
  width: 100%;
}

.traffic-gridlines-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0.06;
  padding: 0 4px;
}

.traffic-gridline-item {
  height: 100%;
  width: 1px;
  border-right: 1px dashed #0A0A0A;
}

.traffic-bars-stack {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 4px;
  margin: auto 0;
}

.traffic-row-track {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.traffic-fill-strip {
  height: 100%;
  border-radius: 12px;
}

.traffic-badge-tag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  height: 24px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid;
  background: #ffffff;
  font-family: var(--font-inter), sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0A0A0A;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.traffic-footer-legend {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-inter), sans-serif;
  font-size: 13px;
  font-weight: 500;
}

/* ─── 3. Automation earns trust before it acts ─── */
.trust-safeguards-section {
  padding: 104px 0 128px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 10%, #F8F8F8 30%, #F8F8F8 55%, #FBFBFB 78%, #FFFFFF 100%);
  position: relative;
}

.trust-safeguards-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.trust-safeguards-h2 {
  font-family: 'Switzer', var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0b0b0c;
  margin-bottom: 16px;
}

.trust-safeguards-subtitle {
  font-family: "Stack Sans Headline", "Inter", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: #6a6e6e;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 64px;
}

.trust-safeguards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  text-align: center;
}

.trust-safeguard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease;
}

.trust-safeguard-card:hover {
  transform: translateY(-4px);
}

.trust-icon-container {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  line-height: 0;
  transition: transform 0.25s ease;
}

.trust-safeguard-card:hover .trust-icon-container {
  transform: scale(1.05);
}

.trust-card-h4 {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: #0b0b0c;
  margin: 0 auto 12px;
  text-align: center;
  font-feature-settings: "cv01", "cv02", "cv03", "cv04", "cv11", "calt";
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1199px) {
  .trust-card-h4 {
    font-size: 22px;
  }
}

@media (max-width: 799px) {
  .trust-card-h4 {
    font-size: 18px;
  }
}

.trust-card-p {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  color: #6a6e6e;
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
  font-feature-settings: "cv01", "cv02", "cv03", "cv04", "cv11", "calt";
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1199px) {
  .trust-card-p {
    font-size: 14px;
  }
}

@media (max-width: 799px) {
  .trust-card-p {
    font-size: 12px;
  }
}

/* ─── Animated SVG Keyframes for 6 Feature Icons ─── */
@keyframes chipSlide1 {

  0%,
  100% {
    transform: translateX(-2px);
  }

  50% {
    transform: translateX(2px);
  }
}

@keyframes chipSlide2 {

  0%,
  100% {
    transform: translateX(2px);
  }

  50% {
    transform: translateX(-2px);
  }
}

@keyframes chipSlide3 {

  0%,
  100% {
    transform: translateX(-1.5px);
  }

  50% {
    transform: translateX(1.5px);
  }
}

@keyframes arcWobble {

  0%,
  100% {
    transform: rotate(0deg);
  }

  33% {
    transform: rotate(5deg);
  }

  66% {
    transform: rotate(-5deg);
  }
}

@keyframes pulseCircleAnim {

  0%,
  20%,
  80%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }

  50% {
    opacity: 1;
    transform: translate(-8px, 0) scale(1.2);
  }
}

@keyframes eqBar1 {

  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1.4);
  }
}

@keyframes eqBar2 {

  0%,
  100% {
    transform: scaleY(0.6);
  }

  50% {
    transform: scaleY(1.2);
  }
}

@keyframes eqBar3 {

  0%,
  100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1.3);
  }
}

@keyframes eqBar4 {

  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1.3);
  }
}

@keyframes queueBackAnim {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(1.5px, -1.5px);
  }
}

@keyframes queueFrontAnim {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-1.5px, 1.5px);
  }
}

@keyframes drawCheckmark {

  0%,
  100% {
    stroke-dashoffset: 12;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

@keyframes clockMinuteHand {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes clockHourHand {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(30deg);
  }
}

@keyframes envelopeReportRise {

  0%,
  25%,
  80%,
  100% {
    transform: translateY(7px);
    opacity: 0;
  }

  45%,
  65% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes trendDrawPath {

  0%,
  100% {
    stroke-dashoffset: 35;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

/* --------------------------------------------------------------------------
   4. SYSTEM CARDS SECTION (1:1 EXUBERANT-FUTURE 6-CARD GRID)
   -------------------------------------------------------------------------- */
.system-cards-section {
  padding: 100px 0 80px;
  background: var(--color-canvas);
}

.system-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.system-section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: #4b4f56;
  letter-spacing: -0.015em;
  margin: 0 auto;
  max-width: 600px;
}

.system-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.system-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 96, 255, 0.09), 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 96, 255, 0.25);
}

.system-card-visual {
  height: 160px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.system-card-content {
  margin-top: auto;
}

.system-card-title {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-align: left;
  color: #0b0b0c;
  margin: 0 0 12px;
  font-feature-settings: "cv01", "cv02", "cv03", "cv04", "cv11", "calt";
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1199px) {
  .system-card-title {
    font-size: 22px;
  }
}

@media (max-width: 799px) {
  .system-card-title {
    font-size: 18px;
  }
}

.system-card-desc {
  font-family: 'Inter Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  color: #6a6e6e;
  text-align: left;
  margin: 0;
  font-feature-settings: "cv01", "cv02", "cv03", "cv04", "cv11", "calt";
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1199px) {
  .system-card-desc {
    font-size: 14px;
  }
}

@media (max-width: 799px) {
  .system-card-desc {
    font-size: 12px;
  }
}

/* Card 1: Trend Visual */
.visual-trend svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Card 2: Orbit Visual (3-Node: Reddit, X, Bluesky) */
.orbit-box-3nodes {
  width: 170px;
  height: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring-3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  pointer-events: none;
}

.ring-outer {
  width: 150px;
  height: 150px;
}

.ring-inner {
  width: 88px;
  height: 88px;
}

.orbit-channel-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  z-index: 2;
}

.orbit-channel-node:hover {
  transform: scale(1.12);
}

.node-reddit {
  left: 0;
  top: calc(50% - 22px);
  background: #FF4500;
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.32);
}

.node-x-center {
  left: calc(50% - 22px);
  top: calc(50% - 22px);
  background: #0B0B0C;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.node-bluesky {
  right: 0;
  top: calc(50% - 22px);
  background: #0A84FF;
  box-shadow: 0 4px 14px rgba(10, 132, 255, 0.32);
}

/* Card 3: Shield Visual */
.visual-shield {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-shield svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.system-card:hover .visual-shield svg {
  transform: translateY(-3px) scale(1.04);
}

/* Card 4: Cloud Hub Visual */
.visual-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
}

.triage-network-img {
  height: 145px;
  max-height: 150px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 96, 255, 0.08));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.system-card:hover .triage-network-img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 12px 24px rgba(0, 96, 255, 0.16));
}

/* Card 5: Bars Visual */
.growth-bars-flex {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
}

.pillar {
  width: 22px;
  border-radius: 6px;
  background: #0060FF;
  box-shadow: 0 4px 12px rgba(0, 96, 255, 0.3);
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.system-card:hover .pillar {
  transform: translateY(-2px);
}

.bar-p1 {
  height: 75px;
}

.bar-p2 {
  height: 50px;
}

.bar-p3 {
  height: 32px;
}

.bar-p4 {
  height: 65px;
}

.bar-p5 {
  height: 95px;
}

/* Card 6: Reporting Visual */
.reporting-box {
  width: 200px;
  height: 120px;
  position: relative;
}

.report-card-mockup {
  width: 100%;
  height: 100%;
  background: #F1F5F9;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.report-mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-donut {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #3B82F6;
  border-right-color: #93C5FD;
}

.report-pills {
  display: flex;
  gap: 6px;
}

.r-pill {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 6px;
  background: #ffffff;
  border-radius: 4px;
  color: #475569;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.r-highlight {
  background: #EFF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}

.glass-lens-overlay {
  position: absolute;
  top: 32px;
  left: 64px;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.system-card:hover .glass-lens-overlay {
  transform: translate(4px, -3px) scale(1.05);
}

.lens-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 6px solid #2563EB;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.7) 0%, rgba(191, 219, 254, 0.3) 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.lens-arm {
  position: absolute;
  width: 7px;
  height: 24px;
  background: #1E40AF;
  border-radius: 3px;
  bottom: -16px;
  right: -8px;
  transform: rotate(-45deg);
  transform-origin: top center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .system-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .system-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   5. GROWTH YOU CAN POINT AT (CASE STUDIES / RESULTS BENTO)
   -------------------------------------------------------------------------- */
.case-studies-section {
  padding: 80px 0 100px;
  background: var(--color-canvas);
}

.case-studies-header {
  text-align: center;
  margin-bottom: 56px;
}

.case-studies-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 600;
  color: #0b0b0c;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.case-studies-subtitle {
  font-family: "Stack Sans Headline", "Inter", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: #6a6e6e;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

.case-studies-bento {
  max-width: 1092px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-studies-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cs-card {
  border-radius: 36px;
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Card 1: Yellow / Peak ROAS */
.cs-card-yellow {
  background-color: #FDE589;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.cs-pill-dark {
  background: #111213;
  color: #ffffff;
}

.cs-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 8px #38BDF8;
}

.cs-metric-huge {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #0b0b0c;
  margin-bottom: 16px;
}

.cs-card-desc {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1c1e;
  line-height: 1.4;
  margin: 0;
  max-width: 320px;
}

/* Card 2: Grey / Spending Efficiency */
.cs-card-grey {
  background-color: #F0F0F0;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs-card-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cs-header-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a4e50;
  line-height: 1.2;
}

.cs-pill-white {
  background: #ffffff;
  color: #0b0b0c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cs-card-center {
  text-align: center;
  margin: 16px 0;
}

.cs-metric-center {
  margin-bottom: 20px;
}

.cs-bars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cs-bar {
  width: 22px;
  height: 44px;
  border-radius: 6px;
  background-color: #D6D6D6;
  transition: transform 0.3s ease;
}

.cs-card:hover .cs-bar {
  transform: scaleY(1.05);
}

.cs-bar-pink {
  background-color: #FFBCFC;
  box-shadow: 0 0 12px rgba(255, 188, 252, 0.6);
}

.cs-card-caption {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6a6e6e;
  line-height: 1.4;
  margin: 0;
}

/* Card 3: Full Width Dark Card */
.cs-card-dark-full {
  background: #111415;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.cs-dark-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-oval-photo-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 120px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.cs-card-dark-full:hover .cs-oval-photo-wrapper {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.cs-oval-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  transform: scale(1.16);
  transition: transform 0.4s ease;
}

.cs-card-dark-full:hover .cs-oval-photo {
  transform: scale(1.22);
}

.cs-logo-overlay {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-client-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

.cs-dark-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-growth-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #B7BCBC;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cs-metric-lime {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 6.5vw, 5.8rem);
  font-weight: 700;
  color: #9EFC65;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-shadow: 0 0 32px rgba(158, 252, 101, 0.4);
}

.btn-case-study {
  background: #ffffff;
  color: #0b0b0c;
  border-radius: 100px;
  padding: 8px 10px 8px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn-case-study:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}

.btn-arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0b0b0c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.btn-case-study:hover .btn-arrow-circle {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .case-studies-top-grid {
    grid-template-columns: 1fr;
  }

  .cs-card-dark-full {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-oval-photo-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }
}

@keyframes radarRingPulse {

  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes diamondAiSpin {
  0% {
    transform: scale(0.9) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(180deg);
  }

  100% {
    transform: scale(0.9) rotate(360deg);
  }
}

/* --------------------------------------------------------------------------
   AI LEAD QUALIFICATION & AUTOMATION SHOWCASE (1:1 ORIGINAL BUYERWATCH)
   -------------------------------------------------------------------------- */
.ai-showcase-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.ai-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 1024px) {
  .ai-showcase-grid {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
}

/* Left Tall Black Vertical Window Card */
.ai-visual-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 560px;
  flex-shrink: 0;
  align-self: center;
  border-radius: 28px;
  background-color: #121315;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Orbital Rings Background SVG */
.ai-orbit-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}

.ai-orbit-svg {
  width: 100%;
  height: 100%;
}

/* Center Orange Card Stage */
.ai-center-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding-top: 8px;
}

.ai-orange-score-card {
  width: 230px;
  height: 250px;
  border-radius: 24px;
  background-color: #FF5101;
  box-shadow: 0 16px 44px rgba(255, 81, 1, 0.45), 0 0 28px rgba(255, 81, 1, 0.25);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ai-orange-score-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 52px rgba(255, 81, 1, 0.55);
}

.ai-vector-box {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-score-label {
  color: #FFFFFF;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  display: block;
  font-family: var(--font-display);
}

.ai-score-value {
  color: #FFFFFF;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  white-space: nowrap;
  font-family: var(--font-display);
}

/* Bottom Dark Overlay Box */
.ai-floating-badge {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 20px;
  background-color: #1C1E22;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.ai-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-badge-texts {
  display: flex;
  flex-direction: column;
}

.ai-badge-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.ai-badge-desc {
  font-size: 11.5px;
  line-height: 1.4;
  color: #94A3B8;
}

/* Right Features List */
.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  max-width: 640px;
}

.ai-feature-item {
  padding: 28px 0;
  border-bottom: 1px solid #EDEDED;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.ai-feature-item:last-child {
  border-bottom: none;
}

.ai-feature-item.active {
  border-bottom: 2.5px solid #FF5101;
  padding-bottom: 30px;
}

.ai-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ai-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  margin: 0;
  transition: color 0.2s ease;
}

.ai-feature-item.active .ai-feature-title {
  font-weight: 700;
  color: #0A0A0A;
}

.ai-feature-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748B;
  margin: 0;
  padding-left: 34px;
}

.ai-feature-item.active .ai-feature-desc {
  color: #334155;
}