/* ============================================
   PAGE LOADING BAR
   ============================================ */
#loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0cce6b, #fbff12);
  z-index: 9999;
  transition: width 0.3s ease;
}

#loading-bar.loading {
  width: 70%;
}

#loading-bar.complete {
  width: 100%;
  transition:
    width 0.1s ease,
    opacity 0.3s ease 0.1s;
  opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #0cce6b;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0ab35c;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #b8c4d0;
  background-attachment: fixed;
  color: #363537;
}
#channels,
#process,
#results,
#faq {
  padding: 80px 16px;
}

.hiw-step-dropdown {
  display: none;
}

#hero {
  min-height: 100vh;
}

/* Per-section radial glow */
#hero {
  background: radial-gradient(ellipse at 50% 40%, #e8f0f7 0%, transparent 65%);
}
#channels {
  background: radial-gradient(ellipse at 85% 50%, #e8f0f7 0%, transparent 65%);
}
#process {
  background: radial-gradient(ellipse at 50% 50%, #e8f0f7 0%, transparent 65%);
}
#results {
  background: radial-gradient(ellipse at 15% 50%, #e8f0f7 0%, transparent 65%);
}
#faq {
  background: radial-gradient(ellipse at 85% 50%, #e8f0f7 0%, transparent 65%);
}
#press {
  background: radial-gradient(ellipse at 50% 50%, #e8f0f7 0%, transparent 65%);
}
#contact {
  background: radial-gradient(ellipse at 50% 60%, #e8f0f7 0%, transparent 65%);
}

/* Default section background */
section {
  position: relative;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
  border-radius: 999px;
  background-color: #0cce6b;
  color: #363537;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(12, 206, 107, 0.25);
  text-decoration: none;
  border: 2px solid #0cce6b;
}

.btn-primary:hover {
  background-color: #0ab35c;
  border-color: #0ab35c;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(12, 206, 107, 0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 2px solid #0cce6b;
  color: #0cce6b;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: #0cce6b;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Card Styles */
.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hero pill label */
h1.hero-pill-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(54, 53, 55, 0.85);
  background: rgba(12, 206, 107, 0.12);
  border: 1px solid rgba(12, 206, 107, 0.4);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 28px;
  line-height: 1.4;
  display: inline-block;
}

#navbar {
  background-color: #ffffff;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
  z-index: 50;
}

#navbar.scrolled {
  background-color: #ffffff;
  box-shadow: none;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0cce6b;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Overlay */
#mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #ffffff;
  z-index: 40;
  overflow-y: auto;
}

#mobile-menu.hidden {
  display: none;
}

/* Form Styles */
input:focus,
textarea:focus {
  outline: none;
  border-color: #0cce6b;
  box-shadow: 0 0 0 3px rgba(12, 206, 107, 0.1);
}

/* Gradient Backgrounds */
.gradient-green {
  background: linear-gradient(135deg, #0cce6b 0%, #0ab35c 100%);
}

.gradient-yellow {
  background: linear-gradient(135deg, #fbff12 0%, #e6ec00 100%);
}

.gradient-red {
  background: linear-gradient(135deg, #ef2d56 0%, #d62849 100%);
}

/* Section Spacing */
section {
  position: relative;
}

/* Loading state for stat counters */
.stat-counter {
  display: inline-block;
  min-width: 150px;
}

/* Smooth hover transitions */
a,
button {
  transition: all 0.3s ease;
}

/* Focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #0cce6b;
  outline-offset: 4px;
}

.client-logos img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* How It Works */
.hiw-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}
.hiw-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.hiw-btn-active {
  border-left: 3px solid #0cce6b !important;
}
.hiw-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  min-width: 24px;
}
.hiw-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.hiw-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* Trust carousel */
.trust-item {
  height: 32px;
  line-height: 32px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  white-space: nowrap;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-body {
  color: rgba(54, 53, 55, 0.7);
  margin-bottom: 3rem;
  line-height: 1.75;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.guarantee-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guarantee-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.guarantee-icon {
  width: 24px;
  height: 24px;
  color: #0cce6b;
  flex-shrink: 0;
}

.guarantee-card-title {
  font-weight: 700;
  color: #363537;
}

.guarantee-card-body {
  color: rgba(54, 53, 55, 0.6);
}

/* ============================================
   KEY OUTCOMES SECTION
   ============================================ */
.outcomes-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label-center {
  color: #0cce6b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.outcomes-heading {
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.2;
}

.outcomes-row {
  display: flex;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  overflow: visible;
}

.outcomes-row-last {
  display: flex;
  gap: 64px;
  align-items: center;
  overflow: visible;
}

.outcomes-col {
  flex: 1;
}

.outcomes-img {
  flex: 1;
  overflow: visible;
}

.outcomes-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.outcomes-row:nth-child(odd) .outcomes-img img,
.outcomes-row-last .outcomes-img img {
  box-shadow: -8px 8px 0px #ef2d56;
}

.outcomes-row:nth-child(even) .outcomes-img img {
  box-shadow: 8px 8px 0px #ef2d56;
}

.outcomes-h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #363537;
  margin-bottom: 16px;
  line-height: 1.2;
}

.outcomes-body {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero .hero-content {
  padding-top: 200px;
  padding-bottom: 0;
}

.hero-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(54, 53, 55, 0.85);
  background: rgba(12, 206, 107, 0.12);
  border: 1px solid rgba(12, 206, 107, 0.4);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 36px;
  line-height: 1.4;
}

.hero-headline-accent {
  color: #0cce6b;
}

.hero-subheadline {
  color: #666;
  margin-bottom: 52px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #363537;
  border-radius: 50%;
  margin-left: 8px;
  flex-shrink: 0;
}

.trust-carousel-wrap {
  overflow: hidden;
  height: 32px;
  min-width: 240px;
  position: relative;
}

#trust-carousel {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logos {
  margin-top: 80px;
  padding-top: 0;
  padding-bottom: 16px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.hiw-container {
  perspective: 1200px;
}

.hiw-front-panel {
  background: #363537;
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}

.hiw-front-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  text-align: left;
  padding: 16px 0;
}

.hiw-front-col {
  flex: 1;
}

.section-label {
  color: #0cce6b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hiw-front-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 32px;
}

.hiw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0cce6b;
  color: #363537;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-btn-primary:hover {
  background: #0ab35c;
}

