
/* Block 1 */
.hero-banner {
      position: relative;
      height: 70vh;
      min-height: 500px;
      background-image: url('workspace-hero.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-overlay {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(22, 28, 36, 0.85) 0%, rgba(40, 44, 52, 0.75) 100%);
      z-index: 1;
    }

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

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

    .hero-description {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-button {
      display: inline-block;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #ffffff;
      padding: 16px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .hero-banner {
        height: 60vh;
        min-height: 450px;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }

      .hero-button {
        padding: 14px 30px;
        font-size: 1rem;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 2rem;
      }

      .hero-description {
        font-size: 1rem;
      }

      .hero-content {
        padding: 20px 15px;
      }
    }

/* Block 2 */
.innovation-showcase {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.innovation-content {
    padding-right: 30px;
}

.innovation-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.innovation-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

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

.feature-text p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.5;
}

.innovation-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.innovation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.innovation-gallery {
    padding-left: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px;
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item.primary {
    grid-column: span 2;
}

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

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

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.innovation-stats {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin-top: 60px;
    padding: 40px 0;
    border-radius: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    margin-bottom: 10px;
}

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

@media (max-width: 991px) {
    .innovation-content,
    .innovation-gallery {
        padding-left: 0;
        padding-right: 0;
    }
    
    .innovation-title {
        font-size: 2.3rem;
    }
    
    .gallery-grid {
        margin-top: 40px;
        grid-template-rows: 180px 140px;
    }
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 60px 0;
    }
    
    .innovation-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 160px);
    }
    
    .gallery-item.primary {
        grid-column: span 1;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Block 3 */
.ecosystem-integration {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.ecosystem-integration::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="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.ecosystem-integration > .container {
    position: relative;
    z-index: 1;
}

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

.ecosystem-main-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.environment-header {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.environment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.environment-content {
    padding: 25px;
}

.environment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.environment-description {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

.environment-features {
    margin-bottom: 25px;
}

.env-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #2d3748;
}

.env-feature i {
    color: #667eea;
    margin-right: 12px;
    width: 18px;
    text-align: center;
}

.environment-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.office-environment .environment-badge {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.home-environment .environment-badge {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.mobile-environment .environment-badge {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.ecosystem-flow-visualization {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.flow-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.flow-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.flow-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

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

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
}

.metric-label {
    font-size: 0.9rem;
    color: #4a5568;
}

.flow-diagram {
    position: relative;
    text-align: center;
}

.flow-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.flow-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: pulse 2s infinite ease-in-out;
}

.pulse-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 60%;
    right: 20%;
    animation-delay: 0.7s;
}

.pulse-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 1.4s;
}

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

@media (max-width: 768px) {
    .ecosystem-main-title {
        font-size: 2.2rem;
    }
    
    .ecosystem-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .flow-title {
        font-size: 1.8rem;
    }
    
    .flow-metrics {
        margin-top: 30px;
    }
    
    .ecosystem-flow-visualization {
        margin-top: 60px;
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .environment-header {
        height: 180px;
    }
    
    .environment-content {
        padding: 20px;
    }
    
    .flow-metrics {
        gap: 15px;
    }
    
    .metric-item {
        padding: 12px;
    }
}

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

.contact-form-section::before {
    content: '';
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 800px;
    height: 800px;
    top: -400px;
    right: -200px;
    z-index: 1;
}

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

.form-wrapper::before {
    content: '';
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 50%;
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    z-index: -1;
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.header-icon:hover {
    transform: rotate(0deg) scale(1.1);
}

.header-icon i {
    font-size: 36px;
    color: white;
}

.form-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    gap: 35px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-group:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.input-group:focus-within {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 25px 20px 25px 70px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    background: transparent;
    transition: all 0.3s ease;
}

.form-label {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #95a5a6;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-input:valid + .form-label {
    top: 15px;
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    transform: translateY(0);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-highlight {
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    transition: color 0.3s ease;
}

.input-group:focus-within .input-icon {
    color: #667eea;
}

.input-icon i {
    font-size: 18px;
}

.form-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.feature-check i {
    color: #27ae60;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.submit-btn:active {
    transform: translateY(-1px);
}

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

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

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #95a5a6;
    text-align: center;
}

.security-notice i {
    color: #27ae60;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .form-input {
        padding: 22px 15px 22px 60px;
        font-size: 15px;
    }
    
    .form-label {
        left: 60px;
        font-size: 15px;
    }
    
    .form-input:focus + .form-label,
    .form-input:not(:placeholder-shown) + .form-label,
    .form-input:valid + .form-label {
        font-size: 11px;
    }
    
    .input-icon {
        left: 18px;
    }
    
    .form-features {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .submit-btn {
        padding: 18px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 28px;
    }
}
