
/* Block 1 */
.hero-banner {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-radius: 16px;
      margin: 2rem 0;
    }

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

    .hero-overlay {
      background: linear-gradient(135deg, rgba(26, 35, 64, 0.8) 0%, rgba(67, 56, 89, 0.7) 50%, rgba(45, 55, 72, 0.8) 100%);
      z-index: -1;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
      padding: 4rem 2rem;
    }

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

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

    .hero-cta-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .hero-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
      background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }

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

    @media (max-width: 768px) {
      .hero-banner {
        min-height: 60vh;
        margin: 1rem 0;
        border-radius: 12px;
      }

      .hero-content {
        padding: 2rem 1rem;
      }

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

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

      .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 2rem;
        line-height: 1.3;
      }

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

      .hero-banner {
        min-height: 50vh;
      }
    }

/* Block 2 */
.organization-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
    color: #6366f1;
}

.feature-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-benefits li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.feature-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.cta-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .organization-features {
        padding: 60px 0;
    }
    
    .features-main-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-image-wrapper {
        height: 200px;
    }
    
    .feature-content {
        padding: 25px 20px;
    }
    
    .cta-wrapper {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}

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

.smart-home-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
}

.tech-intro-content {
    position: relative;
    z-index: 2;
}

.tech-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tech-intro-text {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.tech-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-tech-image {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-tech-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-card-mini {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    animation: floatAnimation 3s ease-in-out infinite;
}

.tech-card-mini:nth-child(1) {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.tech-card-mini:nth-child(2) {
    top: 50%;
    left: -10%;
    animation-delay: 1s;
}

.tech-card-mini:nth-child(3) {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}

.tech-card-mini i {
    color: #667eea;
    font-size: 1rem;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.tech-solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.solution-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.solution-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon {
    font-size: 1.4rem;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.solution-image-container {
    height: 200px;
    overflow: hidden;
}

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

.tech-solution-card:hover .solution-image {
    transform: scale(1.05);
}

.solution-content {
    padding: 1.5rem;
}

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

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

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

.benefits-list li {
    padding: 0.3rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.benefits-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.integration-showcase {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.integration-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.integration-features-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.integration-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.integration-feature-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

.integration-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 992px) {
    .tech-main-title {
        font-size: 2.2rem;
    }
    
    .tech-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .floating-tech-cards {
        display: none;
    }
    
    .integration-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .smart-home-tech {
        padding: 50px 0;
    }
    
    .tech-main-title {
        font-size: 1.8rem;
    }
    
    .tech-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-showcase {
        padding: 1.5rem;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.order-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.benefit-icon {
    color: #667eea;
    font-size: 16px;
}

.benefit-text {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
}

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

.label-icon {
    color: #667eea;
    font-size: 14px;
}

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

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

.form-control::placeholder {
    color: #a0aec0;
}

.form-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.form-control:focus + .form-highlight {
    width: 100%;
}

.form-footer {
    text-align: center;
}

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

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

.button-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(3px);
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #718096;
    margin: 0;
}

.privacy-icon {
    color: #667eea;
    font-size: 12px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.trust-item {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-badge {
    height: 60px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.trust-badge:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .order-form-wrapper {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-badge {
        height: 45px;
    }
}

@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group:last-child {
        grid-column: 1 / -1;
    }
}
