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

.hero-content-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-background-image,
.hero-overlay {
    position: absolute;
}

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

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

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

.hero-cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.6);
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    color: white;
}

.consultation-form {
    padding: 1rem;
}

.consultation-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.consultation-form .form-control,
.consultation-form .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.375rem 0.375rem 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.consultation-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
}

/* Block 2 */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 70%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.innovation-showcase .container {
    position: relative;
    z-index: 2;
}

.showcase-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.showcase-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.innovation-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.innovation-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 3px;
}

.card-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.icon-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.innovation-card:hover .icon-glow {
    opacity: 1;
}

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

.card-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tech-showcase-panel {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.tech-showcase-panel:hover {
    transform: translateY(-5px);
}

.panel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.panel-content {
    padding: 2rem;
}

.panel-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.panel-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    color: #667eea;
    padding: 0.3rem 0;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #764ba2;
}

.innovation-stats {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #5a6c7d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .innovation-card {
        padding: 2rem;
    }
    
    .panel-content {
        padding: 1.5rem;
    }
    
    .innovation-stats {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Block 3 */
.sustainability-metrics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8ff 100%);
    position: relative;
}

.sustainability-metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.metrics-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #27ae60, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.metric-visualization-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.metric-visualization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(46, 204, 113, 0.15);
}

.metric-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.metric-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.metric-pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border: 2px solid #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

.metric-data {
    margin-bottom: 15px;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1;
}

.metric-unit {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.metric-description {
    font-size: 0.95rem;
    color: #546e7a;
    line-height: 1.5;
    margin-bottom: 15px;
}

.metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: #27ae60;
}

.impact-visualization-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

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

.panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.panel-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    padding: 8px 16px;
    border: 1px solid #bdc3c7;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.active,
.control-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.visualization-container {
    position: relative;
}

.impact-chart-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.chart-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-point {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.data-point.active {
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.point-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 600;
}

.point-value {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 800;
}

.sustainability-goals-tracker {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(155, 89, 182, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.tracker-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.goal-item {
    margin-bottom: 25px;
}

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

.goal-name {
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
}

.goal-percentage {
    font-weight: 800;
    color: #9b59b6;
    font-size: 1rem;
}

.goal-progress-bar {
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9b59b6, #e74c3c);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-fill[data-progress="78"] {
    width: 78%;
}

.progress-fill[data-progress="92"] {
    width: 92%;
}

.progress-fill[data-progress="64"] {
    width: 64%;
}

.goal-target {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0;
    font-style: italic;
}

.community-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
}

.collaborative-impact-showcase {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(230, 126, 34, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.showcase-description {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.impact-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

.impact-globe-container {
    position: relative;
    text-align: center;
}

.impact-globe {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

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

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.stat-bubble.amsterdam {
    top: 30%;
    left: 20%;
}

.stat-bubble.berlin {
    top: 25%;
    right: 30%;
}

.stat-bubble.copenhagen {
    top: 15%;
    left: 45%;
}

.city-name {
    font-size: 0.75rem;
    color: #34495e;
    font-weight: 600;
}

.impact-score {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 800;
}

@media (max-width: 768px) {
    .sustainability-metrics-section {
        padding: 60px 0;
    }
    
    .metrics-main-title {
        font-size: 2.2rem;
    }
    
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
    
    .impact-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 50%, #e7f3ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 220, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(167, 243, 208, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.order-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

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

.header-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.header-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(79, 172, 254, 0.2);
}

.icon-shimmer {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, #4facfe, transparent);
    animation: shimmer-rotation 3s linear infinite;
    z-index: -1;
}

@keyframes shimmer-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.premium-order-form {
    margin-top: 40px;
}

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

.input-wrapper {
    position: relative;
}

.field-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.form-input {
    width: 100%;
    padding: 18px 24px 18px 60px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input:focus {
    border-color: #4facfe;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.15);
}

.input-accent-line {
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.consultation-benefits {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.benefits-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
}

.form-value-proposition {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.value-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e40af;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 3px;
}

.value-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.limited-offer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-badge {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.offer-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
    background: linear-gradient(135deg, #10b981, #047857);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-submit-button {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.25);
}

.premium-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(79, 172, 254, 0.4);
}

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

.button-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.button-glow {
    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.7s ease;
}

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

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 32px;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

.indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 28px;
    height: 28px;
    object-fit: cover;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .order-form-container {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-value-proposition {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .value-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 40px 0;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .premium-submit-button {
        padding: 18px 24px;
        font-size: 1rem;
    }
}
