
/* Block 1 */
.hero-banner {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(102, 126, 234, 0.75) 50%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #d84315 100%);
}

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

@media (max-width: 768px) {
    .hero-banner {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.next-gen-tech {
      background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    
    .next-gen-tech::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03), transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(255, 103, 103, 0.03), transparent 50%);
      pointer-events: none;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
      z-index: 2;
    }
    
    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .section-subtitle {
      font-size: 1.2rem;
      color: #6c757d;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .tech-card {
      background: white;
      border-radius: 20px;
      padding: 3rem;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(102, 126, 234, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .tech-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #667eea, #764ba2);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    
    .tech-card:hover::before {
      transform: scaleX(1);
    }
    
    .tech-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
    }
    
    .primary-card {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    }
    
    .secondary-card {
      background: linear-gradient(135deg, rgba(255, 103, 103, 0.02), rgba(255, 94, 77, 0.02));
    }
    
    .tech-icon-wrapper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border-radius: 20px;
      margin-bottom: 1.5rem;
      box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }
    
    .tech-icon {
      width: 40px;
      height: 40px;
      filter: brightness(0) invert(1);
    }
    
    .tech-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 1rem;
    }
    
    .tech-description {
      color: #4a5568;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    
    .tech-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    
    .feature-tag {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }
    
    .innovation-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .innovation-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .innovation-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .innovation-card:hover .innovation-image {
      transform: scale(1.05);
    }
    
    .innovation-content {
      padding: 1.5rem;
    }
    
    .innovation-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 0.8rem;
    }
    
    .innovation-text {
      color: #4a5568;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 5rem;
      padding: 3rem 0;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .stat-item {
      text-align: center;
      padding: 1rem;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }
    
    .stat-label {
      font-size: 1rem;
      color: #6c757d;
      font-weight: 600;
      margin-top: 0.5rem;
    }
    
    @media (max-width: 768px) {
      .next-gen-tech {
        padding: 3rem 0;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .section-subtitle {
        font-size: 1.1rem;
      }
      
      .tech-card {
        padding: 2rem;
      }
      
      .tech-title {
        font-size: 1.5rem;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
    }

/* Block 3 */
.quantum-connectivity {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

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

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

.quantum-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quantum-subtitle {
    font-size: 1.25rem;
    color: #a8b2d1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quantum-visual-stack {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.quantum-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.8) contrast(1.2);
}

.quantum-overlay-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.security-text {
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

.quantum-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.feature-details {
    flex: 1;
}

.feature-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f7fafc;
    margin-bottom: 0.8rem;
}

.feature-desc {
    color: #a8b2d1;
    line-height: 1.6;
    font-size: 1rem;
}

.quantum-metrics-row {
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

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

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.metric-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    filter: brightness(0.7);
}

.metric-content {
    padding: 1.5rem;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #a8b2d1;
    font-size: 0.9rem;
    font-weight: 500;
}

.quantum-cta-section {
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.cta-background {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.cta-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quantum-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 768px) {
    .quantum-connectivity {
        padding: 3rem 0;
    }
    
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .quantum-subtitle {
        font-size: 1.1rem;
    }
    
    .quantum-main-image {
        height: 280px;
    }
    
    .quantum-overlay-card {
        bottom: 15px;
        right: 15px;
        padding: 1rem;
    }
    
    .quantum-feature {
        gap: 1rem;
    }
    
    .feature-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-name {
        font-size: 1.2rem;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .quantum-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.form-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #64ffda, #7c4dff, #ff4081);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.order-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-visual-element {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.form-decoration-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #64ffda;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.4);
}

.connection-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.node {
    width: 12px;
    height: 12px;
    background: #7c4dff;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.6);
}

.node-1 {
    top: 20%;
    left: 20%;
    animation: pulse 2s ease-in-out infinite;
}

.node-2 {
    top: 70%;
    right: 25%;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.node-3 {
    bottom: 30%;
    left: 60%;
    animation: pulse 2s ease-in-out infinite 1s;
}

.quantum-order-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    color: #64ffda;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

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

.input-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 2;
    opacity: 0.7;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #64ffda;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #64ffda, #7c4dff);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.premium-features-preview {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 40px 0;
}

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

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-check {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
}

.submit-order-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(45deg, #7c4dff, #ff4081);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(124, 77, 255, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 24px;
    height: 24px;
    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.2), transparent);
    transition: left 0.5s ease;
}

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

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.trust-badge {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

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

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0.3;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 2s;
}

.particle-3 {
    bottom: 30%;
    left: 70%;
    animation: float 7s ease-in-out infinite 4s;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.5rem;
    }
    
    .order-form-wrapper {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .trust-badge {
        height: 32px;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-wrapper {
        padding: 25px 20px;
    }
}
