:root {
  /* Color Palette based on standard modern dark/light themes */
  --bg-primary: #FDFCF9;
  --text-main: #111111;
  --text-muted: #555555;
  --accent-color: #000000;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
}

/* --- 0. RESET & GLOBAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page-container {
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

/* --- 1. STICKY HEADER & NAVIGATION --- */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.top-banner {
  background: #0066FF;
  color: white;
  text-align: center;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
}

.top-banner .divider {
  margin: 0 8px;
  opacity: 0.8;
  font-weight: 400;
}

.main-nav {
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 32px;
  width: 100%;
}

.nav-brand {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1c1c19;
}

.nav-btn {
  background-color: #000;
  color: white;
  border: none;
  border-radius: 9999px;
  width: 255px;
  height: 46px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -1.2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-btn u {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  line-height: 28px;
}

/* Visibility Utilities */
.show-mobile {
  display: none;
}

.hide-mobile {
  display: inline-block;
}

/* --- 2. HERO SECTION --- */
.hero-section {
  width: 100%;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 55px;
  padding-left: 31px;
  padding-right: 31px;
  min-height: 80vh;
  width: 100%;
  gap: 40px;
  margin: 0 auto;
}

.hero-content {
  padding-right: 40px;
  padding-bottom: 90px;
  gap: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 400px;
  max-width: 800px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 19px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  align-self: flex-start;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero-badge-blue {
  background: #D8E5FE;
  color: #001A42;
  border: 1px solid #7CA2F8;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 19px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-green {
  background: #dceca1;
  color: #001a42;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 9999px;
  border: 1px solid #737861;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  align-self: flex-start;
}

.sparkle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--text-main);
  margin-bottom: 0;
  max-width: 800px;
  /* Force 3-line wrap on desktop */
}

.main-heading em {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-desc {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 0;
  line-height: 1.5;
}

.underline-text {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: var(--text-main);
}

.primary-btn {
  background-color: #000;
  color: white;
  border: none;
  border-radius: 9999px;
  width: 312px;
  height: 73px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  align-self: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  letter-spacing: -0.4px;
  text-decoration: none;
  margin-bottom: 0;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-avatar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  width: 100%;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -15px;
  object-fit: cover;
  background: #eee;
  position: relative;
}

.hero-avatars img:last-child {
  margin-right: 0;
}

.hero-avatar-text {
  font-size: 15px;
  color: #444;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* --- 2a. HERO SCROLLING CARDS --- */
.hero-cards-wrapper {
  flex: 1 1 400px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  transform: rotate(-2deg);
  margin-top: -60px;
  height: 850px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.hero-cards-col {
  display: flex;
  flex-direction: column;
  width: 320px;
}

.hero-cards-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 80s linear infinite;
  gap: 15px;
  padding-bottom: 15px;
  /* Matches gap for perfect loop */
}

#scroll-col-2 {
  animation-duration: 45s;
}

@keyframes scroll-vertical {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.hero-cards-wrapper:hover .hero-cards-inner {
  animation-play-state: paused;
}

.hero-feature-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  transition: transform 0.3s;
}

.hero-feature-card:hover {
  transform: scale(1.02);
}

.hf-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
}

.bg-blue {
  background: #E1EAF8;
  color: #2563EB;
}

.bg-pink {
  background: #FDE8ED;
  color: #DB2777;
}

.bg-green {
  background: #E1F5E8;
  color: #059669;
}

.bg-light-pink {
  background: #FCE7F3;
  color: #BE185D;
}

.bg-purple {
  background: #EAE6FE;
  color: #7C3AED;
}

.bg-gray {
  background: #EEF2F6;
  color: #475569;
}

.bg-orange {
  background: #FFEDD5;
  color: #EA580C;
}

.hero-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.hero-feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- 3. TRUST SECTION --- */
.trust-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #F9F8F4;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 60px 24px;
}

.trust-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #949494;
  margin-bottom: 24px;
}

.metrics-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 57px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}

.metric h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #000;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.metric-star {
  font-size: 32px;
  color: #FFB800;
}

.metric p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #949494;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

/* --- 4. SKILLS SECTION --- */
.skills-section {
  padding: 80px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.skills-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.br-mobile {
  display: none;
}

@media (max-width: 768px) {
  .br-mobile {
    display: block;
  }
}

.section-title-skills {
  margin-bottom: 12px;
}

.section-title-features {
  margin-bottom: 50px;
}

.section-title-testimonials {
  margin-bottom: 55px;
}

.section-title-steps {
  margin-bottom: 64px;
}

.section-title-comparison {
  margin-bottom: 64px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.skill-card {
  background: white;
  border-radius: 55px;
  padding: 40px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-8px);
}

.skill-card.bg-blue {
  background-color: #F0F6FF;
}

.skill-card.bg-pink {
  background-color: #FFF0F9;
}

.skill-card.bg-green {
  background-color: #def9d7;
}

.skill-card.bg-tan {
  background-color: #ffead7;
}

.skill-card.bg-cyan {
  background-color: #e5f3f6;
}

.skill-card.bg-yellow {
  background-color: #FBFFD8;
}

.skill-card.bg-red {
  background-color: #FFF1F2;
}

.skill-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: white;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.skill-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
  letter-spacing: -0.02em;
}

