
/* Block 1 */
.hero-banner-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%),
                url('courthouse-background.jpg') center/cover no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.95) 0%, 
        rgba(22, 33, 62, 0.9) 50%, 
        rgba(15, 52, 96, 0.85) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content-wrapper {
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.hero-content {
    color: white;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #e8eaf6;
    opacity: 0.95;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #64b5f6;
    margin-bottom: 0.5rem;
}

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

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

.btn-primary-hero {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    cursor: pointer;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.6);
    background: linear-gradient(135deg, #1565c0 0%, #2196f3 100%);
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid #64b5f6;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: #64b5f6;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary-hero:hover {
    background: #64b5f6;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.2);
}

.hero-badge {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    margin-top: 1.5rem;
    max-width: fit-content;
}

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

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #64b5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f6;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: #64b5f6;
    color: #1a1a2e;
    transform: translateY(-3px);
}

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

@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-stats {
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-stats {
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}

/* Block 2 */
.ai-automation-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
      position: relative;
      overflow: hidden;
    }
    
    .ai-automation-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }
    
    .tech-badge {
      display: inline-block;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 8px 24px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    
    .section-title {
      font-size: 3.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 25px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .section-subtitle {
      font-size: 1.2rem;
      color: #6c757d;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }
    
    .tech-features-grid {
      margin-bottom: 100px;
    }
    
    .tech-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.4s ease;
      margin-bottom: 30px;
      height: 100%;
    }
    
    .tech-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    .tech-icon-wrapper {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
    }
    
    .tech-icon {
      font-size: 2rem;
      color: white;
    }
    
    .tech-card-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 15px;
    }
    
    .tech-card-description {
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 25px;
    }
    
    .tech-metrics {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .metric-value {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .metric-label {
      font-size: 0.9rem;
      color: #6c757d;
      font-weight: 500;
    }
    
    .ai-showcase {
      margin-bottom: 80px;
      align-items: center;
    }
    
    .ai-visual-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }
    
    .ai-showcase-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
    }
    
    .ai-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 15px 25px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .processing-indicator {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: #667eea;
    }
    
    .pulse-dot {
      width: 10px;
      height: 10px;
      background: #667eea;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.2); }
    }
    
    .benefits-title {
      font-size: 2rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 40px;
    }
    
    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .benefit-icon i {
      font-size: 1.5rem;
      color: white;
    }
    
    .benefit-content h4 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
    
    .benefit-content p {
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 0;
    }
    
    .ai-cta-section {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 25px;
      padding: 60px;
      text-align: center;
      color: white;
    }
    
    .cta-content h3 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .cta-content p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      opacity: 0.9;
    }
    
    .ai-cta-button {
      background: white;
      color: #667eea;
      border: none;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .ai-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }
    
    @media (max-width: 768px) {
      .ai-automation-section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2.5rem;
      }
      
      .tech-card {
        padding: 30px 20px;
      }
      
      .ai-showcase-image {
        height: 300px;
      }
      
      .ai-cta-section {
        padding: 40px 20px;
      }
      
      .cta-content h3 {
        font-size: 2rem;
      }
      
      .benefit-item {
        gap: 15px;
      }
      
      .benefit-icon {
        width: 50px;
        height: 50px;
      }
    }

/* Block 3 */
.quantum-security-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.quantum-security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quantum-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quantum-security-section .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.quantum-security-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.security-grid {
    margin-bottom: 4rem;
}

.quantum-visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quantum-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.security-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.encryption-indicator {
    text-align: center;
    color: #fff;
}

.quantum-particles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.particle {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    animation: quantumPulse 2s infinite ease-in-out;
}

.particle:nth-child(2) {
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    animation-delay: 1s;
}

@keyframes quantumPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.encryption-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.security-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.security-metric {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}

.metric-number {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.blockchain-section {
    margin-bottom: 4rem;
}

.blockchain-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.blockchain-card:hover {
    transform: translateY(-10px);
}

.blockchain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.blockchain-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blockchain-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blockchain-hash {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #495057;
    border: 1px solid #dee2e6;
}

.neural-analysis {
    margin-bottom: 4rem;
}

.neural-header {
    text-align: center;
    margin-bottom: 2rem;
}

.neural-header h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.neural-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

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

.analysis-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.analysis-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.analysis-data {
    flex-grow: 1;
}

.data-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.data-value {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.analysis-progress {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    transition: width 2s ease;
}

.progress-bar[data-progress="87"] {
    width: 87%;
}

.progress-bar[data-progress="23"] {
    width: 23%;
}

.progress-bar[data-progress="98"] {
    width: 98%;
}

.security-cta-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.security-cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.security-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .security-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .quantum-security-section .section-title {
        font-size: 2rem;
    }
    
    .neural-dashboard {
        grid-template-columns: 1fr;
    }
    
    .analysis-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .quantum-security-section {
        padding: 4rem 0;
    }
    
    .security-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .blockchain-card {
        margin-bottom: 2rem;
    }
}

/* Block 4 */
.order-form-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  position: relative;
}

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff10"><polygon points="0,100 100,0 200,50 300,10 400,60 500,30 600,80 700,20 800,70 900,40 1000,90 1000,100"/></svg>');
  opacity: 0.1;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.form-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

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

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

.form-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.consultation-form {
  padding: 3rem;
}

.form-progress {
  margin-bottom: 2rem;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #a0aec0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: scale(1.1);
}

.progress-text {
  text-align: center;
  color: #4a5568;
  font-size: 0.9rem;
}

.field-group {
  margin-bottom: 1.5rem;
}

.field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 1rem;
  z-index: 1;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

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

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

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.button-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.submit-button:hover .button-glow {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.form-security {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #38a169;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.privacy-text {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
}

.form-benefits {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.benefit-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.benefit-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem 1rem;
}

.benefit-content h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #e2e8f0;
  font-size: 0.95rem;
  margin: 0;
}

.features-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-text {
  color: #2d3748;
  font-size: 0.95rem;
}

.testimonial-widget {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.testimonial-text {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.author-name {
  font-weight: 600;
  color: #2d3748;
  display: block;
  font-size: 0.95rem;
}

.author-case {
  color: #718096;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .form-container .row {
    flex-direction: column-reverse;
  }
  
  .consultation-form {
    padding: 2rem 1.5rem;
  }
  
  .form-benefits {
    padding: 2rem 1.5rem;
  }
  
  .form-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .order-form-section {
    padding: 2rem 0;
  }
  
  .progress-indicator {
    gap: 1rem;
  }
  
  .step {
    width: 35px;
    height: 35px;
  }
  
  .form-title {
    font-size: 1.75rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
}
