
/* Block 1 */
.hero-banner {
      position: relative;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    
    .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('hero-background.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: 1;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }
    
    .hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
    }
    
    .hero-text {
      color: white;
      text-align: left;
    }
    
    .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.6;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-features {
      display: flex;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }
    
    .feature-item i {
      color: #ffd700;
      font-size: 1.2rem;
    }
    
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .hero-cta {
      background: linear-gradient(45deg, #ff6b6b, #ee5a24);
      border: none;
      padding: 1rem 2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    
    .hero-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
      background: linear-gradient(45deg, #ff5252, #d63031);
    }
    
    .btn-outline-light {
      border: 2px solid rgba(255, 255, 255, 0.8);
      color: white;
      padding: 1rem 2rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-outline-light:hover {
      background: white;
      color: #667eea;
      border-color: white;
      transform: translateY(-2px);
    }
    
    .hero-image {
      text-align: center;
      animation: float 6s ease-in-out infinite;
    }
    
    .hero-image img {
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      max-height: 500px;
      object-fit: cover;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-20px);
      }
    }
    
    @media (max-width: 991px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-text {
        text-align: center;
        margin-bottom: 3rem;
      }
      
      .hero-features {
        justify-content: center;
      }
      
      .hero-actions {
        justify-content: center;
      }
    }
    
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-description {
        font-size: 1.1rem;
      }
      
      .hero-features {
        flex-direction: column;
        gap: 1rem;
      }
      
      .hero-actions {
        flex-direction: column;
      }
      
      .hero-cta, .btn-outline-light {
        width: 100%;
      }
    }

/* Block 2 */
.analytics-dashboard {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      position: relative;
      overflow: hidden;
    }
    
    .analytics-dashboard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    }
    
    .container {
      position: relative;
      z-index: 2;
    }
    
    .dashboard-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 1rem;
    }
    
    .dashboard-subtitle {
      font-size: 1.1rem;
      color: #718096;
      line-height: 1.6;
    }
    
    .analytics-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .analytics-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    
    .primary-card {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }
    
    .card-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .metric-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    
    .metric-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    
    .metric-value {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    
    .metric-trend {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
    }
    
    .metric-trend.positive {
      color: #68d391;
    }
    
    .progress-visualization {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }
    
    .progress-ring {
      position: relative;
      width: 120px;
      height: 120px;
    }
    
    .ring-background,
    .ring-progress {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 8px solid;
    }
    
    .ring-background {
      border-color: rgba(255, 255, 255, 0.2);
    }
    
    .ring-progress {
      position: absolute;
      top: 0;
      left: 0;
      border-color: #48bb78;
      border-top-color: transparent;
      border-right-color: transparent;
      transform: rotate(-90deg);
      animation: progressRotate 2s ease-out forwards;
    }
    
    @keyframes progressRotate {
      from {
        transform: rotate(-90deg);
      }
      to {
        transform: rotate(225deg);
      }
    }
    
    .secondary-card {
      background: white;
      color: #2d3748;
    }
    
    .metric-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      height: 100%;
    }
    
    .metric-item {
      text-align: center;
      padding: 1rem;
      background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
      border-radius: 15px;
      transition: transform 0.3s ease;
    }
    
    .metric-item:hover {
      transform: scale(1.05);
    }
    
    .metric-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: #667eea;
      margin-bottom: 0.5rem;
    }
    
    .metric-label {
      font-size: 0.9rem;
      color: #718096;
      font-weight: 500;
    }
    
    .feature-showcase {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    
    .feature-showcase:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }
    
    .feature-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .feature-showcase:hover .feature-image img {
      transform: scale(1.1);
    }
    
    .feature-content {
      padding: 1.5rem;
    }
    
    .feature-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #2d3748;
      margin-bottom: 0.75rem;
    }
    
    .feature-description {
      color: #718096;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
    }
    
    .insights-panel {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .insights-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid #f1f5f9;
    }
    
    .insights-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #2d3748;
      margin: 0;
    }
    
    .insights-timestamp {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #718096;
      font-size: 0.9rem;
    }
    
    .insights-grid {
      display: grid;
      gap: 1rem;
    }
    
    .insight-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: #f8fafc;
      border-radius: 15px;
      transition: background-color 0.3s ease;
    }
    
    .insight-item:hover {
      background: #e2e8f0;
    }
    
    .insight-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      flex-shrink: 0;
    }
    
    .insight-icon.success {
      background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    }
    
    .insight-icon.warning {
      background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    }
    
    .insight-icon.info {
      background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    }
    
    .insight-text {
      color: #4a5568;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    
    @media (max-width: 768px) {
      .analytics-dashboard {
        padding: 3rem 0;
      }
      
      .dashboard-title {
        font-size: 2rem;
      }
      
      .analytics-card {
        padding: 1.5rem;
      }
      
      .card-header {
        flex-direction: column;
        text-align: center;
      }
      
      .metric-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .insights-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }
      
      .insight-item {
        flex-direction: column;
        text-align: center;
      }
      
      .progress-ring {
        width: 100px;
        height: 100px;
      }
    }

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

    .neural-workspace::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .neural-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #ffffff, #e3f2fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .neural-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      line-height: 1.6;
    }

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

    .brain-activity-monitor {
      position: relative;
    }

    .neural-image {
      border-radius: 20px;
      filter: brightness(0.8);
      transition: filter 0.3s ease;
    }

    .neural-visual:hover .neural-image {
      filter: brightness(1);
    }

    .activity-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0,0,0,0.7);
      padding: 1rem;
      border-radius: 15px;
      backdrop-filter: blur(10px);
    }

    .wave-indicator {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .wave-indicator:last-child {
      margin-bottom: 0;
    }

    .wave-label {
      font-size: 0.8rem;
      font-weight: 600;
      min-width: 80px;
    }

    .wave-strength {
      display: flex;
      gap: 2px;
    }

    .wave-bar {
      width: 4px;
      height: 20px;
      background: rgba(255,255,255,0.3);
      border-radius: 2px;
      transition: background 0.3s ease;
    }

    .wave-bar.active {
      background: #4fc3f7;
      animation: pulse 2s ease-in-out infinite alternate;
    }

    @keyframes pulse {
      0% { opacity: 0.6; }
      100% { opacity: 1; }
    }

    .neural-content {
      padding: 2rem 0;
    }

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

    .feature-text {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

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

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .benefit-icon {
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.1);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #4fc3f7;
      flex-shrink: 0;
      backdrop-filter: blur(10px);
    }

    .benefit-content {
      flex: 1;
    }

    .benefit-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .benefit-description {
      opacity: 0.8;
      line-height: 1.5;
      margin: 0;
    }

    .neural-card {
      background: rgba(255,255,255,0.1);
      border-radius: 20px;
      overflow: hidden;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

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

    .card-visual {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .card-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
    }

    .pulse-indicator {
      position: absolute;
      top: 15px;
      right: 15px;
    }

    .pulse-ring {
      width: 30px;
      height: 30px;
      border: 2px solid #4fc3f7;
      border-radius: 50%;
      animation: pulse-ring 2s ease-out infinite;
    }

    .pulse-dot {
      width: 10px;
      height: 10px;
      background: #4fc3f7;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    @keyframes pulse-ring {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(2); opacity: 0; }
    }

    .light-spectrum {
      position: absolute;
      bottom: 15px;
      left: 15px;
      display: flex;
      gap: 5px;
    }

    .spectrum-bar {
      width: 8px;
      height: 30px;
      border-radius: 4px;
    }

    .spectrum-bar.warm { background: #ff9800; }
    .spectrum-bar.neutral { background: #ffeb3b; }
    .spectrum-bar.cool { background: #2196f3; }

    .air-particles {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
    }

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

    .particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
    .particle-2 { top: 60%; left: 70%; animation-delay: 1s; }
    .particle-3 { top: 40%; left: 40%; animation-delay: 2s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px); opacity: 0.6; }
      50% { transform: translateY(-20px); opacity: 1; }
    }

    .card-content {
      padding: 1.5rem;
    }

    .card-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .card-text {
      opacity: 0.9;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .metric-display {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .metric-value {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .metric-status {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
    }

    .metric-status.optimal { background: #4caf50; color: white; }
    .metric-status.active { background: #ff9800; color: white; }
    .metric-status.excellent { background: #2196f3; color: white; }

    .neural-dashboard {
      background: rgba(255,255,255,0.1);
      border-radius: 25px;
      padding: 2rem;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .dashboard-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0;
    }

    .sync-status {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }

    .sync-indicator {
      width: 12px;
      height: 12px;
      background: #4caf50;
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0.3; }
    }

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

    .performance-metric {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.05);
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .metric-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .metric-icon.cognitive { background: linear-gradient(45deg, #e91e63, #f44336); }
    .metric-icon.focus { background: linear-gradient(45deg, #ff9800, #ffc107); }
    .metric-icon.wellness { background: linear-gradient(45deg, #4caf50, #8bc34a); }

    .metric-data {
      flex: 1;
    }

    .metric-label {
      font-size: 0.9rem;
      opacity: 0.8;
      margin-bottom: 0.25rem;
    }

    .metric-value-large {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .metric-trend {
      font-size: 0.8rem;
      font-weight: 500;
    }

    .metric-trend.positive { color: #4caf50; }
    .metric-trend.stable { color: #ff9800; }

    .metric-graph {
      width: 40px;
      height: 40px;
      position: relative;
      flex-shrink: 0;
    }

    .graph-bar {
      width: 100%;
      background: linear-gradient(to top, #4fc3f7, #29b6f6);
      border-radius: 4px;
      transition: height 1s ease;
      position: absolute;
      bottom: 0;
    }

    .graph-bar[data-height="67"] { height: 67%; }
    .graph-bar[data-height="84"] { height: 84%; }
    .graph-bar[data-height="91"] { height: 91%; }

    @media (max-width: 768px) {
      .neural-title {
        font-size: 2rem;
      }

      .neural-workspace {
        padding: 4rem 0;
      }

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

      .performance-grid {
        grid-template-columns: 1fr;
      }

      .performance-metric {
        flex-direction: column;
        text-align: center;
      }

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

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
  from { transform: translateY(100vh); }
  to { transform: translateY(-100vh); }
}

.order-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

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

.form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
}

.form-title {
  color: #2c3e50;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.form-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  color: #495057;
  font-weight: 500;
  font-size: 0.9rem;
}

.benefit-tag i {
  color: #28a745;
}

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

.form-label {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.input-wrapper {
  position: relative;
}

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

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

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

.form-input::placeholder {
  color: #adb5bd;
}

.form-features {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
}

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

.feature-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-title {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.form-actions {
  text-align: center;
  margin: 2rem 0;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8, #6a42a0);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.form-guarantee {
  margin-top: 1rem;
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-guarantee i {
  color: #ffc107;
  margin-right: 0.5rem;
}

.form-trust {
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
  margin-top: 2rem;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge {
  width: 50px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
}

.trust-text {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

@media (max-width: 768px) {
  .order-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .form-title {
    font-size: 1.75rem;
  }
  
  .form-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .order-form-section {
    padding: 3rem 0;
  }
  
  .order-form-wrapper {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
}