.skill-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  font-weight: 400;
  padding-right: 19px;
}

.skill-desc strong {
  font-weight: 700;
}

.more-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: white;
  padding: clamp(9px, calc(0.32vw + 7.4px), 12px) 24px 12px clamp(32px, calc(1.73vw + 23.1px), 48px);
  border-radius: 100px;
  border: 8px solid transparent;
  background-image: linear-gradient(#000, #000), linear-gradient(to right, #656565 0%, #414141 16%, #585858 65%, #C8C8C8 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  margin-top: 40px;
  gap: 16px;
}

.more-bar span,
.more-bar strong {
  font-family: var(--font-heading);
  font-size: clamp(22px, calc(1.85vw + 8.4px), 35px);
  line-height: clamp(32px, calc(4vw - 4px), 48px);
}

.more-bar span {
  font-weight: 700;
  letter-spacing: -2px;
}

.more-bar strong {
  font-weight: 800;
  color: #FFC9C9;
  letter-spacing: clamp(-1px, calc(0.12vw - 2.1px), -0.02em);
  margin-left: 8px;
}

@media (max-width: 983px) {
  .more-bar strong {
    display: none;
  }
}

.hide-tablet {
  display: inline-block;
  overflow: hidden;
  max-width: clamp(0px, calc((100vw - 600px) * 1000), 1000px);
  opacity: clamp(0, calc((100vw - 600px) * 1000), 1);
  white-space: nowrap;
  vertical-align: bottom;
  transition: opacity 0.2s, max-width 0.2s;
}

.minimal-btn {
  background: white;
  color: #111;
  border: none;
  border-radius: 100px;
  padding: 10px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1.2px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  line-height: 28px;
}

/* --- DATA SECTION VIEW SEPARATION --- */
.data-view-tablet {
  display: none;
}

.data-view-desktop {
  display: block;
}

