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

html, body {
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Trust Banner */
.trust-banner {
  background: #f0f9ff;
  border-bottom: 1px solid #e0f2fe;
  padding: 8px 0;
  font-size: 12px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0f766e;
}

.trust-icon {
  color: #059669;
  font-weight: bold;
}

.trust-stars {
  color: #fbbf24;
}

.trust-text {
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .trust-banner {
    padding: 12px 0;
  }
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-size: 32px;
  font-weight: bold;
  color: #1a202c;
}

.badge {
  background: #4299e1;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2d3748;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: white;
  color: #4a5568;
}

.login-btn {
  padding: 8px 16px;
  background: none;
  border: none;
  color: #4a5568;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.login-btn:hover {
  color: #2d3748;
}

.cta-btn {
  padding: 12px 24px;
  font-size: 16px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #e55a2b;
}

/* Hero Section */
.hero {
  padding: 40px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.hero-subtitle {
  color: #718096;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a365d;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  color: #1a365d;
}

.hero-description {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 16px 32px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.primary-btn:hover {
  background: #e55a2b;
}

.secondary-btn {
  padding: 16px 20px;
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.tertiary-btn {
  padding: 16px 24px;
  background: none;
  color: #4a5568;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tertiary-btn:hover {
  background: #f7fafc;
}

.or-text {
  color: #718096;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Profile Images */
.profile-images, .profile-images-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #e2e8f0;
  object-fit: cover;
  transition: transform 0.3s;
}

.profile-img:hover {
  transform: scale(1.1);
}

/* How It Works Section */
.how-it-works-section {
  padding: 40px 0 20px 0;
  background: #ffffff;
}

.how-it-works-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.how-it-works-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.how-it-works-subtitle {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.step-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: #718096;
}

.step-arrow {
  font-size: 20px;
  color: #cbd5e0;
  margin: 0 10px;
}

.step:last-child .step-arrow {
  display: none;
}

/* Value Proposition Section */
.value-proposition-section {
  padding: 60px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.value-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.value-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 24px;
  line-height: 1.2;
}

.value-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

.value-subtitle strong {
  color: #2d3748;
  font-weight: 600;
  text-decoration: underline;
}

.value-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #718096;
}

.stats-number {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
}

.stats-highlight {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
}

.stats-text {
  color: #718096;
}

/* Pricing Plans Section */
.pricing-plans-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid #4299e1;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "POPULARNE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4299e1;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.plan-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 48px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
}

.plan-description {
  font-size: 14px;
  color: #718096;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.plan-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #4a5568;
  border-bottom: 1px solid #f1f3f4;
}

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

.plan-btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-btn.primary {
  background: #ff6b35;
  color: white;
}

.plan-btn.primary:hover {
  background: #e55a2b;
}

.plan-btn.secondary {
  background: white;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.plan-btn.secondary:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

/* Pricing Section */
.pricing-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #e8f5e8 0%, #d6f0f0 100%);
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-left h3,
.pricing-right h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #4a5568;
}

.price-display {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.price {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2d3748;
  line-height: 1;
  margin-bottom: 8px;
}

.duration {
  font-size: 16px;
  color: #718096;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.faq-header p {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-item p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 30px 0;
}

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

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #cbd5e0;
}

.footer-copyright {
  font-size: 14px;
  color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav {
    gap: 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .profile-images, .profile-images-right {
    flex-direction: row;
    justify-content: center;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .pricing-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .price {
    font-size: 36px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-nav {
    gap: 20px;
  }
  
  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price {
    font-size: 36px;
  }
  
  .faq-header h2 {
    font-size: 28px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
  
  .faq-item p {
    font-size: 14px;
  }
  
  .value-title {
    font-size: 32px;
  }
  
  .value-subtitle {
    font-size: 16px;
  }
  
  .value-stats {
    flex-direction: column;
    gap: 4px;
  }
  
  .stats-number {
    font-size: 20px;
  }
  
  .stats-highlight {
    font-size: 18px;
  }
}

/* Privacy Section */
.privacy-section {
  padding: 60px 0;
  background: #f8f9fa;
  border-top: 1px solid #e2e8f0;
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
}

.founded-text {
  font-size: 14px;
  color: #718096;
  margin-bottom: 20px;
  font-weight: 500;
}

.privacy-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.privacy-item {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.privacy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.privacy-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #f0f9ff;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.privacy-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.3;
}

.privacy-item p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

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

.privacy-btn {
  background: #4299e1;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 15px;
}

.privacy-btn:hover {
  background: #3182ce;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 28px;
  }
  
  .privacy-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .privacy-item {
    padding: 25px 20px;
  }
  
  .privacy-item h3 {
    font-size: 16px;
  }
  
  .privacy-item p {
    font-size: 13px;
  }
}
