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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
}

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

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 2rem 0;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
    cursor: pointer;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.6);
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

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

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

/* Block 2 */
.ai-storage-insights {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #e8f4fd 100%);
    overflow: hidden;
}

.insights-content {
    padding-right: 2rem;
}

.insights-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insights-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.insights-visual {
    position: relative;
}

.insights-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-stats {
    position: absolute;
    top: -30px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
}

.integration-showcase {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-top: 4rem;
}

.showcase-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    background: #f7fafc;
    transform: translateY(-5px);
}

.platform-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.platform-name {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .ai-storage-insights {
        padding: 80px 0;
    }
    
    .insights-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .insights-title {
        font-size: 2.5rem;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .integration-showcase {
        padding: 2rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .insights-title {
        font-size: 2rem;
    }
    
    .floating-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 1rem;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Block 3 */
.neural-sync-storage {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.neural-sync-storage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.tech-badge {
    display: inline-block;
    background: linear-gradient(45deg, #8a2be2, #00bfff);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.neural-demo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.neural-demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.2);
}

.brain-waves-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.wave-indicator.active {
    background: linear-gradient(90deg, #8a2be2, #00bfff);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    animation: pulseWave 2s infinite;
}

@keyframes pulseWave {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.2); }
}

.neural-features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: center;
}

.neural-feature-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.neural-feature-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 43, 226, 0.4);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 191, 255, 0.2));
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    filter: brightness(1.2);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-metrics {
    display: flex;
    gap: 15px;
}

.metric {
    background: linear-gradient(45deg, #8a2be2, #00bfff);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.neural-stats-banner {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    filter: brightness(1.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8a2be2, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 5px;
}

.neural-cta-section {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.neural-cta-primary, .neural-cta-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.neural-cta-primary {
    background: linear-gradient(45deg, #8a2be2, #00bfff);
    color: #ffffff;
}

.neural-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.neural-cta-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.neural-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .neural-features-grid {
        margin-top: 50px;
    }
    
    .neural-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .neural-sync-storage {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .neural-cta-primary, .neural-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Block 4 */
.quantum-order-form {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2a1a4e 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(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 144, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.holographic-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(30, 144, 255, 0.2));
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 25px;
    padding: 12px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.6));
}

.badge-text {
    color: #e0c3fc;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffffff, #e0c3fc, #9bb5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    color: #b8b8d1;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.quantum-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
}

.form-ambient-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(30, 144, 255, 0.3), rgba(138, 43, 226, 0.3));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(4px);
}

.input-matrix {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.input-field-wrapper {
    position: relative;
}

.field-label {
    display: block;
    color: #e0c3fc;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    z-index: 2;
    filter: drop-shadow(0 0 4px rgba(138, 43, 226, 0.4));
}

.quantum-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quantum-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quantum-input:focus {
    outline: none;
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 0 24px rgba(138, 43, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.field-scanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    pointer-events: none;
}

.quantum-input:focus + .field-scanner {
    transform: translateX(100%);
}

.activation-options {
    margin-bottom: 32px;
}

.selector-title {
    color: #e0c3fc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.tier-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.tier-option {
    position: relative;
}

.tier-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tier-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tier-radio:checked + .tier-label {
    border-color: rgba(138, 43, 226, 0.8);
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.tier-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.4));
}

.tier-info {
    display: flex;
    flex-direction: column;
}

.tier-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.tier-storage {
    color: #b8b8d1;
    font-size: 12px;
}

.privacy-acknowledgment {
    margin-bottom: 32px;
}

.privacy-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #8a2be2;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}

.privacy-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    filter: drop-shadow(0 0 3px rgba(138, 43, 226, 0.4));
}

.privacy-text {
    color: #b8b8d1;
}

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

.neural-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #8a2be2, #1e90ff);
    border: none;
    border-radius: 16px;
    padding: 18px 36px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.neural-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.4);
}

.submit-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.button-energy-field {
    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;
}

.neural-submit-btn:hover .button-energy-field {
    left: 100%;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.security-badge {
    width: 60px;
    height: 40px;
    opacity: 0.7;
    filter: drop-shadow(0 0 4px rgba(138, 43, 226, 0.3));
    transition: opacity 0.3s ease;
}

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

.activation-preview {
    text-align: center;
}

.preview-title {
    color: #e0c3fc;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.dashboard-mockup {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
}

.preview-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.highlight-point {
    position: absolute;
}

.highlight-point[data-feature="thought-files"] {
    top: 25%;
    left: 15%;
}

.highlight-point[data-feature="emotion-sorting"] {
    top: 45%;
    right: 20%;
}

.highlight-point[data-feature="memory-boost"] {
    bottom: 30%;
    left: 25%;
}

.point-marker {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #8a2be2, #1e90ff);
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.8);
    animation: pulse-marker 2s infinite;
}

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

.point-tooltip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-point:hover .point-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .quantum-form-container {
        padding: 32px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .tier-options {
        grid-template-columns: 1fr;
    }
    
    .privacy-checkbox-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .security-badges {
        gap: 12px;
    }
    
    .security-badge {
        width: 50px;
        height: 32px;
    }
}
