/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  min-height: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.3rem;
  min-height: 60px;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Language Modal */
.language-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.language-modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease-out;
}

.language-modal-content h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 1.5rem;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: #333;
  background: #f5f5f5;
}

.language-options {
  display: grid;
  gap: 15px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
}

.lang-btn:hover {
  border-color: #667eea;
  background: #f8f9ff;
  transform: translateY(-2px);
}

.lang-btn.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.lang-btn img {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.nav-logo .logo-img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: #667eea;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid #e0e0e0;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.language-toggle:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  font-size: 1.8rem;
  color: #333;
  padding: 8px;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  color: #ffd700;
  font-size: 1.2rem;
}

.hero-title {
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 1.8rem;
  color: #ffd700;
}

.hero-cta {
  margin-bottom: 3rem;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.hero-stats .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.2rem 1.8rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #333;
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.8rem;
  color: #667eea;
}

.card-1 {
  top: 15%;
  right: -15%;
  animation-delay: 0s;
}

.card-2 {
  top: 55%;
  left: -20%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 15%;
  right: 5%;
  animation-delay: 3s;
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: #333;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
}

/* Story Section */
.story {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.story-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-text h2 {
  color: #333;
  margin-bottom: 2.5rem;
  font-size: 2.8rem;
}

.story-paragraphs p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.story-paragraphs p strong {
  color: #667eea;
  font-weight: 700;
}

.story-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.story-highlight i {
  font-size: 2.5rem;
  color: #ffd700;
  flex-shrink: 0;
}

.story-visual {
  text-align: center;
}

.story-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* How It Works Section */
.how-it-works {
  background: white;
}

.steps-container {
  display: grid;
  gap: 4rem;
  margin-bottom: 6rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem;
  background: #f8f9ff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.step-content p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-tag {
  background: white;
  color: #667eea;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  border-color: #667eea;
  background: #667eea;
  color: white;
}

/* Growth Visualization */
.growth-visualization {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.growth-visualization h3 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.growth-levels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.level {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 120px;
}

.level-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #ffd700;
}

.level-desc {
  font-size: 1rem;
  opacity: 0.9;
}

.arrow {
  font-size: 2rem;
  color: #ffd700;
  font-weight: bold;
}

.growth-note {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Success Stories */
.success-stories {
  background: #f8f9ff;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.success-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.success-avatar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
}

.success-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.success-content h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.success-stats .stat {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9ff;
  border-radius: 12px;
}

.success-stats .stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.success-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.success-quote {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid #667eea;
  font-size: 1rem;
}

.success-cta {
  text-align: center;
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.success-cta h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.success-cta p {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Opportunity Section */
.opportunity {
  background: #f8f9ff;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.opportunity-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.opportunity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.opportunity-card:hover::before {
  transform: scaleX(1);
}

.opportunity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.card-icon i {
  font-size: 2.5rem;
  color: white;
}

.opportunity-card h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.opportunity-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.card-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.benefit-item {
  font-size: 0.95rem;
  color: #667eea;
  font-weight: 500;
  padding: 0.5rem 0;
}

.opportunity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  background: white;
}

.benefits-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: #f8f9ff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  transform: translateX(15px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.benefit-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.benefit-icon i {
  font-size: 1.8rem;
  color: white;
}

.benefit-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.benefit-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefit-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.detail-item {
  font-size: 0.95rem;
  color: #777;
  padding-left: 1.5rem;
  position: relative;
}

.detail-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.qr-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
  border: 2px solid #f0f0f0;
}

.qr-section h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.qr-code {
  margin: 2rem 0;
}

.qr-img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  border: 3px solid #e0e0e0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.qr-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #666;
  justify-content: center;
}

.qr-stat i {
  color: #667eea;
  width: 20px;
  text-align: center;
}

/* FAQ Section */
.faq {
  background: #f8f9ff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.faq-item.active {
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.faq-question {
  padding: 2rem 2.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9ff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f0f4ff;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.faq-question h3 {
  color: inherit;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-question i {
  color: #667eea;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  padding: 0 2.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 2rem 2.5rem;
  max-height: 300px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* TikTok Section */
.tiktok-section {
  background: white;
  padding: 100px 0;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.tiktok-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tiktok-embed:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* TikTok embed responsive */
.tiktok-embed blockquote {
  margin: 0 !important;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Instructions Section */
.tiktok-instructions {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

.instructions-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  padding: 4rem;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #e0e0e0;
}

.instructions-card h3 {
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.instruction-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.instruction-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.instruction-step:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.instruction-step p {
  margin: 0;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.instruction-step code {
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  color: #667eea;
  font-weight: 600;
}

.instruction-note {
  background: rgba(102, 126, 234, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.instruction-note i {
  color: #667eea;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.instruction-note p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.instruction-note strong {
  color: #667eea;
}

/* Responsive pentru TikTok */
@media (max-width: 768px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .instructions-card {
    padding: 2.5rem;
    margin: 0 1rem;
  }

  .instruction-step {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .instruction-step:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .tiktok-embed {
    min-height: 400px;
  }

  .instructions-card {
    padding: 2rem;
  }

  .instructions-card h3 {
    font-size: 1.5rem;
  }
}

/* Urgency Section */
.urgency {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.urgency-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 4rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.urgency-icon i {
  font-size: 5rem;
  color: #ffd700;
  animation: pulse 2s infinite;
}

.urgency-text h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.urgency-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.urgency-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.urgency-point {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  font-size: 1.1rem;
}

.urgency-point i {
  font-size: 1.5rem;
  color: #ffd700;
}

.countdown-timer {
  margin-top: 3rem;
  text-align: center;
}

.countdown-timer h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 0.8rem;
}

.countdown-label {
  font-size: 1rem;
  opacity: 0.9;
}

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

.urgency-guarantee {
  margin-top: 1.5rem;
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Contact Section */
.contact {
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: #f8f9ff;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2.5rem;
  color: #667eea;
  width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item h3 {
  color: #333;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.contact-item p {
  color: #666;
  margin: 0;
  font-size: 1.1rem;
}

.contact-note {
  font-size: 0.9rem;
  color: #667eea;
  font-weight: 500;
  margin-top: 0.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
  color: #999;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.footer-title {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #667eea;
  padding-left: 5px;
}

.footer-newsletter {
  margin-top: 2rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #333;
  border-radius: 8px;
  background: #2a2a2a;
  color: white;
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 12px 16px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #5a67d8;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: #999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-credit {
  font-size: 1rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.back-to-top.show {
  display: flex;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-container {
    gap: 4rem;
  }

  .story-content {
    gap: 4rem;
  }

  .benefits-container {
    gap: 4rem;
  }

  .contact-content {
    gap: 4rem;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .urgency-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .growth-levels {
    flex-direction: column;
    gap: 1.5rem;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .nav-actions {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-copyright {
    flex-direction: column;
    text-align: center;
  }

  .qr-section {
    position: static;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 80px;
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
  }

  .hero-badge {
    font-size: 0.9rem;
    padding: 6px 16px;
  }

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

  .opportunity-card {
    padding: 2rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .success-stats {
    grid-template-columns: 1fr;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .step-features {
    justify-content: center;
  }
}