/* --- 5. DATA SECTION (Bento Grid) --- */
.data-section {
  padding: 50px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.data-grid-container {
  display: flex;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.data-col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 400px;
}

.data-col-right {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.data-card {
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.data-card:hover {
  transform: translateY(-5px);
}

.data-card.main-card {
  background-color: #F6F4E8;
  color: #111;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  flex: 1;
}

.data-card.dark-card {
  background-color: #111;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-forecast {
  background-image: linear-gradient(to left bottom, #1a1a1a, #16222a, #1b2735, #090a0f);
}

.bento-ads {
  background-image: linear-gradient(to left bottom, #190000, #270614, #310929, #301345, #002464);
}

.bento-emails {
  background-image: linear-gradient(to right top, #051937, #001f3e, #002544, #002b49, #00314d);
}

.bento-ugc {
  background-image: linear-gradient(to left bottom, #230816, #2d0c1c, #381022, #431428, #4e182f);
}

.data-card.dark-card:not(.bento-forecast):not(.bento-ads):not(.bento-emails):not(.bento-ugc) {
  background-image: linear-gradient(to left bottom, #111, #1a1a1a, #222);
}

.data-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.8px;
}

.data-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-top: 11px;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

.data-card p {
  font-size: 18px;
  line-height: 1.4;
  color: #444;
  max-width: 90%;
  margin-bottom: 23px;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.7);
}

.data-card.wide-card {
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 30px;
  overflow: hidden;
}

.data-card.wide-card.bento-forecast {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.data-card.wide-card h3 {
  margin-bottom: 0;
  flex: 0 0 23%;
  font-size: 20px;
  text-align: left;
  min-height: auto;
}

/* Bento Utilities */
.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.bento-header-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bento-placeholder.bento-red {
  background-color: #B9001D;
  height: 100px;
  width: 100%;
  border-radius: 4px;
  margin-top: auto;
}

.data-logos {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 25px);
  justify-content: center;
  position: relative;
  flex-grow: 1;
  width: 100%;
}

.logo-box {
  flex: 1 1 0;
  max-width: 165px;
  min-width: 0;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.logo-box.outline-box {
  background: transparent;
  box-shadow: none;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.logo-box svg,
.logo-box img {
  max-width: 54%;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  color: #222;
  line-height: 1;
  text-align: center;
  letter-spacing: -1.5px;
}

.logo-text small {
  font-size: clamp(7px, 1vw, 10px);
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-top: 6px;
  color: #666;
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 clamp(-30px, -2vw, -10px);
  z-index: 10;
  position: relative;
  flex-shrink: 0;
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 12px;
  margin: auto 0;
  /* Center vertically in the middle */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ads-img {
  background-image: url('BeforeAfter.png');
  background-color: #000;
  border: none;
}

.emails-img {
  background-image: url('BeforeAfter.png');
  background-color: #000;
  border: none;
}

.ugc-img {
  background-image: url('BeforeAfter.png');
  background-color: #000;
  border: none;
}

.images-img {
  background-image: url('BeforeAfter.png');
  background-color: #000;
  border: none;
}

.bento-forecast {
  padding-left: 0;
  padding-right: 0;
  background-color: #0D1117;
  color: white;
  height: 38%;
}

.forecast-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 24px;
  padding: 0 33px;
}

.forecast-header .f-metric-bottom {
  color: #ffffff;
}

.chart-container {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.chart-svg {
  width: 100%;
  height: 140px;
  max-height: 200px;
}

.chart-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0.1;
  padding: 20px 0;
}

.chart-grid-lines span {
  width: 100%;
  height: 1px;
  background: white;
}

.chart-line {
  fill: none;
  stroke: #3B82F6;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.8));
  animation: chart-draw 3s ease-out forwards, chart-wave 4s ease-in-out infinite 3s;
}

.chart-area {
  animation: chart-fade-in 1.5s ease-out forwards;
}

.chart-point-wrapper {
  animation: chart-wave 4s ease-in-out infinite 3s;
}

.chart-point.pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-dot 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes chart-draw {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

@keyframes chart-wave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes chart-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 0.6;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* --- 6. STEPS SECTION --- */
.steps-section {
  padding: 80px 32px;
  background: #FAFAFA;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 64px;
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.step-card.reverse {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background: #86966C;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 20px;
  border: 4px solid #DEE9A4;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-image {
  flex: 1;
  height: 240px;
  border-radius: 16px;
  background: #E1D8CF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.step-img-1 {
  background-image: url('step1.png');
}

.step-img-2 {
  background-image: url('step2.png');
}

.step-img-3 {
  background-image: url('step3.png');
}

/* --- 7. COMPARISON SECTION --- */
.comparison-section {
  padding: 100px 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.comparison-section .section-title {
  text-align: center;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 64px;
}

.comparison-container {
  background: #E1D8CF;
  border-radius: 48px;
  padding: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.02);
}

.comparison-table-wrapper {
  background-color: #111;
  border-radius: 32px;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 23px;
  border-bottom: 3.5px solid rgb(0 0 0 / 5%);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  padding-left: 31px;
}

.col-method {
  width: 25%;
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.col-claude {
  width: 25%;
}

.col-freelance,
.col-generic {
  width: 25%;
  font-size: 18px;
  font-weight: 600;
}

.highlight-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.highlight-header .title {
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
}

.highlight-header .badge {
  color: #df7259;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0;
}

.comparison-table th.col-claude {
  background-color: #2c2c2c;
  border-left: 4px solid #DEE9A4;
  color: #ffffff;
}

.comparison-table td.highlight-cell {
  background-color: #4b553d;
  border-left: 4px solid #DEE9A4;
  font-weight: 500;
  font-size: 16px;
}

.comparison-table td.dim-text {
  color: #888;
  font-size: 16px;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- 8. FEATURES GRID SECTION --- */
.features-grid-section {
  padding: 80px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.f-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.f-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}

.f-metric-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.1;
}

.f-metric-top {
  font-size: 11px;
  font-weight: 700;
  color: #ff8f6f;
  margin-bottom: 2px;
}

.f-metric-bottom {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #232323;
}

.f-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.f-skills {
  background: #d0e4dc;
}

.f-analyzer {
  background: #EBEAE8;
}

.f-loyalty {
  background: #e9e4ce;
}

.f-report {
  grid-column: span 2;
  background: #e2dcd0;
}

.f-report .f-header {
  margin-bottom: 18px;
}

.f-report h3 {
  margin-bottom: 16px;
}

.f-lifetime {
  background: #1e1e1e;
  color: white;
  justify-content: flex-start;
  position: relative;
}

.f-lifetime-graphic {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.integration-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  position: relative;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.step-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 236, 161, 0.05);
  border: 1px solid rgba(220, 236, 161, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  animation: node-pulse 4.5s infinite;
}

.step-node:nth-child(1) .step-icon {
  animation-delay: 0s;
}

.step-node:nth-child(3) .step-icon {
  animation-delay: 1.5s;
}

.step-icon img {
  width: 65%;
  height: 65%;
  object-fit: contain;
}

.step-node:nth-child(5) .step-icon {
  animation-delay: 3s;
}

.step-label {
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-line {
  flex: 1;
  height: 1px;
  background: rgba(220, 236, 161, 0.1);
  margin-top: -18px;
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 236, 161, 0.4), transparent);
  animation: line-flow 4.5s infinite;
}

.step-line:nth-child(2)::after {
  animation-delay: 0.7s;
}

.step-line:nth-child(4)::after {
  animation-delay: 2.2s;
}

@keyframes node-pulse {

  0%,
  20%,
  100% {
    transform: scale(1);
    background: rgba(220, 236, 161, 0.05);
    border-color: rgba(220, 236, 161, 0.2);
  }

  10% {
    transform: scale(1.1);
    background: rgba(220, 236, 161, 0.2);
    border-color: rgba(220, 236, 161, 0.5);
    box-shadow: 0 0 20px rgba(220, 236, 161, 0.2);
  }
}

@keyframes line-flow {
  0% {
    left: -100%;
  }

  30%,
  100% {
    left: 100%;
  }
}

.f-lifetime .f-badge {
  border: 1px solid rgb(255 255 255 / 20%);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.f-lifetime h3 {
  color: white;
}

.f-lifetime p {
  color: rgba(255, 255, 255, 0.7);
}

.f-lifetime .f-metric-bottom {
  color: #ffffff;
}

.f-lifetime .f-metric-top {
  color: #dceca1;
}

.f-report .f-content {
  flex-direction: row;
  align-items: center;
  gap: 22px;
}

.f-text-col {
  flex: 1.2;
}

.f-graphic-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.report-mockup {
  background: #FCF9F4;
  border: 1px solid rgba(72, 72, 71, 0.2);
  border-radius: 5px;
  width: 375px;
  height: 214px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.report-header {
  background: #20201f;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-dot {
  width: 6px;
  height: 6px;
  background: #ff8f6f;
  border-radius: 50%;
}

.report-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #fff;
  opacity: 0.8;
}

.report-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Animation Classes */
.report-skeleton-1,
.report-skeleton-2 {
  height: 8px;
  background: #ddd;
  border-radius: 9999px;
  opacity: 0;
  width: 0;
  animation: skeleton-load 5s infinite;
}

.report-skeleton-1 {
  width: 180px;
  animation-delay: 0.2s;
}

.report-skeleton-2 {
  width: 120px;
  animation-delay: 0.4s;
}

.report-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.report-metric {
  padding: 10px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  transform: translateY(10px);
  animation: report-fade-up 5s infinite;
}

.report-metric.m-revenue {
  background: rgba(255, 143, 111, 0.1);
  animation-delay: 0.8s;
}

.report-metric.m-cvr {
  background: rgba(255, 127, 125, 0.1);
  animation-delay: 1s;
}

.m-val {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
}

.m-label {
  font-size: 8px;
  color: #adaaaa;
}

.report-btn {
  margin-top: 4px;
  background: #ff8f6f;
  color: #111;
  font-size: 8px;
  font-weight: 800;
  padding: 6px;
  border-radius: 3px;
  text-align: center;
  transition: transform 0.2s;
  animation: report-btn-react 5s infinite;
}

.report-cursor {
  position: absolute;
  top: 80%;
  left: 80%;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: report-cursor-move 5s infinite;
}

/* Keyframes */
@keyframes skeleton-load {

  0%,
  15% {
    opacity: 0;
    width: 0;
  }

  25%,
  90% {
    opacity: 1;
    width: var(--final-w);
  }

  95%,
  100% {
    opacity: 0;
  }
}

/* Override variables for skeletons */
.report-skeleton-1 {
  --final-w: 180px;
}

.report-skeleton-2 {
  --final-w: 120px;
}

@keyframes report-fade-up {

  0%,
  30% {
    opacity: 0;
    transform: translateY(10px);
  }

  45%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
  }
}

@keyframes report-cursor-move {

  0%,
  40% {
    transform: translate(0, 0);
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  65% {
    transform: translate(-110px, 18px);
  }

  /* Towards the button area */
  70% {
    transform: translate(-110px, 18px) scale(0.8);
  }

  /* Click */
  75% {
    transform: translate(-110px, 18px) scale(1);
  }

  85% {
    opacity: 1;
  }

  95%,
  100% {
    opacity: 0;
  }
}

@keyframes report-btn-react {

  0%,
  68% {
    transform: scale(1);
  }

  70% {
    transform: scale(0.95);
    background: #e87a5a;
  }

  72% {
    transform: scale(1);
  }
}

.f-tags {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.f-tag-dark {
  background: #1f1f1f;
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

.f-tag-light {
  background: #ffc4af;
  color: #d05840;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

.f-alert {
  background: #282828;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 2px;
  width: 100%;
}

.f-alert-icon {
  background: #df7259;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.f-alert-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f-alert-title {
  color: #df7259;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
}

.f-alert-desc {
  color: white;
  font-size: 12px;
  font-weight: 600;
}

/* --- 9. TESTIMONIALS SECTION --- */
.testimonials-section {
  padding: 65px 32px 55px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-grid {
  column-count: 2;
  column-gap: 14px;
  width: 100%;
  padding-bottom: 40px;
}

.testimonial-card {
  break-inside: avoid;
  margin-bottom: 12px;
  background: #111;
  border-radius: 32px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.03);
}

.t-stars {
  color: #ffb400;
  font-size: 14px;
  letter-spacing: 2px;
}

.t-header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #222;
  background-size: cover;
  background-position: center;
}

.t-author-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.t-author-info p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.t-metric {
  background: rgba(105, 200, 129, 0.1);
  color: #69C881;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
}

.t-metric.highlight {
  background: rgba(134, 150, 108, 0.2);
  color: #DEE9A4;
}

.t-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  font-weight: 400;
}

.t-meta {
  font-size: 12px;
  color: #555;
  margin-top: auto;
}

.t-lifestyle-img {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  background-image: url('ads_image.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 12px;
}

/* Avatars */
.avatar-1 {
  background-image: url('assets/titas-avatar.png');
}

.avatar-2 {
  background-image: url('assets/david-avatar.jpg');
}

.avatar-3 {
  background-image: url('assets/jordan-avatar.jpg');
}

.avatar-4 {
  background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=200&h=200&fit=crop');
}

.avatar-5 {
  background-image: url('https://images.unsplash.com/photo-1542909168-82c3e7fdca5c?w=200&h=200&fit=crop');
}

/* Floating Logo Pill Design */
.logo-footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -320px;
  padding-top: 170px;
  padding-bottom: 60px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom, transparent 0%, #000 70%, #000 100%);
  pointer-events: none;
}

.logo-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: white;
  padding: 18px 56px;
  border-radius: 100px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
}

.logo-pill span {
  font-size: 14px;
  color: #111;
  display: inline-block;
}

.brand-goodieco {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-monkeyfist {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.5px;
}

.brand-eliteform {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-nordic {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.brand-vantage {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* --- 10. GUARANTEE SECTION --- */
.guarantee-section {
  padding: 69px 35px 120px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-pill {
  display: inline-block;
  background: #dceca1;
  color: #001a42;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 19px;
  border-radius: 9999px;
  border: 1px solid #737861;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.guarantee-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #000;
  margin-bottom: 32px;
  letter-spacing: -1.5px;
}

.guarantee-section p {
  font-size: 20px;
  line-height: 1.5;
  color: #666;
  max-width: 650px;
  margin: 0 auto 40px;
}

.guarantee-seal {
  width: 100px;
  height: 100px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.guarantee-seal svg {
  width: 32px;
  height: auto;
}

/* --- 11. PRICING SECTION --- */
.pricing-section {
  padding-bottom: 0;
}

.pricing-box {
  max-width: 750px;
  margin: 0 auto 0;
  padding: 60px;
  border-radius: 40px;
  background: linear-gradient(118.891deg, rgb(153, 69, 40) 0%, rgb(218, 119, 86) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-heading {
  font-family: var(--font-heading);
  font-size: 53px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 46px;
  max-width: 700px;
}

.pricing-list {
  width: 100%;
  max-width: 476px;
  list-style: none;
  margin-bottom: 12px;
  padding: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.item-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #d6d6d6;
  flex: 0 0 auto;
}

.dots-leader {
  flex: 1 1 auto;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.3);
  margin-bottom: 5px;
  margin-left: 8px;
  margin-right: 8px;
}

.item-value-strike {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pricing-total {
  width: 100%;
  max-width: 476px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 65px;
  padding-top: 12px;
  padding-bottom: 14px;
  position: relative;
}

.pricing-total::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-image: repeating-linear-gradient(to right, rgba(225, 216, 207, 0.4) 0, rgba(225, 216, 207, 0.4) 2px, transparent 2px, transparent 4px);
}

.total-label {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.total-value-strike {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  text-decoration: line-through;
  color: #fff;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 100%;
}

.price-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.original-strike {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  opacity: 0.5;
  text-decoration: line-through;
  color: #fff;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 75px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.lifetime-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 6px 19px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
}

.pricing-cta-btn {
  background-color: #000;
  color: white;
  border: none;
  border-radius: 9999px;
  width: 320px;
  height: 52px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: -1px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
}

.pricing-cta-btn u {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.pricing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guarantee-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* --- 12. FINAL CTA SECTION --- */
.final-cta-section {
  background: #000;
  color: white;
  padding: 140px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: -128px;
  left: -128px;
  width: 256px;
  height: 256px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  bottom: -96px;
  right: -96px;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 1;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3.6px;
  max-width: 702px;
  margin: 0 auto;
}

.final-cta-heading .highlight {
  color: #dceca1;
}

.final-cta-subtext {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  max-width: 672px;
  text-align: center;
}

.final-cta-subtext u {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
}

.final-cta-guarantee {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 20px;
}

/* Footer stats box */
.footer-trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  padding: 0 0 64px;
  margin-top: -30px;
  /* Pull it up closer to the logo pill */
  position: relative;
  z-index: 11;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: black;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #949494;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

/* --- 13. RESPONSIVE: TABLET & MOBILE (BASE) --- */
@media (max-width: 1198px) {
  .data-section {
    padding: 10px 0;
  }

  /* Data Section Tablet Refinement */
  .data-view-desktop {
    display: none;
  }

  .data-view-tablet {
    display: block;
    width: 100%;
    padding: 20px 16px 70px;
    background: #fff;
  }

  .data-tablet-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Tablet Header Card */
  .data-view-tablet .main-card {
    background: #F6F4E8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transform: none;
    /* remove desktop hover effect */
  }

  .data-view-tablet .main-card h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-align: center;
  }

  .data-view-tablet .data-main-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
  }

  .data-view-tablet .data-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .data-view-tablet .logo-box {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    flex: 0 0 120px;
    aspect-ratio: 1/1;
  }

  .data-view-tablet .logo-box img {
    max-width: 80%;
    height: auto;
  }

  .data-view-tablet .plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
  }

  /* Alternating Rhythm Cards */
  .data-content-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .data-view-tablet .data-rhythm-card {
    background: #0d1117;
    border-radius: 24px;
    display: flex;
    align-items: stretch;
    min-height: 280px;
    overflow: hidden;
    color: #fff;
    padding: 0;
    /* Override desktop card padding */
  }

  .data-view-tablet .rhythm-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .data-view-tablet .rhythm-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    min-height: auto;
    letter-spacing: -0.5px;
  }

  .data-view-tablet .rhythm-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
  }

  .data-view-tablet .rhythm-image {
    flex: 0 0 auto;
    width: 280px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 15px;
    background-origin: content-box;
  }

  /* Specific direction offsets for framing and centering */
  .data-view-tablet .rhythm-image-left .rhythm-image {
    margin-left: 52px;
  }

  .data-view-tablet .rhythm-image-right .rhythm-image {
    margin-right: 33px;
  }

  /* Responsive adjustment for very small tablets */
  @media (max-width: 600px) {
    .data-view-tablet .rhythm-image {
      width: 40%;
      /* Shrink image side on narrower screens */
    }
  }

  /* Footer Bento Row */
  .data-view-tablet .data-footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
    align-items: stretch;
  }

  .data-view-tablet .bento-green-card {
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    color: #111;
    height: 100%;
    overflow: hidden;
  }

  .data-view-tablet .bento-content-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
  }

  .data-view-tablet .bento-visual {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
  }

  .data-view-tablet .bento-forecast {
    background-color: #f0f7ff;
    /* Soft Blue */
  }

  .data-view-tablet .bento-emails-small {
    background-color: #fff0f9;
    /* Soft Pink */
  }

  .data-view-tablet .bento-green-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    flex-shrink: 0;
  }

  .data-view-tablet .bento-green-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .data-view-tablet .bento-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    text-align: left;
    min-height: auto;
    text-transform: none;
    letter-spacing: -1px;
  }

  .data-view-tablet .bento-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.5;
  }

  /* Mini Visuals Styling */
  .mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 84px;
    padding-bottom: 5px;
  }

  .chart-bar {
    width: 17px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.08);
    transition: height 0.3s;
    animation: bar-pulse 3s infinite ease-in-out;
  }

  .bar-1 {
    height: 40%;
    animation-delay: 0s;
  }

  .bar-2 {
    height: 80%;
    animation-delay: 0.5s;
    background: rgba(0, 0, 0, 0.15);
  }

  .bar-3 {
    height: 60%;
    animation-delay: 1s;
  }

  @keyframes bar-pulse {

    0%,
    100% {
      transform: scaleY(1);
    }

    50% {
      transform: scaleY(1.15);
    }
  }

  .mini-email {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 112px;
    background: white;
    padding: 21px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: float-mini 4s infinite ease-in-out;
  }

  .email-line {
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }

  .line-1 {
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
  }

  .line-2 {
    width: 70%;
  }

  .line-3 {
    width: 90%;
  }

  @keyframes float-mini {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  /* Specific rhythm styles for Alternating */
  .data-view-tablet .rhythm-image-left {
    flex-direction: row;
  }

  .data-view-tablet .rhythm-image-right {
    flex-direction: row;
  }

  /* Applying the rhythm: image on left vs image on right */
  .data-view-tablet .rhythm-image-right .rhythm-content {
    order: 1;
    margin-left: 43px;
  }

  .data-view-tablet .rhythm-image-right .rhythm-image {
    order: 2;
  }

  .data-view-tablet .rhythm-image-left .rhythm-content {
    order: 2;
  }

  .data-view-tablet .rhythm-image-left .rhythm-image {
    order: 1;
  }

  .top-banner {
    font-size: 12px;
    padding: 10px 0;
  }

  .banner-extra {
    display: none;
  }

  .nav-inner {
    padding: 18px 16px;
    width: 100%;
    overflow: hidden;
  }

  .nav-brand {
    font-size: 19px;
  }

  .nav-btn {
    width: 159px;
    height: 40px;
    font-size: 15px;
    text-decoration: underline;
  }

  .nav-btn span.hide-mobile {
    display: none;
  }

  .nav-btn span.show-mobile {
    display: inline;
  }

  .hero-section {
    padding-bottom: 0;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    padding: 40px 24px 0;
    min-height: 0;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  /* Allows reordering of children */

  .hero-badge-blue {
    order: 1;
    align-self: center;
    margin-bottom: 24px;
  }

  .main-heading {
    order: 2;
    max-width: 480px;
    text-align: center;
    margin-bottom: 24px;
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-desc {
    order: 3;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.4;
    padding: 0 39px;
  }

  .hero-desc .underline-text {
    display: inline-block;
    margin-top: 8px;
  }

  .hero-cards-wrapper {
    order: 5;
    margin-top: 0;
    margin-bottom: 0;
    height: 260px;
    max-height: 260px;
    width: 100%;
    justify-content: flex-start;
    transform: rotate(0);
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .hero-cards-col {
    display: contents;
  }

  .hero-cards-col.col-right {
    display: none;
  }

  .hero-cards-inner {
    flex-direction: row;
    width: max-content;
    animation: scroll-horizontal 100s linear infinite;
    gap: 20px;
    padding: 33px 20px 33px 0;
    /* padding-right matches gap for perfect half-shift loop */
  }

  @keyframes scroll-horizontal {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .hero-feature-card {
    width: 280px;
    flex-shrink: 0;
    white-space: normal;
    align-items: center;
    text-align: center;
    padding: 21px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: none;
  }

  .hero-feature-card:hover {
    transform: none;
  }

  .primary-btn {
    order: 6;
    align-self: center;
    width: auto;
    padding: 19px 58px;
    font-size: 20px;
    height: auto;
    margin: 6px 0 0;
    border-radius: 99px;
  }

  .primary-btn span.hide-mobile {
    display: none;
  }

  .primary-btn span.show-mobile {
    display: inline;
  }

  .hero-badge-green {
    order: 7;
    text-align: -webkit-center;
    align-self: center;
    margin: 20px 0 30px;
  }

  .hero-avatar-row {
    display: none;
  }

  /* Trust Overrides */
  .trust-section {
    padding: 0;
    background-color: #F9F8F4;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 119px;
    margin-top: 20px;
  }

  .trust-heading {
    display: none;
  }

  .metrics-row {
    gap: 29px;
    justify-content: center;
    width: 100%;
    padding: 20px;
  }

  .metric {
    flex: 0 0 auto;
  }

  .metric h3 {
    font-size: 23px;
  }

  /* Skills Overrides */
  .skill-card {
    padding: 33px;
  }

  .skill-title {
    font-size: 23px;
  }

  .skill-icon {
    margin-bottom: 25px;
  }

  .skill-desc {
    padding-right: 0;
  }

  .skill-desc strong {
    font-weight: 600;
  }

  /* Steps Overrides */
  .step-card {
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
  }

  .step-card.reverse {
    flex-direction: column;
  }

  .step-content {
    padding: 0;
    text-align: left;
  }

  .step-number {
    margin: 0 0 16px 0;
  }

  .step-title {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .step-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .step-image {
    width: 100%;
    height: 320px;
    order: 4;
    border-radius: 20px;
    margin-top: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f6f5f2;
    /* Subtle background to frame the image */
    flex: none;
    /* Prevent flex-column stretching issues */
  }

  .section-title {
    letter-spacing: -1.3px;
    margin-bottom: 40px;
    font-size: 42px;
  }

  .section-title-skills {
    margin-bottom: 12px;
  }

  /* Data Section Overrides */
  .data-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .data-col-left,
  .data-col-right {
    display: contents;
  }

  .data-card.main-card {
    background-color: #F6F4E8;
    color: #111;
    padding: 38px 24px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    grid-column: span 2;
  }

  .data-card.main-card h2 {
    font-size: 42px;
    letter-spacing: -2.3px;
    margin-bottom: 22px;
    color: #111;
  }

  .data-card.main-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
  }

  .bento-desc-mobile {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6);
  }

  .bento-ads,
  .bento-ugc {
    grid-column: span 2;
    padding: 24px;
  }

  .bento-forecast,
  .bento-emails {
    grid-column: span 1;
    padding: 24px;
    min-height: 160px;
  }

  .bento-emails {
    background-color: #4F6D30;
  }

  .bento-header-inline h3 {
    font-size: 18px;
  }

  /* Comparison & Features Overrides */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .f-report {
    grid-column: span 1;
  }

  .f-report .f-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .f-graphic-col {
    justify-content: center;
    width: 100%;
  }

  .feature-card.f-lifetime {
    min-height: 325px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .f-lifetime .f-content {
    order: 1;
    padding-bottom: 0;
  }

  .f-lifetime .f-lifetime-graphic {
    position: relative;
    height: auto;
    width: 100%;
    margin: 40px 0 20px;
    padding: 20px 0;
    order: 2;
    top: auto;
    bottom: auto;
    left: auto;
  }

  .f-lifetime .integration-steps {
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
  }

  .section-title-testimonials {
    margin-bottom: 45px;
  }

  .testimonials-grid {
    column-count: 2;
    gap: 20px;
  }

  .testimonial-card.hide-tablet {
    display: none !important;
  }

  .logo-footer-wrapper {
    /* margin-top: -280px; */
    z-index: 10;
    position: relative;
    padding-top: 180px;
  }

  .logo-pill {
    gap: 32px;
    padding: 10px 24px;
    min-width: 0;
    /* Remove any content-based minimum width */
    overflow-x: auto;
    justify-content: flex-start;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .logo-pill::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
  }

  .logo-brands {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
  }

  /* Pricing Overrides */
  .pricing-box {
    max-width: 675px;
    margin-bottom: 65px;
  }

  .pricing-heading {
    font-family: var(--font-heading);
    font-size: 42px;
  }

  .pricing-total {
    width: 100%;
    max-width: 476px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 44px;
  }

  /* Final CTA Overrides */
  .final-cta-heading {
    font-size: 42px;
    letter-spacing: -1.5px;
    line-height: 1.1;
  }

  .final-cta-subtext {
    font-size: 18px;
    padding: 0 16px;
  }
}

/* --- 14. RESPONSIVE: TABLET & LANDSCAPE MOBILE --- */
@media (max-width: 860px) {
  .testimonials-grid {
    column-count: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .testimonial-card {
    break-inside: avoid;
    width: 100%;
  }

  .logo-pill {
    max-width: 320px;
    overflow: hidden;
    padding: 14px 0;
  }

  .logo-brands {
    padding-left: 24px;
    animation: pill-marquee 8s linear infinite;
  }

  @keyframes pill-marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% + 300px));
    }
  }
}

/* --- 800px Refinements --- */
@media (max-width: 800px) {
  .data-view-tablet .rhythm-image-right .rhythm-content {
    margin-left: 17px;
  }

  .data-view-tablet .rhythm-image-left .rhythm-image {
    margin-left: 27px;
  }
}

/* --- 670px Refinements --- */
@media (max-width: 670px) {
  .data-view-tablet .rhythm-content {
    padding: 28px;
  }

  .data-view-tablet .rhythm-image {
    width: 50%;
  }

  .data-view-tablet .rhythm-desc {
    font-size: 13px;
  }

  .data-view-tablet .rhythm-image-right .rhythm-image {
    margin-right: 21px;
  }
}

/* --- 570px rhythm stacking --- */
@media (max-width: 570px) {
  .section-title {
    font-size: 35px;
  }

  .section-title.section-title-comparison {
    padding: 15px;
    font-size: 35px;
  }

  .pricing-box {
    max-width: 545px;
  }

  .data-view-tablet .bento-green-card {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 32px;
  }

  .data-view-tablet .data-rhythm-card {
    flex-direction: column;
    align-items: center;
    padding: 20px 24px;
    gap: 20px;
  }

  .data-view-tablet .rhythm-content {
    order: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  .data-view-tablet .rhythm-title {
    text-align: center !important;
    margin-top: 17px;
    margin-bottom: 0 !important;
    font-size: 18px;
  }

  .data-view-tablet .rhythm-desc {
    display: none !important;
  }

  .data-view-tablet .rhythm-image {
    order: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .data-view-tablet .bento-visual {
    width: 100%;
    justify-content: flex-start;
  }
}

/* --- 460px mobile refinements --- */
@media (max-width: 460px) {
  .pricing-box {
    max-width: 750px;
    margin: 0 auto 0;
    padding: 20px;
    margin-top: 35px;
  }

  .pricing-heading {
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: normal;
    margin-top: 40px;
    letter-spacing: -1px;
  }

  .current-price {
    font-family: var(--font-heading);
    font-size: 58px;
  }

  .guarantee-text {
    margin-bottom: 15px;
  }

  .total-label {
    font-size: 24px;
  }

  .lifetime-tag {
    font-size: 11px;
    padding: 6px 7px;
  }
}

/* --- 860px refinements --- */
@media (max-width: 860px) {
  .footer-trust-stats {
    padding-left: 42px;
    padding-right: 42px;
  }

  .guarantee-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 39px;
  }
}

/* --- 580px refinements --- */
@media (max-width: 580px) {
  .metrics-row {
    gap: 12px;
  }

  .metric {
    flex: 0 0 30%;
  }
}

/* Ensure mobile interface is hidden on desktop */
.mobile-testimonial-interface {
  display: none;
}

/* Base Styles (Visible on Desktop) */
.logo-brands {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-brands span {
  font-size: 14px;
  color: #111;
}

.view-more-action {
  display: none;
}

/* Hidden on Desktop by default */

.br-mobile {
  display: none;
}

@media (max-width: 900px) {

  .col-generic,
  .comparison-table td:nth-child(4) {
    display: none;
  }
}

@media (max-width: 765px) {
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-container {
    padding: 40px 0;
    border-radius: 24px;
  }

  .col-method,
  .comparison-table td:nth-child(1) {
    display: none;
  }

  .col-claude,
  .col-freelance {
    width: 50%;
  }
}

.br-mobile {
  display: none;
}

.hide-tablet {
  display: block;
}

/* --- Small Mobile (460px and below) Refinements --- */
@media (max-width: 460px) {
  .pricing-box {
    border-radius: 0;
  }
}