
/* 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(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    backdrop-filter: blur(1px);
}

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

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

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #667eea;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #5a67d8;
}

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

.button-text {
    transition: transform 0.3s ease;
}

.button-icon {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.hero-button:hover .button-icon {
    transform: translateX(4px);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.innovation-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    overflow: hidden;
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.innovation-content {
    padding: 40px;
    height: 100%;
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.blockchain-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.innovation-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.innovation-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.innovation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.innovation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #374151;
}

.innovation-features .fas {
    color: #10b981;
    font-size: 1.1rem;
}

.blockchain-badge + .innovation-title + .innovation-text + .innovation-features .fas {
    color: #f5576c;
}

.innovation-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.blockchain-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blockchain-cta:hover {
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
}

.innovation-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.innovation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.tech-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 8px;
}

.blockchain-visual {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.blockchain-network {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f093fb;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.node:nth-child(1) { top: 0; left: 0; }
.node:nth-child(2) { top: 0; right: 0; animation-delay: 0.5s; }
.node:nth-child(3) { bottom: 0; left: 0; animation-delay: 1s; }
.node:nth-child(4) { bottom: 0; right: 0; animation-delay: 1.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
    top: 6px;
    left: 12px;
    right: 12px;
}

.connection.vertical {
    width: 2px;
    height: auto;
    top: 12px;
    bottom: 12px;
    left: 6px;
    right: auto;
    background: linear-gradient(180deg, #f093fb, #f5576c);
}

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

.future-tech-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 50px;
    color: white;
    margin-top: 60px;
}

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

.preview-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vr-badge { border: 1px solid rgba(34, 197, 94, 0.3); }
.ar-badge { border: 1px solid rgba(59, 130, 246, 0.3); }
.quantum-badge { border: 1px solid rgba(168, 85, 247, 0.3); }

.preview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.preview-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.preview-info {
    padding: 24px;
}

.preview-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.preview-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .innovation-content {
        padding: 30px 0;
    }
    
    .innovation-visual {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .tech-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .future-tech-preview {
        padding: 30px 20px;
    }
    
    .preview-badges {
        justify-content: center;
    }
}

/* Block 3 */
.sustainability-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-impact::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2310b981" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%2306a877" opacity="0.15"/><circle cx="80" cy="30" r="1.5" fill="%2310b981" opacity="0.08"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.sustainability-header {
    margin-bottom: 80px;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #06a877 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.impact-badge i {
    font-size: 16px;
}

.sustainability-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sustainability-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.carbon-counter {
    background: linear-gradient(135deg, #10b981 0%, #06a877 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.counter-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.counter-unit {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.counter-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

.sustainability-metrics {
    margin-bottom: 100px;
}

.metric-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.metric-detail {
    font-size: 0.9rem;
    color: #6b7280;
}

.forest-metric .metric-value {
    color: #10b981;
}

.energy-metric .metric-value {
    color: #f59e0b;
}

.ocean-metric .metric-value {
    color: #3b82f6;
}

.community-metric .metric-value {
    color: #8b5cf6;
}

.sustainability-showcase {
    margin-bottom: 100px;
}

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

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

.eco-indicators {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.green-energy {
    background: #10b981;
}

.water-neutral {
    background: #3b82f6;
}

.zero-waste {
    background: #8b5cf6;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 4px;
}

.highlight-content strong {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 4px;
}

.highlight-content span {
    color: #6b7280;
    font-size: 0.95rem;
}

.learner-impact-stories {
    margin-bottom: 80px;
}

.stories-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
}

.impact-story {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.story-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.story-achievement {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.story-content {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-impact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

.sustainability-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #10b981;
    color: white;
}

.cta-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #1f2937;
}

@media (max-width: 768px) {
    .sustainability-title {
        font-size: 2.2rem;
    }
    
    .sustainability-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .impact-highlights {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .eco-indicators {
        justify-content: center;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.form-header {
    padding: 60px 40px 40px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 16px;
    opacity: 0.9;
}

.form-content {
    padding: 60px 40px;
}

.order-form-container {
    background: #f8faff;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid #e3ebf0;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 12px;
}

.form-label i {
    color: #667eea;
    width: 20px;
}

.form-control {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

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

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

.form-actions {
    text-align: center;
    margin-top: 48px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.btn-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.6s ease;
}

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

.form-privacy {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.benefits-sidebar {
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: fit-content;
    border: 1px solid #f1f5f9;
}

.benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 32px;
    text-align: center;
}

.benefit-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

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

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.success-guarantee {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 24px;
    border-radius: 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

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

.guarantee-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
}

.social-proof {
    padding: 40px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
}

.proof-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 32px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-header {
        padding: 40px 20px 30px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-content {
        padding: 40px 20px;
    }
    
    .order-form-container {
        padding: 32px 24px;
    }
    
    .benefits-sidebar {
        margin-top: 40px;
        padding: 24px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .partner-logos {
        gap: 24px;
    }
    
    .partner-logo {
        height: 32px;
    }
    
    .success-guarantee {
        flex-direction: column;
        text-align: center;
    }
}
