


:root {
  --primary: #FFC72C;
  --primary-hover: #E0AD1E;
  --primary-glow: rgba(255, 199, 44, 0.4);
  --primary-light: rgba(255, 199, 44, 0.1);
  --primary-neon: 0 0 20px rgba(255, 199, 44, 0.6), 0 0 40px rgba(255, 199, 44, 0.3);
  
  --bg-page: #F9FAFB;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-dark-card: #1E293B;
  
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-dark: #334155;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}


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

@keyframes float {
  0% {
    transform: translateY(0px) rotate(1.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(1.5deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 199, 44, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 199, 44, 0.7);
  }
}

@keyframes glowSpot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.25;
  }
}


.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--text-dark);
}

.logo-svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
  transition: transform var(--transition-fast);
}

.logo-link:hover .logo-svg {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}


.btn-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.btn-text:hover {
  color: var(--text-dark);
}

.btn-primary-sm {
  background-color: var(--primary);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(255, 199, 44, 0.2);
}

.btn-primary-sm:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(255, 199, 44, 0.35);
  transform: translateY(-1px);
}

.btn-primary-lg {
  background-color: var(--primary);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(255, 199, 44, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-lg:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 8px 28px rgba(255, 199, 44, 0.4);
  transform: translateY(-2px);
}

.btn-secondary-lg {
  background-color: var(--bg-card);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary-lg:hover {
  background-color: #F8FAFC;
  border-color: var(--text-muted);
  transform: translateY(-2px);
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.mobile-nav {
  display: none;
}


.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% 10%, rgba(255, 199, 44, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(42px, 8vw, 76px);
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--text-body);
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  opacity: 0;
}

.highlight-text {
  color: var(--text-dark);
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
  display: inline;
  padding: 2px 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 40px auto;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
  opacity: 0;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  opacity: 0;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: #10B981; 
}


.hero-media-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
  opacity: 0;
}

.hero-glow-back {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 199, 44, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  background-color: var(--bg-card);
  padding: 12px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 40px -4px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transform: rotate(1.5deg);
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

.hero-mockup-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px);
  object-fit: cover;
}


.trust-bar-section {
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-color: var(--bg-card);
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.trust-stats {
  flex: 1.2;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.trust-subtext {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.highlight-num {
  font-weight: 700;
  color: var(--text-dark);
  background: linear-gradient(180deg, transparent 65%, rgba(255, 199, 44, 0.25) 35%);
  padding: 0 2px;
}

.trust-divider {
  width: 1px;
  height: 42px;
  background-color: var(--border-light);
}

.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  flex: 1.8;
  justify-content: flex-end;
}

.partner-logo {
  color: var(--text-muted);
  opacity: 0.65;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--text-dark);
}

.svg-logo {
  height: 22px;
  width: auto;
  max-width: 80px;
}


.features-section {
  padding: 100px 0;
  background-color: var(--bg-page);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-hover);
  background-color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 42px);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-description {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 199, 44, 0.4);
  box-shadow: 
    0 10px 15px -3px rgba(255, 199, 44, 0.08), 
    0 4px 6px -2px rgba(255, 199, 44, 0.04),
    0 0 0 1px rgba(255, 199, 44, 0.1);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-dark);
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}


.how-it-works-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

.step-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 199, 44, 0.3);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(255, 199, 44, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-text {
  font-size: 15px;
  color: var(--text-muted);
}

.steps-cta {
  text-align: center;
}


.showcase-section {
  padding: 100px 0;
  background-color: var(--bg-page);
  overflow: hidden;
}

.slider-outer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 10;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(255, 199, 44, 0.4);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-normal);
  padding: 10px 0;
  width: 100%;
}

.showcase-card {
  min-width: calc((100% - 48px) / 3); 
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px -4px rgba(0, 0, 0, 0.06);
  border-color: var(--border-light);
}


