
/* Block 1 */
.hero-section {
        position: relative;
        width: 100%;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: #111827;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('hero-background.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.6;
        z-index: 1;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(17, 24, 39, 0.7) 0%, rgba(17, 24, 39, 0.9) 100%);
        z-index: 2;
    }

    .hero-container {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1200px;
        padding: 0 1.5rem;
        margin: 0 auto;
    }

    .hero-content-wrapper {
        display: flex;
        justify-content: center;
    }

    .hero-content {
        max-width: 800px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        font-weight: 800;
        color: #f9fafb;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

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

    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .hero-button {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .hero-button-primary {
        background-color: #2563eb;
        color: #ffffff;
        border: 2px solid #2563eb;
    }

    .hero-button-primary:hover {
        background-color: #1d4ed8;
        border-color: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .hero-button-secondary {
        background-color: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .hero-button-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        .hero-description {
            font-size: 1.125rem;
        }
        .hero-actions {
            flex-direction: column;
            width: 100%;
        }
        .hero-button {
            width: 100%;
            text-align: center;
        }
    }

/* Block 2 */
.features-section {
    background-color: #f8fafc;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #bfdbfe;
}

.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: #2563eb;
    color: white;
    transform: rotate(-5deg) scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-card a {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.feature-card a::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.2s ease;
    font-size: 1.1em;
}

.feature-card a:hover::after {
    margin-left: 0.75rem;
}

.feature-card-highlight {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    grid-column: span 1;
    border: none;
    position: relative;
    overflow: hidden;
}

.feature-card-highlight .feature-icon-wrapper {
    display: none;
}

.feature-card-highlight h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card-highlight p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.highlight-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-link {
    background-color: #3b82f6;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    justify-content: center;
    transition: background-color 0.2s;
}

.highlight-link:hover {
    background-color: #60a5fa;
}

.highlight-link::after {
    content: none;
}

@media (min-width: 1024px) {
    .feature-card-highlight {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section {
        padding: 4rem 1rem;
    }
}

/* Block 3 */
.immersive-workspace-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    box-sizing: border-box;
}

.workspace-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.workspace-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.workspace-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.workspace-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

.workspace-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.workspace-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.workspace-card-primary {
    grid-column: span 1;
}

.card-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #e5e7eb;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.workspace-card:hover .card-visual img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}

.workspace-card-primary .card-badge {
    background-color: #eff6ff;
    color: #2563eb;
}

.workspace-card-secondary .card-badge {
    background-color: #f0fdf4;
    color: #16a34a;
}

.workspace-card-tertiary .card-badge {
    background-color: #fdf4ff;
    color: #9333ea;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.card-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

.card-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

.card-link:hover {
    color: #2563eb;
}

.card-link:hover::after {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .workspace-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workspace-card-primary {
        grid-column: span 2;
        flex-direction: row;
    }
    
    .workspace-card-primary .card-visual {
        width: 55%;
        height: auto;
    }
    
    .workspace-card-primary .card-content {
        width: 45%;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .workspace-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .workspace-card-primary {
        grid-column: span 2;
    }
}

/* Block 4 */
.digital-contact-section {
background-color: #f8fafc;
padding: 5rem 1rem;
position: relative;
overflow: hidden;
}
.digital-contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.contact-wrapper {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: 4rem;
}
@media (min-width: 992px) {
.contact-wrapper {
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 6rem;
}
}
.contact-info-block {
position: relative;
}
.info-content {
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-heading {
font-size: 2.5rem;
line-height: 1.1;
font-weight: 800;
color: #111827;
letter-spacing: -0.02em;
margin: 0;
}
.contact-subheading {
font-size: 1.125rem;
line-height: 1.6;
color: #4b5563;
margin: 0;
}
.connectors-grid {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.connector-item {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.25rem;
background: #ffffff;
border-radius: 12px;
border: 1px solid #e5e7eb;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.connector-item:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
border-color: #bfdbfe;
}
.connector-icon {
width: 48px;
height: 48px;
background-color: #eff6ff;
color: #2563eb;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
flex-shrink: 0;
}
.connector-text {
display: flex;
flex-direction: column;
}
.connector-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #6b7280;
font-weight: 600;
margin-bottom: 0.25rem;
}
.connector-value {
font-size: 0.95rem;
color: #1f2937;
font-weight: 500;
}
.visual-decoration {
margin-top: 1rem;
position: relative;
}
.geo-pattern {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
opacity: 0.9;
}
.form-wrapper {
display: flex;
justify-content: center;
}
.form-card {
background: #ffffff;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
border: 1px solid #f3f4f6;
width: 100%;
max-width: 500px;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.form-header {
margin-bottom: 0.5rem;
}
.form-header h3 {
font-size: 1.5rem;
font-weight: 700;
color: #111827;
margin: 0 0 0.5rem 0;
}
.form-header p {
font-size: 0.875rem;
color: #6b7280;
margin: 0;
}
.input-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.input-group label {
font-size: 0.875rem;
font-weight: 600;
color: #374151;
}
.input-container {
position: relative;
display: flex;
align-items: center;
}
.input-icon {
position: absolute;
left: 1rem;
color: #9ca3af;
pointer-events: none;
transition: color 0.2s ease;
}
.input-group input {
width: 100%;
padding: 0.875rem 1rem 0.875rem 3rem;
border: 1px solid #d1d5db;
border-radius: 8px;
font-size: 1rem;
color: #1f2937;
background-color: #f9fafb;
transition: all 0.2s ease;
outline: none;
font-family: inherit;
}
.input-group input:focus {
border-color: #2563eb;
background-color: #ffffff;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.input-group input:focus + .input-icon {
color: #2563eb;
}
.input-group input::placeholder {
color: #9ca3af;
}
.submit-button {
margin-top: 0.5rem;
background-color: #2563eb;
color: white;
border: none;
padding: 1rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
transition: background-color 0.2s ease, transform 0.1s ease;
box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}
.submit-button:hover {
background-color: #1d4ed8;
transform: translateY(-1px);
}
.submit-button:active {
transform: translateY(0);
}
.button-icon {
transition: transform 0.2s ease;
}
.submit-button:hover .button-icon {
transform: translateX(4px);
}
@media (max-width: 640px) {
.contact-heading {
font-size: 2rem;
}
.form-card {
padding: 1.5rem;
}
}
