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

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

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

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

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 2rem;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    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.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #7c8ef0 0%, #8659b8 100%);
}

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
}

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

.quantum-security-showcase::before {
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.quantum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.quantum-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.quantum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.quantum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.quantum-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.quantum-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.quantum-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.quantum-icon {
    font-size: 3rem;
    color: #ffffff;
    animation: pulse 2s infinite;
}

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

.quantum-card-content {
    padding: 2rem;
}

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

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

.quantum-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantum-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.quantum-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.quantum-stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.quantum-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quantum-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.quantum-btn-secondary {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #ffffff;
}

.quantum-btn-tertiary {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.quantum-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.quantum-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quantum-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quantum-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

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

.quantum-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.quantum-feature-description {
    color: #e0e0e0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quantum-security-showcase {
        padding: 3rem 0;
    }
    
    .quantum-container {
        padding: 0 1rem;
    }
    
    .quantum-title {
        font-size: 2rem;
    }
    
    .quantum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quantum-card-content {
        padding: 1.5rem;
    }
    
    .quantum-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quantum-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .quantum-features {
        grid-template-columns: 1fr;
    }
}

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

.neural-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neural-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.neural-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.neural-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.neural-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.neural-feature-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.neural-feature-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.neural-feature-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neural-feature-visual:hover .neural-feature-img {
    transform: scale(1.05);
}

.neural-feature-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
}

.neural-badge-secondary {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.neural-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

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

.neural-feature-info {
    color: #a0a0b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.neural-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.neural-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.3rem;
}

.neural-metric-label {
    font-size: 0.9rem;
    color: #888899;
}

.neural-dashboard {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.neural-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.neural-dashboard-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.neural-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neural-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.neural-status-text {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.neural-alert-feed {
    margin-bottom: 2rem;
}

.neural-alert {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.neural-alert-blocked {
    border-left-color: #10b981;
}

.neural-alert-analysis {
    border-left-color: #f59e0b;
}

.neural-alert-update {
    border-left-color: #8b5cf6;
}

.neural-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: #00d4ff;
}

.neural-alert-blocked .neural-alert-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.neural-alert-analysis .neural-alert-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.neural-alert-update .neural-alert-icon {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.neural-alert-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.neural-alert-time {
    font-size: 0.8rem;
    color: #888899;
    margin-left: 1rem;
}

.neural-alert-desc {
    color: #a0a0b8;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.neural-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.neural-stat-card {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.neural-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.neural-stat-desc {
    font-size: 0.9rem;
    color: #a0a0b8;
}

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

.neural-capability-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(124, 58, 237, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neural-capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.neural-capability-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.neural-capability-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neural-capability-card:hover .neural-capability-image {
    transform: scale(1.1);
}

.neural-capability-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.neural-capability-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 1.5rem 1rem;
}

.neural-capability-description {
    color: #a0a0b8;
    line-height: 1.6;
    margin: 0 1.5rem 2rem;
    font-size: 0.95rem;
}

.neural-capability-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border: none;
    border-radius: 0 0 20px 20px;
    padding: 1rem;
    width: 100%;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neural-capability-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .neural-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .neural-capabilities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .neural-main-title {
        font-size: 2.5rem;
    }
    
    .neural-feature-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .neural-metrics {
        justify-content: center;
    }
    
    .neural-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .neural-capabilities {
        grid-template-columns: 1fr;
    }
    
    .neural-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .neural-defense-platform {
        padding: 3rem 0;
    }
    
    .neural-intro {
        margin-bottom: 3rem;
    }
    
    .neural-dashboard {
        padding: 1.5rem;
    }
    
    .neural-alert {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .neural-alert-time {
        margin-left: 0;
    }
}

/* Block 4 */
.order-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    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="rgba(102,126,234,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.form-title {
    font-size: 2.5rem;
    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;
}

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

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-visual {
    position: sticky;
    top: 2rem;
}

.form-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.2rem;
}

.benefit-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.form-content {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    transform: translateY(-1px);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 2.2rem;
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group:focus-within .input-icon {
    color: #667eea;
}

.form-actions {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
}

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

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

.form-disclaimer {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.form-trust-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229,231,235,0.5);
    gap: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trust-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 2rem 0;
    }
    
    .form-container {
        padding: 0 1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-visual {
        position: static;
    }
    
    .form-content {
        padding: 2rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-item {
        flex-direction: row;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-content {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-select {
        padding: 0.9rem 0.9rem 0.9rem 2.5rem;
    }
    
    .input-icon {
        left: 0.8rem;
        top: 2.1rem;
    }
}
