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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
    z-index: 1;
}

.privacy-hero-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    color: white;
    text-align: left;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    color: white;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero-banner {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.ai-privacy-insights {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.ai-privacy-insights::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="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

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

.insights-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.insight-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.insight-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

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

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #8c9ba5;
    text-align: center;
    margin-top: 0.5rem;
}

.insights-visual {
    margin: 5rem 0;
}

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

.dashboard-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overlay-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.btn-explore {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.trend-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.trend-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: hue-rotate(220deg) saturate(1.5);
}

.trend-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.trend-text {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .insights-title {
        font-size: 2.2rem;
    }
    
    .insights-subtitle {
        font-size: 1.1rem;
    }
    
    .insight-card {
        padding: 2rem;
    }
    
    .insight-metrics {
        gap: 1rem;
    }
    
    .visual-overlay {
        padding: 2rem;
    }
    
    .overlay-title {
        font-size: 1.6rem;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ai-privacy-insights {
        padding: 3rem 0;
    }
    
    .insights-header {
        margin-bottom: 2.5rem;
    }
    
    .insights-title {
        font-size: 1.9rem;
    }
    
    .insight-metrics {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Block 3 */
.data-breach-recovery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.recovery-header {
    margin-bottom: 3.5rem;
}

.recovery-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recovery-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 600px;
}

.emergency-badge {
    background: #dc3545;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

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

.emergency-text {
    font-weight: 600;
    font-size: 1rem;
}

.breach-timeline {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.timeline-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 1.1rem;
    color: #6c757d;
}

.timeline-track {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-step {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline-step.active {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    transform: translateY(-10px);
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-marker {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 30px;
    height: 30px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    text-align: center;
}

.step-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-progress {
    height: 8px;
    background: #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.progress-bar.first-day {
    width: 85%;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.progress-bar.first-week {
    width: 60%;
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.progress-bar.long-term {
    width: 30%;
    background: linear-gradient(90deg, #6f42c1, #e83e8c);
}

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

.dashboard-main {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

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

.status-grid {
    display: grid;
    gap: 2rem;
}

.status-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.status-item.high-priority {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border-left: 5px solid #17a2b8;
}

.status-item.medium-priority {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 5px solid #ffc107;
}

.status-item.low-priority {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 5px solid #28a745;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

.status-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.status-value {
    text-align: right;
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    display: block;
}

.value-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
    text-align: center;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.action-btn.primary-action {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.action-btn.secondary-action {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

.action-btn.tertiary-action {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn-text {
    font-size: 1.1rem;
}

.prevention-strategies {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.strategies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 3rem;
}

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

.strategy-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

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

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.card-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-stats {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    display: block;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@media (max-width: 991px) {
    .recovery-main-title {
        font-size: 2.5rem;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .data-breach-recovery {
        padding: 3rem 0;
    }
    
    .recovery-main-title {
        font-size: 2rem;
    }
    
    .breach-timeline {
        padding: 2rem;
    }
    
    .dashboard-main,
    .action-panel,
    .prevention-strategies {
        padding: 2rem;
    }
    
    .emergency-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .recovery-header .row {
        text-align: center;
    }
    
    .emergency-badge {
        margin-top: 1.5rem;
    }
    
    .timeline-step {
        padding: 1.5rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
}

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

.premium-consultation-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 103, 132, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.header-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.consultation-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.15);
}

.header-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.order-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.order-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.consultation-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.pricing-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.feature-check {
    width: 20px;
    height: 20px;
}

.feature-text {
    font-size: 0.95rem;
}

.order-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

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

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

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

.input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    z-index: 3;
}

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

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

.concern-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.concern-option {
    display: flex;
    align-items: center;
}

.concern-checkbox {
    display: none;
}

.concern-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    background: #f8f9fa;
}

.concern-checkbox:checked + .concern-label {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

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

.concern-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
}

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

.btn-submit-order {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    margin-bottom: 1rem;
}

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

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

.form-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

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

.trust-badge {
    width: 32px;
    height: 32px;
}

.trust-text {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

.testimonial-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    max-width: 400px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-style: italic;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-title {
        font-size: 2rem;
    }
    
    .order-subtitle {
        font-size: 1rem;
    }
    
    .consultation-benefits,
    .order-form-container {
        padding: 1.5rem;
    }
    
    .testimonial-strip {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .concern-options {
        gap: 0.5rem;
    }
    
    .concern-label {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .premium-consultation-order {
        padding: 3rem 0;
    }
    
    .order-header {
        margin-bottom: 2.5rem;
    }
    
    .header-visual {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-submit-order {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
