
/* Block 1 */
.hero-banner {
      background-image: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('neural-network-bg.jpg') center/cover no-repeat;
      opacity: 0.1;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 25, 112, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
      z-index: 2;
    }

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

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #ffffff 0%, #64b5f6 50%, #42a5f5 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
      animation: titleGlow 3s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
      from {
        filter: drop-shadow(0 0 20px rgba(100, 181, 246, 0.4));
      }
      to {
        filter: drop-shadow(0 0 40px rgba(100, 181, 246, 0.8));
      }
    }

    .hero-description {
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 3rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-cta-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      border: none;
      color: white;
      padding: 18px 40px;
      font-size: 1.1rem;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
    }

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

    .hero-cta-btn:hover::before {
      left: 100%;
    }

    .hero-cta-btn:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
      background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #f093fb 100%);
    }

    .hero-cta-btn:active {
      transform: translateY(-2px) scale(1.02);
    }

    .hero-image {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.3));
      animation: floatAnimation 6s ease-in-out infinite;
    }

    @keyframes floatAnimation {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      25% {
        transform: translateY(-20px) rotate(2deg);
      }
      50% {
        transform: translateY(-10px) rotate(0deg);
      }
      75% {
        transform: translateY(-30px) rotate(-2deg);
      }
    }

    @media (max-width: 992px) {
      .hero-content {
        padding: 140px 0 60px;
        text-align: center;
      }

      .hero-title {
        margin-bottom: 1.5rem;
      }

      .hero-description {
        margin: 0 auto 2.5rem;
      }

      .hero-image {
        margin-top: 3rem;
        max-width: 80%;
      }
    }

    @media (max-width: 768px) {
      .hero-banner {
        background-attachment: scroll;
      }

      .hero-content {
        padding: 120px 0 40px;
      }

      .hero-cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 576px) {
      .hero-content {
        padding: 100px 0 40px;
      }

      .hero-cta-btn {
        width: 100%;
        max-width: 300px;
      }
    }

/* Block 2 */
.neural-security-insights {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

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

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

.neural-badge {
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #0f0f23;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

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

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

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

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

.neural-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
}

.pulse-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(0, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

.data-stream {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #00ffff, transparent);
    animation: stream 3s linear infinite;
}

.stream-1 {
    left: 20%;
    height: 100px;
    animation-delay: 0s;
}

.stream-2 {
    left: 50%;
    height: 120px;
    animation-delay: 1s;
}

.stream-3 {
    left: 80%;
    height: 90px;
    animation-delay: 2s;
}

@keyframes stream {
    0% {
        top: -100px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.neural-feature-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #00ffff;
}

.neural-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8c5d6;
    margin-bottom: 2rem;
}

.neural-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #8892a8;
    margin-top: 0.5rem;
}

.neural-grid {
    margin-top: 3rem;
}

.neural-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.neural-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-metric {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: #8892a8;
    margin-top: 0.3rem;
}

.neural-footer {
    margin-top: 4rem;
}

.neural-cta-btn {
    position: relative;
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #0f0f23;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

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

.neural-disclaimer {
    margin-top: 1rem;
    color: #8892a8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .neural-title {
        font-size: 2.2rem;
    }
    
    .neural-subtitle {
        font-size: 1rem;
    }
    
    .neural-image {
        height: 300px;
    }
    
    .neural-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .neural-feature-title {
        font-size: 1.8rem;
    }
    
    .neural-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Block 3 */
.quantum-dashboard {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
}

.dashboard-header {
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(1000%) hue-rotate(160deg);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffcc, #66d9ff, #ff6b9d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dashboard-subtitle {
    font-size: 1.25rem;
    color: #b0bec5;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.quantum-grid {
    margin-bottom: 5rem;
}

.primary-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    height: 100%;
}

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

.panel-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(1000%) hue-rotate(160deg);
}

.panel-info {
    flex: 1;
    margin-left: 1rem;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #00ffcc;
}

.panel-status {
    font-size: 0.9rem;
    color: #78909c;
    margin: 0;
}

.panel-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn.active-btn {
    background: #00ffcc;
    color: #000000;
    border-color: #00ffcc;
}

