
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.85) 0%, rgba(27, 38, 79, 0.75) 50%, rgba(65, 88, 165, 0.65) 100%);
    z-index: -1;
}

.hero-content {
    padding: 3rem 0;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #b3d9ff;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e8f4fd;
    opacity: 0.9;
    max-width: 90%;
}

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #d1e9ff;
    opacity: 0.85;
    max-width: 85%;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #64b5f6;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #b3d9ff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.6);
    color: #ffffff;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-trust-indicators {
    margin-top: 2rem;
}

.trust-text {
    font-size: 0.95rem;
    color: #b3d9ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(1.2);
}

.trust-badge:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }
}

/* Block 2 */
.cloud-advantages-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.advantage-card {
    background: white;
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.primary-card {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: scale(1.05);
}

.primary-card .advantage-title,
.primary-card .advantage-description {
    color: white;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.primary-card .advantage-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.advantage-icon i {
    font-size: 36px;
    color: white;
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.advantage-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    font-size: 18px;
    color: #10b981;
}

.primary-card .feature-item i {
    color: #fbbf24;
}

.advantage-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 16px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.advantage-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.backup-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-time {
    font-weight: 700;
    color: #3b82f6;
    font-size: 0.95rem;
}

.timeline-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.collaboration-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #f1f5f9;
    border-radius: 16px;
    gap: 8px;
}

.stat-card i {
    font-size: 24px;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

.stat-text {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.advantages-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 32px;
    padding: 60px 48px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

.cta-guarantee {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.guarantee-badge i {
    font-size: 32px;
    color: #fbbf24;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.guarantee-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.guarantee-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        align-items: center;
    }
}

/* Block 3 */
.testimonials-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.testimonials-showcase::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('assets/images/testimonials-pattern.svg');
  opacity: 0.05;
  z-index: 1;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.featured-testimonial {
  grid-column: span 2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

.featured-testimonial .client-name,
.featured-testimonial .client-position,
.featured-testimonial .client-company {
  color: white;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.featured-testimonial .client-avatar {
  border-color: rgba(255, 255, 255, 0.3);
}

.client-info {
  flex: 1;
}

.client-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 5px 0;
}

.client-position {
  font-size: 1rem;
  color: #3b82f6;
  margin: 0 0 3px 0;
  font-weight: 500;
}

.client-company {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.featured-testimonial .rating-stars {
  color: #fde047;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
  font-style: italic;
  border-left: 4px solid #3b82f6;
  padding-left: 20px;
}

.featured-testimonial .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  border-left-color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

.testimonial-metrics {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.metric {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-impact,
.scale-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  background: #ecfdf5;
  border-radius: 25px;
  color: #059669;
  font-weight: 500;
}

.compliance-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.compliance-badge {
  height: 40px;
  width: auto;
}

.performance-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #eff6ff;
  border-radius: 20px;
  color: #1d4ed8;
  font-weight: 500;
  font-size: 0.9rem;
}

.financial-impact {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.impact-metric {
  text-align: center;
  padding: 15px;
  background: #f0fdf4;
  border-radius: 12px;
  flex: 1;
}

.impact-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16a34a;
}

.impact-label {
  font-size: 0.85rem;
  color: #166534;
}

.testimonials-summary {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.summary-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.stat-content {
  text-align: left;
}

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

.stat-description {
  font-size: 1rem;
  color: #64748b;
}

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

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-testimonial-primary,
.btn-testimonial-secondary {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-testimonial-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
}

.btn-testimonial-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  color: white;
}

.btn-testimonial-secondary {
  background: white;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.btn-testimonial-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
  color: #374151;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-testimonial {
    grid-column: span 1;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .testimonials-summary {
    padding: 30px 20px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-metrics {
    flex-direction: column;
    gap: 15px;
  }
  
  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .summary-stat {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-content {
    text-align: center;
  }
}

/* Block 4 */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #059669;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.1rem;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 1rem;
    z-index: 3;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    color: #3b82f6;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.submit-btn {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

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

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

.form-security {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #059669;
    font-size: 0.9rem;
}

.security-text {
    display: flex;
    flex-direction: column;
}

.security-title {
    font-weight: 600;
}

.security-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

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

.privacy-notice p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.privacy-notice a {
    color: #3b82f6;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.form-testimonial {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.testimonial-quote p {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

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

.author-title {
    font-size: 0.9rem;
    color: #64748b;
}

.contact-alternatives {
    margin-bottom: 60px;
}

.alternative-header {
    text-align: center;
    margin-bottom: 40px;
}

.alternative-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.alternative-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-method {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.method-info {
    color: #374151;
    font-weight: 500;
    margin-bottom: 4px;
}

.method-availability {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
}

.trust-indicators {
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.enterprise-logos {
    margin-top: 40px;
}

.logos-subtitle {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-benefits {
        gap: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .logos-grid {
        gap: 24px;
    }
    
    .partner-logo {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
    
    .alternative-title {
        font-size: 1.5rem;
    }
    
    .contact-method {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
}
