/* ═══════════════════════════════════════════
   HOME PAGE CUSTOM STYLES
   ═══════════════════════════════════════════ */

/* ─── HERO METRICS ─── */
.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.h-metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.h-metric-num {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #3ABEFF, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-metric-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.free-badge .h-metric-num {
  background: linear-gradient(135deg, #a68af9, #3ABEFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .hero-metrics { gap: 28px; margin-top: 28px; }
  .h-metric-num { font-size: 22px; }
  .h-metric-label { font-size: 10px; }
}
@media (max-width: 480px) {
  .hero-metrics { gap: 20px; }
}

/* ─── JOURNEY SECTION ─── */
.journey-section {
  padding: 60px 5% 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(58,190,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(166,138,249,0.06) 0%, transparent 50%),
    #0B0E14;
}
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(58,190,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 68%);
  mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 68%);
}
.journey-section > * {
  position: relative;
  z-index: 1;
}
.journey-section .section-label {
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3ABEFF;
  margin-bottom: 8px;
}
.journey-section .section-title {
  font-family: var(--heading-font);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
}
.journey-section .section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3ABEFF, #a68af9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.journey-section .section-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.journey-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.journey-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: left;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.journey-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58,190,255,0.2);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(58,190,255,0.06);
}
.journey-step-num {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(58,190,255,0.2), rgba(166,138,249,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.journey-card h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.journey-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.journey-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: #3ABEFF;
}
@media (max-width: 768px) {
  .journey-section { padding: 60px 5% 70px; }
  .journey-section .section-title { font-size: 28px; }
  .journey-card { min-width: 100%; }
  .journey-step-num { font-size: 36px; }
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-section {
  padding: 60px 5% 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(166,138,249,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(58,190,255,0.06) 0%, transparent 50%),
    #0B0E14;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(166,138,249,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 68%);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 68%);
}
.testimonials-section > * {
  position: relative;
  z-index: 1;
}
.testimonials-section .section-label {
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a68af9;
  margin-bottom: 8px;
}
.testimonials-section .section-title {
  font-family: var(--heading-font);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 12px;
}
.testimonials-section .section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #a68af9, #3ABEFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials-section .section-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.testi-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.testi-item {
  padding: 32px 0 0;
}
.testi-quote {
  font-family: var(--heading-font);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(166,138,249,0.25), rgba(58,190,255,0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  margin-bottom: 4px;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 14px;
}
.testi-stars .fa-star {
  filter: drop-shadow(0 0 4px rgba(245,158,11,0.3));
}
.testi-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 12px;
}
.testi-name {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--white);
}
.testi-divider {
  height: 1px;
  margin: 32px 0 0;
  background: linear-gradient(90deg, transparent, rgba(166,138,249,0.2), rgba(58,190,255,0.2), transparent);
}
@media (max-width: 768px) {
  .testimonials-section { padding: 60px 5% 70px; }
  .testimonials-section .section-title { font-size: 28px; }
  .testi-quote { font-size: 56px; }
  .testi-text { font-size: 15px; }
}

/* ─── FEATURES SECTION (vertical list, no cards) ─── */
.features-section {
  padding: 100px 5% 80px;
  text-align: center;
  background: #0B0E14;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(58,190,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,190,255,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.features-section .section-title {
  font-family: var(--heading-font);
  font-size: 34px;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.features-section .section-title span {
  background: linear-gradient(90deg, #3ABEFF, #a68af9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features-section .section-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.feature-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
  text-align: left;
}
.f-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 0;
}
.f-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(58,190,255,0.08);
  color: #3ABEFF;
  transition: transform 0.3s ease, background 0.3s ease;
}
.f-icon-wrap.purple {
  background: rgba(166,138,249,0.08);
  color: #a68af9;
}
.f-item:hover .f-icon-wrap {
  transform: scale(1.08);
  background: rgba(58,190,255,0.15);
}
.f-item:hover .f-icon-wrap.purple {
  background: rgba(166,138,249,0.15);
}
.f-body h3 {
  font-family: var(--heading-font);
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}
.f-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .feature-list { grid-template-columns: 1fr; gap: 0; }
  .f-item { gap: 14px; padding: 18px 0; }
  .f-icon-wrap { width: 40px; height: 40px; font-size: 16px; }
  .f-body h3 { font-size: 14px; }
  .f-body p { font-size: 12px; }
}

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 80px 5% 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 80% 20%, rgba(34,211,238,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(166,138,249,0.06) 0%, transparent 50%),
    #0B0E14;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(34,211,238,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at 60% 30%, black 0%, transparent 68%);
  mask-image: radial-gradient(circle at 60% 30%, black 0%, transparent 68%);
}
.faq-section > * {
  position: relative;
  z-index: 1;
}
.faq-section .section-label {
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3ABEFF;
  margin-bottom: 8px;
}
.faq-section .section-title {
  font-family: var(--heading-font);
  font-size: 34px;
  color: var(--white);
  margin-bottom: 48px;
}
.faq-section .section-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3ABEFF, #a68af9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.faq-item[open] { padding-bottom: 20px; }
.faq-item::-webkit-details-marker { display: none; }
.faq-item::marker { display: none; content: ""; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ""; }
.faq-q i {
  font-size: 14px;
  color: var(--gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  max-width: 640px;
}
.faq-a p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.faq-a strong {
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 768px) {
  .faq-section { padding: 60px 5% 70px; }
  .faq-section .section-title { font-size: 28px; margin-bottom: 32px; }
  .faq-q { font-size: 14px; padding: 18px 0; }
}

/* ─── GLOBAL REACH SECTION ─── */
.global-section {
  padding: 80px 5% 100px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(166,138,249,0.08) 0%, transparent 60%);
}
.global-content h2 {
  font-family: var(--heading-font);
  font-size: 34px;
  color: var(--white);
  margin-bottom: 12px;
}
.global-content h2 span {
  background: linear-gradient(90deg, #a68af9, #3ABEFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.global-content p {
  color: var(--gray);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.global-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.global-ctas .join-btn {
  padding: 14px 48px;
  font-size: 15px;
}
.global-ctas .secondary-btn {
  padding: 12px 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(90deg, var(--mid-night), var(--gray));
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.global-ctas .secondary-btn:hover {
  background: none;
  color: #3ABEFF;
  box-shadow: 0 0 28px #3ABEFF;
  transform: translateY(-3px);
}

