
/* Block 1 */
.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    color: #1f2937;
}

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

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: #1f2937;
    animation: float 6s ease-in-out infinite;
}

.float-card i {
    font-size: 1.5rem;
    color: #667eea;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

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

@media (max-width: 991px) {
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-image {
        transform: none;
    }
    
    .float-card {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
    }
    
    .floating-elements {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.875rem 2rem;
    }
}

/* Block 2 */
.quantum-future-tech {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow: hidden;
}

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

.tech-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.quantum-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00d4ff, #ffffff, #ff6b6b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  line-height: 1.2;
}

.quantum-subtitle {
  font-size: 1.3rem;
  color: #b8c6db;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.quantum-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.quantum-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.primary-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 107, 0.1));
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.card-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quantum-card:hover .card-glow {
  opacity: 1;
}

.tech-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 212, 255, 0.3);
}

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

.quantum-card:hover .tech-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #00d4ff;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8c6db;
  text-align: center;
  margin-bottom: 25px;
}

.tech-metrics {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.metric {
  background: rgba(0, 212, 255, 0.2);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.progress-indicator {
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 95%;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  border-radius: 3px;
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 95%; }
}

.progress-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00d4ff;
}

.feature-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 107, 107, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.ai-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

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

.quantum-showcase {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  padding: 60px 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 25px;
}

.showcase-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8c6db;
  margin-bottom: 30px;
}

.innovation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.innovation-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8f4f8;
  font-size: 1rem;
}

.innovation-list li:before {
  content: '▸';
  color: #00d4ff;
  font-weight: bold;
  margin-right: 12px;
}

.quantum-cta-btn {
  background: linear-gradient(45deg, #00d4ff, #ff6b6b);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.quantum-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.showcase-visual {
  text-align: center;
}

.lab-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-data {
  margin-top: 30px;
}

.data-stream {
  display: inline-block;
  margin: 0 15px;
  animation: float 3s ease-in-out infinite;
}

.data-stream:nth-child(2) {
  animation-delay: -1s;
}

.data-stream:nth-child(3) {
  animation-delay: -2s;
}

.data-point {
  background: rgba(0, 212, 255, 0.2);
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: block;
}

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

@media (max-width: 768px) {
  .quantum-title {
    font-size: 2.5rem;
  }
  
  .quantum-grid {
    grid-template-columns: 1fr;
  }
  
  .primary-card {
    grid-column: 1;
  }
  
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .quantum-showcase {
    padding: 40px 20px;
  }
}

/* Block 3 */
.biotech-integration {
    padding: 120px 0;
    background: linear-gradient(145deg, #0a1a0a 0%, #1a3d1a 50%, #0f2a0f 100%);
    position: relative;
    overflow: hidden;
}

.biotech-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(39, 174, 96, 0.08) 0%, transparent 50%);
    animation: bioGlow 8s ease-in-out infinite alternate;
}

@keyframes bioGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

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

.pulse-indicator {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    position: relative;
}

.pulse-core {
    width: 20px;
    height: 20px;
    background: #2ecc71;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px #2ecc71;
}

.pulse-ring {
    width: 60px;
    height: 60px;
    border: 2px solid #2ecc71;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
}

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

.biotech-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #58d68d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
}

.biotech-subtitle {
    font-size: 1.3rem;
    color: #a8d5ba;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.biotech-ecosystem {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 60px 20px;
}

.central-hub {
    background: linear-gradient(135deg, #1e8449 0%, #239b56 100%);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.3);
    border: 2px solid rgba(46, 204, 113, 0.4);
}

.node-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 25px;
    border: 3px solid #2ecc71;
}

.node-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.node-desc {
    color: #d5f4e6;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.bio-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.metric-item {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

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

.connection {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, #2ecc71, transparent);
    animation: neuralPulse 3s infinite;
}

.conn-1 { height: 150px; top: -75px; left: 30%; }
.conn-2 { height: 120px; top: -60px; right: 25%; }
.conn-3 { height: 130px; top: -65px; left: 70%; animation-delay: 1s; }

@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px #2ecc71; }
}