.btn-arrow-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #363537;
  border-radius: 50%;
}

.hiw-front-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 20px;
}

.hiw-front-body:last-child {
  margin: 0;
}

.hiw-back-panel {
  background: #363537;
  border-radius: 24px;
  padding: 48px;
}

.hiw-back-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.hiw-back-title {
  color: #ffffff;
  line-height: 1.1;
}

.hiw-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-btn-back:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hiw-tabs-wrap {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.hiw-tab-nav {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: flex-start;
  padding-top: 4px;
}

.hiw-tab-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
}

.hiw-step-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hiw-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hiw-bullet-check {
  color: #0cce6b;
}

.hiw-step-hidden {
  display: none;
}

.hiw-num-active {
  color: #0cce6b;
}

.hiw-label-active {
  color: #ffffff;
  font-weight: 700;
}

/* ============================================
   How It Works flip card
   ============================================ */
#hiw-flipper {
  position: relative;
}

/* Desktop: 3D flip */
@media (min-width: 769px) {
  #hiw-front,
  #hiw-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
  }
  #hiw-front {
    transform: rotateY(0deg);
  }
  #hiw-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: rotateY(180deg);
  }
  #hiw-flipper.flipped #hiw-front {
    transform: rotateY(-180deg);
  }
  #hiw-flipper.flipped #hiw-back {
    transform: rotateY(0deg);
  }
}

/* Mobile: simple show/hide */
@media (max-width: 768px) {
  #hiw-back {
    display: none;
  }
  #hiw-flipper.flipped #hiw-front {
    display: none;
  }
  #hiw-flipper.flipped #hiw-back {
    display: block;
  }
}

/* ============================================
   NEWS FEATURE SECTION (HOME PAGE)
   ============================================ */
.news-section {
  padding: 100px 24px;
  background: transparent;
}

.news-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.news-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #363537;
  line-height: 1.15;
}

.news-feature-box {
  background: #363537;
  border-radius: 24px;
  overflow: hidden;
}

.news-featured-in {
  padding: 28px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.news-featured-in-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.news-featured-in-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.news-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
}

.news-feature-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.news-feature-image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: block;
  transition: transform 0.4s ease;
}

.news-feature-card:hover .news-feature-image img {
  transform: scale(1.02);
}

.news-feature-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.news-feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.article-category {
  color: #0cce6b;
}

.news-feature-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.news-feature-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
}

.news-feature-excerpt {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.news-feature-cta {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0cce6b;
  margin-top: 0;
}

.news-section-footer {
  text-align: center;
  margin-top: 32px;
}

.news-view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(54, 53, 55, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(54, 53, 55, 0.2);
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.news-view-all:hover {
  color: #363537;
  border-color: #363537;
}

.news-featured-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  background: rgba(54, 53, 55, 0.06);
  border: 1px solid rgba(54, 53, 55, 0.12);
  border-radius: 999px;
  padding: 14px 36px;
  margin-bottom: 24px;
}

.news-pill-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(54, 53, 55, 0.7);
  white-space: nowrap;
}

.news-pill-divider {
  width: 1px;
  height: 20px;
  background: rgba(54, 53, 55, 0.15);
  flex-shrink: 0;
}

.press-logo-bi {
  height: 24px;
}
.press-logo-usa {
  height: 25px;
}
.press-logo-ap {
  height: 30px;
}
.press-logo-yahoo {
  height: 50px;
}
.press-logo-mw {
  height: 30px;
}
.press-logo-fox {
  height: 32px;
}

/* ============================================
   CONTACT / FINAL CTA SECTION
   ============================================ */
.contact-section {
  padding: 100px 24px;
}

.contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #363537;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-subheading {
  font-size: 1rem;
  color: rgba(54, 53, 55, 0.6);
  margin-bottom: 40px;
}

.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(54, 53, 55, 0.15);
  border-radius: 12px;
  font-size: 0.9375rem;
  color: #363537;
  background: #fafafa;
  margin-bottom: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-input:focus {
  outline: none;
  border-color: #0cce6b;
  box-shadow: 0 0 0 3px rgba(12, 206, 107, 0.12);
  background: #ffffff;
}

.contact-input::placeholder {
  color: rgba(54, 53, 55, 0.4);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 1rem;
}

.contact-disclaimer {
  font-size: 0.8125rem;
  color: rgba(54, 53, 55, 0.4);
  margin-top: 20px;
  line-height: 1.5;
}
