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

.hero-background {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 60, 114, 0.85) 0%, 
        rgba(42, 82, 152, 0.75) 50%,
        rgba(26, 26, 26, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 80px 0;
}

.hero-text {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-action {
    margin-top: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0077ee 0%, #0055aa 100%);
    color: white;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

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

    .innovation-showcase::before {
      content: '';
      background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
    }

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

    .showcase-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .showcase-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      background: linear-gradient(135deg, #1e293b, #3b82f6);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .showcase-subtitle {
      font-size: 1.25rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .innovation-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      align-items: start;
    }

    .innovation-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

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

    .featured-card {
      grid-column: span 2;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }

    .wide-card {
      grid-column: span 2;
    }

    .innovation-image {
      position: relative;
      height: 240px;
      overflow: hidden;
    }

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

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

    .innovation-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.95);
      color: #1e293b;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .innovation-content {
      padding: 30px;
    }

    .innovation-category {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #3b82f6;
      margin-bottom: 12px;
    }

    .featured-card .innovation-category {
      color: rgba(255, 255, 255, 0.8);
    }

    .innovation-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .featured-card .innovation-title {
      color: white;
      font-size: 1.75rem;
    }

    .innovation-description {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .featured-card .innovation-description {
      color: rgba(255, 255, 255, 0.9);
    }

    .innovation-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 25px;
    }

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

    .stat-number {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: white;
    }

    .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .innovation-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .feature-tag {
      background: #e2e8f0;
      color: #475569;
      padding: 6px 14px;
      border-radius: 15px;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .innovation-link {
      color: white;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s ease;
    }

    .innovation-link:hover {
      gap: 12px;
      color: white;
    }

    .wide-content {
      display: grid;
      grid-template-columns: 1fr 300px;
      align-items: center;
      gap: 40px;
      padding: 40px;
    }

    .energy-sources {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 25px;
    }

    .energy-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #475569;
    }

    .energy-item i {
      font-size: 1.25rem;
      color: #3b82f6;
    }

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

    @media (max-width: 768px) {
      .innovation-showcase {
        padding: 60px 0;
      }

      .innovation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .featured-card,
      .wide-card {
        grid-column: span 1;
      }

      .wide-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
      }

      .innovation-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .energy-sources {
        grid-template-columns: 1fr;
        gap: 15px;
      }
    }

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

.ai-integration-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hub-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hub-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hub-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.integration-showcase {
    position: relative;
    margin-bottom: 100px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-ai-core {
    position: relative;
    z-index: 3;
}

.ai-core-visual {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-rings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.4);
    animation-duration: 15s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-color: rgba(120, 119, 198, 0.6);
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-color: rgba(255, 119, 198, 0.8);
    animation-duration: 8s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.core-center {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.core-center i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.core-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.integration-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-card {
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.ai-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.smart-home {
    top: -50px;
    left: -200px;
    animation-delay: -1s;
}

.health-monitoring {
    top: -50px;
    right: -200px;
    animation-delay: -2s;
}

.personal-assistant {
    bottom: -50px;
    left: -200px;
    animation-delay: -3s;
}

.productivity {
    bottom: -50px;
    right: -200px;
    animation-delay: -4s;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ai-metrics .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

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

.ai-capabilities {
    margin-bottom: 80px;
}

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

.capability-item {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.capability-visual {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.capability-info {
    flex: 1;
}

.capability-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.capability-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.5;
}

.capability-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.future-roadmap {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
}

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

.roadmap-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.roadmap-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 50px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.timeline-date {
    color: #f093fb;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timeline-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .integration-cards {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    
    .ai-card {
        position: static;
        animation: none;
    }
}

@media (max-width: 768px) {
    .hub-title {
        font-size: 2.5rem;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
    }
    
    .capability-item {
        flex-direction: column;
        text-align: center;
    }
    
    .capability-visual {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .timeline-item .timeline-content {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        padding: 25px;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 20px;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.form-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.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 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.form-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.form-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.highlight-item i {
    color: #4ade80;
    font-size: 18px;
}

.order-form {
    display: flex;
    flex-direction: column;
}

.form-content {
    flex: 1;
}

.form-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.form-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 24px;
}

.input-wrapper {
    position: relative;
}

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #f9fafb;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.form-input:focus + .input-icon {
    color: #667eea;
}

.form-benefits {
    margin: 40px 0;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

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

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: #667eea;
    font-size: 20px;
    margin-top: 2px;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-title {
    font-weight: 600;
    color: #1a202c;
    font-size: 16px;
}

.benefit-description {
    color: #64748b;
    font-size: 14px;
}

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

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

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

.button-text {
    font-size: 18px;
}

.form-footer {
    margin-top: 24px;
}

.privacy-notice {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-notice i {
    color: #10b981;
}

@media (max-width: 992px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 36px;
    }
    
    .form-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 18px;
    }
    
    .preview-image {
        height: 250px;
    }
    
    .visual-overlay {
        padding: 20px;
    }
    
    .feature-highlights {
        gap: 8px;
    }
    
    .highlight-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .form-header {
        margin-bottom: 40px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-section-title {
        font-size: 24px;
    }
    
    .form-input {
        padding: 14px 16px 14px 45px;
        font-size: 16px;
    }
    
    .submit-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .privacy-notice {
        flex-direction: column;
        gap: 4px;
    }
}
