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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.page-container {
  min-height: 100vh;
}

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

/* Typography */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #2563eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f9fafb;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* Hero Section */
.hero-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #dcfce7 100%);
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
}

.hero-subtitle-highlight {
  font-size: 1.25rem;
  color: #2563eb;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Parallax Sections */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.problem-section {
  background-image: url("images/problem.jpg");
  padding: 5rem 0;
}

.whatyougot-section {
  background-image: url("images/whatyougot.jpg");
  padding: 5rem 0;
}

.outcome-section {
  background-image: url("images/outcomefaq.jpg");
  padding: 5rem 0;
}

.about-section {
  background-image: url("images/outcomefaq.jpg");
  padding: 5rem 0;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0px);
}

.section-content {
  position: relative;
  z-index: 10;
}

/* Problem Section */
.problem-story-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quote-icon {
  background: #dbeafe;
  color: #2563eb;
  padding: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.story-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.story-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.daily-problems {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
}

.daily-problems h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.problem-item p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
}

.expert-insight {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.insight-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.insight-content p:last-child {
  margin-bottom: 0;
}

/* Problem Conclusion Section */
.problem-conclusion {
  margin-top: 3rem;
}

.conclusion-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.conclusion-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.conclusion-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.conclusion-card .btn {
  background: white;
  color: #667eea;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.conclusion-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* What You Get Section */
.outcomes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.outcome-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.outcome-card:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.outcome-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.outcome-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Results Section */
.results-section {
  padding: 5rem 0;
  background: white;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: white;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-icon {
  background: #dcfce7;
  color: #059669;
  padding: 0.5rem;
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  color: #1f2937;
}

.author-location {
  font-size: 0.875rem;
  color: #6b7280;
}

/* 6 Cards Section with Uniform Background */
.insight-cards-section {
  margin: 3rem 0;
}

.insight-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.insight-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.insight-card:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.insight-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problem-story-card-small {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-story-card-small:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.problem-story-card-small h4 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  font-style: normal;
}

.process-section {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.process-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number {
  background: linear-gradient(135deg, #2563eb, #059669);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.step-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* About Section */
.about-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.about-icon {
  background: #dbeafe;
  color: #2563eb;
  padding: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-item p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0;
  color: #1f2937;
}

.about-item strong {
  color: #2563eb;
}

.about-item em {
  color: #f59e0b;
}

/* Guarantee Section */
.guarantee-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
}

.guarantee-content {
  text-align: center;
}

.guarantee-icon {
  background: white;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guarantee-icon .icon {
  width: 6rem;
  height: 6rem;
  color: #2563eb;
}

.guarantee-card {
  background: white;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-main {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.guarantee-sub {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.guarantee-highlight {
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  padding: 2rem;
  border-radius: 0.5rem;
}

.guarantee-highlight p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
}

/* Final CTA Section */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2563eb, #059669);
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-subtitle {
  font-size: 2rem;
  color: #bfdbfe;
  margin-bottom: 3rem;
  font-weight: 300;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-info {
  color: white;
}

.cta-info-main {
  font-weight: 600;
  font-size: 1.125rem;
}

.cta-info-sub {
  color: #bfdbfe;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
}

.carousel-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.carousel-content {
  padding: 2rem;
}

.carousel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.carousel-image {
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  background: #f8fafc;
}

.carousel-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}

.result-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-icon.before {
  background: #fee2e2;
  color: #dc2626;
}

.result-icon.after {
  background: #dcfce7;
  color: #16a34a;
}

.result-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.result-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
  color: #374151;
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #3b82f6;
  transform: scale(1.2);
}

/* Time Highlight Section */
.time-highlight {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.time-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.time-card.center {
  text-align: center;
}

.time-number {
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
}

/* Consultation Buttons */
.consultation-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.consultation-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.consultation-header span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

.service-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 120px;
  justify-content: center;
}

.service-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.viber-btn {
  background: #665cac;
  color: white;
  border-color: #665cac;
}

.viber-btn:hover {
  background: #5a4f96;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 92, 172, 0.3);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.whatsapp-btn:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.telegram-btn {
  background: #0088cc;
  color: white;
  border-color: #0088cc;
}

.telegram-btn:hover {
  background: #0077b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-subtitle {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .final-cta {
    flex-direction: column;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .time-card {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .time-number {
    font-size: 3rem;
  }

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

  .outcomes-cards {
    grid-template-columns: 1fr;
  }

  .about-item {
    flex-direction: column;
    text-align: center;
  }

  .carousel-container {
    margin: 0 -1rem;
    border-radius: 0;
  }

  .carousel-content {
    padding: 1.5rem;
  }

  .carousel-title {
    font-size: 1.25rem;
  }

  .carousel-image {
    height: 450px;
  }

  .result-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .result-icon {
    align-self: center;
  }

  .insight-cards-grid,
  .problem-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .insight-card,
  .problem-story-card-small {
    padding: 1.5rem;
  }

  .service-buttons {
    flex-direction: column;
    width: 100%;
  }

  .service-btn {
    width: 100%;
    min-width: auto;
  }

  .consultation-header span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .problem-story-card,
  .process-section,
  .about-card {
    padding: 2rem;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
  }

  .story-header h3 {
    font-size: 1.5rem;
  }

  .carousel-image {
    height: 350px;
  }

  .problem-story-item .story-header h3 {
    font-size: 1.25rem;
  }
}

/* Problem Stories Grid */
.problem-stories-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-story-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.problem-story-item:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.problem-story-item .story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.problem-story-item .quote-icon {
  background: #dbeafe;
  color: #2563eb;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-story-item .quote-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.problem-story-item .story-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.problem-story-item p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .problem-stories-grid {
    gap: 1.5rem;
  }

  .problem-story-item {
    padding: 1.5rem;
  }

  .problem-story-item .story-header h3 {
    font-size: 1.5rem;
  }

  .problem-story-item p {
    font-size: 1rem;
  }

  .outcome-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .problem-story-item .story-header h3 {
    font-size: 1.25rem;
  }
}
