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

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

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

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 4rem 0;
}

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

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

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    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 8px 25px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffa726;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.insights-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.insights-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

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

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-text p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.metric-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 5px;
}

.insights-visual {
    padding: 20px;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.primary-visual {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

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

.analysis-bubble {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    animation: floatBubble 3s ease-in-out infinite;
}

.bubble-1 {
    top: 20%;
    left: 10%;
    color: #dc2626;
    animation-delay: 0s;
}

.bubble-2 {
    top: 45%;
    right: 15%;
    color: #059669;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 25%;
    left: 15%;
    color: #7c3aed;
    animation-delay: 2s;
}

.progress-ring {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.progress-svg {
    position: absolute;
    width: 70px;
    height: 70px;
    transform: rotate(-90deg);
}

.progress-circle {
    fill: none;
    stroke: #667eea;
    stroke-width: 4;
    stroke-dasharray: 188;
    stroke-dashoffset: 20;
    stroke-linecap: round;
    animation: progressFill 2s ease-in-out infinite alternate;
}

.progress-text {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

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

@keyframes progressFill {
    0% { stroke-dashoffset: 50; }
    100% { stroke-dashoffset: 20; }
}

@media (max-width: 991px) {
    .insights-title {
        font-size: 2.3rem;
    }
    
    .insights-metrics {
        justify-content: center;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .ai-insights-showcase {
        padding: 60px 0;
    }
    
    .insights-title {
        font-size: 1.9rem;
    }
    
    .insights-description {
        font-size: 1.1rem;
    }
    
    .feature-point {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 1.2rem;
    }
}

/* Block 3 */
.quantum-security-vault {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

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

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

.quantum-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    animation: quantumGlow 3s ease-in-out infinite;
}

@keyframes quantumGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6); }
}

.vault-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #fff, #a8edea, #fed6e3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

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

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.security-layer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.security-layer:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.layer-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.layer-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.layer-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.layer-status.active {
    background: linear-gradient(45deg, #00d4aa, #00c9ff);
    color: white;
}

.layer-status.monitoring {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: #333;
}

.security-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pulse-ring {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-in-out infinite;
}

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

.pulse-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulseCore 2s ease-in-out infinite;
}

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

.vault-controls {
    position: relative;
    z-index: 2;
}

.control-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.panel-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4aa;
    animation: statusBlink 2s ease-in-out infinite;
}

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

.security-metrics {
    margin-bottom: 32px;
}

.metric-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.metric-label {
    flex: 0 0 120px;
    font-size: 14px;
    font-weight: 500;
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 2s ease;
}

.crypto-grade {
    width: 95%;
    background: linear-gradient(90deg, #00d4aa, #00c9ff);
}

.secure-level {
    width: 85%;
    background: linear-gradient(90deg, #a8edea, #fed6e3);
}

.max-security {
    width: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.metric-value {
    flex: 0 0 100px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
}

.security-features {
    margin-bottom: 32px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-icon.quantum {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-icon.zero-knowledge {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
}

.feature-icon.distributed {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
}

.feature-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.vault-actions {
    display: flex;
    gap: 16px;
}

.vault-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-btn.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.vault-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.vault-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vault-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.cert-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cert-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 992px) {
    .vault-title {
        font-size: 2.5rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .control-panel {
        margin-top: 60px;
        padding: 32px 24px;
    }
    
    .trust-indicators {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .vault-title {
        font-size: 2rem;
    }
    
    .vault-subtitle {
        font-size: 1.1rem;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .metric-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .metric-value {
        text-align: left;
    }
    
    .vault-actions {
        flex-direction: column;
    }
    
    .trust-indicators {
        gap: 24px;
    }
}

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

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

.form-wrapper {
background: rgba(255,255,255,0.98);
border-radius: 24px;
box-shadow: 0 25px 50px rgba(0,0,0,0.15);
overflow: hidden;
backdrop-filter: blur(20px);
position: relative;
z-index: 2;
}

.form-header {
padding: 40px 40px 0;
display: flex;
gap: 40px;
align-items: center;
}

.header-visual {
flex: 0 0 280px;
position: relative;
}

.team-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.floating-badge {
position: absolute;
top: -10px;
right: -10px;
background: linear-gradient(135deg, #ff6b6b, #ee5a52);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
box-shadow: 0 8px 16px rgba(255,107,107,0.3);
display: flex;
align-items: center;
gap: 6px;
}

.header-content {
flex: 1;
}

.form-title {
font-size: 2.5rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 16px;
line-height: 1.2;
}

.form-subtitle {
font-size: 1.2rem;
color: #6c757d;
margin-bottom: 24px;
line-height: 1.6;
}

.consultation-benefits {
display: flex;
flex-direction: column;
gap: 12px;
}

.benefit-item {
display: flex;
align-items: center;
gap: 12px;
color: #495057;
font-weight: 500;
}

.benefit-item i {
color: #28a745;
font-size: 1.1rem;
}

.form-container {
padding: 40px;
display: flex;
gap: 40px;
}

.form-section {
flex: 1;
}

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

.form-row {
display: flex;
gap: 20px;
}

.input-group {
flex: 1;
}

.input-group.full-width {
flex: none;
}

.input-label {
display: block;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
font-size: 0.95rem;
}

.input-wrapper {
position: relative;
}

.input-icon {
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
color: #6c757d;
z-index: 2;
}

.form-input {
width: 100%;
padding: 16px 16px 16px 48px;
border: 2px solid #e9ecef;
border-radius: 12px;
font-size: 1rem;
background: #f8f9fa;
transition: all 0.3s ease;
}

.form-input:focus {
outline: none;
border-color: #667eea;
background: white;
box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.form-input:focus + .input-border {
transform: scaleX(1);
}

.input-border {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, #667eea, #764ba2);
transform: scaleX(0);
transition: transform 0.3s ease;
}

.form-features {
display: flex;
gap: 20px;
margin: 24px 0;
}

.feature-highlight {
flex: 1;
display: flex;
gap: 16px;
padding: 20px;
background: #f8f9fa;
border-radius: 12px;
border: 2px solid #e9ecef;
}

.feature-image {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 10px;
flex-shrink: 0;
}

.feature-text h4 {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 4px;
}

.feature-text p {
font-size: 0.9rem;
color: #6c757d;
margin: 0;
}

.submit-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 18px 40px;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

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

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

.submit-button:hover .button-effect {
left: 100%;
}

.testimonial-section {
flex: 0 0 300px;
display: flex;
flex-direction: column;
gap: 24px;
}

.testimonial-card {
background: white;
padding: 24px;
border-radius: 16px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border: 1px solid #e9ecef;
position: relative;
}

.testimonial-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 16px;
}

.quote-mark {
position: absolute;
top: 16px;
right: 20px;
font-size: 3rem;
color: #667eea;
opacity: 0.3;
font-family: serif;
}

.testimonial-text {
font-style: italic;
color: #495057;
margin-bottom: 16px;
line-height: 1.5;
}

.author-name {
font-weight: 600;
color: #2c3e50;
display: block;
}

.author-role {
color: #6c757d;
font-size: 0.9rem;
}

.testimonial-rating {
margin-top: 12px;
color: #ffc107;
}

.guarantee-badge {
display: flex;
gap: 16px;
align-items: center;
padding: 20px;
background: linear-gradient(135deg, #28a745, #20c997);
border-radius: 12px;
color: white;
}

.guarantee-image {
width: 50px;
height: 50px;
object-fit: contain;
}

.guarantee-text h5 {
margin-bottom: 4px;
font-size: 1rem;
font-weight: 600;
}

.guarantee-text p {
margin: 0;
font-size: 0.85rem;
opacity: 0.9;
}

@media (max-width: 992px) {
.form-header {
flex-direction: column;
text-align: center;
}

.header-visual {
flex: none;
}

.form-container {
flex-direction: column;
}

.testimonial-section {
flex: none;
}

.form-features {
flex-direction: column;
}
}

@media (max-width: 768px) {
.premium-contact-form {
padding: 40px 0;
}

.form-wrapper {
margin: 20px;
}

.form-header,
.form-container {
padding: 20px;
}

.form-title {
font-size: 2rem;
}

.form-row {
flex-direction: column;
gap: 16px;
}

.testimonial-section {
order: -1;
}
}
