.fullscreen-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-section {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-section {
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.animated-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  opacity: 0.1;
  animation: gradientShift 10s ease infinite;
  background-size: 200% 200%;
  will-change: background-position;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-start);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.hero-content h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-content h1 {
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 32px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 0.2s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-indicator::before {
  content: '↓';
  font-size: 32px;
  color: var(--primary-start);
}

.stats-section {
  background: var(--secondary);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  box-sizing: border-box;
}

.stat-card {
  text-align: center;
  padding: 60px 40px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  word-wrap: break-word;
  box-sizing: border-box;
}

.stat-card:hover {
  border-color: var(--primary-start);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
  transform: scale(1.05);
}

.stat-number {
  font-size: 96px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-label {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.benefits-section {
  background: var(--background);
  position: relative;
}

.diagonal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.diagonal-left {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.diagonal-left h2 {
  font-size: 72px;
  color: var(--text);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 20px;
  box-sizing: border-box;
}

.diagonal-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  gap: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.benefit-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  min-width: 0;
  overflow: hidden;
}

.benefit-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.benefit-icon {
  flex-shrink: 0;
}

.benefit-content {
  min-width: 0;
  flex: 1;
}

.benefit-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.how-it-works-section {
  background: var(--secondary);
  position: relative;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  max-width: 350px;
  min-width: 280px;
  text-align: center;
  padding: 60px 40px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  overflow: hidden;
  word-wrap: break-word;
  box-sizing: border-box;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-size: 128px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.reviews-carousel-section {
  background: var(--background);
  position: relative;
}

.carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-slide {
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.review-slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 2;
}

.review-quote {
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.review-author {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-location {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.carousel-nav {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-start);
  width: 30px;
  border-radius: 6px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--text);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 100;
  outline: none;
}

.carousel-arrow:hover {
  background: var(--primary-start);
  border-color: var(--primary-start);
}

.carousel-arrow-prev {
  left: 40px;
}

.carousel-arrow-next {
  right: 40px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  position: relative;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.cta-content h2 {
  font-size: 72px;
  margin-bottom: 30px;
  color: var(--text);
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cta-button {
  min-width: 250px;
}

.cta-section .btn {
  background: var(--text);
  color: var(--primary-start);
  border: 2px solid var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text);
  color: var(--text);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  word-wrap: break-word;
  box-sizing: border-box;
}

.contact-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  will-change: transform;
}