.control-btn:hover {
    background: rgba(0, 255, 204, 0.2);
    border-color: #00ffcc;
}

.holo-display {
    position: relative;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 204, 0.1) 0%, rgba(102, 217, 255, 0.05) 50%, transparent 70%);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.holo-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.layer-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 255, 204, 0.4);
}

.layer-2 {
    width: 160px;
    height: 160px;
    border-color: rgba(102, 217, 255, 0.4);
    animation-direction: reverse;
    animation-duration: 15s;
}

.layer-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 107, 157, 0.4);
    animation-duration: 10s;
}

.threat-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.threat-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.threat-point.critical {
    background: #ff4757;
    top: 30%;
    left: 70%;
    box-shadow: 0 0 20px #ff4757;
}

.threat-point.moderate {
    background: #ffa726;
    top: 60%;
    left: 25%;
    box-shadow: 0 0 15px #ffa726;
}

.threat-point.low {
    background: #66bb6a;
    top: 75%;
    left: 80%;
    box-shadow: 0 0 10px #66bb6a;
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 80%; left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { top: 60%; left: 60%; animation-delay: 6s; }

.metrics-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
}

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

.metric-label {
    font-size: 0.9rem;
    color: #b0bec5;
    min-width: 120px;
}

.progress-quantum {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill.quantum-fill {
    width: 97.3%;
    height: 100%;
    background: linear-gradient(90deg, #00ffcc, #66d9ff);
    border-radius: 4px;
    animation: glow 2s ease-in-out infinite alternate;
}

.metric-value {
    font-weight: 600;
    color: #00ffcc;
    min-width: 60px;
    text-align: right;
}

.side-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.quantum-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.quantum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card-image {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(1000%) hue-rotate(160deg);
}

.card-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.alert-item.urgent .alert-dot {
    background: #ff4757;
}

.alert-item.warning .alert-dot {
    background: #ffa726;
}

.alert-item.info .alert-dot {
    background: #66bb6a;
}

.alert-text {
    font-size: 0.9rem;
    color: #b0bec5;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffcc;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.8rem;
    color: #78909c;
}

.quantum-features {
    margin-bottom: 4rem;
}

.feature-showcase {
    padding: 2rem 0;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.showcase-description {
    font-size: 1.1rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature-bullet {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(1000%) hue-rotate(160deg);
}

.feature-text {
    font-size: 1rem;
    color: #ffffff;
}

.immersive-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

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

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

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

.elem-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.elem-3 {
    top: 60%;
    right: 40%;
    animation-delay: 4s;
}

.elem-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(1000%) hue-rotate(160deg);
    drop-shadow: 0 0 20px rgba(0, 255, 204, 0.8));
}

.quantum-footer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.big-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffcc, #66d9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #b0bec5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #00ffcc, #66d9ff);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.4);
}

.cta-text {
    margin: 0;
}

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

.cta-note {
    font-size: 0.9rem;
    color: #78909c;
    margin-top: 1rem;
    margin-bottom: 0;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 255, 204, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 204, 0.8); }
}

@media (max-width: 768px) {
    .dashboard-title {
        font-size: 2.5rem;
    }
    
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .panel-controls {
        align-self: stretch;
        justify-content: space-between;
    }
    
    .control-btn {
        flex: 1;
    }
    
    .footer-stats {
        gap: 2rem;
    }
    
    .big-number {
        font-size: 2rem;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .quantum-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(10px) translateY(10px); }
}

.form-wrapper {
    position: relative;
    z-index: 2;
}

.form-intro {
    color: white;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.form-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

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

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

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

.form-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid #00d4ff;
}

.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.form-subheading {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.label-icon {
    width: 18px;
    height: 18px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 2;
}

.form-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.input-glow {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 12px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.form-input:focus + .input-glow {
    opacity: 0.3;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
}

.notice-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.notice-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.submit-button {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

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

.button-icon {
    width: 20px;
    height: 20px;
}

.button-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%;
    right: 30%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 2s;
}

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

.form-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-intro {
        margin-bottom: 40px;
    }
    
    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .benefit-item {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-intro {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .benefits-list {
        flex-direction: column;
    }
    
    .footer-guarantee {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