.card-browser-header {
  background-color: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.red { background-color: #EF4444; }
.browser-dot.yellow { background-color: #F59E0B; }
.browser-dot.green { background-color: #10B981; }

.browser-address {
  margin-left: 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
  background-color: #FFFFFF;
  padding: 2px 12px;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.card-visual {
  height: 160px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.telegram-visual { background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); }
.design-visual { background: linear-gradient(135deg, #475569 0%, #0F172A 100%); }
.academy-visual { background: linear-gradient(135deg, #064E3B 0%, #10B981 100%); }
.merch-visual { background: linear-gradient(135deg, #581C87 0%, #A855F7 100%); }
.model-visual { background: linear-gradient(135deg, #78350F 0%, #F59E0B 100%); }
.fit-visual { background: linear-gradient(135deg, #701A75 0%, #D946EF 100%); }

.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF;
  font-size: 16px;
  z-index: 2;
}

.card-creator-info {
  margin-left: 12px;
  color: #FFFFFF;
  z-index: 2;
}

.card-creator-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.card-creator-info p {
  font-size: 12px;
  opacity: 0.8;
}

.card-badge-tg {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.card-badge-tg.yellow-badge { color: var(--primary); border-color: rgba(255,199,44,0.3); background-color: rgba(255,199,44,0.1); }
.card-badge-tg.green-badge { color: #A7F3D0; border-color: rgba(16,185,129,0.3); background-color: rgba(16,185,129,0.1); }
.card-badge-tg.purple-badge { color: #E9D5FF; border-color: rgba(168,85,247,0.3); background-color: rgba(168,85,247,0.1); }

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-pricing {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.card-pricing span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.btn-outline-sm {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
  background-color: #FFFFFF;
}

.btn-outline-sm:hover {
  border-color: var(--primary);
  color: var(--text-dark);
  background-color: var(--primary-light);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CBD5E1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}


.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.dark-tag {
  color: var(--primary);
  background-color: rgba(255, 199, 44, 0.1);
}

.dark-title {
  color: #FFFFFF;
}

.dark-description {
  color: var(--text-light-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background-color: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 199, 44, 0.15);
}

.rating-stars {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-dark);
  padding-top: 16px;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
}

.author-title {
  font-size: 12px;
  color: var(--text-light-muted);
}


.faq-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 24px 0;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 19px);
  padding-right: 20px;
}

.faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-trigger:hover .faq-icon-box {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.faq-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-normal);
}

.faq-trigger[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon-box {
  background-color: var(--primary);
  color: var(--text-dark);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}


.final-cta-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 199, 44, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
  animation: glowSpot 8s ease-in-out infinite;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.final-cta-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-light-muted);
  margin-bottom: 40px;
}

.final-cta-btn-wrapper {
  margin-bottom: 24px;
}

.btn-primary-neon {
  background-color: var(--primary);
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: var(--radius-md);
  display: inline-block;
  box-shadow: var(--primary-neon);
  animation: pulseGlow 3s ease-in-out infinite;
  transition: var(--transition-fast);
}

.btn-primary-neon:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 0 30px rgba(255, 199, 44, 0.8), 0 0 50px rgba(255, 199, 44, 0.4);
  transform: translateY(-2px);
}

.final-cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light-muted);
  font-weight: 600;
}


.footer-wrapper {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  color: var(--text-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-body);
}

.footer-links a:hover {
  color: var(--primary-hover);
  padding-left: 2px;
}

.contact-email {
  font-weight: 600;
  color: var(--text-dark) !important;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}



.flow-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.flow-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.flow-drawer-container {
  width: 100%;
  max-width: 500px;
  height: 100%;
  background-color: var(--bg-card);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  position: relative;
}

.flow-drawer-overlay.active .flow-drawer-container {
  transform: translateX(0);
}

.flow-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 10;
  transition: var(--transition-fast);
}

.flow-close:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.flow-drawer-body {
  padding: 48px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.flow-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--text-dark);
  line-height: 1.25;
  margin-top: 12px;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}


.timeline-visual {
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
}

.timeline-line {
  position: absolute;
  top: 10px;
  left: 15px;
  bottom: 10px;
  width: 2px;
  background-color: var(--border-light);
}

.timeline-step {
  position: relative;
  margin-bottom: 32px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: 2px solid var(--primary);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.flow-drawer-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}


.store-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 40px;
}

.store-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.store-modal-container {
  width: 100%;
  max-width: 1000px;
  height: 90%;
  max-height: 800px;
  background-color: var(--bg-page);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  position: relative;
}

.store-modal-overlay.active .store-modal-container {
  transform: scale(1);
}

.store-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 30;
  transition: var(--transition-fast);
}

.store-modal-close:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.store-modal-iframe-header {
  background-color: #E2E8F0;
  border-bottom: 1px solid #CBD5E1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 20px;
}

.store-modal-address-bar {
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  height: 30px;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  font-family: monospace;
  font-size: 12px;
  color: var(--text-muted);
}

.lock-icon {
  font-size: 10px;
}

.preview-badge {
  background-color: var(--primary-light);
  border: 1px solid var(--primary);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.store-modal-body {
  flex-grow: 1;
  overflow-y: auto;
  background-color: #FFFFFF;
  padding: 40px;
}


.modal-store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.modal-store-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-store-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-store-brand h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
}

.modal-store-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

.modal-store-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.modal-product-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
}

.modal-product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modal-product-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--primary-light);
  color: var(--primary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.modal-product-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-product-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
}

.modal-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-product-price {
  font-weight: 800;
  font-size: 18px;
  color: var(--text-dark);
}

.modal-btn-buy {
  background-color: var(--text-dark);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.modal-btn-buy:hover {
  background-color: var(--primary);
  color: var(--text-dark);
}


@media (max-width: 1200px) {
  .desktop-nav {
    gap: 20px;
  }
  .nav-actions {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav, .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height var(--transition-normal), opacity var(--transition-normal);
  }
  
  .mobile-nav.active {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
  }
  
  .mobile-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-light);
  }
  
  .btn-primary-mobile {
    background-color: var(--primary);
    color: var(--text-dark);
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(255,199,44,0.2);
  }
  
  .trust-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }
  
  .trust-logos {
    justify-content: center;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 32px auto;
  }
  
  .btn-primary-lg, .btn-secondary-lg {
    width: 100%;
  }
  
  .showcase-card {
    min-width: calc((100% - 24px) / 2); 
  }
  
  .slider-outer-container {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .showcase-card {
    min-width: 100%; 
  }
  
  .store-modal-overlay {
    padding: 16px;
  }
  
  .store-modal-iframe-header {
    height: auto;
    flex-direction: column;
    padding: 12px 40px 12px 12px;
    gap: 8px;
    align-items: flex-start;
  }
  
  .store-modal-address-bar {
    max-width: 100%;
  }
  
  .store-modal-body {
    padding: 24px 16px;
  }
}

@media (max-width: 600px) {
  .modal-store-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-col {
    grid-column: span 1;
  }
  .flow-drawer-body {
    padding: 24px;
  }
  .timeline-visual {
    padding-left: 32px;
  }
  .timeline-icon {
    left: -32px;
  }
  
  
  .btn-primary-neon {
    padding: 16px 20px;
    font-size: 15px;
    width: 100%;
    max-width: 290px;
  }
  .hero-title {
    font-size: 38px;
    letter-spacing: -1px;
  }
}


.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  list-style: none;
  z-index: 1100;
  display: none;
  min-width: 120px;
}

.lang-dropdown.active {
  display: block;
  animation: fadeInUp 0.2s ease-out forwards;
}

.lang-option {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.lang-option:hover {
  background-color: var(--primary-light);
  color: var(--text-dark);
}

.lang-option.active {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  font-weight: 700;
}

.lang-arrow {
  font-size: 8px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.lang-btn[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}


.mobile-lang-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.mobile-lang-row span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-lang-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  background-color: var(--bg-card);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-lang-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(255, 199, 44, 0.3);
}
