/* ============================================
   Simastry — Synapse-Inspired Dark Hero Design
   Pure black + gold + glass morphism
   ============================================ */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');

/* --- Custom Properties --- */
:root {
  --black: #000000;
  --dark: #050505;
  --gold: #D4B987;
  --gold-light: #E8D7AF;
  --gold-dark: #AA9164;
  --gold-glow: rgba(212, 185, 135, 0.15);
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.16);
  --glass-blur: blur(20px);
  --font: 'General Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img { max-width: 100%; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--white-70);
  max-width: 600px;
  line-height: 1.7;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  margin: 0 auto;
  max-width: var(--max-width);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.6px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 1px;
}

/* Download pill button */
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 0.6px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 500;
  color: var(--white) !important;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 1.5rem 120px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Hero Video Background */
.hero-video-container {
  position: absolute;
  bottom: -35vh;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80vh;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Badges row */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
}

body.loaded .hero-badge {
  animation: fadeInUp 0.6s ease forwards;
}

body.loaded .hero-badge:nth-child(1) { animation-delay: 0.1s; }
body.loaded .hero-badge:nth-child(2) { animation-delay: 0.2s; }
body.loaded .hero-badge:nth-child(3) { animation-delay: 0.3s; }

body.loaded .hero-badges {
  opacity: 1;
}

/* Hero heading — word-by-word animation */
.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 800px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

body.loaded .hero-title .word {
  animation: fadeInUp 0.5s ease forwards;
}

/* Subtitle */
.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-70);
  line-height: 1.7;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
}

body.loaded .hero-subtitle {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

/* Hero buttons row */
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

body.loaded .hero-buttons {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--black);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  color: var(--white) !important;
}

/* ================================================
   LOGO MARQUEE
   ================================================ */
.marquee-section {
  position: relative;
  z-index: 10;
  padding: 40px 0 60px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
}

.features-header,
.how-it-works-header,
.community-header,
.platform-header,
.pricing-header,
.trust-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header .section-subtitle,
.how-it-works-header .section-subtitle,
.community-header .section-subtitle,
.platform-header .section-subtitle,
.pricing-header .section-subtitle,
.trust-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.feature-category {
  margin-bottom: 5rem;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.feature-category-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.feature-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 24px;
}

.feature-category-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-category-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.feature-category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 1px;
}

.feature-category-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 16px auto 0;
}

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

.subfeature-card {
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(30px);
}

.subfeature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.subfeature-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.subfeature-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.subfeature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.subfeature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.subfeature-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ================================================
   COMMUNITY SECTION
   ================================================ */
.community-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--black);
}

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

.community-card {
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(30px);
}

.community-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.community-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.community-card-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
}

.community-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.community-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.community-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.step {
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(30px);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease;
}

.step:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ================================================
   PLATFORM SECTION
   ================================================ */
.platform-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--black);
}

.platform-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 100px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.platform-badge:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.platform-badge-icon {
  font-size: 24px;
  color: var(--gold);
}

.platform-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.platform-badge-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.platform-badge-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
}

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

.pricing-card {
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.pricing-card-highlight {
  border-color: var(--gold-dark);
  box-shadow: 0 0 50px rgba(212, 185, 135, 0.08), 0 0 100px rgba(212, 185, 135, 0.04), inset 0 1px 0 rgba(212, 185, 135, 0.2);
}

.pricing-card-highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(212, 185, 135, 0.15), 0 0 120px rgba(212, 185, 135, 0.06);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 14px;
  color: var(--white-40);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 0;
  border-bottom: 0.6px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 28px;
  border: 0.6px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white) !important;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  filter: blur(1px);
}

.pricing-cta:hover {
  border-color: var(--white);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.pricing-cta-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  border-color: transparent;
}

.pricing-cta-gold::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.pricing-cta-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  box-shadow: 0 4px 20px rgba(212, 185, 135, 0.3);
}

/* ================================================
   TRUST / METHODOLOGY SECTION
   ================================================ */
.trust {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--black);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  gap: 20px;
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(30px);
}

.trust-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease;
}

.trust-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.trust-text strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

/* ================================================
   SOCIAL PROOF / TESTIMONIALS
   ================================================ */
.social-proof {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
  text-align: center;
}

.social-proof-number {
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.social-proof-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 13px;
  color: var(--white-40);
  margin-top: 2px;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--black);
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box .section-subtitle {
  margin: 0 auto 2rem;
}

.cta-box .btn-primary {
  margin-top: 1rem;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: 5rem 0 2rem;
  border-top: 0.6px solid rgba(255, 255, 255, 0.06);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 0.6px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold-dark);
  background: rgba(212, 185, 135, 0.08);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer-col-links a:hover {
  color: var(--white);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 0.6px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover {
  color: var(--white-70);
}

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 140px 0 5rem;
}

.legal-page .container {
  max-width: 800px;
}

.legal-card {
  background: var(--glass-bg);
  border: 0.6px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 2rem;
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
  color: var(--gold);
}

.legal-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}

.legal-card h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-card .last-updated {
  font-size: 14px;
  color: var(--white-40);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.6px solid rgba(255, 255, 255, 0.08);
}

.legal-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-card ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-card li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-card strong {
  color: rgba(255, 255, 255, 0.85);
}

.legal-card a {
  color: var(--gold);
}

.legal-card a:hover {
  color: var(--gold-light);
}

/* Legal page hero video */
.legal-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  opacity: 0.3;
}

.legal-hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 185, 135, 0.1); }
  50% { box-shadow: 0 0 40px rgba(212, 185, 135, 0.2); }
}

/* Reveal class for intersection observer */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 140px 1.5rem 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 44px) !important;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-video-container {
    bottom: -20vh;
    height: 60vh;
  }

  .subfeature-grid,
  .community-grid,
  .pricing-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .platform-grid {
    flex-direction: column;
    align-items: center;
  }

  .platform-badge {
    width: 100%;
    max-width: 400px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .legal-card {
    padding: 32px 24px;
  }

  .legal-page {
    padding-top: 120px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 1rem 60px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
}
