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

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

.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  z-index: 3;
  color: white;
  text-align: center;
  padding: 2rem;
}

.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.3);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
  color: white;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
}

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

.features-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #495057 0%, #212529 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #0d6efd;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card-description {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .features-showcase {
    padding: 60px 0;
  }
  
  .features-title {
    font-size: 2.25rem;
  }
  
  .features-subtitle {
    font-size: 1.125rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .feature-card-title {
    font-size: 1.25rem;
  }
  
  .feature-card-description {
    font-size: 0.95rem;
  }
}

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

.showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

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

.product-highlight {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

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

.product-highlight:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-details {
    padding: 30px;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.product-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

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

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

.product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.price-original {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
}

.price-save {
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-cta {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.product-cta:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.mini-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.mini-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.mini-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.mini-product-content {
    padding: 20px;
    text-align: center;
}

.mini-product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.mini-product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 15px;
}

.mini-product-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid #007bff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.mini-product-link:hover {
    background: #007bff;
    color: white;
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .product-details {
        padding: 25px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-pricing {
        justify-content: center;
        text-align: center;
    }
    
    .price-current {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .showcase-title {
        font-size: 1.9rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .product-details {
        padding: 20px;
    }
    
    .product-cta {
        width: 100%;
        text-align: center;
    }
}

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

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

.form-hero-image {
width: 100%;
max-width: 400px;
height: 200px;
object-fit: cover;
border-radius: 16px;
margin-bottom: 24px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.form-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a202c;
margin-bottom: 16px;
line-height: 1.2;
}

.form-subtitle {
font-size: 1.125rem;
color: #4a5568;
line-height: 1.6;
max-width: 500px;
margin: 0 auto;
}

.order-form {
background: white;
border-radius: 20px;
padding: 40px;
box-shadow: 0 16px 48px rgba(0,0,0,0.08);
border: 1px solid #e2e8f0;
}

.form-grid {
display: grid;
gap: 24px;
margin-bottom: 32px;
}

.input-group {
position: relative;
}

.form-label {
display: block;
font-size: 0.95rem;
font-weight: 600;
color: #2d3748;
margin-bottom: 8px;
}

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

.form-input:focus {
outline: none;
border-color: #4299e1;
background: white;
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.input-icon {
position: absolute;
top: 36px;
left: 16px;
width: 20px;
height: 20px;
}

.icon-small {
width: 100%;
height: 100%;
object-fit: contain;
opacity: 0.6;
}

.benefits-preview {
background: #f7fafc;
border-radius: 12px;
padding: 24px;
margin-bottom: 32px;
border: 1px solid #e2e8f0;
}

.benefits-title {
font-size: 1.25rem;
font-weight: 600;
color: #2d3748;
margin-bottom: 16px;
text-align: center;
}

.benefits-list {
display: grid;
gap: 12px;
}

.benefit-item {
display: flex;
align-items: center;
gap: 12px;
}

.benefit-icon {
width: 20px;
height: 20px;
object-fit: contain;
flex-shrink: 0;
}

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

.submit-button {
width: 100%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 18px 24px;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 24px;
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.button-arrow {
width: 20px;
height: 20px;
object-fit: contain;
}

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

.trust-item {
display: flex;
align-items: center;
gap: 8px;
}

.trust-icon {
width: 24px;
height: 24px;
object-fit: contain;
}

.trust-text {
font-size: 0.85rem;
color: #718096;
font-weight: 500;
}

@media (max-width: 768px) {
.order-form-section {
padding: 60px 0;
}

.order-form {
padding: 24px;
margin: 0 16px;
}

.form-title {
font-size: 2rem;
}

.trust-indicators {
gap: 20px;
}

.trust-item {
flex-direction: column;
text-align: center;
gap: 4px;
}
}

@media (max-width: 480px) {
.form-title {
font-size: 1.75rem;
}

.form-subtitle {
font-size: 1rem;
}

.benefits-list {
gap: 8px;
}

.benefit-text {
font-size: 0.9rem;
}
}
