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

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

.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, 110, 253, 0.85) 0%, rgba(25, 135, 84, 0.75) 100%);
    z-index: 2;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

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

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

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

/* Block 2 */
.neural-diagnostics {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    position: relative;
}

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

.neural-content {
    position: relative;
    z-index: 2;
}

.neural-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.neural-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.neural-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-img {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.9));
    transform: scale(1.1);
}

.feature-text h4 {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.neural-cta {
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neural-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    filter: brightness(1.2);
}

.neural-visual {
    position: relative;
    z-index: 2;
}

.scan-interface {
    background: rgba(0, 20, 40, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.scan-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.scan-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    margin-right: 0.8rem;
    animation: pulse 2s infinite;
}

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

.scan-status {
    color: #00ffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.scan-cell {
    aspect-ratio: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.scan-cell[data-status="optimal"] {
    border-color: #00ff00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.scan-cell[data-status="warning"] {
    border-color: #ffff00;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 255, 0, 0.05) 100%);
}

.scan-cell[data-status="critical"] {
    border-color: #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.05) 100%);
}

.scan-cell::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: scanPulse 3s infinite;
}

@keyframes scanPulse {
    0%, 100% { 
        width: 4px; 
        height: 4px; 
        opacity: 1; 
    }
    50% { 
        width: 20px; 
        height: 20px; 
        opacity: 0.5; 
    }
}

.scan-metrics {
    space-y: 1.5rem;
}

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

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

.metric-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff 0%, #00ff00 100%);
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

.metric-fill[data-level="94"] { width: 94%; }
.metric-fill[data-level="87"] { width: 87%; }
.metric-fill[data-level="76"] { width: 76%; }

.metric-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

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

.metric-value {
    color: #00ffff;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: right;
}

@media (max-width: 768px) {
    .neural-title {
        font-size: 2.5rem;
    }
    
    .neural-description {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .scan-interface {
        padding: 1.5rem;
    }
    
    .metric-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metric-bar {
        width: 100%;
    }
}

/* Block 3 */
.holographic-workspace {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

.holographic-workspace::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.workspace-header {
  text-align: center;
  margin-bottom: 3rem;
}

.workspace-title {
  color: #00ffff;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.workspace-subtitle {
  color: #a0a0a0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.holo-display {
  background: rgba(0, 50, 100, 0.2);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.holo-frame {
  position: relative;
  height: 400px;
  background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  border-radius: 15px;
  overflow: hidden;
}

.holo-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.component-layer {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.component-img {
  max-width: 300px;
  max-height: 250px;
  opacity: 0.8;
  filter: hue-rotate(180deg) brightness(1.2);
  animation: holoGlow 3s ease-in-out infinite alternate;
}

@keyframes holoGlow {
  0% { filter: hue-rotate(180deg) brightness(1.2) drop-shadow(0 0 10px #00ffff); }
  100% { filter: hue-rotate(200deg) brightness(1.4) drop-shadow(0 0 20px #00ccff); }
}

.diagnostic-points {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.point-marker {
  position: absolute;
  width: 20px;
  height: 20px;
}

.point-marker[data-component="cpu"] {
  top: 25%;
  left: 40%;
}

.point-marker[data-component="ram"] {
  top: 15%;
  right: 30%;
}

.point-marker[data-component="gpu"] {
  bottom: 30%;
  left: 35%;
}

.pulse-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #00ffff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.point-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #00ffff;
}

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

.data-stream {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 150px;
  height: 100px;
}

.stream-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  margin: 8px 0;
  animation: dataFlow 2s linear infinite;
}

.stream-line:nth-child(2) {
  animation-delay: 0.3s;
}

.stream-line:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dataFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.stream-particles {
  position: absolute;
  top: 0;
  right: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10px; animation-delay: 0s; }
.particle:nth-child(2) { top: 25px; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 40px; animation-delay: 1s; }
.particle:nth-child(4) { top: 55px; animation-delay: 1.5s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

.holo-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.control-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #00ffff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.control-btn:hover,
.control-btn.active {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
}

.analysis-panel {
  background: rgba(0, 30, 60, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.panel-icon {
  width: 28px;
  height: 28px;
  filter: hue-rotate(180deg);
}

.panel-header h4 {
  color: #00ffff;
  margin: 0;
  font-size: 1.3rem;
}

.diagnostic-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid;
}

.result-item.status-good {
  border-left-color: #00ff88;
}

.result-item.status-warning {
  border-left-color: #ffaa00;
}

.result-item.status-info {
  border-left-color: #0088ff;
}

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

.status-img {
  width: 24px;
  height: 24px;
}

.result-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.result-title {
  color: #ffffff;
  font-weight: 500;
}

.result-value {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.auto-fix-section h5 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.fix-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 8px;
}

.suggestion-icon {
  width: 20px;
  height: 20px;
  filter: brightness(1.5);
}

.suggestion-text {
  flex-grow: 1;
  color: #ffffff;
  font-size: 0.9rem;
}

.apply-fix-btn {
  padding: 0.4rem 0.8rem;
  background: rgba(0, 255, 255, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.5);
  color: #00ffff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.apply-fix-btn:hover {
  background: rgba(0, 255, 255, 0.3);
  transform: scale(1.05);
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.diagnostic-modes,
.system-vitals {
  background: rgba(0, 30, 60, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
}

.diagnostic-modes h4,
.system-vitals h4 {
  color: #00ffff;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}

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

.mode-card {
  background: rgba(0, 50, 100, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.mode-card:hover {
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
}

.mode-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  filter: brightness(1.1) contrast(1.2);
}

.mode-info h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mode-info p {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.mode-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.85rem;
}

.stat-icon {
  width: 16px;
  height: 16px;
  filter: brightness(1.5);
}

.mode-activate-btn {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #00ffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mode-activate-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 3px 10px rgba(0, 255, 255, 0.2);
  transform: translateY(-1px);
}

.vital-indicators {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

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

.ring-progress {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#00ffff 0deg, #00ffff calc(var(--progress, 0) * 3.6deg), rgba(0, 255, 255, 0.1) calc(var(--progress, 0) * 3.6deg));
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-progress[data-progress="92"] { --progress: 92; }
.ring-progress[data-progress="78"] { --progress: 78; }
.ring-progress[data-progress="85"] { --progress: 85; }

.ring-progress::before {
  content: '';
  position: absolute;
  width: 45px;
  height: 45px;
  background: #0c0c0c;
  border-radius: 50%;
}

.ring-value {
  position: relative;
  color: #00ffff;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.ring-label {
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}

@media (max-width: 768px) {
  .workspace-title {
    font-size: 2.2rem;
  }
  
  .workspace-subtitle {
    font-size: 1rem;
  }
  
  .holo-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .control-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .vital-indicators {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.form-header-icon {
    width: 40px;
    height: 40px;
}

.form-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.order-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

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

.input-group-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.input-icon-img {
    width: 24px;
    height: 24px;
}

.floating-input {
    position: relative;
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 1.1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #667eea;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    transform: translateY(-25px);
    font-size: 0.9rem;
    color: #667eea;
}

.form-label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1.1rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

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

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

.service-options {
    margin-bottom: 40px;
}

.options-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.package-option {
    position: relative;
}

.package-radio {
    display: none;
}

.package-card {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-radio:checked + .package-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.package-icon {
    width: 32px;
    height: 32px;
}

.package-name {
    font-weight: 600;
    font-size: 1rem;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.package-radio:checked + .package-card .package-price {
    color: white;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.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.6s ease;
}

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

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

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.security-icon {
    width: 16px;
    height: 16px;
}

.service-benefits {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    backdrop-filter: blur(20px);
}

.benefits-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.benefit-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.testimonial-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    padding: 25px;
    color: white;
    text-align: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }
    
    .order-form-container {
        padding: 25px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .input-icon {
        align-self: flex-start;
    }
}