.ecosystem-satellites {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.satellite-node {
    background: rgba(22, 160, 133, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.satellite-node:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.4);
}

.satellite-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #2ecc71;
}

.satellite-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 12px;
}

.satellite-desc {
    color: #a8d5ba;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.activity-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
    animation: blink 2s infinite;
}

.activity-dot.active {
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.activity-text {
    color: #58d68d;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.sensor-grid {
    display: flex;
    gap: 8px;
}

.sensor-point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f39c12;
    animation: sensorPulse 1.5s infinite;
}

.sensor-point:nth-child(2) { animation-delay: 0.5s; }
.sensor-point:nth-child(3) { animation-delay: 1s; }

@keyframes sensorPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.adaptivity-bar {
    background: rgba(46, 204, 113, 0.2);
    height: 8px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.adapt-fill {
    background: linear-gradient(to right, #2ecc71, #58d68d);
    height: 100%;
    width: 98%;
    border-radius: 4px;
    animation: adaptFill 3s ease-in-out infinite;
}

.adapt-label {
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    display: block;
}

@keyframes adaptFill {
    0%, 100% { width: 95%; }
    50% { width: 100%; }
}

.computation-flow {
    position: relative;
    height: 20px;
}

.flow-particle {
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
    position: absolute;
    animation: flowMove 2s linear infinite;
}

.p1 { left: 0; animation-delay: 0s; }
.p2 { left: 0; animation-delay: 0.7s; }
.p3 { left: 0; animation-delay: 1.4s; }

@keyframes flowMove {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.biotech-showcase {
    margin-top: 80px;
}

.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.living-computer-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    border: 3px solid rgba(46, 204, 113, 0.3);
}

.bio-overlay {
    position: relative;
    margin-top: -50px;
    z-index: 1;
}

.dna-helix {
    position: relative;
    height: 100px;
    margin: 20px 0;
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #2ecc71, transparent, #2ecc71);
    animation: helixRotate 4s linear infinite;
}

.helix-strand:nth-child(2) {
    animation-delay: 2s;
    background: linear-gradient(to right, #27ae60, transparent, #27ae60);
}

@keyframes helixRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.bio-data-streams {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.data-molecule {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    padding: 10px 20px;
    animation: moleculeFloat 3s ease-in-out infinite;
}

.mol-1 { animation-delay: 0s; }
.mol-2 { animation-delay: 1s; }
.mol-3 { animation-delay: 2s; }

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

.molecule-label {
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: 600;
}

.bio-showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 25px;
    line-height: 1.3;
}

.bio-showcase-desc {
    color: #a8d5ba;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.bio-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #2ecc71;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 5px;
}

.feature-desc {
    color: #a8d5ba;
    font-size: 0.95rem;
    margin: 0;
}

.bio-action-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 35px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bio-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.btn-bio-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: bioGlowSweep 2s infinite;
}

@keyframes bioGlowSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@media (max-width: 768px) {
    .biotech-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-satellites {
        grid-template-columns: 1fr;
    }
    
    .showcase-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bio-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

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

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

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

.form-header {
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

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

.icon-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.form-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-visual {
    position: relative;
}

.consultation-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.benefit-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.benefit-card.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.benefit-card.card-2 {
    bottom: 120px;
    left: -30px;
    animation-delay: 2s;
}

.benefit-card.card-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 4s;
}

.benefit-icon {
    width: 24px;
    height: 24px;
}

.benefit-text {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

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

.form-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.input-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 3;
    filter: brightness(0.7);
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #333;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.submit-btn {
    position: relative;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.4);
}

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

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

@keyframes glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.security-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .benefit-card {
        position: static;
        margin: 10px 0;
        animation: none;
    }
    
    .visual-overlay {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-input {
        padding: 15px 15px 15px 45px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-header {
        margin-bottom: 50px;
    }
    
    .consultation-image {
        height: 300px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
    }
}
