
/* Block 1 */
.hero-banner {
  position: relative;
  background-image: url('hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: relative;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
  width: 100%;
  padding: 4rem 0;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-overlay > .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4fc3f7;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 2;
  padding-left: 2rem;
}

.hero-image img {
  border: 4px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 3;
}

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

@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-image {
    padding-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .hero-stats {
    gap: 1rem;
  }
}

/* Block 2 */
.features-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 50%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.features-showcase::before {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.features-showcase::after {
    content: '';
    width: 300px;
    height: 300px;
    background: linear-gradient(225deg, #ffeaa7, #fab1a0);
    border-radius: 50%;
    opacity: 0.08;
    bottom: -150px;
    left: -150px;
    z-index: 1;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    z-index: 1;
}

.feature-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-text {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.feature-metrics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.metric-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.15);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.cta-description {
    color: #718096;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-feature-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-feature-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 992px) {
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-showcase {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Block 3 */
.success-stories-hub {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-hub::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 103, 132, 0.1) 0%, transparent 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.success-stories-hub .container {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-story {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea, #764ba2) border-box;
}

.story-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-image {
    transform: scale(1.05);
}

.story-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
}

.transformation-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.transformation-text {
    font-weight: 700;
    color: #1a202c;
    font-size: 0.95rem;
}

.story-content {
    padding: 2rem;
}

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

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.3rem 0;
}

.profile-role {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.profile-metrics {
    display: flex;
    gap: 0.5rem;
}

.metric-chip {
    background: #e2e8f0;
    color: #475569;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #667eea;
    background: rgba(102, 126, 234, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 0 10px 10px 0;
}

.story-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.achievement-icon {
    width: 20px;
    color: #10b981;
    font-size: 1rem;
}

.achievement-text {
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.compact-story {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.compact-media {
    position: relative;
    flex-shrink: 0;
}

.compact-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.compact-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-align: center;
}

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

.compact-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.compact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.compact-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.2rem 0;
}

.compact-role {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.compact-quote {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    font-style: italic;
    margin: 0;
}

.community-showcase {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.showcase-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.showcase-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.community-stats {
    margin-bottom: 2.5rem;
}

.stat-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.stat-visual {
    flex-shrink: 0;
}

.stat-graphic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.stat-numbers {
    display: flex;
    gap: 3rem;
}

.stat-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-figure {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a202c;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.3rem;
}

.showcase-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-community-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-community-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-community-secondary {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-community-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .story-grid {
        margin-top: 2rem;
    }
    
    .stat-group {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-numbers {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .success-stories-hub {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .community-showcase {
        padding: 2rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-community-primary,
    .btn-community-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .compact-story {
        flex-direction: column;
        text-align: center;
    }
    
    .compact-profile {
        justify-content: center;
    }
}

/* Block 4 */
.order-form-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.header-visual {
  margin-bottom: 1.5rem;
}

.header-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-subtitle {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.trust-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.trust-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #667eea;
}

.consultation-form {
  margin-top: 2rem;
}

.input-group-modern {
  margin-bottom: 2rem;
  position: relative;
}

.floating-input {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1.5rem 1rem 0.75rem 3.5rem;
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  outline: none;
}

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

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-0.5rem) scale(0.85);
  color: #667eea;
}

.form-label {
  position: absolute;
  left: 3.5rem;
  top: 1.25rem;
  color: #a0aec0;
  font-size: 1rem;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left center;
}

.input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.form-input:focus ~ .input-underline {
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.field-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.form-input:focus ~ .input-icon .field-icon {
  opacity: 1;
}

.form-features {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.feature-highlight:last-child {
  margin-bottom: 0;
}

.feature-mini-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 500;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

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

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.form-guarantee {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(72, 187, 120, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guarantee-seal {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.9rem;
  color: #2d5438;
  line-height: 1.5;
}

.guarantee-text strong {
  color: #22543d;
  font-weight: 700;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s infinite ease-in-out;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 12s;
}

.particle-4 {
  top: 40%;
  right: 25%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle-5 {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
  animation-duration: 11s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) translateX(-15px) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-30px) translateX(5px) scale(1.2);
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .trust-indicators {
    gap: 1rem;
  }
  
  .trust-item {
    padding: 0.5rem 0.75rem;
  }
  
  .form-guarantee {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .order-form-section {
    padding: 3rem 0;
  }
  
  .form-title {
    font-size: 1.75rem;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
}
